/* =====================================================
   BHARATESHWAR — Prophet-Inspired Premium Design
   Cormorant Garamond headings · Jost body
   Emerald Green palette · No black backgrounds
   ===================================================== */

/* ── 0. RESET & TOKENS ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* ─ Palette ─ */
    --green:          #146B4D;
    --green-dark:     #0D5239;
    --green-mid:      #1B8060;
    --green-lite:     #EBF6F1;
    --green-xtra:     #F3FAF7;
    --gold:           #C9A848;
    --gold-lite:      #FBF3DF;
    --cream:          #FDFAF5;
    --white:          #FFFFFF;
    --ink:            #1A2B25;
    --ink-muted:      #4A6259;
    --ink-faint:      #8AA89F;
    --border:         #D8ECE4;

    /* ─ Typography ─ */
    --font-head:  'Cormorant Garamond', Georgia, serif;
    --font-body:  'Jost', system-ui, sans-serif;

    /* ─ Spacing ─ */
    --section-py: 7rem;
    --max-w:      1260px;
    --gap:        2rem;

    /* ─ Motion ─ */
    --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--cream); color: var(--ink); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── 1. CONTAINER / SECTION ───────────────────────── */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 2rem; }
.section { padding-block: var(--section-py); }

/* ── 2. TYPE HELPERS ──────────────────────────────── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.1rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 3.8vw, 3.4rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1.4rem;
}
.section-title em { font-style: italic; color: var(--green); }

.section-lead {
    font-size: 1.1rem;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.section-body {
    font-size: 0.97rem;
    color: var(--ink-muted);
    line-height: 1.9;
    margin-bottom: 2rem;
}
.section-sub-center {
    font-size: 1rem;
    color: var(--ink-muted);
    line-height: 1.8;
    max-width: 620px;
    margin-inline: auto;
    margin-top: 0.75rem;
}
.section-header { text-align: center; margin-bottom: 4rem; }

/* ── 3. BUTTONS ──────────────────────────────────── */
.btn-gold, .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1em 2.4em;
    border-radius: 0;
    border: none;
    cursor: pointer;
    transition: background 0.28s var(--ease), transform 0.22s var(--spring), box-shadow 0.28s var(--ease);
    position: relative;
    overflow: hidden;
}
.btn-gold::after, .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.18);
    opacity: 0;
    transition: opacity 0.2s;
}
.btn-gold:hover::after, .btn-primary:hover::after { opacity: 1; }
.btn-gold:hover, .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,168,72,0.38);
}

.btn-primary {
    background: var(--green);
    color: #fff;
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(20,107,77,0.38); }

.btn-ghost, a.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1em 2.4em;
    border: 1.5px solid var(--green);
    cursor: pointer;
    transition: background 0.28s var(--ease), border-color 0.28s, color 0.28s, transform 0.22s var(--spring);
}
.btn-ghost:hover { background: var(--green); color: #fff; border-color: var(--green); transform: translateY(-2px); }

/* Ghost button on dark (hero) backgrounds */
.hero .btn-ghost, .hero-ghost {
    color: #fff;
    border-color: rgba(255,255,255,0.55);
}
.hero .btn-ghost:hover, .hero-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
}


/* ── 4. TOPBAR ────────────────────────────────────── */
/* Topbar is hidden — contact info in footer only */
.topbar { display: none !important; }

/* ── 5. NAVBAR ────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;                      /* Topbar removed, always start at 0 */
    left: 0;
    right: 0;
    z-index: 999;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
                box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}
/* Solid white navbar once user scrolls past hero */
.navbar.scrolled {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.nav-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: 2rem;
    height: 130px;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: height 0.4s var(--ease);
}

.navbar.scrolled .nav-inner {
    height: 76px;
}

/* Logo — image version, NO filter applied */
.nav-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.nav-logo-img {
    height: 115px;
    width: auto;
    object-fit: contain;
    display: block;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); /* softer shadow */
    transition: all 0.4s var(--ease);
}
.navbar.scrolled .nav-logo-img {
    height: 60px; /* Standard logo when scrolled */
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}
.nav-logo-img:hover { opacity: 0.85; }

.logo-mark { font-size: 1.4rem; color: var(--gold); line-height: 1; }
.logo-name {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.02em;
}

/* Nav Menu Panel (Desktop default) */
.nav-menu-panel {
    display: flex;
    align-items: center;
    margin-left: auto;
    align-self: flex-start;
    margin-top: 36px;
    transition: margin-top 0.4s var(--ease);
}
.navbar.scrolled .nav-menu-panel {
    align-self: center;
    margin-top: 0;
}
.nav-menu-header, .mobile-nav-footer, .mobile-only-link {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}
/* Nav links — white over hero, dark after scroll */
.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    padding: 0.5em 1em;
    position: relative;
    transition: color 0.22s;
}
.navbar.scrolled .nav-links a { color: var(--ink); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 50%;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--ease), left 0.3s var(--ease);
}
.nav-links a:hover { color: #fff; text-shadow: 0 0 20px rgba(255,255,255,0.4); }
.navbar.scrolled .nav-links a:hover { color: var(--green); text-shadow: none; }
.nav-links a:hover::after { width: 70%; left: 15%; }

.nav-right { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    margin-left: 1rem; 
    align-self: flex-start;
    margin-top: 29px; /* Compensate for button height to align text roughly */
    transition: margin-top 0.4s var(--ease);
}
.navbar.scrolled .nav-right {
    align-self: center;
    margin-top: 0;
}
/* CTA button — gold over hero, green when scrolled */
.nav-btn {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--green);
    color: #fff;
    padding: 0.75em 1.8em;
    transition: background 0.25s, transform 0.22s var(--spring), box-shadow 0.25s, color 0.25s;
    flex-shrink: 0;
    border: none;
}
.nav-btn:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(20,107,77,0.35); }
.navbar.scrolled .nav-btn { background: var(--green); color: #fff; }
.navbar.scrolled .nav-btn:hover { background: var(--green-dark); box-shadow: 0 6px 20px rgba(20,107,77,0.3); }

.h-accent-green { color: var(--green); text-shadow: 0 2px 20px rgba(255,255,255,0.8); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
/* Hamburger — white bars over hero, dark after scroll */
.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: rgba(255,255,255,0.9);
    transition: transform 0.25s var(--ease), opacity 0.25s, background 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--ink); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 6. HERO ──────────────────────────────────────── */
.hero {
    position: relative;
    height: 100svh;        /* exactly one viewport — header overlays this */
    min-height: 600px;     /* floor for very short viewports */
    background: var(--green-dark); /* fallback if video not loaded */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 2rem;       /* horizontal only; vertical centering via flex */
}

/* ── Background video ── */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

/* ── Subtle dark vignette — edges only, video stays bright ── */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        /* Top shadow for navbar legibility */
        linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 35%),
        /* Bottom shadow for text/badge legibility */
        linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 40%);
    z-index: 1;
}

/* Fine noise/texture overlay */
.hero-texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
    z-index: 2;
}

/* Large decorative rotated text */
.hero:before {
    content: 'BHARATESHWAR';
    position: absolute;
    bottom: -2rem;
    left: -3rem;
    font-family: var(--font-head);
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 700;
    color: rgba(255,255,255,0.04);
    letter-spacing: 0.05em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 860px;
    /* No top padding needed — topbar removed, navbar overlays hero */
    padding-top: 3rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
}
.eyebrow-line {
    display: inline-block;
    width: 36px; height: 1px;
    background: var(--gold);
    opacity: 0.8;
}

.hero-heading {
    font-family: var(--font-head);
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 600;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 1.8rem;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.h-line { display: block; opacity: 0; transform: translateY(45px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.h-line.vis { opacity: 1; transform: none; }
.h-accent { font-style: italic; color: var(--gold); }

.hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: rgba(255,255,255,0.9);
    line-height: 1.85;
    max-width: 650px;
    margin: 0 auto 2.8rem;
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.9s var(--ease) 0.55s, transform 0.9s var(--ease) 0.55s;
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-sub.vis { opacity: 1; transform: none; }

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.8s var(--ease) 0.8s, transform 0.8s var(--ease) 0.8s;
}
.hero-btns.vis { opacity: 1; transform: none; }

/* Stats badge — bottom-LEFT corner, away from buttons */
.hero-badge {
    position: absolute;
    bottom: 2.5rem;
    left: 3rem;
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1.1rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    z-index: 4;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.9s var(--ease) 1.1s, transform 0.9s var(--ease) 1.1s;
}
.hero-badge.vis { opacity: 1; transform: translateY(0); }

.hb-item { text-align: center; }
.hb-num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: #fff; line-height: 1; }
.hb-suf { font-size: 1.2rem; color: #fff; }
.hb-label { display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 0.25rem; }
.hb-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2.8rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    z-index: 4;
    transition: color 0.2s;
}
.scroll-hint:hover { color: rgba(255,255,255,0.8); }
.scroll-line {
    display: block;
    width: 1.5px;
    height: 52px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── 7. MARQUEE TICKER ────────────────────────────── */
.marquee-section {
    background: var(--green);
    padding: 1.1rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track { display: flex; }
.marquee-inner {
    display: flex;
    align-items: center;
    gap: 2.8rem;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
    flex-shrink: 0;
}
.marquee-inner span {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
}
.marquee-inner .mx { color: var(--gold); font-size: 0.7rem; }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── 8. TWO-COLUMN LAYOUT ─────────────────────────── */
.twoCol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.twoCol-reverse { direction: rtl; }
.twoCol-reverse > * { direction: ltr; }

/* ── 9. ABOUT SECTION ─────────────────────────────── */
.about-section { background: var(--cream); }

.about-img-frame {
    position: relative;
    height: 500px;
}
.img-layer {
    position: absolute;
    border-radius: 0;
}
.img-layer-bg {
    inset: 0;
    background: var(--green-lite);
    border: 1px solid var(--border);
}
.img-layer-card {
    inset: 24px 0 0 24px;
    background: var(--green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}
.about-symbol-large {
    font-size: 5rem;
    color: rgba(255,255,255,0.15);
    line-height: 1;
    animation: symbolSpin 20s linear infinite;
}
@keyframes symbolSpin { to { transform: rotate(360deg); } }
.about-symbol-sub {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}
.about-accent-box {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--gold);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}
.aab-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}
.aab-text {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink);
    letter-spacing: 0.03em;
}

.feature-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.2rem; }
.feature-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.93rem; color: var(--ink-muted); }
.fi-icon { color: var(--green); font-size: 1.1rem; flex-shrink: 0; }

/* ── 10. SERVICES ─────────────────────────────────── */
.services-section { background: var(--green-xtra); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
}

.svc-card {
    position: relative;
    padding: 3rem 2.5rem;
    border-right: 1px solid var(--border);
    overflow: hidden;
    background: var(--white);
    transition: background 0.35s var(--ease);
}
.svc-card:last-child { border-right: none; }
.svc-card:hover { background: var(--green); }

.svc-num {
    display: none; /* Removed as per request to rely on large background watermark instead */
}

.svc-icon-wrap {
    width: 56px; height: 56px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--green);
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.svc-card:hover .svc-icon-wrap { border-color: rgba(255,255,255,0.3); color: #fff; background: rgba(255,255,255,0.08); }

.svc-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700; /* bold */
    -webkit-text-stroke: 0.5px currentColor; /* artificially thicken the letters */
    color: var(--ink);
    margin-bottom: 0.85rem;
    transition: color 0.3s;
}
.svc-card:hover .svc-title { color: #fff; }

.svc-desc {
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.85;
    margin-bottom: 2rem;
    transition: color 0.3s;
}
.svc-card:hover .svc-desc { color: rgba(255,255,255,0.7); }

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    transition: gap 0.25s var(--spring), color 0.3s;
}
.svc-card:hover .svc-link { color: var(--gold); gap: 0.8rem; }

/* Large background number (Watermark style) */
.svc-bg-num {
    position: absolute;
    top: -5px; right: 10px;
    font-family: var(--font-body);
    font-size: 7.5rem;
    font-weight: 700;
    color: rgba(20,107,77,0.06); /* Faint green color */
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s;
}
.svc-card:hover .svc-bg-num { color: rgba(255,255,255,0.05); }

/* ── 11. STRIP DIVIDER ────────────────────────────── */
.strip-divider {
    background: var(--gold-lite);
    border-block: 1px solid #E8D9A8;
    padding: 0.9rem 0;
    overflow: hidden;
    display: flex;
}
.strip-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    white-space: nowrap;
    animation: stripScroll 25s linear infinite;
    width: max-content;
}
.strip-text {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.strip-mark { font-size: 0.8rem; color: var(--gold); }
@keyframes stripScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.page-hero {
    position: relative;
    padding: 10rem 0 5rem;
    background-color: var(--green-dark);
    background-image: 
        radial-gradient(ellipse at 50% -20%, rgba(201, 168, 72, 0.4) 0%, transparent 60%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    background-position: center top, center center, center center;
    background-blend-mode: overlay;
    text-align: center;
    color: #fff;
    overflow: hidden;
    border-bottom: 2px solid var(--gold);
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    pointer-events: none; z-index: 1;
    background: radial-gradient(circle at bottom, var(--green) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.ph-title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gold);
}
.ph-sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 600px; margin-inline: auto; line-height: 1.6; }

/* ── 12. PROCESS SECTION ──────────────────────────── */
.process-section { background: var(--cream); }

.steps-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.step-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.step-row:last-child { border-bottom: none; padding-bottom: 0; }

.step-num-box {
    flex-shrink: 0;
    width: 52px; height: 52px;
    background: var(--green);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    transition: background 0.25s;
}
.step-row:hover .step-num-box { background: var(--gold); color: var(--ink); }

.step-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.4rem;
}
.step-desc { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.8; }

/* Process visual */
.process-visual {
    position: relative;
    width: 420px; height: 420px;
    margin: auto;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pv-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    border: 1px dashed;
}
.pv-ring-1 { width: 380px; height: 380px; border-color: rgba(20,107,77,0.18); animation: pvSpin 30s linear infinite; }
.pv-ring-2 { width: 260px; height: 260px; border-color: rgba(201,168,72,0.22); animation: pvSpin 20s linear infinite reverse; }
@keyframes pvSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.pv-center {
    position: relative;
    z-index: 2;
    width: 140px; height: 140px;
    background: var(--green);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 0.4rem;
}
.pv-icon { font-size: 2.2rem; color: rgba(255,255,255,0.85); }
.pv-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

.pv-marker {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(20,107,77,0.1);
    animation: pvFloat 4s ease-in-out infinite;
}
.pv-marker span { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--green); margin-right: 0.4rem; }
.pv-m-1 { top: 8%; right: -4%; animation-delay: 0s; }
.pv-m-2 { bottom: 30%; left: -10%; animation-delay: -1.5s; }
.pv-m-3 { bottom: 4%; right: 0%; animation-delay: -3s; }
@keyframes pvFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── 13. WHY SECTION ──────────────────────────────── */
.why-section { background: var(--green-lite); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
}
.why-card {
    background: var(--white);
    padding: 2.8rem;
    transition: background 0.3s var(--ease);
}
.why-card:hover { background: var(--green-xtra); }
.why-icon-box {
    width: 52px; height: 52px;
    background: var(--green-lite);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--green);
    margin-bottom: 1.2rem;
    transition: background 0.25s, color 0.25s;
}
.why-card:hover .why-icon-box { background: var(--green); color: #fff; }
.why-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; color: var(--ink); margin-bottom: 0.6rem; }
.why-desc { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.85; }

/* ── 14. TESTIMONIALS ─────────────────────────────── */
.testimonial-section { background: var(--cream); }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2.5rem;
    display: flex; flex-direction: column; gap: 1.5rem;
    transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(20,107,77,0.12); }
.testi-card--featured {
    background: var(--green);
    border-color: var(--green);
}
.testi-card--featured .testi-text,
.testi-card--featured .testi-name,
.testi-card--featured .testi-role { color: #fff; }
.testi-card--featured .testi-quote { color: var(--gold); }

.testi-quote { font-size: 2.5rem; color: var(--green); line-height: 1; }
.testi-text { font-family: var(--font-head); font-size: 1.1rem; font-style: italic; color: var(--ink); line-height: 1.75; flex-grow: 1; }

.testi-author { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.testi-avatar {
    width: 44px; height: 44px;
    background: var(--green-lite);
    color: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}
.testi-card--featured .testi-avatar { background: rgba(255,255,255,0.15); color: #fff; }
.testi-name { display: block; font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--ink); }
.testi-role { display: block; font-size: 0.78rem; color: var(--ink-faint); }
.testi-card--featured .testi-role { color: rgba(255,255,255,0.6); }
.testi-stars { margin-left: auto; color: var(--gold); font-size: 0.78rem; display: flex; gap: 2px; }
.testi-card--featured .testi-stars { color: var(--gold); }

/* ── 15. NUMBERS STRIP ────────────────────────────── */
.numbers-strip {
    background: var(--green);
    padding: 4.5rem 2rem;
}
.nums-grid {
    max-width: var(--max-w);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    text-align: center;
}
.num-item { }
.num-val {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.num-suf { font-size: 2.2rem; color: var(--gold); }
.num-label { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 0.6rem; }
.num-divider { width: 1px; height: 70px; background: rgba(255,255,255,0.15); justify-self: center; }

/* ── 16. PRE-FOOTER CTA ───────────────────────────── */
.pre-footer-cta {
    background: var(--gold-lite);
    border-top: 1px solid #E8D9A8;
    border-bottom: 1px solid #E8D9A8;
    padding: 6rem 2rem;
    text-align: center;
}
.pf-inner { max-width: 720px; margin-inline: auto; }
.pf-tag {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--green); margin-bottom: 1rem;
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.pf-tag::before, .pf-tag::after { content:''; display:inline-block; width:28px; height:1.5px; background:var(--gold); }
.pf-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 1.2rem;
}
.pf-title em { font-style: italic; color: var(--green); }
.pf-sub { font-size: 1rem; color: var(--ink-muted); line-height: 1.8; margin-bottom: 2.5rem; }
.pf-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── 17. FOOTER ───────────────────────────────────── */
.footer { background: #0A2E1E; padding-top: 5rem; }
.footer-body {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1.2rem; }
.footer-logo-img { height: 65px; background: rgba(255, 255, 255, 0.95); padding: 8px 16px; border-radius: 8px; width: auto; object-fit: contain; }
.footer-about { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.85; max-width: 280px; margin-bottom: 1.8rem; }
.footer-socials { display: flex; gap: 0.6rem; }
.footer-socials a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem;
    transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s var(--spring);
}
.footer-socials a:hover { background: #fff; color: var(--green); border-color: #fff; transform: translateY(-3px); }

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links li, .footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.45); transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-contact i { color: #fff; font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
    max-width: var(--max-w); margin-inline: auto;
    padding: 1.6rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.8rem; color: rgba(255,255,255,0.25);
    flex-wrap: wrap; gap: 0.5rem;
}
/* ── 21. SCIENCE OF NUMBERS (NUMEROLOGY) ────────── */
.science-section {
    background: var(--ink);
    color: #fff;
}
.science-section .section-title { color: #fff; }
.science-section .section-eyebrow { color: rgba(255,255,255,0.5); }
.science-section .section-header { text-align: center; max-width: 700px; margin-inline: auto; margin-bottom: 4rem; }

.num-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.num-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.num-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.05); }
.nc-bg {
    position: absolute; right: -20px; top: -30px;
    font-family: var(--font-head);
    font-size: 9rem; line-height: 1; font-weight: 700;
    color: rgba(255,255,255,0.03);
    pointer-events: none; transition: transform 0.5s;
}
.num-card:hover .nc-bg { transform: scale(1.05) rotate(4deg); }
.nc-title { font-family: var(--font-head); font-size: 1.5rem; color: var(--gold); margin-bottom: 1rem; position: relative; z-index: 2; }
.nc-desc { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.7; position: relative; z-index: 2; margin-bottom: 2rem; }
.nc-link { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; transition: color 0.2s; position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 0.4rem; }
.nc-link:hover { color: var(--gold); }

/* ── 22. WISDOM OF STARS (ASTROLOGY) ────────────── */
.astro-section {
    background: #fff;
}
.astro-visual {
    position: relative; padding: 2.5rem;
    display: flex; align-items: center; justify-content: center;
    perspective: 1000px;
}
.astrolabe {
    width: 100%; max-width: 450px; aspect-ratio: 1;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s var(--spring);
}
.astro-visual:hover .astrolabe {
    transform: rotateX(15deg) rotateY(-15deg);
}
.al-base-disc {
    position: absolute; inset: 0; border-radius: 50%;
    background: radial-gradient(circle at center, rgba(20,107,77,0.05), transparent 70%);
}
.al-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(20, 107, 77, 0.15);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.al-ring::before {
    content: ''; position: absolute; inset: 6px;
    border: 1px dashed rgba(220, 168, 88, 0.4);
    border-radius: 50%;
}
.al-ring-1 { width: 100%; height: 100%; animation: spinRight 40s linear infinite; }
.al-ring-2 { width: 68%; height: 68%; animation: spinLeft 30s linear infinite; }
.al-ring-3 { width: 42%; height: 42%; animation: spinRight 20s linear infinite; }

@keyframes spinRight { 100% { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spinLeft { 100% { transform: translate(-50%, -50%) rotate(-360deg); } }

.al-planet {
    position: absolute; top: -5px; left: 50%;
    width: 12px; height: 12px; background: var(--gold);
    border-radius: 50%; box-shadow: 0 0 12px var(--gold);
    transform: translateX(-50%);
}
.al-p-2 { background: var(--green); box-shadow: 0 0 12px var(--green); width: 16px; height: 16px; top: -8px; }
.al-p-3 { background: var(--green-lite); box-shadow: 0 0 10px var(--green-lite); top: -4px; width: 8px; height: 8px; }

.al-center {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 70px; height: 70px; background: var(--green);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 40px rgba(20, 107, 77, 0.3); z-index: 5;
}
.al-center i { color: var(--gold); font-size: 2rem; }
.al-sun-glow {
    position: absolute; inset: -30px;
    background: radial-gradient(circle, rgba(220, 168, 88, 0.25), transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite alternate;
}
@keyframes pulseGlow { 100% { transform: scale(1.2); opacity: 0.6; } }

.al-axis {
    position: absolute; background: rgba(20, 107, 77, 0.08);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.al-axis-x { width: 100%; height: 1px; }
.al-axis-y { height: 100%; width: 1px; }
.astro-list { margin-top: 2.5rem; }
.astro-list li {
    display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem;
    padding-bottom: 1.5rem; border-bottom: 1px solid var(--border);
}
.astro-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.al-icon { width: 44px; height: 44px; background: var(--green-lite); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--green); flex-shrink: 0; font-size: 1.2rem; }
.al-content h4 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.al-content p { font-size: 0.95rem; color: var(--ink-muted); line-height: 1.6; }

/* ── 23. INLINE CONTACT SECTION ─────────────────── */
.inline-contact-section {
    background: var(--cream);
}
.inline-contact-wrapper {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    background: #fff; border: 1px solid var(--border); border-radius: 16px;
    overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}
.ic-visual {
    background: var(--green); padding: 4rem 3rem; color: #fff;
    display: flex; flex-direction: column; justify-content: center; position: relative;
    overflow: hidden;
}
.ic-visual::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 1;
}
.ic-content { position: relative; z-index: 2; }
.ic-title { font-family: var(--font-head); font-size: 2.2rem; margin-bottom: 1rem; color: #fff; line-height: 1.2; }
.ic-desc { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; line-height: 1.6; }
.ic-details li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; font-size: 1rem; font-weight: 500; }
.ic-details i { color: #fff; font-size: 1.2rem; }
.ic-form-wrap { padding: 4rem 3rem; }
.ic-form .form-group { margin-bottom: 1.5rem; }
.ic-form label { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink); margin-bottom: 0.5rem; }
.ic-form input, .ic-form select {
    width: 100%; border: 1px solid var(--border); background: #fff;
    padding: 0.9rem 1.2rem; border-radius: 6px; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.ic-form input:focus, .ic-form select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(20,107,77,0.1); }
.ic-form .btn-primary { width: 100%; justify-content: center; margin-top: 1rem; padding: 1rem; font-size: 0.9rem; }

/* ── 18. REVEAL ANIMATIONS ────────────────────────── */
[data-reveal] {
    opacity: 0;
    will-change: opacity, transform;
}
[data-reveal="fadeUp"]    { transform: translateY(42px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
[data-reveal="slideRight"]{ transform: translateX(-56px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
[data-reveal="slideLeft"] { transform: translateX(56px);  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
[data-reveal].in-view     { opacity: 1; transform: none; }

/* ── 19. RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: 1fr; }
    .svc-card { border-right: none; border-bottom: 1px solid var(--border); }
    .svc-card:last-child { border-bottom: none; }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid .testi-card:last-child { grid-column: 1 / -1; }
    .footer-body { grid-template-columns: 1fr 1fr; }
    .nums-grid { grid-template-columns: 1fr 1fr; }
    .num-divider { display: none; }
    .process-visual { width: 320px; height: 320px; }
    .pv-ring-1 { width: 280px; height: 280px; }
    .pv-ring-2 { width: 200px; height: 200px; }
    .num-grid { grid-template-columns: 1fr 1fr; }
    .astro-container { gap: 3rem; }
}

@media (max-width: 900px) {
    :root { --section-py: 5rem; }
    .twoCol { grid-template-columns: 1fr; gap: 3rem; }
    .twoCol-reverse { direction: ltr; }
    .about-img-frame { height: 380px; }
    .process-visual { margin-inline: auto; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .svc-card { border-right: none; border-bottom: 1px solid var(--border); }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .num-grid { grid-template-columns: 1fr; }
    .astro-container { grid-template-columns: 1fr; gap: 3rem; }
    .inline-contact-wrapper { grid-template-columns: 1fr; gap: 0; }
    .ic-visual, .ic-form-wrap { padding: 3rem 2rem; }
    .hero-badge { display: none; }
    .scroll-hint { display: none; }
    .hero-content { padding-top: 5rem; }
}

@media (max-width: 768px) {
    .topbar { display: none; }
    .navbar { top: 0; }
    .nav-inner { justify-content: space-between; }
    .nav-logo { order: -1; }
    .nav-right { order: 1; }
    
    .nav-menu-panel {
        position: fixed;
        top: 0; right: -100%;
        width: 320px;
        max-width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 0;
        z-index: 1000;
        transition: right 0.4s var(--ease);
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        display: flex;
    }
    .nav-menu-panel.open { right: 0; }
    
    .nav-menu-header {
        display: flex; align-items: center; justify-content: space-between;
        padding: 1.5rem;
        border-bottom: 1px solid var(--border);
    }
    .mobile-menu-logo { height: 40px; width: auto; object-fit: contain; }
    .close-menu { background: none; border: none; font-size: 1.5rem; color: var(--ink); cursor: pointer; }
    
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        margin: 0;
        overflow-y: auto;
    }
    .nav-links a, .navbar.scrolled .nav-links a { 
        color: var(--ink); font-size: 1.15rem; padding: 0; display: inline-block; 
        text-shadow: none; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em;
    }
    .nav-links a::after { display: none; }
    .nav-links a:hover, .navbar.scrolled .nav-links a:hover { color: var(--green); text-shadow: none; }
    .mobile-only-link { display: block; margin-top: 1rem; width: 100%; }
    .mobile-only-link a { color: var(--gold) !important; font-weight: 600; display: block; }
    
    .mobile-nav-footer {
        display: block;
        margin-top: auto;
        padding: 2rem 1.5rem;
        background: var(--green-xtra);
        border-top: 1px solid var(--border);
    }
    .mnf-contact p { font-size: 0.9rem; color: var(--ink); margin-bottom: 0.8rem; display: flex; gap: 0.8rem; align-items: center; }
    .mnf-contact i { color: var(--green); font-size: 1.1rem; }
    .mnf-socials { display: flex; gap: 1.2rem; margin-top: 1.5rem; }
    .mnf-socials a { color: var(--ink); font-size: 1.3rem; padding:0; display:block; transition: color 0.2s; }
    .mnf-socials a:hover { color: var(--green); }
    
    .hamburger { display: flex; z-index: 901; }
    .nav-btn { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .testi-grid .testi-card:last-child { grid-column: auto; }
    .footer-body { grid-template-columns: 1fr; }
    .nums-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .hero-heading { font-size: 3rem; }
    .hero-content { padding-top: 4rem; }
    
    /* Make initial mobile logo larger, scale down on scroll */
    .nav-logo-img { height: 75px; padding: 6px 12px; }
    .navbar.scrolled .nav-logo-img { height: 38px; padding: 0; }
    

}

@media (max-width: 480px) {
    .hero-heading { font-size: 2.4rem; }
    .hero-sub br { display: none; }
    .hero-btns { flex-direction: column; align-items: stretch; text-align: center; }
    .hero-btns .btn-gold, .hero-btns .btn-ghost { justify-content: center; }
    .pf-actions { flex-direction: column; align-items: stretch; }
    .pf-actions .btn-gold, .pf-actions .btn-ghost { text-align: center; justify-content: center; }
    .nums-grid { grid-template-columns: 1fr; }
    .about-accent-box { display: none; }
    .hero-content { padding-top: 3.5rem; }
    .hero-badge { bottom: 1.5rem; left: 1.5rem; padding: 0.8rem 1.5rem; gap: 1.5rem; }
    .hb-num { font-size: 1.5rem; }
    .hb-suf { font-size: 1rem; }
}

/* ── 20. BOOKING MODAL (CENTERED) ────────────────── */
.booking-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1001;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
    display: flex; align-items: center; justify-content: center;
}
.booking-overlay.open { opacity: 1; pointer-events: all; }

.booking-modal {
    background: #fff; width: 450px; max-width: 92vw; border-radius: 28px;
    padding: 2.5rem 2rem; box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    position: relative; z-index: 1002;
    transform: translateY(30px) scale(0.95); opacity: 0;
    transition: all 0.4s var(--ease);
}
.booking-overlay.open .booking-modal { transform: translateY(0) scale(1); opacity: 1; }

.close-booking {
    position: absolute; top: 1.2rem; right: 1.2rem;
    background: #f5f5f5; border: none; width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--ink);
    cursor: pointer; transition: all 0.2s;
}
.close-booking:hover { background: var(--green); color: #fff; }

/* UNIVERSAL FORM STYLING (Used everywhere) */
.universal-booking-form .form-group { margin-bottom: 1.2rem; }
.universal-booking-form label { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; color: var(--ink); margin-bottom: 0.5rem; opacity: 0.8; }
.universal-booking-form input, .universal-booking-form select, .universal-booking-form textarea {
    width: 100%; padding: 0.85rem 1.2rem; border: 1px solid var(--border); border-radius: 12px;
    font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fafafa;
    transition: all 0.3s;
}
.universal-booking-form input:focus, .universal-booking-form select:focus, .universal-booking-form textarea:focus { 
    outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px rgba(20,107,77,0.08); 
}
.universal-booking-form .btn-primary { width: 100%; margin-top: 1rem; padding: 1rem; border-radius: 12px; font-weight: 600; }

/* Desktop Drawer Override */
@media (min-width: 992px) {
    .booking-overlay { display: block; }
    .booking-modal {
        position: fixed; top: 0; right: -450px; bottom: 0; height: 100vh;
        width: 450px; max-width: 100vw; border-radius: 0; transform: none; opacity: 1;
        transition: right 0.4s var(--ease); display: flex; flex-direction: column;
        justify-content: center;
    }
    .booking-overlay.open .booking-modal { right: 0; }
}

/* --- FOOTER LOGO OVERRIDE --- */
.footer-logo-img {
    height: 100px; /* Increased size */
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 8px;
}

/* ── 21. FLOATING WHATSAPP BUTTON ─────────────────── */
.float-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    text-decoration: none;
}
.float-whatsapp:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    color: #fff;
}
@media (max-width: 768px) {
    .float-whatsapp {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}
