/* ============================================
   JIDEGOLD ALAGA - ROYAL BLUE PROFESSIONAL THEME
   ============================================ */

/* CSS Variables - Royal Blue + Gold */
:root {
    --royal-blue: #0A2463;
    --royal-blue-light: #1E3A8A;
    --royal-blue-dark: #051a4a;
    --royal-blue-accent: #3B82F6;
    --gold: #C9A84C;
    --gold-light: #E8D5A3;
    --gold-dark: #9A7B2C;
    --gold-muted: rgba(201,168,76,0.15);
    --cream: #F8FAFC;
    --cream-dark: #E2E8F0;
    --white: #FFFFFF;
    --dark: #0F172A;
    --dark-light: #1E293B;
    --text: #334155;
    --text-light: #64748B;
    --text-muted: #94A3B8;
    --shadow-sm: 0 1px 3px rgba(10,36,99,0.08);
    --shadow-md: 0 4px 20px rgba(10,36,99,0.12);
    --shadow-lg: 0 8px 40px rgba(10,36,99,0.15);
    --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);
    --shadow-blue: 0 4px 20px rgba(10,36,99,0.2);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
}

.text-gold { color: var(--gold); }

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--royal-blue);
    border-color: var(--white);
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-full { width: 100%; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-sm);
    padding: 14px 0;
    border-bottom-color: rgba(10,36,99,0.06);
}

.navbar.scrolled .logo-gold,
.navbar.scrolled .logo-text { color: var(--royal-blue); }

.navbar.scrolled .nav-link { color: var(--text); }

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--royal-blue); }

.navbar.scrolled .nav-link::after { background: var(--royal-blue); }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.logo-gold {
    color: var(--gold);
    transition: var(--transition);
}

.logo-text {
    color: var(--white);
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 26px;
    font-size: 0.85rem;
    border-radius: 8px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .mobile-toggle span { background: var(--royal-blue); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--royal-blue) 0%, var(--royal-blue-dark) 40%, var(--dark) 100%);
    padding: 140px 24px 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 15% 40%, rgba(201,168,76,0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(59,130,246,0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
}

.hero-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
    animation: pulse-glow 5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.7; }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 8s ease-in-out infinite;
}

.hero-particles::before {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.hero-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
    width: 6px;
    height: 6px;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.25);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 36px;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.badge-star {
    color: var(--gold);
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
}

.title-line { display: block; }

.title-gold {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.title-gold::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: -4px;
    right: -4px;
    height: 10px;
    background: rgba(201,168,76,0.15);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.65);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.12);
}

.hero-cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-bounce 2.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.4; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
    padding: 32px 0;
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trust-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.15);
}

.trust-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.trust-number {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
}

.trust-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cream-dark), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.image-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    text-align: center;
    padding: 40px;
}

.placeholder-icon {
    font-size: 3rem;
    opacity: 0.5;
}

.image-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
}

.image-placeholder small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.frame-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid var(--gold);
    transition: var(--transition);
}

.frame-corner.top-left { top: 24px; left: 24px; border-right: none; border-bottom: none; }
.frame-corner.top-right { top: 24px; right: 24px; border-left: none; border-bottom: none; }
.frame-corner.bottom-left { bottom: 24px; left: 24px; border-right: none; border-top: none; }
.frame-corner.bottom-right { bottom: 24px; right: 24px; border-left: none; border-top: none; }

.about-image:hover .frame-corner {
    width: 60px;
    height: 60px;
    border-color: var(--gold-light);
}

.experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
    color: var(--white);
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-blue);
    text-align: center;
    border: 2px solid rgba(201,168,76,0.3);
}

.exp-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
}

.exp-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

.about-content {
    padding-left: 20px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--dark);
    font-weight: 600;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 36px 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(10,36,99,0.06);
    transition: var(--transition);
}

.feature:hover {
    transform: translateX(4px);
    border-color: rgba(201,168,76,0.3);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.feature-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(10,36,99,0.06);
    border-radius: 20px;
    padding: 44px 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--royal-blue), var(--royal-blue-accent));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: linear-gradient(160deg, var(--royal-blue) 0%, var(--royal-blue-dark) 100%);
    color: var(--white);
    border: none;
    transform: scale(1.04);
    box-shadow: var(--shadow-blue);
}

.service-card.featured:hover {
    transform: scale(1.04) translateY(-10px);
    box-shadow: 0 20px 50px rgba(10,36,99,0.3);
}

.service-card.featured::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-list li {
    color: var(--white);
}

.service-card.featured .service-list li::before {
    color: var(--gold);
}

.service-card.featured .service-icon {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 7px 16px;
    border-radius: 20px;
    box-shadow: var(--shadow-gold);
}

.service-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(10,36,99,0.08) 0%, rgba(10,36,99,0.02) 100%);
    border: 1px solid rgba(10,36,99,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin-bottom: 28px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-list li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding-left: 24px;
    position: relative;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--royal-blue);
    font-weight: 700;
    font-size: 0.85rem;
}

.services-cta {
    text-align: center;
    margin-top: 72px;
}

.services-cta p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    position: relative;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.package-card {
    background: var(--white);
    border: 1px solid rgba(10,36,99,0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.package-card.featured {
    background: linear-gradient(160deg, var(--royal-blue) 0%, var(--royal-blue-dark) 100%);
    color: var(--white);
    border: none;
    transform: scale(1.03);
    box-shadow: var(--shadow-blue);
    z-index: 2;
}

.package-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 20px 50px rgba(10,36,99,0.3);
}

.package-card.extravaganza {
    background: linear-gradient(135deg, var(--dark) 0%, var(--royal-blue-dark) 100%);
    color: var(--white);
    border: none;
}

.package-card.extravaganza:hover {
    box-shadow: 0 20px 50px rgba(15,23,42,0.3);
}

.package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 7px 16px;
    border-radius: 20px;
    box-shadow: var(--shadow-gold);
    z-index: 3;
}

.package-header {
    padding: 36px 28px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(10,36,99,0.06);
}

.package-card.featured .package-header,
.package-card.extravaganza .package-header {
    border-bottom-color: rgba(255,255,255,0.1);
}

.package-tier {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--royal-blue);
    background: rgba(10,36,99,0.06);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.gold-tier {
    color: var(--gold);
    background: rgba(201,168,76,0.15);
}

.extra-tier {
    color: var(--gold-light);
    background: rgba(201,168,76,0.2);
}

.package-card.featured .package-tier,
.package-card.extravaganza .package-tier {
    color: var(--gold);
    background: rgba(201,168,76,0.15);
}

.package-header h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.package-card.featured .package-header h3,
.package-card.extravaganza .package-header h3 {
    color: var(--white);
}

.package-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.package-card.featured .package-subtitle,
.package-card.extravaganza .package-subtitle {
    color: rgba(255,255,255,0.7);
}

.package-body {
    padding: 28px;
    flex: 1;
}

.package-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.package-list li {
    font-size: 0.88rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.package-card.featured .package-list li,
.package-card.extravaganza .package-list li {
    color: rgba(255,255,255,0.85);
}

.package-list .check {
    color: var(--royal-blue);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.package-card.featured .package-list .check,
.package-card.extravaganza .package-list .check {
    color: var(--gold);
}

.package-footer {
    padding: 0 28px 28px;
    text-align: center;
}

.btn-package {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid var(--royal-blue);
    color: var(--royal-blue);
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition);
}

.btn-package:hover {
    background: var(--royal-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-package-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-package-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201,168,76,0.4);
}

.package-card.featured .btn-package,
.package-card.extravaganza .btn-package {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

.package-card.featured .btn-package:hover,
.package-card.extravaganza .btn-package:hover {
    background: var(--white);
    color: var(--royal-blue);
    border-color: var(--white);
}

/* Extra Services */
.extra-services {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
    border-radius: 24px;
    padding: 48px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.extra-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.extra-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.extra-header h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.extra-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.extra-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.extra-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.extra-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.extra-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.extra-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* Awards Section */
.awards-section {
    margin: 28px 0 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(10,36,99,0.04) 0%, rgba(201,168,76,0.04) 100%);
    border-radius: 16px;
    border: 1px solid rgba(10,36,99,0.06);
}

.awards-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.awards-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: 10px;
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

.award-year {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(201,168,76,0.1);
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

.award-name {
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 500;
}

/* ============================================
   PORTFOLIO / MEDIA GALLERY SECTION
   ============================================ */
.portfolio {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

/* Gallery Filter Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--cream-dark);
    background: var(--white);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-tab:hover {
    border-color: var(--royal-blue);
    color: var(--royal-blue);
}

.gallery-tab.active {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
    color: var(--white);
    border-color: var(--royal-blue);
    box-shadow: var(--shadow-blue);
}

/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.media-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.media-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.media-item.hidden {
    display: none;
}

.media-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.media-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.media-wrapper img,
.media-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.media-item:hover .media-wrapper img,
.media-item:hover .media-wrapper video {
    transform: scale(1.08);
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,36,99,0.3);
    transition: var(--transition);
}

.media-item:hover .video-overlay {
    background: rgba(10,36,99,0.5);
}

.play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: 3px solid rgba(255,255,255,0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    backdrop-filter: blur(4px);
}

.play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(201,168,76,0.6);
}

.play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

/* Media Info Overlay */
.media-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(10,36,99,0.92) 0%, rgba(10,36,99,0.4) 60%, transparent 100%);
    transform: translateY(10px);
    opacity: 0.85;
    transition: var(--transition);
}

.media-item:hover .media-info {
    transform: translateY(0);
    opacity: 1;
}

.media-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
}

.media-info h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.media-info p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* Placeholder for missing images */
.media-wrapper .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--royal-blue-light) 0%, var(--royal-blue) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    gap: 8px;
}

.media-wrapper .image-placeholder .placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.4;
}

.media-wrapper .image-placeholder p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
}

.media-wrapper .image-placeholder small {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.portfolio-note {
    text-align: center;
    margin-top: 36px;
    padding: 18px 24px;
    background: rgba(10,36,99,0.04);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 0.9rem;
    border: 1px dashed rgba(10,36,99,0.1);
}

.portfolio-note code {
    background: rgba(10,36,99,0.06);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.85rem;
}

/* ============================================
   VIDEO LIGHTBOX MODAL
   ============================================ */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,36,99,0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: modal-in 0.4s ease;
}

@keyframes modal-in {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-content video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    background: var(--dark);
}

.modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 3;
}

.modal-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: rotate(90deg);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.testimonials-slider {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    border: 1px solid rgba(10,36,99,0.06);
    border-radius: 24px;
    padding: 56px;
    text-align: center;
    display: none;
    animation: fade-in 0.6s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: var(--font-serif);
    font-size: 8rem;
    color: rgba(10,36,99,0.04);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card.active { display: block; }

@keyframes fade-in {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.3rem;
    letter-spacing: 4px;
    margin-bottom: 28px;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

.avatar-placeholder {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.author-info h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 36px;
}

.testimonial-prev,
.testimonial-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--cream-dark);
    background: var(--white);
    color: var(--royal-blue);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--royal-blue);
    border-color: var(--royal-blue);
    color: var(--white);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cream-dark);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--royal-blue);
    width: 32px;
    border-radius: 5px;
}

.dot:hover {
    background: var(--royal-blue-accent);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 120px 0;
    background: linear-gradient(160deg, var(--royal-blue) 0%, var(--royal-blue-dark) 50%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59,130,246,0.06) 0%, transparent 50%);
}

.contact::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.contact-info .section-label {
    color: var(--gold-light);
}

.contact-info .section-label::before {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.contact-info .section-title {
    color: var(--white);
}

.contact-desc {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    margin-bottom: 44px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 44px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: rgba(201,168,76,0.15);
    border-color: rgba(201,168,76,0.3);
    transform: scale(1.05);
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    border: none;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    font-size: 1.3rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--royal-blue), var(--gold));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid var(--cream-dark);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 4px rgba(10,36,99,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-status {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 24px;
    padding: 12px;
    border-radius: 8px;
    margin-top: 8px;
}

.form-status.success {
    color: #16a34a;
    background: rgba(22,163,74,0.08);
}

.form-status.error {
    color: #dc2626;
    background: rgba(220,38,38,0.08);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 32px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 18px;
}

.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-contact p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
}

.footer-credit {
    color: var(--gold) !important;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsapp-bounce 2.5s ease-in-out infinite;
    border: 3px solid rgba(255,255,255,0.2);
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 35px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

@keyframes whatsapp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-right"].visible {
    transform: translateX(0);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-left"].visible {
    transform: translateX(0);
}


/* ============================================
   INSTAGRAM CLIENT REVIEWS
   ============================================ */
.ig-reviews {
    margin-top: 64px;
    padding-top: 56px;
    border-top: 1px solid rgba(10,36,99,0.08);
}

.ig-reviews-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 32px;
}

.ig-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-items: center;
    align-items: start;
}

.ig-embed-wrap {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.ig-embed-wrap:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Instagram's own iframe fills the wrapper */
.ig-embed-wrap iframe {
    width: 100% !important;
}

@media (max-width: 1024px) {
    .ig-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ig-reviews-grid {
        grid-template-columns: 1fr;
    }

    .ig-reviews {
        margin-top: 48px;
        padding-top: 40px;
    }
}










@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: scale(1) translateY(-8px);
    }

    .extra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .extra-grid {
        grid-template-columns: 1fr;
    }

    .extra-services {
        padding: 36px 24px;
    }

    .award-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid { gap: 48px; }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.featured {
        transform: scale(1);
        grid-column: span 2;
    }

    .media-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .media-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-tabs {
        gap: 8px;
    }

    .gallery-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .trust-divider {
        width: 60px;
        height: 1px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta { display: none; }

    .mobile-toggle { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 0;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--cream-dark);
    }

    .navbar.scrolled .nav-links.active {
        background: var(--white);
    }

    .nav-links.active .nav-link {
        color: var(--text);
        padding: 16px 0;
        border-bottom: 1px solid var(--cream-dark);
        font-size: 1rem;
    }

    .nav-links.active .nav-link:last-child {
        border-bottom: none;
    }

    .hero-stats { gap: 28px; }
    .stat-divider { display: none; }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-content { padding-left: 0; }

    .experience-badge {
        right: 10px;
        bottom: -10px;
        padding: 18px 24px;
    }

    .exp-number { font-size: 2.2rem; }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        grid-column: span 1;
    }

    .media-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .media-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .media-info h3 {
        font-size: 1.1rem;
    }

    .play-btn {
        width: 52px;
        height: 52px;
    }

    .play-btn svg {
        width: 22px;
        height: 22px;
    }

    .modal-content {
        border-radius: 12px;
    }

    .modal-close {
        top: -40px;
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 36px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .trust-stats {
        gap: 24px;
    }

    .testimonial-card {
        padding: 36px 24px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 16px 80px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .about,
    .services,
    .portfolio,
    .testimonials,
    .contact {
        padding: 80px 0;
    }

    .trust-bar {
        padding: 24px 0;
    }

    .trust-number {
        font-size: 1.3rem;
    }
}

/* ============================================
   ADDITIONAL MOBILE FIXES (added)
   ============================================ */

@media (max-width: 480px) {
    /* Testimonial author block wraps awkwardly on small screens */
    .testimonial-author {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Contact items can feel cramped */
    .contact-item {
        gap: 14px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    /* Package cards - tighten padding on very small phones */
    .package-header,
    .package-body,
    .package-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* WhatsApp button - keep full width on small screens for tap target */
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }

    /* Social links - center them on small screens */
    .social-links {
        justify-content: center;
    }

    /* Awards section - reduce padding slightly */
    .awards-section {
        padding: 18px;
    }

    /* Video play button - ensure good tap target on mobile */
    .play-btn {
        width: 56px;
        height: 56px;
    }
}




@media (max-width: 380px) {
    /* Extra safety for very narrow phones (iPhone SE etc.) */
    .hero-title {
        font-size: 2rem;
    }

    .stat-number,
    .stat-suffix {
        font-size: 1.8rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

