/* =====================================================================
   SHANTI DHARA YOGA CENTRE — CUSTOM STYLES
   Custom CSS layered on top of the Tailwind build.
   ===================================================================== */

/* ---------------------------------------------------------------------
   0. BASE
--------------------------------------------------------------------- */
::selection { background: rgb(62 123 82 / 0.25); color: #1E2A22; }

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
    font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
    background: #F8FBF7;
    color: #1E2A22;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-display { font-family: "Cormorant Garamond", ui-serif, Georgia, serif; }

img { max-width: 100%; height: auto; }

:focus-visible {
    outline: 2px solid #3E7B52;
    outline-offset: 3px;
    border-radius: 6px;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #EEF5EF; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #3E7B52, #A6C36F); border-radius: 20px; border: 2px solid #EEF5EF; }

/* ---------------------------------------------------------------------
   1. SECTION SCAFFOLDING
--------------------------------------------------------------------- */
.section { position: relative; padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-tight { position: relative; padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: linear-gradient(180deg, #EEF8F0 0%, #F8FBF7 100%); }

/* Organic wave separator */
.wave-sep { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 70px; display: block; pointer-events: none; }
.wave-sep svg { width: 100%; height: 100%; display: block; }
.wave-sep.top { top: -1px; bottom: auto; transform: rotate(180deg); }

/* Blob decoration */
.blob-deco { position: absolute; border-radius: var(--radius-blob); filter: blur(2px); pointer-events: none; z-index: 0; }
.blob-green  { background: radial-gradient(circle at 30% 30%, rgb(166 195 111 / 0.35), rgb(62 123 82 / 0.12)); animation: blobDrift 18s ease-in-out infinite; }
.blob-gold   { background: radial-gradient(circle at 60% 40%, rgb(217 182 80 / 0.28), rgb(217 182 80 / 0.06)); animation: blobDrift 22s ease-in-out infinite reverse; }
.blob-cream  { background: radial-gradient(circle at 50% 50%, rgb(255 253 248 / 0.9), rgb(255 253 248 / 0.2)); }

/* ---------------------------------------------------------------------
   2. SECTION HEADINGS
--------------------------------------------------------------------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.32em;
    text-transform: uppercase; color: #3E7B52;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 2rem; height: 1px; background: linear-gradient(90deg, transparent, #A6C36F); }
.eyebrow::after { background: linear-gradient(90deg, #A6C36F, transparent); }

.script-accent { font-family: "Great Vibes", cursive; font-size: clamp(1.6rem, 3.2vw, 2.2rem); color: #3E7B52; line-height: 1; }

.section-title { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; color: #1E2A22; }
.section-title em { font-style: italic; background: linear-gradient(100deg, #3E7B52, #A6C36F); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.section-lead { color: #6B7280; font-size: clamp(1rem, 1.6vw, 1.125rem); line-height: 1.75; }

/* ---------------------------------------------------------------------
   3. BUTTONS
--------------------------------------------------------------------- */
.btn {
    position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
    font-family: "Outfit", sans-serif; font-weight: 600; font-size: 0.925rem; letter-spacing: 0.01em;
    padding: 0.95rem 1.9rem; border-radius: 999px; cursor: pointer; overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, background-color 0.35s, color 0.35s, border-color 0.35s;
    will-change: transform;
    white-space: nowrap;
}
.btn svg { transition: transform 0.35s; }
.btn:hover svg { transform: translateX(2px) translateY(-1px); }
.btn:active { transform: scale(0.97); }

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #3E7B52 0%, #5E9B72 100%);
    box-shadow: 0 14px 30px -12px rgb(62 123 82 / 0.6);
}
.btn-primary::before {
    content: ""; position: absolute; inset: 0; border-radius: inherit;
    background: linear-gradient(115deg, transparent 25%, rgb(255 255 255 / 0.28) 50%, transparent 75%);
    transform: translateX(-110%); transition: transform 0.7s ease;
}
.btn-primary:hover { box-shadow: 0 20px 40px -14px rgb(62 123 82 / 0.7); transform: translateY(-2px); }
.btn-primary:hover::before { transform: translateX(110%); }

.btn-outline {
    color: #3E7B52; background: #fff; border: 1.5px solid rgb(62 123 82 / 0.35);
}
.btn-outline:hover { border-color: #3E7B52; background: #EEF8F0; transform: translateY(-2px); box-shadow: 0 14px 28px -16px rgb(62 123 82 / 0.4); }

.btn-cream { color: #2E5C3E; background: #FFFDF8; box-shadow: 0 18px 38px -16px rgb(17 40 28 / 0.5); }
.btn-cream:hover { transform: translateY(-2px); box-shadow: 0 24px 48px -18px rgb(17 40 28 / 0.6); }

.btn-ghost-white { color: #fff; background: rgb(255 255 255 / 0.12); border: 1.5px solid rgb(255 255 255 / 0.4); backdrop-filter: blur(8px); }
.btn-ghost-white:hover { background: rgb(255 255 255 / 0.22); transform: translateY(-2px); }

.btn-sm { padding: 0.7rem 1.3rem; font-size: 0.85rem; }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Ripple */
.btn .ripple, .ripple-zone .ripple, .filter-chip .ripple {
    position: absolute; border-radius: 50%; pointer-events: none;
    background: rgb(255 255 255 / 0.5); transform: scale(0); animation: rippleAnim 0.65s ease-out forwards;
}
.btn-ghost-white .ripple { background: rgb(255 255 255 / 0.35); }

/* ---------------------------------------------------------------------
   4. ANNOUNCEMENT BAR
--------------------------------------------------------------------- */
.announce-bar {
    position: relative; z-index: 60; color: #fff; overflow: hidden;
    background: linear-gradient(90deg, #234730 0%, #3E7B52 55%, #5E9B72 100%);
}
.announce-icon { display: inline-flex; color: #EAD287; }

/* ---------------------------------------------------------------------
   5. HEADER
--------------------------------------------------------------------- */
.site-header {
    position: fixed; top: 36px; left: 0; right: 0; z-index: 50;
    transition: box-shadow 0.4s ease, background-color 0.4s ease;
}
/* Scrolled: solid white so the nav text & toggle always stay visible */
.site-header.scrolled {
    top: 0;
    background-color: #FFFDF8;
    box-shadow: 0 12px 34px -18px rgb(30 42 34 / 0.28);
    border-bottom: 1px solid rgb(62 123 82 / 0.12);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
    .site-header.scrolled {
        background-color: rgb(255 253 248 / 0.92);
        backdrop-filter: blur(18px) saturate(1.4);
        -webkit-backdrop-filter: blur(18px) saturate(1.4);
    }
}

.logo-ring {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 50%;
    background: rgb(255 255 255 / 0.18); border: 1px solid rgb(255 255 255 / 0.4);
    backdrop-filter: blur(6px); padding: 4px; overflow: hidden;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}
.logo-ring img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.site-header.scrolled .logo-ring { background: #EEF8F0; border-color: rgb(62 123 82 / 0.22); }
/* White chip holds the white-background logo cleanly on dark footer */
.logo-ring-footer { background: #FFFFFF; border-color: rgb(255 255 255 / 0.25); box-shadow: 0 10px 24px -10px rgb(10 25 16 / 0.6); }

.brand-name { color: #fff; transition: color 0.4s ease; }
.brand-sub { color: rgb(255 255 255 / 0.75); transition: color 0.4s ease; }
.site-header.scrolled .brand-name { color: #1E2A22; }
.site-header.scrolled .brand-sub { color: #6B7280; }

.nav-link {
    position: relative; display: inline-block; padding: 0.55rem 0.95rem;
    color: rgb(255 255 255 / 0.92); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.01em;
    transition: color 0.3s;
}
.site-header.scrolled .nav-link { color: #33423A; }
.nav-link::after {
    content: ""; position: absolute; left: 0.95rem; right: 0.95rem; bottom: 0.2rem; height: 2px; border-radius: 2px;
    background: linear-gradient(90deg, #D9B650, #A6C36F); transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.site-header.scrolled .nav-link:hover, .site-header.scrolled .nav-link.active { color: #3E7B52; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-icon-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    color: rgb(255 255 255 / 0.95); border: 1px solid rgb(255 255 255 / 0.3);
    background: rgb(255 255 255 / 0.08); transition: all 0.3s ease;
}
.site-header.scrolled .nav-icon-btn { color: #3E7B52; border-color: rgb(62 123 82 / 0.22); background: #EEF8F0; }
.nav-icon-btn:hover { transform: translateY(-2px) scale(1.05); background: #D9B650; color: #fff; border-color: #D9B650; }

/* Hamburger */
.hamburger { position: relative; width: 44px; height: 44px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; z-index: 70; }
.hamburger span { display: block; width: 24px; height: 2px; border-radius: 3px; background: #fff; transition: all 0.35s ease; }
.site-header.scrolled .hamburger span { background: #1E2A22; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   6. SCROLL PROGRESS
--------------------------------------------------------------------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 65; pointer-events: none; }
.scroll-progress span {
    display: block; height: 100%; width: 0%;
    background: linear-gradient(90deg, #D9B650, #A6C36F, #3E7B52);
    border-radius: 0 3px 3px 0;
}

/* ---------------------------------------------------------------------
   7. MOBILE MENU
--------------------------------------------------------------------- */
.mobile-menu {
    position: fixed; inset: 0; z-index: 55; visibility: hidden; opacity: 0;
    background: rgb(248 251 247 / 0.55); backdrop-filter: blur(22px) saturate(1.3); -webkit-backdrop-filter: blur(22px) saturate(1.3);
    transition: opacity 0.45s ease, visibility 0.45s ease;
}
.mobile-menu.open { visibility: visible; opacity: 1; }
.mobile-menu-inner {
    position: relative; width: min(88%, 400px); height: 100%; margin-left: auto;
    background: linear-gradient(180deg, #FFFDF8, #F8FBF7);
    box-shadow: -24px 0 60px -20px rgb(30 42 34 / 0.35);
    transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu.open .mobile-menu-inner { transform: translateX(0); }
.mobile-close { display: inline-flex; width: 42px; height: 42px; border-radius: 50%; align-items: center; justify-content: center; color: #1E2A22; background: #EEF8F0; border: 1px solid rgb(62 123 82 / 0.15); }
.mobile-link {
    display: block; padding: 0.9rem 1rem; border-radius: 1rem;
    font-family: "Cormorant Garamond", serif; font-size: 1.55rem; font-weight: 600; color: #1E2A22;
    transition: all 0.3s ease;
}
.mobile-link:hover, .mobile-link.active { background: #EEF8F0; color: #3E7B52; padding-left: 1.4rem; }
.social-chip { display: inline-flex; width: 40px; height: 40px; border-radius: 50%; align-items: center; justify-content: center; color: #3E7B52; background: #EEF8F0; border: 1px solid rgb(62 123 82 / 0.2); transition: all 0.3s; }
.social-chip:hover { background: #3E7B52; color: #fff; transform: translateY(-2px); }

/* ---------------------------------------------------------------------
   8. HERO
--------------------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }

.hero-slider, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 9s ease-in-out infinite alternate; }

.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(90rem 50rem at 85% 20%, rgb(166 195 111 / 0.35) 0%, transparent 55%),
        radial-gradient(60rem 40rem at 10% 90%, rgb(62 123 82 / 0.45) 0%, transparent 60%),
        linear-gradient(115deg, rgb(20 43 30 / 0.88) 0%, rgb(35 71 48 / 0.72) 42%, rgb(62 123 82 / 0.42) 100%);
}
.hero-grid { position: absolute; inset: 0; opacity: 0.5;
    background-image: linear-gradient(rgb(255 255 255 / 0.05) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 0.05) 1px, transparent 1px);
    background-size: 60px 60px; mask-image: radial-gradient(circle at 60% 40%, black 20%, transparent 70%);
    animation: gridDrift 30s linear infinite;
}

/* floating leaves / dots */
.floating-leaf { position: absolute; color: rgb(234 210 135 / 0.7); pointer-events: none; animation: leafFloat 9s ease-in-out infinite; }
.floating-leaf svg { filter: drop-shadow(0 8px 18px rgb(30 42 34 / 0.25)); }
.leaf-a { top: 18%; left: 8%; }
.leaf-b { top: 65%; right: 12%; animation-delay: -3s; }
.leaf-c { top: 30%; right: 38%; animation-delay: -6s; }

.particle { position: absolute; border-radius: 50%; background: rgb(255 253 248 / 0.85); box-shadow: 0 0 10px 2px rgb(255 253 248 / 0.35); pointer-events: none; }

.hero-inner { position: relative; z-index: 5; padding-top: 8rem; padding-bottom: 4rem; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.5rem 1.1rem; border-radius: 999px;
    background: rgb(255 255 255 / 0.12); border: 1px solid rgb(255 255 255 / 0.28);
    color: #EAD287; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.hero-title { font-size: clamp(2.7rem, 7vw, 5.2rem); font-weight: 600; line-height: 1.02; letter-spacing: -0.015em; color: #fff; text-wrap: balance; }
.hero-title .grad-text { background: linear-gradient(100deg, #EAD287, #C9DCA0 70%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-tagline { font-family: "Great Vibes", cursive; color: #EAD287; font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.hero-text { color: rgb(255 255 255 / 0.85); font-size: clamp(1rem, 1.6vw, 1.15rem); line-height: 1.8; max-width: 34rem; font-weight: 300; }

/* floating glass cards */
.hero-float { position: absolute; z-index: 6; border-radius: 1.4rem; padding: 0.9rem 1.2rem; display: flex; align-items: center; gap: 0.8rem; background: rgb(255 255 255 / 0.12); border: 1px solid rgb(255 255 255 / 0.28); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 24px 50px -20px rgb(10 30 20 / 0.55); color: #fff; animation: floatBob 7s ease-in-out infinite; }
.hero-float .hf-icon { display: inline-flex; width: 42px; height: 42px; border-radius: 50%; align-items: center; justify-content: center; background: linear-gradient(135deg, #D9B650, #A6C36F); color: #fff; }
.hero-float .hf-stars { display: flex; gap: 2px; color: #D9B650; }
.float-1 { top: 24%; right: 6%; }
.float-2 { bottom: 26%; right: 16%; animation-delay: -2.5s; }

/* hero stats */
.hero-stats { position: relative; z-index: 5; margin-top: clamp(2.5rem, 5vw, 4rem); }
.stat-card { border-radius: 1.6rem; padding: 1.3rem 1.5rem; background: rgb(255 255 255 / 0.1); border: 1px solid rgb(255 255 255 / 0.22); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: transform 0.4s ease, background 0.4s ease; }
.stat-card:hover { transform: translateY(-4px); background: rgb(255 255 255 / 0.16); }
.stat-value { font-family: "Cormorant Garamond", serif; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; color: #EAD287; line-height: 1; }
.stat-label { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgb(255 255 255 / 0.75); margin-top: 0.45rem; }

/* scroll cue */
.scroll-cue { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 6; color: rgb(255 255 255 / 0.85); display: flex; flex-direction: column; align-items: center; gap: 0.4rem; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; }
.scroll-cue .mouse { width: 26px; height: 42px; border: 2px solid rgb(255 255 255 / 0.7); border-radius: 14px; display: flex; justify-content: center; padding-top: 7px; }
.scroll-cue .mouse::after { content: ""; width: 3px; height: 8px; border-radius: 3px; background: #EAD287; animation: wheelDrop 1.6s ease-in-out infinite; }

/* hero bottom curve */
.hero-curve { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 5; pointer-events: none; }
.hero-curve svg { display: block; width: 100%; height: 90px; }

/* ---------------------------------------------------------------------
   9. REVEAL ANIMATIONS (JS-gated)
--------------------------------------------------------------------- */
.js [data-reveal] { opacity: 0; transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0s), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0s); will-change: opacity, transform; }
.js [data-reveal="fade-up"] { transform: translateY(46px); }
.js [data-reveal="fade-down"] { transform: translateY(-46px); }
.js [data-reveal="fade-left"] { transform: translateX(60px); }
.js [data-reveal="fade-right"] { transform: translateX(-60px); }
.js [data-reveal="scale"] { transform: scale(0.9); }
.js [data-reveal="blur"] { filter: blur(10px); transform: translateY(24px); transition: filter 1s var(--d, 0s), transform 1s var(--d, 0s), opacity 1s var(--d, 0s); }
.js [data-reveal].revealed { opacity: 1; transform: none; filter: none; }

/* ---------------------------------------------------------------------
   10. GENERIC CARDS
--------------------------------------------------------------------- */
.card-glass { background: rgb(255 255 255 / 0.72); backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3); border: 1px solid rgb(255 255 255 / 0.9); box-shadow: var(--shadow-soft); }
.card-hover { transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s, border-color 0.5s; }
.card-hover:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }

.grad-border {
    position: relative; background: #fff; border-radius: 1.75rem;
}
.grad-border::before {
    content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
    background: linear-gradient(140deg, rgb(62 123 82 / 0.5), rgb(166 195 111 / 0.3), rgb(217 182 80 / 0.45));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

/* ---------------------------------------------------------------------
   11. ABOUT
--------------------------------------------------------------------- */
.about-img-main { border-radius: 2rem 6rem 2rem 2rem; overflow: hidden; box-shadow: var(--shadow-lift); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
.about-img-main:hover img { transform: scale(1.06); }
.about-img-float { position: absolute; right: -1.5rem; bottom: -2rem; width: 46%; border-radius: 2rem 2rem 6rem 2rem; overflow: hidden; border: 8px solid #F8FBF7; box-shadow: var(--shadow-lift); }
.experience-badge {
    position: absolute; top: 1.5rem; left: -1.25rem; z-index: 4;
    border-radius: 1.4rem; padding: 1rem 1.3rem; color: #fff; text-align: center;
    background: linear-gradient(140deg, #D9B650, #A6C36F);
    box-shadow: 0 20px 40px -16px rgb(217 182 80 / 0.7);
    animation: floatBob 7s ease-in-out infinite;
}
.check-item { display: flex; gap: 0.8rem; align-items: flex-start; }
.check-item .tick { display: inline-flex; width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; align-items: center; justify-content: center; background: #EEF8F0; color: #3E7B52; border: 1px solid rgb(62 123 82 / 0.18); }

/* ---------------------------------------------------------------------
   12. FOUNDER
--------------------------------------------------------------------- */
.founder-card { border-radius: 2.5rem; overflow: hidden; background: #fff; box-shadow: var(--shadow-lift); }
.founder-img { border-radius: 2.5rem; overflow: hidden; }
.founder-img img { width: 100%; height: 100%; object-fit: cover; }
.qual-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.55rem 1.15rem; border-radius: 999px; font-weight: 600; font-size: 0.85rem; color: #2E5C3E; background: linear-gradient(135deg, #EEF8F0, #F2F7DC); border: 1px solid rgb(62 123 82 / 0.2); }
.edu-grid { display: grid; gap: 1rem; }
@media (min-width: 40rem) { .edu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 64rem) { .edu-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.founder-timeline { position: relative; padding-left: 1.6rem; }
.founder-timeline::before { content: ""; position: absolute; left: 6px; top: 4px; bottom: 4px; width: 2px; background: linear-gradient(180deg, #3E7B52, #A6C36F, #D9B650); border-radius: 2px; }
.founder-timeline li { position: relative; }
.founder-timeline li::before { content: ""; position: absolute; left: -1.6rem; top: 0.4rem; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid #3E7B52; box-shadow: 0 0 0 4px rgb(62 123 82 / 0.12); }

/* ---------------------------------------------------------------------
   13. MISSION / VISION
--------------------------------------------------------------------- */
.mv-card { position: relative; overflow: hidden; border-radius: 2rem; padding: 2.5rem; background: #fff; box-shadow: var(--shadow-soft); transition: transform 0.5s ease, box-shadow 0.5s; }
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.mv-icon { display: inline-flex; width: 68px; height: 68px; border-radius: 50%; align-items: center; justify-content: center; color: #fff; background: linear-gradient(140deg, #3E7B52, #A6C36F); box-shadow: var(--shadow-glow); }
.mv-icon.gold { background: linear-gradient(140deg, #D9B650, #A6C36F); box-shadow: 0 18px 45px -18px rgb(217 182 80 / 0.6); }
.mv-card .ring-deco { position: absolute; right: -3rem; top: -3rem; width: 10rem; height: 10rem; border-radius: 50%; border: 2px dashed rgb(62 123 82 / 0.15); animation: spinSlow 40s linear infinite; }

/* ---------------------------------------------------------------------
   14. SERVICES
--------------------------------------------------------------------- */
.service-card { position: relative; display: flex; flex-direction: column; height: 100%; border-radius: 2rem; padding: 2rem 1.8rem; background: #fff; overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lift); }
.service-card::before { content: ""; position: absolute; inset: 0; border-radius: 2rem; background: radial-gradient(28rem 14rem at 90% -10%, rgb(166 195 111 / 0.22), transparent 60%); opacity: 0; transition: opacity 0.5s; }
.service-card:hover::before { opacity: 1; }
.service-icon { position: relative; display: inline-flex; width: 74px; height: 74px; border-radius: 1.6rem; align-items: center; justify-content: center; color: #3E7B52; background: linear-gradient(145deg, #EEF8F0, #F6FAF0); border: 1px solid rgb(62 123 82 / 0.18); box-shadow: inset 0 1px 0 #fff; transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.service-card:hover .service-icon { color: #fff; background: linear-gradient(145deg, #3E7B52, #5E9B72); transform: translateY(-4px) rotate(-6deg) scale(1.04); box-shadow: var(--shadow-glow); }
.service-title { font-size: 1.45rem; font-weight: 600; color: #1E2A22; }
.service-card .link-go { display: inline-flex; align-items: center; gap: 0.5rem; color: #3E7B52; font-weight: 600; font-size: 0.9rem; }
.service-card .link-go svg { transition: transform 0.35s; }
.service-card:hover .link-go svg { transform: translateX(6px); }
.service-card .link-go::after { content: ""; position: absolute; inset: 0; }

/* ---------------------------------------------------------------------
   15. BENEFITS
--------------------------------------------------------------------- */
.benefit-tile { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.9rem; border-radius: 1.8rem; padding: 2rem 1.4rem; background: #fff; box-shadow: var(--shadow-soft); transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s; }
.benefit-tile:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lift); }
.benefit-icon { position: relative; display: inline-flex; width: 62px; height: 62px; border-radius: 50%; align-items: center; justify-content: center; color: #3E7B52; background: #EEF8F0; transition: all 0.5s; }
.benefit-tile:hover .benefit-icon { color: #fff; background: linear-gradient(140deg, #3E7B52, #A6C36F); box-shadow: var(--shadow-glow); }
.benefit-icon::after { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 1.5px dashed rgb(62 123 82 / 0.35); animation: spinSlow 26s linear infinite; }

/* ---------------------------------------------------------------------
   16. CATEGORIES
--------------------------------------------------------------------- */
.cat-card { position: relative; border-radius: 2rem; overflow: hidden; aspect-ratio: 4 / 5; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1); }
.cat-card:hover img { transform: scale(1.09); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgb(20 43 30 / 0.88) 100%); }
.cat-label { position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.4rem; z-index: 2; color: #fff; }
.cat-label .cat-name { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; font-weight: 600; }

/* ---------------------------------------------------------------------
   17. DAILY ROUTINE
--------------------------------------------------------------------- */
.routine-card { display: flex; gap: 1.1rem; align-items: flex-start; border-radius: 1.5rem; padding: 1.4rem 1.5rem; background: #fff; box-shadow: var(--shadow-soft); transition: transform 0.4s ease, box-shadow 0.4s; }
.routine-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lift); }
.routine-step { display: inline-flex; width: 46px; height: 46px; border-radius: 1rem; flex-shrink: 0; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-family: "Cormorant Garamond", serif; font-size: 1.2rem; background: linear-gradient(140deg, #3E7B52, #A6C36F); }
.routine-card:nth-child(even) .routine-step { background: linear-gradient(140deg, #D9B650, #A6C36F); }

/* ---------------------------------------------------------------------
   18. SCHEDULE
--------------------------------------------------------------------- */
.schedule-wrap { border-radius: 2rem; overflow: hidden; box-shadow: var(--shadow-lift); background: #fff; }
.schedule-tabs { display: flex; gap: 0.6rem; justify-content: center; padding: 1.6rem 1rem 0; }
.schedule-tab { padding: 0.7rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: 0.92rem; color: #3E7B52; background: #EEF8F0; border: 1px solid rgb(62 123 82 / 0.18); transition: all 0.35s; }
.schedule-tab:hover { transform: translateY(-2px); }
.schedule-tab.active { color: #fff; background: linear-gradient(135deg, #3E7B52, #5E9B72); border-color: transparent; box-shadow: var(--shadow-glow); }
.sched-table { width: 100%; border-collapse: collapse; }
.sched-table th { text-align: left; padding: 1rem 1.25rem; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: #3E7B52; background: #F2F8F1; border-bottom: 1px solid rgb(62 123 82 / 0.12); }
.sched-table td { padding: 1rem 1.25rem; border-bottom: 1px solid rgb(30 42 34 / 0.06); font-size: 0.95rem; vertical-align: middle; }
.sched-table tr:last-child td { border-bottom: none; }
.sched-table tr { transition: background 0.3s; }
.sched-table tbody tr:hover { background: #F4FAF3; }
.sched-time { font-weight: 600; color: #1E2A22; white-space: nowrap; }
.sched-chip { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.3rem 0.85rem; border-radius: 999px; font-size: 0.78rem; font-weight: 600; background: #F2F7DC; color: #2E5C3E; border: 1px solid rgb(166 195 111 / 0.4); }
.sched-chip.fill { background: #3E7B52; color: #fff; }

/* ---------------------------------------------------------------------
   19. WHY CHOOSE US
--------------------------------------------------------------------- */
.why-card { position: relative; display: flex; gap: 1rem; align-items: flex-start; border-radius: 1.6rem; padding: 1.6rem; background: #fff; box-shadow: var(--shadow-soft); overflow: hidden; transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.why-card::after { content: ""; position: absolute; right: -1.5rem; bottom: -1.5rem; width: 5rem; height: 5rem; border-radius: 50%; background: radial-gradient(circle, rgb(166 195 111 / 0.25), transparent 70%); opacity: 0; transition: opacity 0.45s; }
.why-card:hover::after { opacity: 1; }
.why-icon { display: inline-flex; width: 50px; height: 50px; border-radius: 1rem; flex-shrink: 0; align-items: center; justify-content: center; color: #3E7B52; background: #EEF8F0; border: 1px solid rgb(62 123 82 / 0.15); transition: all 0.45s; }
.why-card:hover .why-icon { color: #fff; background: linear-gradient(140deg, #3E7B52, #5E9B72); transform: rotate(-6deg) scale(1.05); box-shadow: var(--shadow-glow); }

/* ---------------------------------------------------------------------
   20. JOURNEY
--------------------------------------------------------------------- */
.journey { counter-reset: journey; }
.journey-step { position: relative; display: flex; gap: 1.4rem; align-items: flex-start; padding: 1.8rem; border-radius: 1.8rem; background: #fff; box-shadow: var(--shadow-soft); }
.journey-step::before { counter-increment: journey; content: "0" counter(journey); font-family: "Cormorant Garamond", serif; font-size: 2.6rem; font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px #A6C36F; }

/* ---------------------------------------------------------------------
   21. TIMELINE
--------------------------------------------------------------------- */
.timeline { position: relative; max-width: 52rem; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); background: linear-gradient(180deg, #D9B650, #A6C36F, #3E7B52); border-radius: 2px; }
.timeline-item { position: relative; width: 50%; padding: 0 2.5rem 3rem; }
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }
.timeline-dot { position: absolute; top: 0.4rem; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 5px solid #3E7B52; box-shadow: 0 0 0 6px rgb(62 123 82 / 0.15); }
.timeline-item:nth-child(odd) .timeline-dot { right: -10px; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }
.timeline-card { border-radius: 1.4rem; padding: 1.4rem 1.6rem; background: #fff; box-shadow: var(--shadow-soft); transition: transform 0.4s, box-shadow 0.4s; }
.timeline-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.timeline-date { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; padding: 0.3rem 0.85rem; border-radius: 999px; background: linear-gradient(120deg, #3E7B52, #A6C36F); }

/* ---------------------------------------------------------------------
   22. GALLERY
--------------------------------------------------------------------- */
.filter-chip { padding: 0.6rem 1.4rem; border-radius: 999px; font-weight: 600; font-size: 0.85rem; color: #33423A; background: #fff; border: 1.5px solid rgb(62 123 82 / 0.2); transition: all 0.35s; cursor: pointer; }
.filter-chip:hover { transform: translateY(-2px); border-color: #3E7B52; }
.filter-chip.active { color: #fff; background: linear-gradient(135deg, #3E7B52, #5E9B72); border-color: transparent; box-shadow: var(--shadow-glow); }

.masonry { columns: 2; column-gap: 1.1rem; }
.masonry-item { position: relative; display: block; margin-bottom: 1.1rem; border-radius: 1.4rem; overflow: hidden; break-inside: avoid; cursor: pointer; box-shadow: var(--shadow-soft); }
.masonry-item img { width: 100%; display: block; transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s; }
.masonry-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgb(20 43 30 / 0.78) 100%); opacity: 0; transition: opacity 0.5s; }
.masonry-item:hover img { transform: scale(1.08); }
.masonry-item:hover::after { opacity: 1; }
.masonry-info { position: absolute; left: 1.1rem; right: 1.1rem; bottom: 1rem; z-index: 2; color: #fff; transform: translateY(12px); opacity: 0; transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.masonry-item:hover .masonry-info { transform: translateY(0); opacity: 1; }
.masonry-zoom { position: absolute; top: 1rem; right: 1rem; z-index: 2; display: inline-flex; width: 40px; height: 40px; border-radius: 50%; align-items: center; justify-content: center; color: #fff; background: rgb(255 255 255 / 0.18); backdrop-filter: blur(8px); border: 1px solid rgb(255 255 255 / 0.3); opacity: 0; transform: scale(0.6); transition: all 0.45s; }
.masonry-item:hover .masonry-zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; background: rgb(14 28 20 / 0.92); backdrop-filter: blur(14px); opacity: 0; visibility: hidden; transition: opacity 0.45s, visibility 0.45s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 1.2rem; box-shadow: 0 40px 90px -20px rgb(0 0 0 / 0.7); transform: scale(0.94); transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.lightbox.open img { transform: scale(1); }
.lightbox-btn { position: absolute; display: inline-flex; width: 52px; height: 52px; border-radius: 50%; align-items: center; justify-content: center; color: #fff; background: rgb(255 255 255 / 0.12); border: 1px solid rgb(255 255 255 / 0.25); cursor: pointer; transition: all 0.3s; }
.lightbox-btn:hover { background: #D9B650; color: #fff; }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-caption { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); color: #fff; font-family: "Cormorant Garamond", serif; font-size: 1.2rem; letter-spacing: 0.04em; }

/* ---------------------------------------------------------------------
   23. TESTIMONIALS
--------------------------------------------------------------------- */
.tst-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.4rem; }
.tst-item { height: 100%; }
.tst-card { position: relative; max-width: 46rem; margin: 0 auto; border-radius: 2rem; padding: 2.6rem 2.2rem; text-align: center; height: 100%; display: flex; flex-direction: column; }
.tst-quote { position: absolute; top: -1.4rem; left: 50%; transform: translateX(-50%); display: inline-flex; width: 64px; height: 64px; border-radius: 50%; align-items: center; justify-content: center; color: #fff; background: linear-gradient(140deg, #D9B650, #A6C36F); box-shadow: 0 16px 34px -14px rgb(217 182 80 / 0.65); }
.tst-stars { display: flex; justify-content: center; gap: 4px; color: #D9B650; }
.tst-text { font-family: "Cormorant Garamond", serif; font-size: clamp(1.15rem, 2vw, 1.45rem); font-style: italic; line-height: 1.6; color: #33423A; }
.tst-avatar { display: inline-flex; width: 58px; height: 58px; border-radius: 50%; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; color: #fff; background: linear-gradient(140deg, #3E7B52, #5E9B72); box-shadow: var(--shadow-glow); }

/* ---------------------------------------------------------------------
   24. FAQ
--------------------------------------------------------------------- */
.faq-item { border-radius: 1.4rem; background: #fff; border: 1px solid rgb(62 123 82 / 0.1); box-shadow: var(--shadow-soft); overflow: hidden; transition: box-shadow 0.4s; }
.faq-item.open { box-shadow: var(--shadow-lift); border-color: rgb(62 123 82 / 0.25); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; text-align: left; padding: 1.35rem 1.6rem; cursor: pointer; font-family: "Cormorant Garamond", serif; font-size: 1.2rem; font-weight: 600; color: #1E2A22; }
.faq-icon { display: inline-flex; width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; align-items: center; justify-content: center; color: #3E7B52; background: #EEF8F0; transition: all 0.4s; }
.faq-item.open .faq-icon { color: #fff; background: linear-gradient(140deg, #3E7B52, #5E9B72); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.faq-a p { padding: 0 1.6rem 1.5rem; color: #6B7280; line-height: 1.75; font-size: 0.98rem; }

/* ---------------------------------------------------------------------
   25. CONTACT
--------------------------------------------------------------------- */
.field { position: relative; }
.field input, .field select, .field textarea {
    width: 100%; padding: 1.15rem 1.3rem 0.95rem; border-radius: 1.1rem; background: #fff;
    border: 1.5px solid rgb(30 42 34 / 0.12); font-size: 0.95rem; color: #1E2A22;
    transition: border-color 0.3s, box-shadow 0.3s; font-family: "Outfit", sans-serif;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: #3E7B52; box-shadow: 0 0 0 4px rgb(62 123 82 / 0.14); }
.field input.error, .field textarea.error { border-color: #c0554f; box-shadow: 0 0 0 4px rgb(192 85 79 / 0.12); }
.field label { position: absolute; left: 1.1rem; top: 0.95rem; font-size: 0.88rem; color: #6B7280; pointer-events: none; transition: all 0.25s ease; background: transparent; padding: 0 0.3rem; }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select:focus + label, .field select:not([value=""]) + label {
    top: -0.55rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #3E7B52; background: #F8FBF7;
}
.field select option[value=""] { color: #6B7280; }
.form-error { display: block; margin-top: 0.45rem; margin-left: 0.4rem; font-size: 0.78rem; color: #c0554f; }

.form-success { display: none; border-radius: 1.2rem; padding: 1rem 1.2rem; font-size: 0.95rem; color: #2E5C3E; background: #F2F7DC; border: 1px solid rgb(166 195 111 / 0.5); }
.form-success.show { display: flex; gap: 0.7rem; align-items: center; animation: popIn 0.5s cubic-bezier(0.22, 1, 0.36, 1); }

.contact-card { border-radius: 2rem; padding: 1.6rem; background: #fff; box-shadow: var(--shadow-soft); display: flex; gap: 1.1rem; align-items: flex-start; transition: transform 0.4s, box-shadow 0.4s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.contact-card .cc-icon { display: inline-flex; width: 52px; height: 52px; border-radius: 1.1rem; flex-shrink: 0; align-items: center; justify-content: center; color: #fff; background: linear-gradient(140deg, #3E7B52, #5E9B72); box-shadow: var(--shadow-glow); }
.contact-card.gold .cc-icon { background: linear-gradient(140deg, #D9B650, #A6C36F); }

/* ---------------------------------------------------------------------
   25b. ONLINE PAYMENT
--------------------------------------------------------------------- */
.pay-card {
    display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
    border-radius: 2rem; padding: 2rem 1.8rem; text-align: center;
    background: #fff; border: 1px solid rgb(62 123 82 / 0.1); box-shadow: var(--shadow-soft);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s, border-color 0.5s;
}
.pay-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); border-color: rgb(62 123 82 / 0.22); }
.pay-provider {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: "Cormorant Garamond", serif; font-size: 1.45rem; font-weight: 600; color: #2E5C3E;
}
.pay-provider svg { color: #3E7B52; }
.pay-qr {
    display: flex; align-items: center; justify-content: center; width: 100%;
    padding: 0.9rem; border-radius: 1.4rem;
    background: #fff; border: 1.5px dashed rgb(62 123 82 / 0.28);
}
.pay-qr img {
    width: auto; height: auto; max-width: 100%; max-height: 400px;
    border-radius: 0.8rem; object-fit: contain; margin: 0 auto; display: block;
}
.pay-note { font-size: 0.95rem; color: #6B7280; }

.upi-note { max-width: 44rem; margin: 3rem auto 0; text-align: center; }
.upi-note-text { font-size: 0.98rem; color: #33423A; line-height: 1.75; }
.upi-note-text strong { color: #1E2A22; font-weight: 700; }
.upi-box {
    display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
    margin-top: 1.4rem; padding: 1.3rem 1.5rem; border-radius: 1.4rem;
    background: #EEF8F0; border: 1px solid rgb(62 123 82 / 0.25);
}
.upi-box-label {
    display: inline-flex; align-items: center; gap: 0.45rem;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #3E7B52;
}
.upi-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.9rem; }
.upi-id { font-size: 1.15rem; font-weight: 700; letter-spacing: 0.02em; color: #1E2A22; word-break: break-all; }
#copyUpiBtn.copied { background: linear-gradient(135deg, #234730, #3E7B52); box-shadow: none; }

/* ---------------------------------------------------------------------
   26. MAP
--------------------------------------------------------------------- */
.map-frame { position: relative; border-radius: 2rem; overflow: hidden; box-shadow: var(--shadow-lift); }
.map-frame iframe { display: block; width: 100%; height: 440px; border: 0; filter: saturate(0.92); }
.map-float-card { position: absolute; left: 1.4rem; bottom: 1.4rem; z-index: 3; max-width: 320px; border-radius: 1.4rem; padding: 1.3rem 1.4rem; }

/* ---------------------------------------------------------------------
   27. CTA PANEL
--------------------------------------------------------------------- */
.cta-panel { position: relative; overflow: hidden; background: linear-gradient(125deg, #234730 0%, #3E7B52 55%, #5E9B72 100%); box-shadow: var(--shadow-lift); }
.cta-panel::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgb(255 255 255 / 0.06) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 0.06) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(circle at 50% 20%, black 10%, transparent 75%); }
.cta-blob { position: absolute; border-radius: var(--radius-blob); filter: blur(4px); }
.cta-blob-1 { width: 22rem; height: 22rem; top: -8rem; right: -6rem; background: radial-gradient(circle, rgb(217 182 80 / 0.35), transparent 65%); animation: blobDrift 16s ease-in-out infinite; }
.cta-blob-2 { width: 18rem; height: 18rem; bottom: -7rem; left: -5rem; background: radial-gradient(circle, rgb(255 255 255 / 0.16), transparent 65%); animation: blobDrift 20s ease-in-out infinite reverse; }

/* ---------------------------------------------------------------------
   28. FOOTER
--------------------------------------------------------------------- */
.footer-bg { background: linear-gradient(180deg, #1B3A28 0%, #162D20 100%); }
.footer-wave { position: absolute; top: -1px; }
.footer-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: #EAD287; }
.footer-link { position: relative; color: rgb(255 255 255 / 0.72); font-size: 0.92rem; transition: all 0.3s; padding-left: 0; }
.footer-link::before { content: "›"; position: absolute; left: -0.2rem; opacity: 0; color: #D9B650; transition: all 0.3s; }
.footer-link:hover { color: #fff; padding-left: 1rem; }
.footer-link:hover::before { opacity: 1; left: 0; }
.footer-social { display: inline-flex; width: 42px; height: 42px; border-radius: 50%; align-items: center; justify-content: center; color: #fff; background: rgb(255 255 255 / 0.08); border: 1px solid rgb(255 255 255 / 0.16); transition: all 0.35s; }
.footer-social:hover { background: linear-gradient(140deg, #D9B650, #A6C36F); transform: translateY(-3px); box-shadow: 0 14px 26px -12px rgb(217 182 80 / 0.6); }

/* ---------------------------------------------------------------------
   29. FLOATING ACTIONS
--------------------------------------------------------------------- */
.float-whatsapp { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 45; display: inline-flex; width: 58px; height: 58px; border-radius: 50%; align-items: center; justify-content: center; color: #fff; background: linear-gradient(140deg, #25D366, #1EBE5D); box-shadow: 0 18px 38px -12px rgb(37 211 102 / 0.65); transition: transform 0.35s; }
.float-whatsapp:hover { transform: scale(1.08) translateY(-3px); }
.float-whatsapp-pulse { position: absolute; inset: 0; border-radius: 50%; border: 3px solid rgb(37 211 102 / 0.5); animation: pulseRing 2s ease-out infinite; }

.back-to-top { position: fixed; right: 1.6rem; bottom: 5.6rem; z-index: 44; display: inline-flex; width: 46px; height: 46px; border-radius: 50%; align-items: center; justify-content: center; color: #fff; background: linear-gradient(140deg, #3E7B52, #5E9B72); box-shadow: var(--shadow-glow); opacity: 0; visibility: hidden; transform: translateY(14px); transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); cursor: pointer; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* Mouse glow */
.mouse-glow { position: fixed; top: 0; left: 0; width: 420px; height: 420px; border-radius: 50%; pointer-events: none; z-index: 2; background: radial-gradient(circle, rgb(166 195 111 / 0.12), transparent 60%); transform: translate(-50%, -50%); mix-blend-mode: multiply; }

/* ---------------------------------------------------------------------
   30. KEYFRAMES
--------------------------------------------------------------------- */
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12); } }
@keyframes leafFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-22px) rotate(12deg); } }
@keyframes floatBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes blobDrift { 0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: var(--radius-blob); } 33% { transform: translate(28px, -22px) scale(1.06) rotate(4deg); border-radius: 58% 42% 36% 64% / 48% 60% 40% 52%; } 66% { transform: translate(-20px, 18px) scale(0.96) rotate(-4deg); border-radius: 42% 58% 62% 38% / 56% 40% 60% 44%; } }
@keyframes gridDrift { from { background-position: 0 0; } to { background-position: 60px 60px; } }
@keyframes wheelDrop { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(10px); } }
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes pulseRing { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes popIn { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.1); } }

/* ---------------------------------------------------------------------
   31. MARQUEE STRIP
--------------------------------------------------------------------- */
.marquee { overflow: hidden; display: flex; user-select: none; }
.marquee-track { display: flex; flex-shrink: 0; align-items: center; gap: 2.5rem; padding-right: 2.5rem; min-width: 100%; animation: marquee 32s linear infinite; }
.marquee-track > * { flex-shrink: 0; }

/* ---------------------------------------------------------------------
   32. IMAGE REVEAL
--------------------------------------------------------------------- */
.img-reveal { position: relative; overflow: hidden; }
.img-reveal::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(120deg, #F8FBF7, #EEF8F0); transform: translateX(-101%); transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
.img-reveal.revealed::before { transform: translateX(101%); }
.img-reveal img { transform: scale(1.16); transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
.img-reveal.revealed img { transform: scale(1); }

/* ---------------------------------------------------------------------
   33. RESPONSIVE FIXES
--------------------------------------------------------------------- */
@media (min-width: 768px) {
    .masonry { columns: 3; }
}
@media (min-width: 1200px) {
    .masonry { columns: 4; }
}
@media (max-width: 767px) {
    .timeline::before { left: 8px; }
    .timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding: 0 0 2.4rem 2.4rem; }
    .timeline-item:nth-child(odd) .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: -2px; right: auto; }
    .hero-float { display: none; }
    .about-img-float { position: static; width: 70%; margin: -4rem auto 0; z-index: 3; }
    .experience-badge { left: 0.75rem; }
    .map-float-card { position: static; border-radius: 0; max-width: none; }
    .footer-wave { display: none; }
}
@media (max-width: 420px) {
    .btn { font-size: 0.88rem; padding: 0.9rem 1.5rem; }
    .hero-stats .stat-card { padding: 1rem 1.1rem; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
    html { scroll-behavior: auto; }
    .js [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ---------------------------------------------------------------
   PRELOADER
--------------------------------------------------------------- */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    background: radial-gradient(circle at 50% 30%, #FFFFFF 0%, #F8FBF7 55%, #EAF3EA 100%);
    opacity: 1; visibility: visible;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { position: relative; text-align: center; padding: 2rem; }
.preloader-logo-wrap {
    position: relative; z-index: 1; width: 108px; height: 108px; margin: 0 auto 1.1rem;
    border-radius: 50%; padding: 5px; background: #FFFFFF;
    box-shadow: 0 18px 44px -18px rgb(62 123 82 / 0.45);
    animation: preloaderFloat 1.6s ease-in-out infinite;
}
.preloader-logo { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.preloader-ring {
    position: absolute; z-index: 0; inset: 0; margin: auto; width: 128px; height: 128px;
    border-radius: 50%; border: 2px solid transparent;
    border-top-color: #D9B650; border-right-color: #A6C36F;
    animation: preloaderSpin 1.1s linear infinite;
}
.preloader-name {
    position: relative; z-index: 1; display: block;
    font-family: "Cormorant Garamond", serif; font-size: 2.1rem; line-height: 1.1;
    color: #1E2A22; letter-spacing: 0.02em;
}
.preloader-tag {
    position: relative; z-index: 1; display: block; margin-top: 0.3rem;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.42em; text-transform: uppercase; color: #3E7B52;
}
.preloader-bar { position: relative; z-index: 1; display: block; width: 150px; height: 3px; margin: 1.15rem auto 0; border-radius: 99px; background: rgb(62 123 82 / 0.14); overflow: hidden; }
.preloader-bar span { display: block; height: 100%; width: 42%; border-radius: 99px; background: linear-gradient(90deg, #3E7B52, #A6C36F); animation: preloaderBar 1.15s ease-in-out infinite; }
@keyframes preloaderSpin { to { transform: rotate(360deg); } }
@keyframes preloaderFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes preloaderBar { 0% { margin-left: -42%; } 100% { margin-left: 100%; } }
