/* =========================================================
   DURGA JYOTISH — Design Masterclass Stylesheet
   Rich, premium, marketable Vedic astrology website
   ========================================================= */

/* ---- Custom Properties ---- */
:root {
    /* Palette */
    --gold: #C8A44E;
    --gold-light: #E2C97E;
    --gold-dark: #9B7A2F;
    --gold-glow: rgba(200, 164, 78, 0.25);
    --gold-subtle: #F8F0DA;
    --gold-ghost: #FDF8ED;

    --dark: #1A1207;
    --dark-warm: #2A1F0F;
    --dark-card: #231A0C;

    --cream: #FFFCF5;
    --cream-warm: #FFF6E5;
    --cream-mid: #F5EBD8;

    --brown-text: #3D2E1C;
    --brown-sec: #7A6548;
    --brown-muted: #A89478;

    --accent-purple: #6B4D8A;
    --accent-rose: #C47A6F;

    --white: #FFFFFF;
    --border: #E8DBC7;
    --border-light: #F0E6D4;

    --green: #3D8B5D;

    /* Typography */
    --ff-heading: 'Playfair Display', Georgia, serif;
    --ff-body: 'DM Sans', -apple-system, sans-serif;

    /* Spacing */
    --s1: 0.25rem; --s2: 0.5rem; --s3: 0.75rem; --s4: 1rem;
    --s5: 1.25rem; --s6: 1.5rem; --s8: 2rem; --s10: 2.5rem;
    --s12: 3rem; --s16: 4rem; --s20: 5rem; --s24: 6rem; --s32: 8rem;

    /* Radius */
    --r-sm: 8px; --r-md: 12px; --r-lg: 20px; --r-xl: 28px; --r-full: 9999px;

    /* Shadows */
    --sh-sm: 0 2px 8px rgba(26,18,7,0.05);
    --sh-md: 0 8px 24px rgba(26,18,7,0.08);
    --sh-lg: 0 16px 48px rgba(26,18,7,0.1);
    --sh-xl: 0 24px 64px rgba(26,18,7,0.14);
    --sh-gold: 0 8px 32px rgba(200,164,78,0.25);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --dur: 350ms;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--ff-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--brown-text);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4 { font-family: var(--ff-heading); line-height: 1.15; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 var(--s8); }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
    position: sticky; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: var(--s4) 0;
    background: var(--dark);
    border-bottom: 1px solid rgba(200,164,78,0.12);
    transition: all var(--dur) var(--ease);
}
.navbar.scrolled {
    background: var(--cream);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(26,18,7,0.05);
    padding: var(--s2) 0;
}
.nav-container {
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: var(--s3);
}
.logo-symbol { width: 36px; height: 36px; color: var(--gold); }
.logo-symbol svg { width: 100%; height: 100%; }
.logo-name {
    font-family: var(--ff-heading); font-size: 1.25rem; font-weight: 700; color: var(--cream);
    display: block; line-height: 1.1;
    transition: color var(--dur) var(--ease);
}
.logo-tagline {
    font-size: 0.65rem; color: rgba(255,252,245,0.55); letter-spacing: 0.08em; text-transform: uppercase;
    font-weight: 500;
    transition: color var(--dur) var(--ease);
}
.nav-links {
    display: flex; align-items: center; gap: var(--s8);
}
.nav-links a {
    font-size: 0.88rem; font-weight: 500; color: rgba(255,252,245,0.75);
    position: relative; padding: var(--s1) 0;
    transition: color var(--dur) var(--ease);
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -3px; left: 50%; width: 0; height: 2px;
    background: var(--gold); border-radius: 1px;
    transition: all var(--dur) var(--ease); transform: translateX(-50%);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

/* Scrolled Navbar Overrides */
.navbar.scrolled .logo-name { color: var(--brown-text); }
.navbar.scrolled .logo-tagline { color: var(--brown-muted); }
.navbar.scrolled .nav-links a { color: var(--brown-sec); }
.navbar.scrolled .nav-links a:hover { color: var(--gold-dark); }
.navbar.scrolled .nav-toggle span { background: var(--brown-text); }

.nav-cta-btn {
    display: inline-flex; align-items: center; gap: var(--s2);
    background: var(--gold); color: var(--white); font-size: 0.85rem; font-weight: 600;
    padding: 0.65em 1.5em; border-radius: var(--r-full);
    transition: all var(--dur) var(--ease);
    position: relative; overflow: hidden;
}
.nav-cta-btn:hover {
    background: var(--gold-dark); transform: translateY(-1px);
    box-shadow: var(--sh-gold);
}
.cta-pulse {
    width: 8px; height: 8px; background: var(--white); border-radius: 50%;
    animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: var(--s2); z-index: 1001; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: all var(--dur) var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative; display: flex; flex-direction: column;
    background: var(--dark); overflow: hidden;
}
.hero-bg-layer { position: absolute; inset: 0; pointer-events: none; }
.hero-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 25% 45%, rgba(200,164,78,0.1) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 80% 50%, rgba(200,164,78,0.05) 0%, transparent 55%);
}

.hero-container {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--s16);
    align-items: center;
    padding-top: calc(var(--s32) + var(--s8)); padding-bottom: var(--s16);
    min-height: calc(100vh - 90px);
}
.hero-content { max-width: 600px; }

.hero-tag {
    display: inline-flex; align-items: center; gap: var(--s3);
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold-light);
    padding: 0.5em 1.2em; border-radius: var(--r-full);
    border: 1px solid rgba(200,164,78,0.2);
    margin-bottom: var(--s10);
    animation: fadeUp 0.7s var(--ease) 0.2s both;
}
.tag-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); flex-shrink: 0;
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem); font-weight: 700; color: var(--cream);
    margin-bottom: var(--s8); line-height: 1.12;
    animation: fadeUp 0.7s var(--ease) 0.35s both;
}
.title-gold { color: var(--gold-light); }
.title-sub {
    display: block; font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 500; color: var(--brown-muted); font-style: italic;
    margin-top: var(--s2);
}

.hero-desc {
    font-size: 1.05rem; line-height: 1.85; color: rgba(255,252,245,0.55);
    max-width: 520px; margin-bottom: var(--s10);
    animation: fadeUp 0.7s var(--ease) 0.5s both;
}
.hero-desc strong { color: var(--gold-light); font-weight: 500; }

.hero-ctas {
    display: flex; align-items: center; gap: var(--s6); flex-wrap: wrap;
    animation: fadeUp 0.7s var(--ease) 0.65s both;
}

/* Hero Visual */
.hero-visual {
    display: flex; align-items: center; justify-content: center;
}
.hero-image-wrap {
    width: 100%;
    max-width: 380px;
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 2px solid rgba(200, 164, 78, 0.35);
    box-shadow: var(--sh-xl), 0 0 40px rgba(200, 164, 78, 0.15);
    animation: fadeUp 0.7s var(--ease) 0.5s both;
}
.hero-image-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background: radial-gradient(circle at center, rgba(200, 164, 78, 0.2), rgba(26, 18, 7, 0.95)), #1a1207;
}

.hero-stats-bar {
    background: rgba(200,164,78,0.06);
    border-top: 1px solid rgba(200,164,78,0.1);
    border-bottom: 1px solid rgba(200,164,78,0.1);
    position: relative; z-index: 2;
}
.hero-stats-inner {
    display: flex; align-items: center; padding: var(--s8) 0;
}
.hero-stat { text-align: center; flex: 1; }
.hero-stat-num {
    font-family: var(--ff-heading); font-size: 2.2rem; font-weight: 700;
    color: var(--gold-light); line-height: 1;
}
.hero-stat-plus { font-family: var(--ff-heading); font-size: 1.3rem; color: var(--gold); }
.hero-stat-label {
    display: block; font-size: 0.72rem; color: rgba(255,252,245,0.4);
    margin-top: var(--s1); font-weight: 500; letter-spacing: 0.02em;
}
.hero-stat-sep { width: 1px; height: 40px; background: rgba(200,164,78,0.12); }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- Shared Buttons ---- */
.btn-gold {
    display: inline-flex; align-items: center; gap: var(--s2);
    padding: 0.9em 2em; font-size: 0.95rem; font-weight: 600;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--dark); border-radius: var(--r-full);
    transition: all var(--dur) var(--ease);
    box-shadow: 0 4px 20px rgba(200,164,78,0.3);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200,164,78,0.45);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.btn-gold svg { transition: transform 0.2s var(--ease); }
.btn-gold:hover svg { transform: translateX(3px); }

.btn-sm { font-size: 0.88rem; padding: 0.7em 1.5em; }

.btn-outline-light {
    display: inline-flex; align-items: center; gap: var(--s2);
    padding: 0.9em 2em; font-size: 0.95rem; font-weight: 500;
    border: 1.5px solid rgba(200,164,78,0.4); color: var(--gold-light);
    border-radius: var(--r-full); transition: all var(--dur) var(--ease);
}
.btn-outline-light:hover {
    border-color: var(--gold-light); background: rgba(200,164,78,0.08);
    transform: translateY(-2px);
}

.btn-white {
    display: inline-flex; align-items: center; gap: var(--s2);
    padding: 0.9em 2.2em; font-size: 0.95rem; font-weight: 600;
    background: var(--white); color: var(--dark); border-radius: var(--r-full);
    transition: all var(--dur) var(--ease);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }

.btn-outline-gold {
    display: inline-flex; align-items: center; gap: var(--s2);
    padding: 0.9em 2em; font-size: 0.95rem; font-weight: 500;
    border: 1.5px solid var(--gold); color: var(--gold-light);
    border-radius: var(--r-full); transition: all var(--dur) var(--ease);
}
.btn-outline-gold:hover { background: rgba(200,164,78,0.1); transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }







/* =========================================================
   SECTION LABEL / HEADER (Shared)
   ========================================================= */
.section-label {
    display: flex; align-items: center; gap: var(--s4); margin-bottom: var(--s6);
}
.section-label span:not(.label-line) {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold);
}
.label-line { width: 32px; height: 1.5px; background: var(--gold); border-radius: 1px; }
.center-label { justify-content: center; }

.section-header { margin-bottom: var(--s16); }
.section-header.center { text-align: center; max-width: 660px; margin-left: auto; margin-right: auto; }

.section-heading {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 700; color: var(--brown-text);
    margin-bottom: var(--s4);
}
.section-heading em { color: var(--gold); font-style: italic; }

.section-subtext { font-size: 1.05rem; color: var(--brown-sec); line-height: 1.7; }

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding: var(--s32) 0; background: var(--cream); }
.about-layout {
    display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--s20); align-items: center;
}
.about-left { display: flex; justify-content: center; }

/* About Image Collage */
.about-collage {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--s4);
    width: 100%;
    max-width: 440px;
}
.collage-main {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 380px;
    border: 1px solid rgba(200,164,78,0.15);
    box-shadow: var(--sh-lg);
}
.collage-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--dur) var(--ease);
}
.collage-secondary {
    display: flex;
    flex-direction: column;
    gap: var(--s4);
    height: 380px;
}
.collage-sec-box {
    flex: 1;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid rgba(200,164,78,0.15);
    box-shadow: var(--sh-md);
}
.collage-img-sec {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--dur) var(--ease);
}
.about-collage img:hover {
    transform: scale(1.05);
}
/* Floating Experience Badge */
.collage-badge {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-warm) 100%);
    border: 1px solid var(--gold);
    border-radius: var(--r-md);
    padding: var(--s3) var(--s5);
    box-shadow: var(--sh-gold);
    text-align: center;
    z-index: 5;
    animation: floatBadge 4s ease-in-out infinite;
}
.badge-num {
    display: block;
    font-family: var(--ff-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}
.badge-lbl {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,252,245,0.7);
    margin-top: 2px;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.about-right .section-label { margin-bottom: var(--s4); }
.about-title {
    font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: var(--s8);
}
.about-title em { color: var(--gold); font-style: italic; }
.about-lead {
    font-size: 1.05rem; color: var(--brown-sec); line-height: 1.85; margin-bottom: var(--s4);
}
.about-lead strong { color: var(--gold-dark); font-weight: 600; }
.about-body { font-size: 0.95rem; color: var(--brown-muted); line-height: 1.8; margin-bottom: var(--s10); }

.about-features { display: flex; flex-direction: column; gap: var(--s5); }
.about-feature {
    display: flex; align-items: flex-start; gap: var(--s5);
    padding: var(--s5) var(--s6); border-radius: var(--r-md);
    background: var(--gold-ghost); border: 1px solid var(--border-light);
    transition: all var(--dur) var(--ease);
}
.about-feature:hover { border-color: var(--gold-subtle); box-shadow: var(--sh-sm); transform: translateX(4px); }
.af-icon {
    width: 40px; height: 40px; flex-shrink: 0; color: var(--gold);
    background: var(--gold-subtle); border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
}
.af-icon svg { width: 22px; height: 22px; }
.about-feature strong { display: block; font-size: 0.9rem; font-family: var(--ff-body); font-weight: 600; }
.about-feature p { font-size: 0.8rem; color: var(--brown-muted); line-height: 1.5; margin-top: 2px; }

/* =========================================================
   SERVICES
   ========================================================= */
.services {
    padding: var(--s32) 0; position: relative;
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
}
.services-bg-decor {
    position: absolute; top: 0; left: 0; right: 0; height: 400px;
    background:
        radial-gradient(ellipse 50% 80% at 80% 0%, rgba(200,164,78,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 20% 10%, rgba(107,77,138,0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Service Spotlight (featured) */
.service-spotlight {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--s12);
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-warm) 50%, #2D2316 100%);
    border-radius: var(--r-xl); padding: var(--s16);
    margin-bottom: var(--s12);
    position: relative; overflow: hidden;
    border: 1px solid rgba(200,164,78,0.15);
}
.service-spotlight::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--accent-purple), var(--gold));
}
.spotlight-badge {
    display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--dark); background: var(--gold);
    padding: 0.35em 1em; border-radius: var(--r-full); margin-bottom: var(--s6);
}
.spotlight-content h3 {
    font-size: 2rem; color: var(--cream); margin-bottom: var(--s4);
}
.spotlight-content > p {
    font-size: 0.95rem; color: rgba(255,252,245,0.6); line-height: 1.8;
    margin-bottom: var(--s8);
}
.spotlight-content > p strong { color: var(--gold-light); font-weight: 500; }

.spotlight-list {
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3) var(--s8);
    margin-bottom: var(--s10);
}
.spotlight-list li {
    font-size: 0.88rem; color: rgba(255,252,245,0.55); display: flex; align-items: center; gap: var(--s2);
}
.sl-icon { color: var(--gold); font-size: 0.7rem; }

.spotlight-visual {
    display: flex; align-items: center; justify-content: center;
}
.service-image-wrap {
    width: 100%;
    max-width: 320px;
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid rgba(200, 164, 78, 0.25);
    box-shadow: var(--sh-lg);
}
.service-chart-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.1 / 1;
    object-fit: cover;
    display: block;
    background: radial-gradient(circle at center, rgba(200, 164, 78, 0.15), rgba(42, 31, 15, 0.95)), #2a1f0f;
}

/* Service Cards Grid */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s8);
}
.srv-card {
    background: var(--white); border: 1px solid var(--border-light);
    border-radius: var(--r-lg); padding: var(--s10); position: relative;
    transition: all var(--dur) var(--ease); overflow: hidden;
}
.srv-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease);
}
.srv-card:hover {
    transform: translateY(-6px); box-shadow: var(--sh-lg);
    border-color: var(--gold-subtle);
}
.srv-card:hover::after { transform: scaleX(1); }

.srv-icon-wrap { position: relative; margin-bottom: var(--s6); display: inline-block; }
.srv-icon-glow {
    position: absolute; inset: -8px; border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    opacity: 0; transition: opacity var(--dur) var(--ease);
}
.srv-card:hover .srv-icon-glow { opacity: 1; }
.srv-icon {
    width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
    background: var(--gold-ghost); border-radius: var(--r-md);
    position: relative;
    border: 1px solid var(--border-light);
    color: var(--gold);
    transition: all var(--dur) var(--ease);
}
.srv-icon svg {
    width: 24px; height: 24px;
    transition: transform var(--dur) var(--ease);
}
.srv-card:hover .srv-icon { 
    background: var(--gold-subtle); 
    border-color: var(--gold); 
    color: var(--gold-dark);
}
.srv-card:hover .srv-icon svg {
    transform: scale(1.1);
}

.srv-card h3 {
    font-size: 1.2rem; font-weight: 700; margin-bottom: var(--s3); color: var(--brown-text);
}
.srv-card p {
    font-size: 0.88rem; color: var(--brown-sec); line-height: 1.75; margin-bottom: var(--s6);
}
.srv-link {
    display: inline-flex; align-items: center; gap: var(--s2);
    font-size: 0.85rem; font-weight: 600; color: var(--gold-dark);
    transition: all 0.2s var(--ease);
}
.srv-link span { transition: transform 0.2s var(--ease); display: inline-block; }
.srv-link:hover { color: var(--gold); }
.srv-link:hover span { transform: translateX(4px); }

/* =========================================================
   PROCESS
   ========================================================= */
.process { padding: var(--s32) 0; background: var(--cream); }
.process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s8);
    position: relative;
}
.process-line {
    position: absolute; top: 38px; left: 12%; right: 12%;
    height: 2px; background: var(--border);
    background-image: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 16px);
    z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--dark); font-family: var(--ff-heading); font-size: 1.3rem; font-weight: 700;
    margin-bottom: var(--s6); box-shadow: var(--sh-gold);
}
.step-content h3 { font-size: 1.1rem; margin-bottom: var(--s2); }
.step-content p { font-size: 0.85rem; color: var(--brown-muted); line-height: 1.6; }

/* =========================================================
   PACKAGES
   ========================================================= */
.packages { padding: var(--s32) 0; background: var(--cream-warm); }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s8); align-items: start; }

.pkg-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
    padding: var(--s12) var(--s10); text-align: center; position: relative;
    transition: all var(--dur) var(--ease);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

.pkg-featured {
    background: linear-gradient(165deg, var(--dark) 0%, var(--dark-warm) 100%);
    border-color: rgba(200,164,78,0.3);
    transform: scale(1.04);
    box-shadow: var(--sh-xl), 0 0 60px rgba(200,164,78,0.1);
}
.pkg-featured:hover { transform: scale(1.04) translateY(-6px); }
.pkg-featured .pkg-name { color: var(--gold-light); }
.pkg-featured .pkg-price { color: var(--cream); }
.pkg-featured .pkg-duration { color: rgba(255,252,245,0.5); }
.pkg-featured .pkg-features li { color: rgba(255,252,245,0.7); border-color: rgba(255,252,245,0.06); }
.pkg-featured .pkg-features .excluded { color: rgba(255,252,245,0.25); }

.pkg-popular {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--dark); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4em 1.4em;
    border-radius: var(--r-full);
}

.pkg-header { margin-bottom: var(--s8); }
.pkg-name {
    display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold); margin-bottom: var(--s2);
}
.pkg-price {
    font-family: var(--ff-heading); font-size: 3rem; font-weight: 800;
    color: var(--brown-text); line-height: 1;
}
.pkg-duration { display: block; font-size: 0.82rem; color: var(--brown-muted); margin-top: var(--s2); }

.pkg-features {
    text-align: left; margin-bottom: var(--s10);
}
.pkg-features li {
    font-size: 0.88rem; color: var(--brown-sec); padding: var(--s3) 0;
    border-bottom: 1px solid var(--border-light);
    display: flex; align-items: center; gap: var(--s3);
}
.pkg-features li::before { font-size: 0.9rem; flex-shrink: 0; }
.pkg-features .included::before { content: '✓'; color: var(--green); font-weight: 700; }
.pkg-features .excluded::before { content: '—'; color: var(--brown-muted); }
.pkg-features .excluded { color: var(--brown-muted); opacity: 0.5; }

.pkg-btn {
    display: block; width: 100%; padding: 0.85em; font-size: 0.92rem; font-weight: 600;
    border-radius: var(--r-full); text-align: center;
    border: 1.5px solid var(--gold); color: var(--gold-dark);
    transition: all var(--dur) var(--ease);
}
.pkg-btn:hover { background: var(--gold-ghost); transform: translateY(-2px); }

.pkg-btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--dark); border: none;
}
.pkg-btn-gold:hover { box-shadow: var(--sh-gold); background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { padding: var(--s32) 0; background: var(--cream); }
.testi-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--s8);
}
.testi-card {
    background: var(--white); border: 1px solid var(--border-light); border-radius: var(--r-xl);
    padding: var(--s10); position: relative; transition: all var(--dur) var(--ease);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.testi-large { grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: center; }

.testi-quote {
    font-family: var(--ff-heading); font-size: 4rem; line-height: 1; color: var(--gold-subtle);
    margin-bottom: calc(-1 * var(--s4));
}
.testi-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: var(--s4); }
.testi-text {
    font-size: 0.95rem; color: var(--brown-sec); line-height: 1.85; font-style: italic;
    margin-bottom: var(--s8);
}
.testi-large .testi-text { font-size: 1.05rem; }

.testi-author {
    display: flex; align-items: center; gap: var(--s4);
    padding-top: var(--s6); border-top: 1px solid var(--border-light);
}
.testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-ghost), var(--gold-subtle));
    color: var(--gold-dark); display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; font-weight: 700; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; }
.testi-author span { display: block; font-size: 0.78rem; color: var(--brown-muted); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: var(--s32) 0; background: var(--cream-warm); }
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--s20); align-items: start; }
.faq-left .section-heading { margin-bottom: var(--s6); }
.faq-desc { font-size: 0.95rem; color: var(--brown-sec); line-height: 1.8; margin-bottom: var(--s8); }

.faq-item {
    border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: var(--s4);
    background: var(--white); overflow: hidden; transition: all var(--dur) var(--ease);
}
.faq-item.active { border-color: var(--gold); box-shadow: var(--sh-sm); }

.faq-trigger {
    display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
    width: 100%; padding: var(--s6) var(--s8); font-size: 0.95rem; font-weight: 600;
    color: var(--brown-text); text-align: left; transition: color 0.2s var(--ease);
}
.faq-trigger:hover { color: var(--gold-dark); }
.faq-chevron { flex-shrink: 0; color: var(--gold); transition: transform var(--dur) var(--ease); }
.faq-item.active .faq-chevron { transform: rotate(180deg); }

.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    padding: 0 var(--s8);
}
.faq-item.active .faq-answer {
    max-height: 300px; padding: 0 var(--s8) var(--s6);
}
.faq-answer p {
    font-size: 0.9rem; color: var(--brown-sec); line-height: 1.8;
}
.faq-answer strong { color: var(--brown-text); }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
    padding: var(--s24) 0; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, #2D1E0D 50%, #1F1508 100%);
}
.cta-bg-pattern {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
    background-size: 32px 32px;
}
.cta-inner {
    position: relative; z-index: 1; display: flex; align-items: center;
    justify-content: space-between; gap: var(--s12);
}
.cta-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--cream); margin-bottom: var(--s4);
}
.cta-content p { font-size: 1rem; color: rgba(255,252,245,0.5); max-width: 500px; }
.cta-actions { display: flex; align-items: center; gap: var(--s4); flex-shrink: 0; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { padding: var(--s32) 0; background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: var(--s20); align-items: start; }
.contact-info .section-heading { margin-bottom: var(--s4); }
.contact-desc { font-size: 1rem; color: var(--brown-sec); line-height: 1.8; margin-bottom: var(--s10); }

.contact-cards { display: flex; flex-direction: column; gap: var(--s5); }
.contact-card {
    display: flex; align-items: flex-start; gap: var(--s5);
    padding: var(--s5) var(--s6); border-radius: var(--r-md);
    background: var(--gold-ghost); border: 1px solid var(--border-light);
    transition: all var(--dur) var(--ease);
}
.contact-card:hover { border-color: var(--gold-subtle); transform: translateX(4px); }
.cc-icon {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--r-sm);
    background: var(--gold-subtle); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
}
.contact-card strong { display: block; font-size: 0.9rem; }
.contact-card p { font-size: 0.82rem; color: var(--brown-muted); margin-top: 2px; }

.contact-form-box {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
    padding: var(--s12); box-shadow: var(--sh-lg);
    position: relative; overflow: hidden;
}
.contact-form-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--accent-purple), var(--gold));
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: var(--s2); }
.form-subtitle { font-size: 0.88rem; color: var(--brown-muted); margin-bottom: var(--s8); }

.form-group { margin-bottom: var(--s5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); }
.form-group label {
    display: block; font-size: 0.78rem; font-weight: 600; color: var(--brown-text);
    margin-bottom: var(--s2); letter-spacing: 0.03em;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.8em 1em; font-family: var(--ff-body); font-size: 0.9rem;
    color: var(--brown-text); background: var(--gold-ghost);
    border: 1.5px solid var(--border); border-radius: var(--r-sm); outline: none;
    transition: all 0.2s var(--ease);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--brown-muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,164,78,0.1);
    background: var(--white);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A89478' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1em center; padding-right: 2.5em;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.contact-form .btn-gold { margin-top: var(--s4); font-size: 1rem; padding: 1em; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--dark); color: rgba(255,252,245,0.6); padding: var(--s20) 0 var(--s8); }
.footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--s12);
    padding-bottom: var(--s12); margin-bottom: var(--s8);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { margin-bottom: var(--s6); }
.footer-logo .logo-symbol { color: var(--gold); }
.footer-logo .logo-name { color: var(--cream); }
.footer-logo .logo-tagline { color: rgba(255,252,245,0.4); }
.footer-desc { font-size: 0.85rem; line-height: 1.7; opacity: 0.5; }

.footer-col h4 {
    font-family: var(--ff-body); font-size: 0.78rem; font-weight: 700;
    color: var(--cream); text-transform: uppercase; letter-spacing: 0.12em;
    margin-bottom: var(--s5);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--s2); }
.footer-col a { font-size: 0.85rem; opacity: 0.5; transition: all 0.2s var(--ease); }
.footer-col a:hover { opacity: 1; color: var(--gold-light); }
.footer-addr { font-size: 0.85rem; opacity: 0.5; line-height: 1.6; margin-bottom: var(--s3); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.78rem; opacity: 0.3; }
.footer-sanskrit {
    font-family: var(--ff-heading); font-size: 0.88rem !important;
    color: var(--gold) !important; opacity: 0.5 !important; letter-spacing: 0.08em;
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.whatsapp-float {
    position: fixed; bottom: var(--s8); right: var(--s8); z-index: 900;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; color: white;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: all var(--dur) var(--ease);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }

.wa-tooltip {
    position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
    background: var(--dark); color: var(--cream); font-size: 0.78rem; font-weight: 500;
    padding: 0.5em 1em; border-radius: var(--r-sm); white-space: nowrap;
    opacity: 0; pointer-events: none; transition: opacity 0.2s var(--ease);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
    position: fixed; bottom: var(--s8); left: var(--s8); z-index: 900;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--white); color: var(--gold-dark);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--sh-md); border: 1px solid var(--border);
    opacity: 0; transform: translateY(20px); pointer-events: none;
    transition: all var(--dur) var(--ease);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal-el {
    opacity: 0; transform: translateY(36px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-el.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   GALLERY (MOVING)
   ========================================================= */
.gallery-section {
    padding: var(--s20) 0;
    background: var(--cream);
    overflow: hidden;
}
.gallery-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: var(--s6) 0;
}
/* Subtle edge fades on desktop */
.gallery-marquee-container::before,
.gallery-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.gallery-marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--cream) 0%, transparent 100%);
}
.gallery-marquee-container::after {
    right: 0;
    background: linear-gradient(-90deg, var(--cream) 0%, transparent 100%);
}

.gallery-marquee-track {
    display: flex;
    width: max-content;
    animation: galleryMarquee 35s linear infinite;
}
.gallery-marquee-track:hover {
    animation-play-state: paused;
}
.gallery-marquee-group {
    display: flex;
    gap: var(--s6);
    padding-right: var(--s6);
}
.gallery-img-wrap {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--sh-sm);
    width: 280px;
    height: 210px;
    background: radial-gradient(circle at center, #ffffff 0%, var(--cream-warm) 100%);
    transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.gallery-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 20px rgba(26,18,7,0.08);
    pointer-events: none;
}
.gallery-img-wrap:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--gold);
    box-shadow: var(--sh-md), 0 0 15px rgba(200,164,78,0.15);
}
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes galleryMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================================
   AWARDS & ACCREDITATIONS
   ========================================================= */
.awards-section {
    padding: var(--s20) 0;
    background: var(--cream-warm);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}
.awards-carousel-wrapper {
    position: relative;
    margin-top: var(--s10);
    padding: 0 var(--s8);
}
.awards-carousel {
    display: flex;
    gap: var(--s8);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: var(--s4) var(--s2) var(--s8);
    margin: 0 calc(-1 * var(--s8));
    scroll-padding: 0 var(--s8);
}
.awards-carousel::-webkit-scrollbar {
    display: none;
}
.award-card-item {
    flex: 0 0 calc((100% - 2 * var(--s8)) / 3);
    scroll-snap-align: start;
    display: flex;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.award-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-xl);
    padding: var(--s4);
    display: flex;
    flex-direction: column;
    width: 100%;
    box-shadow: var(--sh-sm);
    transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
}
.award-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-subtle);
    box-shadow: var(--sh-md);
}
.award-img-wrap {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: #ffffff;
    cursor: zoom-in;
    margin-bottom: 0;
}
.award-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--white);
    display: block;
    transition: transform var(--dur) var(--ease);
}
.award-img-hover {
    position: absolute;
    inset: 0;
    background: rgba(26, 18, 7, 0.4);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
    pointer-events: none;
}
.award-img-hover svg {
    width: 32px;
    height: 32px;
    transform: scale(0.8);
    transition: transform var(--dur) var(--ease);
}
.award-img-wrap:hover .award-img-hover {
    opacity: 1;
}
.award-img-wrap:hover .award-img-hover svg {
    transform: scale(1);
}
.award-img-wrap:hover .award-img {
    transform: scale(1.05);
}
.award-info h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: var(--s3);
    font-weight: 700;
    font-family: var(--ff-heading);
}
.award-info p {
    font-size: 0.92rem;
    color: var(--brown-sec);
    line-height: 1.6;
}

/* Arrow Navigation Buttons */
.carousel-nav-btn {
    position: absolute;
    top: calc(50% - var(--s4));
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 252, 245, 0.95);
    border: 1px solid var(--border);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--sh-md);
    transition: all var(--dur) var(--ease);
    backdrop-filter: blur(8px);
}
.carousel-nav-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: var(--sh-gold);
}
.carousel-nav-btn.prev {
    left: 0;
}
.carousel-nav-btn.next {
    right: 0;
}
.carousel-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Pagination Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--s2);
    margin-top: var(--s4);
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    padding: 0;
    border: none;
}
.carousel-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* Responsive Overrides (tablet & mobile viewports) */
@media (max-width: 1024px) {
    .awards-carousel-wrapper {
        padding: 0;
    }
    .carousel-nav-btn {
        display: none;
    }
    .awards-carousel {
        margin: 0;
        scroll-padding: 0;
    }
    .award-card-item {
        flex: 0 0 calc((100% - var(--s8)) / 2);
    }
}
@media (max-width: 768px) {
    .award-card-item {
        flex: 0 0 88%;
        scroll-snap-align: center;
    }
    .awards-carousel {
        scroll-padding: 0 6%;
    }
}

/* Scroll-driven animations fallback & progressive enhancement */
@supports ((animation-timeline: view()) and (animation-range: entry)) {
    .award-card-item {
        animation: awardSlideProgress auto linear both;
        animation-timeline: view(inline);
        animation-range: cover 0% cover 100%;
    }
    @keyframes awardSlideProgress {
        0% {
            opacity: 0.7;
            transform: scale(0.92);
        }
        25%, 75% {
            opacity: 1;
            transform: scale(1);
        }
        100% {
            opacity: 0.7;
            transform: scale(0.92);
        }
    }
}

/* =========================================================
   IMAGE LIGHTBOX
   ========================================================= */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 18, 7, 0.95);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
}
.lightbox-modal.active {
    display: flex;
    opacity: 1;
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 85%;
    max-height: 80vh;
    border-radius: var(--r-md);
    border: 2px solid var(--gold);
    box-shadow: var(--sh-xl);
    transform: scale(0.95);
    transition: transform var(--dur) var(--ease);
}
.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: var(--cream);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color var(--dur);
    user-select: none;
}
.lightbox-close:hover {
    color: var(--gold);
}
.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--gold-light);
    font-family: var(--ff-heading);
    font-size: 1.2rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; min-height: auto; }
    .hero-content { max-width: 100%; }
    .hero-tag { margin-left: auto; margin-right: auto; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-visual { margin-top: var(--s8); }
    .hero-image-wrap { max-width: 280px; }

    .about-layout { grid-template-columns: 1fr; gap: var(--s12); }
    .about-left { order: -1; }
    .about-collage { max-width: 340px; }

    .service-spotlight { grid-template-columns: 1fr; }
    .spotlight-visual { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .process-steps { grid-template-columns: repeat(2, 1fr); gap: var(--s8); }
    .process-line { display: none; }

    .testi-grid { grid-template-columns: 1fr; }
    .testi-large { grid-row: auto; }

    .faq-layout { grid-template-columns: 1fr; gap: var(--s10); }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }

    .contact-layout { grid-template-columns: 1fr; gap: var(--s10); }

    .footer-top { grid-template-columns: 1fr 1fr; gap: var(--s10); }

    .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pkg-featured { transform: none; }
    .pkg-featured:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }
    .nav-links {
        display: none;
        width: 100%;
        order: 3;
        flex-direction: column;
        gap: var(--s4);
        padding-top: var(--s4);
        border-top: 1px solid var(--border-light);
        margin-top: var(--s4);
        background: none;
        backdrop-filter: none;
        position: static;
        inset: auto;
        z-index: auto;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        font-size: 1.05rem;
        padding: var(--s2) 0;
        display: block;
        width: 100%;
    }
    .nav-links a::after {
        display: none;
    }
    .nav-cta-btn { display: none; }
    .nav-toggle { display: flex; }
    
    .hero-container { padding-top: 180px; padding-bottom: var(--s8); min-height: auto; }
    .hero-title { font-size: clamp(2.2rem, 7vw, 3rem); }
    .hero-visual { display: flex; justify-content: center; margin-top: var(--s8); }
    .hero-image-wrap { max-width: 260px; }
    .hero-stats-bar { margin-top: 110px; margin-bottom: var(--s10); }
    .hero-stats-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--s6) var(--s4);
        padding: var(--s6) 0;
    }
    .hero-stat-sep { display: none; }
    .hero-stat { flex: none; text-align: center; }

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

    .process-steps { grid-template-columns: 1fr; }

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

    .footer-top { grid-template-columns: 1fr; gap: var(--s8); }
    .footer-bottom { flex-direction: column; gap: var(--s3); text-align: center; }

    /* Gallery and Awards Mobile Overrides */
    .gallery-section { padding: var(--s12) 0; }
    .gallery-img-wrap { width: 220px; height: 165px; }
    .awards-section { padding: var(--s16) 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 var(--s5); }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas .btn-gold, .hero-ctas .btn-outline-light { width: 100%; justify-content: center; }
    .about-collage { max-width: 100%; grid-template-columns: 1fr; }
    .collage-main { height: 280px; }
    .collage-secondary { flex-direction: row; height: 140px; }
    .collage-badge { padding: var(--s2) var(--s4); bottom: -10px; left: 10px; }
    .badge-num { font-size: 1.6rem; }
    .badge-lbl { font-size: 0.5rem; }
    .contact-form-box { padding: var(--s5); }
    .whatsapp-float { width: 52px; height: 52px; bottom: var(--s5); right: var(--s5); }
    .whatsapp-float svg { width: 26px; height: 26px; }
    .back-to-top { left: var(--s5); bottom: var(--s5); width: 38px; height: 38px; }
}
