/* ============================================================
   ASSET GOAL — styles.css
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-primary:       #0C3B22;
  --color-primary-light: #1A5233;
  --color-accent:        #C9A84C;
  --color-accent-light:  #E8C76A;
  --color-accent-dark:   #A8893A;
  --color-bg:            #F3F8F4;
  --color-bg-alt:        #EBF4EC;
  --color-white:         #FFFFFF;
  --color-text:          #1A251C;
  --color-text-muted:    #4A6455;
  --color-text-light:    #7A9A84;
  --color-border:        #D4E5D8;
  --color-success:       #22C55E;
  --color-whatsapp:      #25D366;
  --color-overlay:       rgba(12, 59, 34, 0.72);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-alt:     'DM Sans', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --radius-full: 9999px;

  --shadow-sm:   0 2px 12px rgba(12,59,34,0.06);
  --shadow-md:   0 8px 32px rgba(12,59,34,0.10);
  --shadow-lg:   0 20px 60px rgba(12,59,34,0.14);
  --shadow-xl:   0 32px 80px rgba(12,59,34,0.18);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);

  --transition-fast:   0.2s ease;
  --transition-base:   0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-slow:   0.6s cubic-bezier(0.4,0,0.2,1);
  --transition-spring: 0.5s cubic-bezier(0.34,1.56,0.64,1);

  --container-max: 1280px;
  --nav-height:    80px;

  /* ── NEW DESIGN SYSTEM ── */
  --bg-deep:    #050F08;
  --bg-dark:    #091710;
  --surface:    #0E2118;
  --surface-2:  #142D1C;
  --bg-light:   #F2F8F4;
  --bg-light-2: #EAF3EC;

  --gold-400:  #C9A24B;
  --gold-300:  #DDB876;
  --gold-200:  #E9D29A;
  --gold-100:  #F3E7C1;
  --gold-600:  #9C6F2D;
  --gold-700:  #7A5721;
  --champagne: #E6CFA4;

  --text-primary:   #F4EFE3;
  --text-secondary: #C9C4B8;
  --text-muted:     #7A7668;
  --text-dark:      #1A1A18;
  --text-dark-muted:#5A5850;

  --grad-gold:       linear-gradient(135deg, #DDB876 0%, #C9A24B 45%, #9C6F2D 100%);
  --grad-gold-sheen: linear-gradient(100deg, #9C6F2D 0%, #C9A24B 25%, #F3E7C1 50%, #C9A24B 75%, #9C6F2D 100%);

  --ff-display: "Fraunces", Georgia, serif;
  --ff-body:    "Inter", system-ui, sans-serif;

  --fs-hero: clamp(3.2rem, 2rem + 5.5vw, 7rem);
  --fs-3xl:  clamp(2.5rem, 2rem + 2.5vw, 4rem);
  --fs-xl:   clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
  --fs-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);

  --ease-luxe:   cubic-bezier(0.65, 0.05, 0.1, 1);
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --d-fast: 180ms; --d-base: 320ms; --d-slow: 600ms; --d-lux: 900ms;

  --shadow-md:        0 8px 24px rgba(0,0,0,0.55), 0 2px 6px rgba(0,0,0,0.35);
  --shadow-gold:      0 0 0 1px rgba(201,162,75,0.25), 0 10px 30px rgba(201,162,75,0.12);
  --shadow-gold-glow: 0 0 40px rgba(201,162,75,0.25);

  --content-max: 1320px;
  --content-gut: clamp(1rem, 4vw, 3rem);
  --r-sm: 4px; --r-md: 8px; --r-lg: 14px; --r-xl: 22px;
}

/* ============================================================
   NEW DESIGN SYSTEM — base, cursor, loader, utilities
   (inserted before existing reset — all old rules preserved below)
   ============================================================ */

/* ── Language font switching ── */
html[lang="hi"] body { font-family: "Mukta","Noto Sans Devanagari",sans-serif; line-height:1.75; }
html[lang="kn"] body { font-family: "Noto Sans Kannada",sans-serif;            line-height:1.8;  }
html[lang="te"] body { font-family: "Noto Sans Telugu",sans-serif;             line-height:1.8;  }
html[lang="ta"] body { font-family: "Hind Madurai","Noto Sans Tamil",sans-serif; line-height:1.65; }

/* ── Gold sheen utility ── */
.text-gold-sheen {
  background: var(--grad-gold-sheen);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldSheen 4s linear infinite;
}
@keyframes goldSheen { to { background-position: 200% center; } }

/* ── Custom cursor ── */
#cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--gold-400);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width var(--d-base), height var(--d-base);
  will-change: transform;
}
#cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid rgba(201,162,75,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
  will-change: transform;
}
.has-custom-cursor #cursor-dot,
.has-custom-cursor #cursor-ring { opacity: 1; }
.cursor-hover #cursor-dot  { width: 14px; height: 14px; }
.cursor-hover #cursor-ring { width: 48px; height: 48px; border-color: rgba(201,162,75,0.8); }
@media (hover: none) { #cursor-dot, #cursor-ring { display: none !important; } }

/* ── Page loader (GSAP-driven — replaces old CSS animation version) ── */
#page-loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
}
.loader-count {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 400;
  color: var(--gold-400);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 3ch;
  text-align: center;
}
.loader-bar-track {
  width: clamp(200px, 40vw, 400px);
  height: 1px;
  background: rgba(201,162,75,0.15);
  position: relative;
}
.loader-bar-fill {
  position: absolute; top: 0; left: 0;
  height: 1px; width: 0%;
  background: var(--gold-400);
  /* width is driven by GSAP — no CSS transition here */
}
.loader-brand {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  opacity: 0;           /* GSAP fades this in */
  letter-spacing: 0.08em;
}
.loader-brand span { color: var(--gold-400); font-style: italic; }
.loader-curtain {
  position: fixed; left: 0; right: 0; height: 50%;
  background: var(--bg-deep); z-index: 9999;
}
.loader-curtain-top    { top: 0;    transform-origin: top center;    }
.loader-curtain-bottom { bottom: 0; transform-origin: bottom center; }

/* ── Gold button (design-system reusable) ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-gold); color: #050F08;
  font-family: var(--ff-body); font-weight: 600; font-size: 0.875rem;
  padding: 0 24px; height: 44px;
  border-radius: var(--r-md);
  text-decoration: none; white-space: nowrap;
  border: none; cursor: pointer;
  transition: opacity var(--d-fast), transform var(--d-fast);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover  { opacity: 0.9; }
.btn-gold:active { transform: scale(0.98); }
.btn-gold-lg { height: 56px; padding: 0 32px; font-size: 1rem; }

/* ── Selection ── */
::selection { background: rgba(201,162,75,0.25); color: var(--text-dark); }

/* ── Focus ring ── */
:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ── Tabular nums on financial figures ── */
.counter, .stat-number, .stats-band-number,
.calc-hero-num, .calc-slab-val, .calc-cell-val,
.calc-bar-val { font-variant-numeric: tabular-nums; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:       0.01ms !important;
    animation-iteration-count: 1     !important;
    transition-duration:      0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   RESET & BASE  (original — preserved exactly)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: auto;           /* Lenis handles smooth scroll */
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  background: var(--bg-deep);      /* dark base — sections set their own bg */
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;                    /* custom cursor active on desktop */
}
body:not(.has-custom-cursor) { cursor: auto; }

img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a   { color: inherit; text-decoration: none; transition: var(--transition-base); }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-alt);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: inherit;
}
.section-heading span { color: var(--color-accent); }
.section-heading--light { color: var(--color-white); }

/* Headings on light sections */
#why-us .section-heading,
#about .section-heading,
#testimonials .section-heading,
#blog .section-heading,
#location .section-heading,
#process .section-heading,
#reviews .section-heading { color: var(--color-primary); }

/* Headings on dark sections */
#services .section-heading,
#calculator .section-heading,
#cta .section-heading { color: var(--text-primary); }

.section-subtext {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 580px;
  line-height: 1.8;
  margin-top: var(--space-sm);
}
.section-subtext--light { color: rgba(255,255,255,0.72); }

#services .section-subtext,
#calculator .section-subtext,
#awards .section-subtext,
#cta .section-subtext {
  color: var(--text-secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition-spring);
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: var(--color-primary);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(201,168,76,0.40);
}
.btn-outline {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}
.btn-dark:hover {
  background: var(--color-primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Reveal classes — GSAP drives these, CSS just marks them */
.reveal, .reveal-left, .reveal-right {
  opacity: 1;
  transform: none;
}
/* Fallback: if JS fails, everything is still visible */

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   PAGE LOADER  (old rules superseded by new design-system block above)
   — kept as comment so nothing breaks if referenced elsewhere
   ============================================================ */
/* #page-loader, .loader-logo, .loader-bar, .loader-bar-fill, @keyframes loadBar
   → all replaced by the GSAP-driven styles in the NEW DESIGN SYSTEM section */

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition-base);
}
#navbar.scrolled {
  background: rgba(5,15,8,0.96);        /* opaque fallback — no backdrop-filter */
  border-bottom: 1px solid rgba(201,162,75,0.1);
  box-shadow: none;
}

.nav-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(12,59,34,0.25);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: var(--transition-base);
}
#navbar:not(.scrolled) .nav-logo-name { color: var(--color-white); }
.nav-logo-tagline {
  font-family: var(--font-alt);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav-links a {
  font-family: var(--font-alt);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: width var(--transition-base);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
#navbar.scrolled .nav-links a { color: var(--text-secondary); }
#navbar.scrolled .nav-links a:hover { color: var(--text-primary); }

/* Nav CTAs — two distinct styles */
.nav-cta-primary {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-primary) !important;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-spring) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,168,76,0.45) !important;
}
.nav-cta-primary::after { display: none !important; }

.nav-cta-secondary {
  padding: 9px 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9) !important;
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 0.83rem;
  background: transparent;
  transition: var(--transition-base) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-cta-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}
#navbar.scrolled .nav-cta-secondary {
  border-color: rgba(201,162,75,0.3);
  color: var(--text-secondary) !important;
}
#navbar.scrolled .nav-cta-secondary:hover {
  border-color: rgba(201,162,75,0.7);
  color: var(--champagne) !important;
  background: rgba(201,162,75,0.06);
}
.nav-cta-secondary::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition-base);
}
#navbar.scrolled .hamburger span { background: var(--text-secondary); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(5,15,9,0.98);
  padding: var(--space-lg);
  z-index: 999;
  flex-direction: column;
  gap: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: slideDown 0.3s ease;
}
.mobile-menu.open { display: flex; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-alt);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu a:hover { color: var(--color-accent); padding-left: 8px; }
.mobile-cta { margin-top: var(--space-xs); text-align: center; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-alt);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeInUp 1s ease 1.4s both;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  background: var(--color-accent);
  border-radius: 3px;
  animation: scrollBob 2s ease infinite;
}
@keyframes scrollBob {
  0%, 100% { top: 6px; opacity: 1; }
  80%       { top: 14px; opacity: 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TICKER / ANNOUNCEMENT BAR
   ============================================================ */
.ticker-bar {
  background: var(--surface);
  border-top: 1px solid rgba(201,162,75,0.15);
  border-bottom: 1px solid rgba(201,162,75,0.15);
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 10;
}
.ticker-track {
  display: flex;
  gap: var(--space-xl);
  animation: ticker 25s linear infinite;
  white-space: nowrap;
  padding: 10px 0;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-alt);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--champagne);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.ticker-dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--gold-400);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   WHY CHOOSE US — Compact & Bold
   ============================================================ */
#why-us {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.why-image-block { position: relative; }
.why-image-main {
  width: 100%; height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.why-image-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.why-image-main:hover img { transform: scale(1.04); }
.why-image-float {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 180px; height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-lg);
}
.why-image-float img { width: 100%; height: 100%; object-fit: cover; }
.why-experience-badge {
  position: absolute;
  top: 28px; left: -18px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.why-experience-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.why-experience-badge .badge-text {
  font-family: var(--font-alt);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: var(--space-md);
}
.why-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(201,162,75,0.04);
  transition: var(--transition-base);
  cursor: default;
}
.why-feature-item:hover {
  background: rgba(201,168,76,0.05);
  transform: translateX(5px);
}
.why-feature-icon {
  width: 44px; height: 44px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.why-feature-text h4 {
  font-family: var(--font-alt);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2px;
}
.why-feature-text p {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ============================================================
   SERVICES — Razorpay-style Tiles
   ============================================================ */
#services {
  padding: var(--space-xl) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: visible;
}
#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(12,59,34,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 20%, rgba(201,168,76,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

/* 6-tile Razorpay-style grid */
/* Services CTA strip */
.services-cta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,162,75,0.15);
}
.services-cta-strip p {
  font-family: var(--font-alt);
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.services-cta-strip p strong {
  color: var(--text-primary);
}

/* ============================================================
   STATS / NUMBERS BAND
   ============================================================ */
#stats-band {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--surface) 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
#stats-band::before {
  content: '';
  position: absolute;
  top: -60%; right: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
}
#stats-band::after {
  content: '';
  position: absolute;
  bottom: -60%; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}
.stats-band-item {
  text-align: center;
  padding: var(--space-sm);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats-band-item:last-child { border-right: none; }
.stats-band-icon {
  width: 54px; height: 54px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.3rem;
  margin: 0 auto var(--space-sm);
}
.stats-band-number {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stats-band-number .unit { font-size: 1.6rem; color: var(--color-accent); }
.stats-band-label {
  font-family: var(--font-alt);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* ============================================================
   TESTIMONIALS — Grid Layout (no broken slider)
   ============================================================ */
#testimonials {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '\201C';
  position: absolute;
  top: 60px; right: 5%;
  font-family: var(--font-heading);
  font-size: 18rem;
  color: rgba(201,168,76,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.testimonials-header .section-subtext { margin-inline: auto; }

/* Clean 3-column grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--color-accent);
  font-size: 0.88rem;
}
.testimonial-quote {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  font-style: italic;
  flex: 1;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--color-accent);
  line-height: 0;
  vertical-align: -1.1rem;
  margin-right: 4px;
  opacity: 0.55;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--color-accent);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name {
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary);
}
.testimonial-role {
  font-size: 0.76rem;
  color: var(--color-text-light);
  margin-top: 2px;
}

/* ============================================================
   GALLERY / PORTFOLIO
   ============================================================ */
#gallery {
  padding: var(--space-xl) 0;
  background: var(--bg-light-2);
  position: relative;
  overflow: hidden;
}
.gallery-header { text-align: center; margin-bottom: var(--space-lg); }
.gallery-header .section-subtext { margin-inline: auto; }

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-lg);
}
.filter-btn {
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-alt);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  transition: var(--transition-base);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: 1 / 6;  grid-row: 1 / 2; }
.gallery-item:nth-child(2) { grid-column: 6 / 9;  grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 1 / 4;  grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 4 / 9;  grid-row: 2 / 3; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,59,34,0.85) 0%, rgba(12,59,34,0.3) 50%, transparent 100%);
  opacity: 0;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-sm);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  transform: translateY(12px);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover .gallery-item-title { transform: translateY(0); }
.gallery-item-cat {
  font-family: var(--font-alt);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transform: translateY(12px);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1) 0.05s;
  margin-top: 3px;
}
.gallery-item:hover .gallery-item-cat { transform: translateY(0); }
.gallery-item-zoom {
  position: absolute;
  top: var(--space-sm); right: var(--space-sm);
  width: 38px; height: 38px;
  background: rgba(12,59,34,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 0.85rem;
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition-spring);
}
.gallery-item:hover .gallery-item-zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(4,12,7,0.97);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img {
  max-width: 88vw; max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); transform: rotate(90deg); }

/* ============================================================
   AWARDS & RECOGNITION
   ============================================================ */
#awards {
  padding: var(--space-xl) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.awards-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.awards-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}
.awards-header .section-subtext { margin-inline: auto; }
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}
.award-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition-base);
}
.award-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.award-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  color: var(--color-accent);
  font-size: 1.8rem;
  transition: var(--transition-spring);
}
.award-card:hover .award-icon { transform: scale(1.15) rotate(5deg); background: rgba(201,168,76,0.25); }
.award-year {
  font-family: var(--font-alt);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.award-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.award-org {
  font-family: var(--font-alt);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.certifications-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-xl);
  position: relative;
  z-index: 1;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  color: rgba(255,255,255,0.72);
  font-family: var(--font-alt);
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition-base);
}
.cert-badge:hover { border-color: var(--color-accent); color: var(--color-accent); }
.cert-badge i { color: var(--color-accent); }

/* ============================================================
   PARTNERS
   ============================================================ */
#partners {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.partners-label {
  text-align: center;
  font-family: var(--font-alt);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}
.partners-scroll { overflow: hidden; position: relative; }
.partners-scroll::before,
.partners-scroll::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.partners-scroll::before { left: 0; background: linear-gradient(to right, var(--color-white), transparent); }
.partners-scroll::after  { right: 0; background: linear-gradient(to left,  var(--color-white), transparent); }
.partners-track {
  display: flex;
  gap: var(--space-xl);
  animation: partnersScroll 22s linear infinite;
  width: max-content;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes partnersScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition-base);
  min-width: 140px;
  flex-shrink: 0;
}
.partner-logo:hover {
  border-color: var(--color-accent);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   ABOUT / FOUNDER
   ============================================================ */
#about {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-signature {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-style: italic;
}
.about-role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-full);
  padding: 7px 18px;
  font-family: var(--font-alt);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
}
.about-role i { color: var(--color-accent); }
.about-bio {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-alt);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}
.about-highlight-item i { color: var(--color-accent); font-size: 0.9rem; }

.about-image-block { position: relative; }
.about-image-main {
  width: 100%; height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-image-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-image-main:hover img { transform: scale(1.04); }

/* ===== FOUNDER PHOTO ===== */
.about-photo-frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-alt);
}
.about-photo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-founder-img {
  width: 100%;
  max-width: 460px;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
  mix-blend-mode: normal;
  position: relative;
  z-index: 2;
}
.about-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--color-bg-alt) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}
.about-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 168, 76, 0.2);
  z-index: 4;
  pointer-events: none;
}
@media (max-width: 768px) {
  .about-photo-frame {
    min-height: 420px;
  }
  .about-founder-img {
    height: 440px;
    max-width: 360px;
  }
}

.about-card-float {
  position: absolute;
  bottom: 30px; left: -30px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid var(--color-accent);
  min-width: 220px;
}
.about-card-float-icon {
  width: 42px; height: 42px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-card-float-text .float-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.about-card-float-text .float-label {
  font-family: var(--font-alt);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: 2px;
}
.about-card-float-2 {
  position: absolute;
  top: 30px; right: -24px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-card-float-2 .float-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.about-card-float-2 .float-label {
  font-family: var(--font-alt);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 4px;
}

/* ============================================================
   BLOG / INSIGHTS
   ============================================================ */
#blog {
  padding: var(--space-xl) 0;
  background: var(--bg-light-2);
}
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-md);
}
.blog-card-image {
  width: 100%; height: 200px;
  overflow: hidden;
  position: relative;
}
.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.06); }
.blog-card-category {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-alt);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}
.blog-card-body { padding: var(--space-md); }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-alt);
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 10px;
}
.blog-card-meta span { display: flex; align-items: center; gap: 5px; }
.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: var(--transition-base);
}
.blog-card:hover .blog-card-title { color: var(--color-accent-dark); }
.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-alt);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: var(--transition-base);
}
.blog-card:hover .blog-card-link { color: var(--color-accent); gap: 10px; }

/* ============================================================
   CTA / BOOK NOW
   ============================================================ */
#cta {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-bg-decor { position: absolute; inset: 0; pointer-events: none; }
.cta-circle-1 {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.1);
  top: -300px; right: -200px;
}
.cta-circle-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.07);
  bottom: -200px; left: -100px;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}
.cta-title .gold { color: var(--color-accent); }
.cta-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}
.cta-contact-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: var(--space-lg); }
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-alt);
  font-size: 0.9rem;
}
.cta-contact-item i {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
  font-size: 0.9rem;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Booking Form */
.cta-form-box {
  background: var(--surface);
  border: 1px solid rgba(201,162,75,0.2);
  border-radius: var(--r-xl);
  padding: var(--space-lg);
  /* backdrop-filter removed — not supported on old Android */
}
.cta-form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}
.cta-form-subtitle {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-md);
}
.form-group { margin-bottom: var(--space-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.form-label {
  display: block;
  font-family: var(--font-alt);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface-2);
  border: 1px solid rgba(201,162,75,0.15);
  border-radius: var(--r-md);
  color: var(--text-primary);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: var(--transition-base);
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(201,162,75,0.5);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.1);
}
.form-select option { background: var(--color-primary); color: var(--color-white); }
.form-textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-primary);
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-spring);
  letter-spacing: 0.02em;
  margin-top: var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
}
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(201,168,76,0.40); }
.form-note { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 10px; }

/* Form success */
.form-success { display: none; text-align: center; padding: var(--space-lg); }
.form-success.show { display: block; animation: fadeInUp 0.5s ease; }
.form-success-icon {
  width: 60px; height: 60px;
  background: rgba(34,197,94,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
  font-size: 1.5rem;
  margin: 0 auto 14px;
}
.form-success h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--color-white); margin-bottom: 8px; }
.form-success p  { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ============================================================
   NEWSLETTER POPUP
   ============================================================ */
#newsletter-popup {
  display: none;
  position: fixed; inset: 0;
  z-index: 8000;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}
#newsletter-popup.open { display: flex; animation: fadeIn 0.4s ease; }
.popup-backdrop { position: absolute; inset: 0; background: rgba(5,15,35,0.88); }
.popup-box {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 560px; width: 100%;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.popup-image { position: relative; }
.popup-image img { width: 100%; height: 100%; object-fit: cover; }
.popup-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,59,34,0.8), rgba(12,59,34,0.5));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  text-align: center;
}
.popup-free-tag {
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-alt);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}
.popup-image-overlay h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-white); line-height: 1.3; }
.popup-content { padding: var(--space-lg) var(--space-md); }
.popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(12,59,34,0.08);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition-base);
  z-index: 2;
}
.popup-close:hover { background: var(--color-primary); color: var(--color-white); transform: rotate(90deg); }
.popup-tag { font-family: var(--font-alt); font-size: 0.72rem; font-weight: 700; color: var(--color-accent-dark); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.popup-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--color-primary); line-height: 1.3; margin-bottom: 8px; }
.popup-text { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.6; margin-bottom: var(--space-md); }
.popup-form .popup-input {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text);
  margin-bottom: 10px;
  outline: none;
  transition: var(--transition-base);
}
.popup-form .popup-input:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.popup-submit {
  width: 100%;
  padding: 12px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-spring);
}
.popup-submit:hover { background: var(--color-accent); color: var(--color-primary); transform: translateY(-2px); }
.popup-skip { display: block; text-align: center; margin-top: 10px; font-size: 0.75rem; color: var(--color-text-light); cursor: pointer; transition: var(--transition-base); }
.popup-skip:hover { color: var(--color-primary); }

/* ============================================================
   LOCATION / MAPS
   ============================================================ */
#location { padding: var(--space-xl) 0; background: var(--bg-light); }
.location-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--space-lg); align-items: stretch; }
.location-info { display: flex; flex-direction: column; gap: var(--space-md); }
.location-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition-base);
}
.location-card:hover { border-color: var(--color-accent); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.location-card-icon {
  width: 46px; height: 46px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.location-card-label { font-family: var(--font-alt); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-light); margin-bottom: 4px; }
.location-card-value { font-family: var(--font-alt); font-size: 0.92rem; font-weight: 600; color: var(--color-primary); line-height: 1.5; }
.location-card-value a { color: var(--color-primary); transition: var(--transition-base); }
.location-card-value a:hover { color: var(--color-accent-dark); }
.location-hours { background: var(--color-white); border-radius: var(--radius-md); padding: var(--space-md); border: 1px solid var(--color-border); }
.location-hours-title { font-family: var(--font-alt); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-light); margin-bottom: var(--space-sm); display: flex; align-items: center; gap: 8px; }
.location-hours-title i { color: var(--color-accent); }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--color-border); font-family: var(--font-alt); font-size: 0.85rem; }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--color-text-muted); font-weight: 500; }
.hours-time { color: var(--color-primary); font-weight: 700; }
.hours-closed { color: #EF4444; font-weight: 700; }
.location-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 100%; min-height: 400px; border: 1px solid var(--color-border); position: relative; }
.location-map iframe { width: 100%; height: 100%; border: none; display: block; }
.map-overlay-btn {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  padding: 11px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-alt);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-spring);
  white-space: nowrap;
  z-index: 2;
}
.map-overlay-btn:hover { background: var(--color-accent); color: var(--color-primary); transform: translateX(-50%) translateY(-3px); box-shadow: var(--shadow-gold); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--bg-deep);
  color: var(--text-secondary);
  position: relative;
  overflow: hidden;
}
.footer-top { padding: var(--space-3xl) 0 var(--space-xl); border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: var(--space-xl); }
.footer-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: var(--space-sm); text-decoration: none; }
.footer-logo-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.25); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--color-accent); font-size: 1.2rem; flex-shrink: 0; }
.footer-logo-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--color-white); }
.footer-logo-tagline { font-family: var(--font-alt); font-size: 0.68rem; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-desc { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.50); margin-bottom: var(--space-md); max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-link { width: 38px; height: 38px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.60); font-size: 0.88rem; transition: var(--transition-spring); }
.footer-social-link:hover { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-primary); transform: translateY(-3px); }
.footer-col-title { font-family: var(--font-alt); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-white); margin-bottom: var(--space-md); position: relative; padding-bottom: 12px; }
.footer-col-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--color-accent); border-radius: 2px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.50); transition: var(--transition-base); display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: ''; width: 6px; height: 1px; background: var(--color-accent); border-radius: 1px; transition: width var(--transition-base); flex-shrink: 0; }
.footer-links a:hover { color: var(--color-white); padding-left: 4px; }
.footer-links a:hover::before { width: 12px; }
.footer-newsletter-text { font-size: 0.85rem; color: rgba(255,255,255,0.50); line-height: 1.7; margin-bottom: var(--space-sm); }
.footer-newsletter-form { display: flex; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.footer-newsletter-input { flex: 1; padding: 11px 14px; background: rgba(255,255,255,0.06); border: none; color: var(--color-white); font-family: var(--font-body); font-size: 0.85rem; outline: none; }
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.28); }
.footer-newsletter-btn { padding: 11px 16px; background: var(--color-accent); color: var(--color-primary); font-family: var(--font-alt); font-weight: 700; font-size: 0.8rem; border: none; cursor: pointer; transition: var(--transition-base); white-space: nowrap; }
.footer-newsletter-btn:hover { background: var(--color-accent-light); }
.footer-newsletter-note { font-size: 0.72rem; color: rgba(255,255,255,0.28); margin-top: 8px; }
.footer-bottom { padding: var(--space-md) 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-sm); }
.footer-copyright { font-family: var(--font-alt); font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-copyright span { color: var(--color-accent); }
.footer-bottom-links { display: flex; gap: var(--space-md); }
.footer-bottom-links a { font-family: var(--font-alt); font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: var(--transition-base); }
.footer-bottom-links a:hover { color: var(--color-accent); }
.footer-crafted { font-family: var(--font-alt); font-size: 0.78rem; color: rgba(255,255,255,0.30); }
.footer-crafted a { color: var(--color-accent); font-weight: 600; transition: var(--transition-base); }
.footer-crafted a:hover { color: var(--color-accent-light); }

/* ============================================================
   WHATSAPP FLOATER
   ============================================================ */
.whatsapp-float { position: fixed; bottom: 32px; right: 32px; z-index: 7000; }
.whatsapp-float-btn {
  width: 58px; height: 58px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: var(--transition-spring);
  position: relative;
}
.whatsapp-float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid var(--color-whatsapp);
  opacity: 0.4;
  animation: waPulse 2s ease-out infinite;
}
.whatsapp-float-btn::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 3px solid var(--color-whatsapp);
  opacity: 0.15;
  animation: waPulse 2s ease-out infinite 0.4s;
}
.whatsapp-float-btn:hover { transform: scale(1.14) rotate(-5deg); box-shadow: 0 10px 36px rgba(37,211,102,0.60); }
.whatsapp-tooltip {
  position: absolute;
  bottom: 50%; right: calc(100% + 14px);
  transform: translateY(50%);
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-alt);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--color-primary);
  border-right: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; right: calc(100% + 10px); }
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.4; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 100px; right: 32px;
  z-index: 6000;
  width: 44px; height: 44px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-spring);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-white); transform: translateY(-4px); }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid, .about-grid { grid-template-columns: 1fr; }
  .why-image-block, .about-image-block { order: -1; }
  .why-image-main { height: 380px; }
  .about-image-main { height: 420px; }
  .services-tiles { grid-template-columns: repeat(2, 1fr); }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band-item:nth-child(2) { border-right: none; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 350px; height: 350px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .process-steps::before { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .popup-box { grid-template-columns: 1fr; max-width: 400px; }
  .popup-image { height: 160px; }
  .about-card-float { left: 10px; bottom: 20px; }
  .about-card-float-2 { right: 10px; top: 20px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 4rem;
    --space-xl:  3rem;
  }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-tiles { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
  .gallery-item:nth-child(2) { grid-column: 1 / 2; grid-row: auto; }
  .gallery-item:nth-child(3) { grid-column: 2 / 3; grid-row: auto; }
  .gallery-item:nth-child(4) { grid-column: 1 / 2; grid-row: auto; }
  .gallery-item:nth-child(5) { grid-column: 2 / 3; grid-row: auto; }
  .gallery-grid .gallery-item { height: 200px; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: var(--space-md); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .services-header, .blog-header { flex-direction: column; align-items: flex-start; }
  .why-experience-badge { left: 10px; }
  .why-image-float { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .hero-stat-card--tl,
  .hero-stat-card--br { display: none; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --space-xl: 2.5rem;
    --nav-height: 70px;
  }
  .container { padding-inline: var(--space-sm); }
  .hero-inner { padding-inline: var(--space-sm); }
  .section-heading { font-size: 1.75rem; }
  .stats-band-grid { grid-template-columns: 1fr 1fr; }
  .stats-band-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: var(--space-sm); }
  .cta-form-box { padding: var(--space-sm); }
  .back-to-top, .whatsapp-float { bottom: 20px; right: 20px; }
  .back-to-top { bottom: 92px; right: 20px; }
  .hero-badge { font-size: 0.72rem; }
}

@media print {
  #navbar, .whatsapp-float, .back-to-top, #newsletter-popup, #page-loader { display: none !important; }
}

/* ===== CALCULATOR ===== */
#calculator {
  padding: var(--space-2xl) 0;
  background: var(--bg-dark);
}
#calculator .section-tag     { color: var(--gold-400); }
#calculator .section-heading { color: var(--text-primary); }
#calculator .section-subtext { color: var(--text-secondary); }
.calc-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.calc-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.calc-tab {
  padding: 9px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(201,162,75,0.2);
  background: transparent;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-base);
  letter-spacing: 0.01em;
}
.calc-tab:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
}
.calc-tab.active {
  background: var(--grad-gold);
  border-color: transparent;
  color: #050F08;
  font-weight: 600;
}
.calc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-gold);
  overflow: hidden;
  border: 1px solid rgba(201,162,75,0.12);
}
.calc-left {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: var(--surface);
}
.calc-right {
  padding: 44px 40px;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-left: 1px solid rgba(201,162,75,0.12);
}
.calc-slab {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.calc-slab-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.calc-slab-name {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.calc-slab-val {
  font-family: var(--ff-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-400);
  font-variant-numeric: tabular-nums;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(
    to right,
    var(--gold-400) 0%,
    var(--gold-400) var(--p, 20%),
    rgba(201,162,75,0.15) var(--p, 20%),
    rgba(201,162,75,0.15) 100%
  );
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-400);
  border: 2px solid var(--bg-deep);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.25);
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.calc-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 6px rgba(201,168,76,0.15);
}
.calc-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-400);
  border: 2px solid var(--bg-deep);
  cursor: pointer;
}
.calc-bounds {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.calc-context {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 11px 14px;
  background: rgba(201,162,75,0.06);
  border-radius: var(--r-sm);
  border-left: 2px solid var(--gold-400);
  line-height: 1.7;
  margin-top: auto;
}
.calc-hero-sip {
  text-align: center;
  padding: 16px 0 4px;
}
.calc-hero-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}
.calc-hero-num {
  font-family: var(--ff-body);
  font-size: 3.4rem;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}
.calc-hero-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
}
.calc-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
}
.calc-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.calc-bar-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.calc-bar-name {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  font-weight: 700;
}
.calc-bar-val {
  font-size: 1.1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-family: var(--ff-body);
}
.calc-bar-val--gold  { color: var(--gold-400); }
.calc-bar-val--white { color: var(--text-secondary); }
.calc-track {
  height: 4px;
  background: rgba(201,162,75,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.calc-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.65s cubic-bezier(0.4,0,0.2,1);
}
.calc-fill--gold  { background: var(--gold-400); }
.calc-fill--white { background: rgba(201,162,75,0.3); }
.calc-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(201,162,75,0.08);
  border-radius: var(--r-md);
}
.calc-cell {
  padding: 20px;
  background: transparent;
}
.calc-cell-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 5px;
}
.calc-cell-val {
  font-family: var(--ff-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
.calc-cell-val--gold { color: var(--gold-400); }
.calc-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--grad-gold);
  color: #050F08;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--r-md);
  height: 52px;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  margin-top: auto;
  text-decoration: none;
}
.calc-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.calc-disclaimer {
  text-align: center;
  margin-top: var(--space-md);
  font-size: 0.7rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.8;
}
@media (max-width: 860px) {
  .calc-card { grid-template-columns: 1fr; }
  .calc-hero-num { font-size: 2.6rem; }
}
@media (max-width: 480px) {
  .calc-left, .calc-right { padding: 32px 24px; }
  .calc-tab { padding: 7px 16px; font-size: 0.75rem; }
}

/* ============================================================
   NAV v2 — Fraunces logo · SVG underline links · lang switcher
   ============================================================ */

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
  position: relative;
}
.nav-logo-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  filter: drop-shadow(0 2px 8px rgba(30,120,60,0.35));
  transition: filter var(--d-base) ease, transform var(--d-base) ease;
}
.nav-logo:hover .nav-logo-icon-wrap {
  filter: drop-shadow(0 4px 16px rgba(30,120,60,0.5));
  transform: scale(1.05);
}
.nav-logo-text-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0;
  line-height: 1;
}
.nav-logo-asset {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.nav-logo-goal {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.nav-logo-tagline {
  display: block;
  width: 100%;
  font-size: 0.6rem;
  font-family: var(--ff-body);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Nav links with SVG draw underline */
.nav-links .nav-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--d-base) ease;
}
.nav-links .nav-link:hover,
.nav-links .nav-link.active {
  color: var(--gold-300);
}
.nav-link-line {
  display: block;
  width: 100%;
  height: 4px;
  overflow: visible;
  color: var(--gold-400);
}
.nav-link-line line {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.76,0,0.24,1);
}
.nav-link:hover .nav-link-line line,
.nav-link.active .nav-link-line line {
  stroke-dashoffset: 0;
}

/* Nav actions row */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 6px 10px;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-family: var(--ff-body);
  font-weight: 500;
  cursor: pointer;
  transition: background var(--d-fast) ease, border-color var(--d-fast) ease;
}
.lang-current:hover {
  background: rgba(201,162,75,0.12);
  border-color: rgba(201,162,75,0.3);
  color: var(--gold-300);
}
.lang-globe {
  font-size: 0.9rem;
  line-height: 1;
}
.lang-caret {
  transition: transform var(--d-fast) ease;
}
.lang-switcher.open .lang-caret {
  transform: rotate(180deg);
}
.lang-list {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 6px 0;
  list-style: none;
  margin: 0;
  z-index: 200;
}
.lang-switcher.open .lang-list {
  display: block;
  animation: fadeInDown 0.18s ease;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lang-list [data-lang] {
  padding: 9px 16px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background var(--d-fast) ease, color var(--d-fast) ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-list [data-lang]:hover,
.lang-list [data-lang]:focus {
  background: rgba(201,162,75,0.1);
  color: var(--gold-300);
  outline: none;
}
.lang-short {
  font-weight: 600;
  min-width: 20px;
}

/* Client portal link */
.nav-portal {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color var(--d-fast) ease, color var(--d-fast) ease, background var(--d-fast) ease;
  white-space: nowrap;
}
.nav-portal:hover {
  border-color: rgba(201,162,75,0.4);
  color: var(--gold-300);
  background: rgba(201,162,75,0.06);
}

/* CTA book button */
.nav-cta-book {
  white-space: nowrap;
  font-size: 0.82rem;
  padding: 9px 18px;
}

/* Hide lang switcher + portal on small nav */
@media (max-width: 1100px) {
  .nav-portal { display: none; }
}
@media (max-width: 900px) {
  .nav-actions { display: none; }
}

/* ============================================================
   HERO v2 — Canvas particles · 60/40 grid · stats bar
   ============================================================ */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg-deep);
}

/* Particle canvas */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Ambient glow blobs */
.hero-glow-gold {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 55vw;
  height: 55vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(201,162,75,0.18) 0%, transparent 65%);
  z-index: 2;
  pointer-events: none;
}
.hero-glow-blue {
  position: absolute;
  bottom: 5%;
  right: -8%;
  width: 45vw;
  height: 45vw;
  max-width: 650px;
  max-height: 650px;
  background: radial-gradient(circle, rgba(30,160,70,0.13) 0%, transparent 65%);
  z-index: 2;
  pointer-events: none;
}

/* 60/40 grid */
.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 60fr 40fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding: clamp(6rem, 10vh, 9rem) var(--content-gut) clamp(2rem, 4vh, 4rem);
  flex: 1;
}

/* Left column */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-credential {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(201,162,75,0.35);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-300);
  background: rgba(201,162,75,0.07);
  width: fit-content;
}
.hero-credential i {
  font-size: 0.85rem;
}

.hero-headline {
  font-family: var(--ff-display);
  font-size: var(--fs-hero, clamp(3.2rem, 2rem + 5.5vw, 6.5rem));
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
  overflow: visible;
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color var(--d-base) ease, color var(--d-base) ease;
}
.hero-ghost-btn:hover {
  border-color: rgba(201,162,75,0.4);
  color: var(--gold-300);
}

.hero-doubt {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.03em;
}

/* Right column */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-xl);
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
  object-fit: cover;
  aspect-ratio: 3 / 4;
  object-position: top center;
}

/* Floating stat cards */
.hero-stat-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 18px;
  background: rgba(13,16,26,0.92);
  border: 1px solid rgba(201,162,75,0.25);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}
.hero-stat-card--tl {
  top: 12%;
  left: -18%;
}
.hero-stat-card--br {
  bottom: 14%;
  right: -14%;
}
.hsc-num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-300);
  line-height: 1;
}
.hsc-num sup {
  font-size: 0.65em;
  vertical-align: super;
}
.hsc-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Bottom stats bar */
.hero-stats-bar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(13, 16, 22, 0.96);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: clamp(1.2rem, 3vw, 2rem) var(--content-gut);
  flex-wrap: wrap;
}
.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
}
.hstat-num {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--gold-300);
  line-height: 1;
}
.hstat-unit {
  font-size: 0.7em;
  color: var(--gold-400);
  vertical-align: baseline;
  margin-left: 2px;
}
.hstat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hstat-divider {
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* scroll indicator inherits existing styles; keep z-index above canvas */
#hero .scroll-indicator {
  position: relative;
  z-index: 10;
  margin-bottom: 1rem;
  align-self: center;
}

/* ── Hero responsive ── */
@media (max-width: 1024px) {
  .hero-stat-card--tl { left: -8%; }
  .hero-stat-card--br { right: -8%; }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: clamp(5rem, 12vh, 8rem);
  }
  .hero-right { order: -1; }
  .hero-photo-wrap { max-width: 260px; margin-inline: auto; }
  .hero-left { align-items: center; }
  .hero-credential { font-size: 0.7rem; }
  .hero-sub { text-align: center; max-width: 100%; }
  .hero-cta-row { justify-content: center; }
  .hero-stat-card--tl { top: 8%; left: -5%; }
  .hero-stat-card--br { bottom: 8%; right: -5%; }
  .hstat-divider { display: none; }
  .hero-stats-bar { gap: 1.5rem; }
  .hstat { padding: 0 1rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3.8rem); }
  .hero-stats-bar { flex-wrap: wrap; gap: 1rem; }
  .hstat { flex: 1 1 40%; }
}

/* ── BUG 1 FIX: hero headline gold line ── */
.hero-hl-line {
  display: block;
}
.hero-hl-gold {
  display: inline-block;
  background: var(--grad-gold-sheen);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  animation: goldSheen 4s linear infinite;
  font-style: italic;
  padding-right: 0.06em;
  overflow: visible;
}

/* ── Dark-section text overrides ── */
#services, #awards, #calculator, #cta {
  color: var(--text-primary);
}
#services .section-tag,
#awards .section-tag   { color: var(--gold-400); }
#services .section-subtext,
#awards .section-subtext { color: var(--text-secondary); }

/* Service tiles on dark */
.services-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.service-tile {
  background: var(--surface);
  border: 1px solid rgba(201,162,75,0.1);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: border-color var(--d-base), transform var(--d-base);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
}
.service-tile:hover {
  border-color: rgba(201,162,75,0.35);
  transform: translateY(-4px);
}
.tile-number {
  font-family: var(--ff-display);
  font-size: 3.5rem; font-weight: 300; font-style: italic;
  color: rgba(201,162,75,0.15);
  position: absolute; top: 1rem; right: 1.25rem;
  line-height: 1;
}
.tile-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: rgba(201,162,75,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold-400);
  margin-bottom: 1.25rem;
}
.tile-title {
  font-family: var(--ff-display);
  font-size: 1.15rem; font-weight: 600;
  color: var(--text-primary); margin-bottom: 0.75rem;
}
.tile-text {
  font-size: 0.9rem; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 1.25rem;
}
.tile-link {
  font-size: 0.85rem; font-weight: 600;
  color: var(--gold-400); display: inline-flex;
  align-items: center; gap: 6px;
  transition: gap var(--d-fast);
}
.tile-link:hover { gap: 10px; }

/* Testimonial cards on light bg */
.testimonial-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r-xl);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform var(--d-base), box-shadow var(--d-base);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.testimonial-quote { color: var(--text-dark); }
.testimonial-name  { color: var(--text-dark); }
.testimonial-role  { color: var(--text-dark-muted); }

/* Blog cards on light bg */
.blog-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--d-base), box-shadow var(--d-base);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.blog-card-title   { color: var(--text-dark); }
.blog-card-excerpt { color: var(--text-dark-muted); }

/* CTA section */
#cta .cta-title { color: var(--text-primary); }
#cta .cta-text  { color: var(--text-secondary); }
.cta-form-box {
  background: var(--surface);
  border: 1px solid rgba(201,162,75,0.2);
  border-radius: var(--r-xl);
  padding: var(--space-lg);
  /* backdrop-filter removed — not supported on old Android */
}
.cta-form-title    { color: var(--text-primary); }
.cta-form-subtitle { color: var(--text-secondary); }
.form-label { color: var(--text-secondary); }
.form-input, .form-select, .form-textarea {
  background: var(--surface-2);
  border: 1px solid rgba(201,162,75,0.15);
  color: var(--text-primary);
  border-radius: var(--r-md);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(201,162,75,0.5);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,162,75,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

/* Location section */
#location { color: var(--text-dark); }
.location-card-label { color: var(--text-dark-muted); }
.location-card-value { color: var(--text-dark); }

/* Footer */
footer {
  background: var(--bg-deep);
  color: var(--text-secondary);
}
.footer-logo-name    { color: var(--text-primary); }
.footer-logo-tagline { color: var(--gold-400); }
.footer-desc         { color: var(--text-muted); }
.footer-col-title    { color: var(--text-primary); }
.footer-links a      { color: var(--text-muted); }
.footer-links a:hover{ color: var(--champagne); }
.footer-copyright    { color: var(--text-muted); }
.footer-bottom-links a { color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--champagne); }
.footer-crafted      { color: var(--text-muted); }
.footer-crafted a    { color: var(--gold-400); }

/* WhatsApp float */
.whatsapp-float-btn {
  background: #25D366;
  box-shadow: var(--shadow-md);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
}

/* About section on light */
#about { background: var(--bg-light); color: var(--text-dark); }
.about-signature { color: var(--gold-600); }
.about-bio       { color: var(--text-dark-muted); }
.about-highlight-item { color: var(--text-dark); }

/* ══════════════════════════════════════
   PART 4 — WHY-US REDESIGN (dark stat block)
   ══════════════════════════════════════ */

.why-stat-block {
  background: var(--bg-dark);
  border: 1px solid rgba(201,162,75,0.15);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-gold);
  display: flex;
  flex-direction: column;
}
.why-big-stat {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(201,162,75,0.1);
}
.why-big-stat:first-child { padding-top: 0; }
.why-big-stat:last-child  { padding-bottom: 0; border-bottom: none; }
.why-big-num {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600; color: var(--gold-400);
  line-height: 1; font-variant-numeric: tabular-nums;
  margin-bottom: 0.4rem;
}
.why-big-label {
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-muted);
}

/* ══════════════════════════════════════
   PART 4 — AWARDS section text on dark bg
   ══════════════════════════════════════ */
#awards .section-heading { color: var(--text-primary); }
#awards .section-tag     { color: var(--gold-400); }
#awards .section-subtext { color: var(--text-secondary); }

/* ══════════════════════════════════════
   PART 4 — LOCATION section on light bg
   ══════════════════════════════════════ */
#location {
  background: var(--bg-light);
  color: var(--text-dark);
}
#location .section-heading { color: var(--color-primary); }
#location .section-tag     { color: var(--color-accent); }
#location .section-subtext { color: var(--color-text-muted); }

/* ══════════════════════════════════════
   PART 4 — FOOTER overrides
   ══════════════════════════════════════ */
#footer .footer-top {
  border-bottom-color: rgba(201,162,75,0.12);
}
#footer .footer-col-title {
  color: var(--text-primary);
}
#footer .footer-col-title::after {
  background: var(--gold-400);
}
#footer .footer-links a {
  color: var(--text-muted);
}
#footer .footer-links a:hover {
  color: var(--champagne);
}
#footer .footer-newsletter-btn {
  background: var(--grad-gold);
  color: #050F08;
}
#footer .footer-social-link {
  border-color: rgba(201,162,75,0.15);
  color: var(--text-muted);
}
#footer .footer-social-link:hover {
  background: rgba(201,162,75,0.12);
  border-color: var(--gold-400);
  color: var(--gold-400);
}
#footer .footer-copyright { color: var(--text-muted); }
#footer .footer-copyright span { color: var(--gold-400); }
#footer .footer-bottom-links a { color: var(--text-muted); }
#footer .footer-bottom-links a:hover { color: var(--champagne); }
#footer .footer-crafted { color: var(--text-muted); }
#footer .footer-crafted a { color: var(--gold-400); }

/* ══════════════════════════════════════
   PART 4 — RESPONSIVE FIXES
   ══════════════════════════════════════ */
@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .awards-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── HOW IT WORKS — complete overhaul ── */
#process {
  background: var(--bg-light-2);
  padding: var(--space-xl) 0;
}
#process .section-heading { color: var(--color-primary); }
#process .section-tag     { color: var(--color-accent); }
#process .section-subtext { color: var(--color-text-muted); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  counter-reset: step;
  padding-top: 0;
  align-items: start;
}

/* Connecting line between circles */
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 2px;
  background: linear-gradient(
    to right,
    var(--color-accent) 0%,
    var(--color-accent-light) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.process-step-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201,168,76,0.2);
  flex-shrink: 0;
}

.process-step:hover .process-step-circle {
  background: var(--color-primary);
  color: var(--color-accent);
  border-color: var(--color-primary);
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

.process-step-number {
  position: absolute;
  top: -8px; right: -8px;
  width: 26px; height: 26px;
  background: var(--color-accent);
  border-radius: 50%;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.process-step-title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.process-step-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .process-steps::before { display: none; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ── Footer logo text treatment ── */
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo-text {
  display: flex;
  align-items: baseline;
  line-height: 1;
}
.footer-logo-asset {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.footer-logo-goal {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.6rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.footer-logo-tagline {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Services tiles responsive ── */
@media (max-width: 900px) {
  .services-tiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 560px) {
  .services-tiles {
    grid-template-columns: 1fr;
  }
  .service-tile {
    padding: 1.5rem;
  }
}

/* Old Android flexbox gap fallback */
@supports not (gap: 1rem) {
  .hero-cta-row > * + * { margin-left: 1rem; }
  .nav-links > * + * { margin-left: var(--space-md); }
  .cta-actions > * + * { margin-left: 12px; }
  .hero-left { gap: 0; }
  .hero-left > * + * { margin-top: 1.5rem; }
}

/* Comprehensive 480px mobile fixes */
@media (max-width: 480px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 5rem;
    padding-bottom: 1rem;
  }
  .hero-right { display: none; }
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { border-bottom: 1px solid rgba(201,162,75,0.08); }
  .hstat-divider { display: none; }
  .calc-card { grid-template-columns: 1fr; }
  .calc-left, .calc-right { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-form-box { padding: 1.5rem 1rem; }
  .about-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-tiles { grid-template-columns: 1fr; }
}

/* Touch targets — min 44px height on mobile */
@media (max-width: 768px) {
  .btn, .btn-gold, .tile-link, .nav-link, .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .hamburger { min-height: 44px; min-width: 44px;
               justify-content: center; }
  .form-input, .form-select, .form-textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
    min-height: 48px;
  }
}

/* ============================================================
   MOBILE-FRIENDLY — Comprehensive overhaul
   ============================================================ */

/* Prevent horizontal overflow on the root element */
html { overflow-x: hidden; }

/* Restore cursor on touch / stylus devices */
@media (hover: none) {
  body { cursor: auto; }
}

/* ── NAV on mobile ── */
@media (max-width: 768px) {
  /* Hide logo tagline — prevents nav from expanding vertically */
  .nav-logo-tagline { display: none; }

  /* Tighten horizontal padding so logo + hamburger aren't cramped */
  .nav-inner { padding-inline: 1.25rem; }

  /* Scroll indicator overlaps content on mobile */
  .scroll-indicator { display: none; }

  /* Services header subtext should be left-aligned in column layout */
  .services-header .section-subtext {
    text-align: left !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  /* Slightly smaller logo text on very small screens */
  .nav-logo-asset,
  .nav-logo-goal { font-size: 1.2rem; }
  .nav-logo-icon-wrap svg { width: 28px; height: 28px; }
  .nav-logo { gap: 8px; }

  /* Tighten nav padding further */
  .nav-inner { padding-inline: 1rem; }
}

/* ── HERO on very small screens ── */
@media (max-width: 380px) {
  .hero-headline { font-size: 2rem; }
  .hero-cta-row { flex-direction: column; width: 100%; }
  .hero-cta-row > * { width: 100%; justify-content: center; }
}

/* ── WHY CHOOSE US — stat block 2-col grid on mobile ── */
@media (max-width: 768px) {
  .why-stat-block {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    padding: 1.5rem;
  }
  .why-big-stat {
    flex: 1 1 50%;
    border-bottom: 1px solid rgba(201,162,75,0.1);
    border-right: 1px solid rgba(201,162,75,0.1);
    padding: 1rem;
    text-align: center;
  }
  .why-big-stat:nth-child(2n) { border-right: none; }
  .why-big-stat:nth-child(3),
  .why-big-stat:nth-child(4)  { border-bottom: none; }
  .why-big-stat:first-child   { padding-top: 1rem; }
  .why-big-stat:last-child    { padding-bottom: 1rem; }
  .why-big-num { font-size: clamp(2rem, 7vw, 3rem); }
}

/* ── SERVICES CTA strip ── */
@media (max-width: 640px) {
  .services-cta-strip {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
    padding: var(--space-md);
  }
}

/* ── ABOUT — hide decorative floating cards on small screens ── */
@media (max-width: 640px) {
  .about-card-float,
  .about-card-float-2 { display: none; }
  .about-photo-frame  { min-height: 340px; }
  .about-founder-img  { height: auto; max-height: 380px; }
}

/* ── STATS BAND — tighter numbers on mobile ── */
@media (max-width: 480px) {
  .stats-band-number          { font-size: 2rem; }
  .stats-band-number .unit    { font-size: 1.2rem; }
  .stats-band-grid            { gap: 0; }
  .stats-band-item            { padding: var(--space-sm) var(--space-xs); }
}

/* ── PROCESS — smaller circles on mobile ── */
@media (max-width: 480px) {
  .process-step-circle { width: 64px; height: 64px; font-size: 1.15rem; margin-bottom: 1rem; }
}

/* ── CALCULATOR ── */
@media (max-width: 480px) {
  .calc-hero-num { font-size: 2.2rem; }
  .calc-stats-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .calc-left, .calc-right { padding: 1.5rem 1rem; }
}

/* ── LOCATION MAP height on small screens ── */
@media (max-width: 480px) {
  .location-map { min-height: 240px; height: 240px; }
}

/* ── FOOTER logo size on mobile ── */
@media (max-width: 480px) {
  .footer-logo-asset,
  .footer-logo-goal { font-size: 1.3rem; }
}

/* ── MOBILE MENU LANG SWITCHER ── */
.mobile-lang-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-lang-btn {
  padding: 7px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201,162,75,0.25);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-family: var(--ff-body);
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  min-height: 36px;
}
.mobile-lang-btn.active,
.mobile-lang-btn:hover {
  background: rgba(201,162,75,0.12);
  border-color: var(--gold-400);
  color: var(--champagne);
}

/* ── POPUP — full-screen on very small screens ── */
@media (max-width: 480px) {
  .popup-box {
    max-width: 100%;
    width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin-top: auto;
  }
  #newsletter-popup {
    align-items: flex-end;
    padding: 0;
  }
}

/* ── Prevent sections with absolute-positioned children from overflowing ── */
#why-us, #about, #process { overflow: hidden; }

/* ── Logo image pill (nav + footer) ── */
.nav-logo-img-pill {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-logo-img-pill {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 5px 12px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.footer-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ============================================================
   HERO ENHANCEMENTS — currency green + visual polish
   ============================================================ */

/* Currency symbol — always emerald green */
.currency {
  color: #22c55e;
  font-feature-settings: "tnum";
}

/* Subtle dot-grid texture over hero background */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 36px 36px;
  z-index: 2;
  pointer-events: none;
}

/* Stronger emerald glow (right blob) */
.hero-glow-blue {
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.22) 0%, rgba(34,197,94,0.07) 45%, transparent 70%);
  width: 55vw;
  height: 55vw;
  max-width: 760px;
  max-height: 760px;
}

/* Gradient border ring around photo */
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--r-xl) + 6px);
  background: linear-gradient(
    145deg,
    rgba(34, 197, 94, 0.35) 0%,
    rgba(201, 162, 75, 0.18) 50%,
    rgba(34, 197, 94, 0.12) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.hero-photo {
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 70px rgba(34, 197, 94, 0.12),
    0 20px 60px rgba(0, 0, 0, 0.65);
}
.hero-stat-card { z-index: 2; }

/* Floating stat cards — emerald accent border + glow */
.hero-stat-card {
  border-color: rgba(34, 197, 94, 0.22);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(34, 197, 94, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hsc-num {
  color: #4ade80;
}

/* Live SEBI pulse dot */
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: livePulse 2.4s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0);   }
}

/* Hero doubt — styled as a subtle green pill */
.hero-doubt {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  background: rgba(34, 197, 94, 0.07);
  border: 1px solid rgba(34, 197, 94, 0.20);
  border-radius: 100px;
  color: rgba(188, 240, 210, 0.85);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  width: fit-content;
  margin-top: -0.25rem;
}

/* Stats bar — green border-top accent + tighter feel */
.hero-stats-bar {
  border-top: 1px solid rgba(34, 197, 94, 0.14);
}

/* Ensure .currency inside calc outputs stays green */
#calc-sip-hero .currency,
.calc-bar-val .currency,
.calc-cell-val .currency {
  color: #22c55e;
}

/* ============================================================
   GOOGLE REVIEWS SECTION
   ============================================================ */
#reviews {
  padding: var(--space-3xl) 0 var(--space-2xl);
  background: var(--bg-light-2);
  overflow: hidden;
}
.reviews-top {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}
.reviews-rating-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: 24px 32px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(12,59,34,0.07);
}
.reviews-stars-row {
  display: flex;
  gap: 3px;
  font-size: 1.25rem;
  color: #F59E0B;
}
.reviews-score {
  font-family: var(--ff-body);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.reviews-meta {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.reviews-gmaps-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-primary);
  text-decoration: none;
  border: 1px solid var(--color-border);
  padding: 5px 12px;
  border-radius: 100px;
  margin-top: 4px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.reviews-gmaps-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.reviews-head-text {
  flex: 1;
  min-width: 220px;
}

/* Marquee track */
.reviews-marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 8px;
}
.reviews-marquee-wrap::before,
.reviews-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.reviews-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-light-2) 0%, transparent 100%);
}
.reviews-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-light-2) 0%, transparent 100%);
}
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewsScroll 42s linear infinite;
}
.reviews-track:hover {
  animation-play-state: paused;
}
@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Review card */
.rcard {
  width: 320px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(12,59,34,0.06);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.rcard:hover {
  box-shadow: 0 6px 24px rgba(12,59,34,0.12);
  border-color: var(--color-accent);
}
.rcard-stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
  font-size: 0.9rem;
}
.rcard-quote {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  flex: 1;
}
.rcard-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}
.rcard-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.rcard-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}
.rcard-role {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

@media (max-width: 640px) {
  .reviews-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .reviews-rating-block {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 20px;
    width: 100%;
    justify-content: center;
  }
  .rcard { width: 270px; }
}

