/* ================================================================
   JASON'S PROPERTY CARE — style.css v3.0
   70% Light · 30% Dark · Montserrat + Inter · Subtle Orbs
   ================================================================ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Green palette */
  --g-900: #071310;
  --g-800: #0f2119;
  --g-700: #1a3526;
  --g-600: #264d37;
  --g-500: #336649;   /* primary brand green */
  --g-400: #45825e;
  --g-300: #5fa37a;
  --g-200: #94c4a8;
  --g-100: #c5e0d0;
  --g-50 : #e8f4ec;
  --g-25 : #f4faf6;

  /* Gold palette */
  --au-800: #7a4e0c;
  --au-700: #9a6412;
  --au-600: #b87c18;
  --au-500: #cf941e;  /* primary accent */
  --au-400: #e8a825;
  --au-300: #f2c050;
  --au-200: #f8d98a;
  --au-100: #fdf0cc;
  --au-50 : #fffaeb;

  /* Neutral */
  --n-900: #111827;
  --n-800: #1f2937;
  --n-700: #374151;
  --n-600: #4b5563;
  --n-500: #6b7280;
  --n-400: #9ca3af;
  --n-300: #d1d5db;
  --n-200: #e5e7eb;
  --n-100: #f3f4f6;
  --n-50 : #f9fafb;
  --white: #ffffff;

  /* Section backgrounds */
  --bg-white  : #ffffff;
  --bg-light  : #f7faf8;
  --bg-sage   : #eef5f0;
  --bg-cream  : #f9f7f4;
  --bg-dark   : #1a3526;
  --bg-darkest: #0f2119;

  /* Typography */
  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-body   : 'Inter',       system-ui, sans-serif;

  /* Layout */
  --section-py    : 96px;
  --section-py-sm : 60px;
  --container-max : 1240px;
  --container-pad : 24px;

  /* Shadows */
  --sh-xs  : 0 1px 4px rgba(0,0,0,0.06);
  --sh-sm  : 0 2px 10px rgba(0,0,0,0.08);
  --sh-md  : 0 6px 24px rgba(0,0,0,0.09);
  --sh-lg  : 0 12px 48px rgba(0,0,0,0.11);
  --sh-xl  : 0 24px 72px rgba(0,0,0,0.14);
  --sh-green: 0 8px 32px rgba(51,102,73,0.22);
  --sh-gold : 0 8px 32px rgba(207,148,30,0.28);

  /* Glass */
  --glass-w : rgba(255,255,255,0.82);
  --glass-wb: rgba(255,255,255,0.55);
  --glass-d : rgba(15,33,25,0.78);
  --glass-db: rgba(255,255,255,0.13);
  --glass-blur: blur(20px) saturate(180%);

  /* Borders */
  --border-light: rgba(0,0,0,0.08);
  --border-green: rgba(51,102,73,0.14);
  --border-gold : rgba(232,168,37,0.22);

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

  /* Easing */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out   : cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}


/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--n-800);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--n-900);
}


/* ─── AOS OVERRIDE (fixes invisible sections) ────────────────── */
/* Remove AOS's opacity:0 for elements not yet animated.
   We use our own transition system. */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
/* Animated state */
.aos-animate {
  opacity: 1 !important;
  transform: none !important;
}
/* Our own subtle reveal via JS class .revealed */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}


/* ─── UTILITIES ──────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section     { padding: var(--section-py) 0; }
.text-center { text-align: center; }
.mt-40       { margin-top: 40px; }
.mt-56       { margin-top: 56px; }


/* ─── SECTION HEADERS ────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--g-500);
  background: var(--g-50);
  border: 1px solid var(--border-green);
  padding: 6px 18px;
  border-radius: var(--r-full);
  margin-bottom: 18px;
}
.section-label--white {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--n-900);
  margin-bottom: 18px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.section-title--white     { color: #ffffff; }
.section-title .highlight { color: var(--g-500); }
.section-title .highlight-gold { color: var(--au-400); }
.section-sub {
  font-size: 1.05rem;
  color: var(--n-500);
  line-height: 1.7;
}
.section-sub--white { color: rgba(255,255,255,0.65); }


/* ─── GRIDS ──────────────────────────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }


/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 13px 28px;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn-lg { padding: 15px 36px; font-size: 0.95rem; }
.btn-sm { padding: 9px 20px; font-size: 0.8rem; }

.btn-primary {
  background: var(--g-500);
  color: #fff;
  box-shadow: var(--sh-green);
}
.btn-primary:hover {
  background: var(--g-600);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(51,102,73,0.30);
}
.btn-outline {
  background: transparent;
  color: var(--g-500);
  border-color: var(--g-300);
}
.btn-outline:hover {
  background: var(--g-500);
  color: #fff;
  border-color: var(--g-500);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--g-700);
  border-color: rgba(255,255,255,0.3);
}
.btn-white:hover { background: var(--g-50); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.40);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}


/* ================================================================
   PAGE LOADER
   ================================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  width: 96px;
  height: auto;
  animation: loaderPulse 1.6s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.65; transform:scale(0.94); }
}
.loader-bar {
  width: 180px;
  height: 3px;
  background: var(--n-200);
  border-radius: var(--r-full);
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--g-500), var(--au-400));
  border-radius: var(--r-full);
  animation: loaderFill 2.4s var(--ease-out) forwards;
}
@keyframes loaderFill {
  0%   { width: 0%; }
  60%  { width: 72%; }
  90%  { width: 92%; }
  100% { width: 100%; }
}
.loader-text {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--n-400);
}


/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--sh-sm);
}
.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-logo img {
  height: 74px;          /* bigger logo */
  width: auto;
  object-fit: contain;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--n-900);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.logo-tagline {
  font-size: 0.7rem;
  color: var(--g-500);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--n-600);
  border-radius: var(--r-sm);
  letter-spacing: 0.01em;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover,
.nav-link.active { color: var(--g-500); background: var(--g-25); }
.nav-arrow { font-size: 0.5rem; transition: transform 0.2s; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* ─── MEGA MENU ──────────────────────────────────────────────── */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(960px, 90vw);
  background: #fff;
  border: 1px solid var(--n-200);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.13), 0 4px 20px rgba(0,0,0,0.07);
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.26s var(--ease-out), transform 0.26s var(--ease-out), visibility 0.26s;
  z-index: 900;
  pointer-events: none;
}
.nav-item.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
/* Align locations menu more to the right */
.has-locations .mega-menu {
  left: auto;
  right: -120px;
  transform: translateY(10px);
}
.has-locations:hover .mega-menu {
  transform: translateY(0);
}

.mega-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 32px;
}
.locations-menu .mega-inner {
  grid-template-columns: 1fr 1fr auto;
}

/* Column */
.mega-col { display: flex; flex-direction: column; }
.mega-col-title {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g-500);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--n-100);
  margin-bottom: 10px;
}

/* Service items */
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  transition: background 0.18s;
  margin-bottom: 2px;
  cursor: pointer;
}
.mega-item:hover { background: var(--g-25); }
.mega-item--featured { background: var(--au-50); border: 1px solid var(--border-gold); }
.mega-item--featured:hover { background: var(--au-100); }
.mega-item-icon {
  width: 38px; height: 38px;
  background: var(--g-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g-500);
  font-size: 0.88rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.mega-item-icon--gold {
  background: var(--au-100);
  color: var(--au-600);
}
.mega-item-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--n-800);
  line-height: 1.3;
}
.mega-item-desc {
  font-size: 0.75rem;
  color: var(--n-500);
  margin-top: 3px;
  line-height: 1.4;
}

/* Mega CTA Panel */
.mega-cta-panel {
  min-width: 220px;
  max-width: 240px;
  background: linear-gradient(155deg, var(--g-800) 0%, var(--g-700) 60%, var(--g-600) 100%);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
}
.mega-cta-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--au-300);
  background: rgba(232,168,37,0.12);
  border: 1px solid rgba(232,168,37,0.25);
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
  align-self: flex-start;
}
.mega-cta-panel .mega-cta-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}
.mega-cta-panel .mega-cta-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.55;
  margin-bottom: 20px;
}
.mega-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  transition: all 0.22s;
  cursor: pointer;
}
.mega-cta-btn--primary {
  background: var(--au-400);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,168,37,0.35);
}
.mega-cta-btn--primary:hover {
  background: var(--au-300);
  transform: translateY(-1px);
}
.mega-cta-btn--secondary {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
}
.mega-cta-btn--secondary:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}
.mega-cta-divider {
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 12px 0;
}
.mega-cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
  margin-bottom: 16px;
  transition: color 0.2s;
}
.mega-cta-phone:hover { color: #fff; }
.mega-cta-phone i { color: var(--au-300); font-size: 0.78rem; }
.mega-cta-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mega-cta-trust span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.48);
  display: flex;
  align-items: center;
  gap: 4px;
}
.mega-cta-trust i { color: var(--au-300); }

/* Locations grid */
.locations-col + .locations-col .mega-col-title { margin-top: 0; }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.location-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--n-600);
  transition: background 0.15s, color 0.15s;
}
.location-item i { color: var(--g-400); font-size: 0.68rem; flex-shrink: 0; }
.location-item:hover { background: var(--g-25); color: var(--g-600); }

/* Header CTA */
.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--g-500);
  color: #fff;
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: all 0.22s;
  box-shadow: var(--sh-green);
  flex-shrink: 0;
}
.btn-header-cta:hover {
  background: var(--g-600);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(51,102,73,0.3);
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
  margin-left: auto;
  border-radius: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.hamburger:hover { background: rgba(0,0,0,.06); }
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--n-700);
  border-radius: 2px;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Mobile Nav Backdrop ── */
.mnav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 985;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.mnav-backdrop.open {
  display: block;
  opacity: 1;
}

/* ── Mobile Nav Drawer ── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100vw, 360px);
  z-index: 990;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.22);
}
.mobile-nav.open { transform: translateX(0); }

/* ── Panels (shared base) ── */
.mnav-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Main panel — visible by default, slides left when services open */
.mnav-panel-main {
  transform: translateX(0);
  z-index: 1;
}
.mobile-nav.services-open .mnav-panel-main {
  transform: translateX(-28%);
}

/* Services panel — hidden by default, slides in from right */
.mnav-panel-services {
  transform: translateX(100%);
  z-index: 2;
}
.mobile-nav.services-open .mnav-panel-services {
  transform: translateX(0);
}

/* ── Panel Header Row ── */
.mnav-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 72px;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
  background: #fff;
}
.mnav-logo-link img {
  height: 58px;
  width: auto;
  display: block;
}

/* ── Close & Back buttons ── */
.mnav-close {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--n-600);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.mnav-close:hover { background: rgba(0, 0, 0, 0.12); color: var(--n-900); }

.mnav-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.83rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--g-600);
  background: rgba(60, 110, 60, 0.08);
  border: 1px solid rgba(60, 110, 60, 0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mnav-back:hover { background: rgba(60, 110, 60, 0.16); }
.mnav-back i { font-size: 0.78rem; }

/* ── Main Nav Links ── */
.mnav-links {
  flex: 1;
  overflow-y: auto;
  padding: 6px 0;
  -webkit-overflow-scrolling: touch;
}

.mnav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--n-800);
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.mnav-link:last-child { border-bottom: none; }
.mnav-link:hover, .mnav-link:active { background: rgba(60,110,60,.05); color: var(--g-600); }

.mnav-link-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mnav-link-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(60, 110, 60, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--g-500);
  font-size: 0.88rem;
  flex-shrink: 0;
}
.mnav-chevron {
  color: var(--n-400);
  font-size: 0.72rem;
  transition: transform 0.2s;
}
.mnav-services-trigger:hover .mnav-chevron,
.mnav-services-trigger:active .mnav-chevron { transform: translateX(3px); }

/* ── Footer (CTA area) ── */
.mnav-footer {
  padding: 16px 20px 28px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  background: #fff;
}
.mnav-cta {
  width: 100% !important;
  justify-content: center !important;
}
.mnav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--n-500);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s;
}
.mnav-phone i { color: var(--g-500); font-size: 0.8rem; }
.mnav-phone:hover { color: var(--g-600); }

/* ── Services Panel Eyebrow ── */
.mnav-panel-eyebrow {
  padding: 10px 20px 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--g-500);
  flex-shrink: 0;
  background: #fff;
}
.mnav-panel-eyebrow i { margin-right: 6px; opacity: 0.7; }

/* ── Services scrollable list ── */
.mnav-services-list {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px;
}
.mnav-view-all-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--g-600);
  text-decoration: none;
  background: rgba(60, 110, 60, 0.06);
  border-bottom: 1px solid rgba(60, 110, 60, 0.12);
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.mnav-view-all-link:hover { background: rgba(60, 110, 60, 0.12); }
.mnav-view-all-link i { font-size: 0.75rem; }

.mnav-group-head {
  padding: 9px 20px 5px;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--n-400);
  background: rgba(0, 0, 0, 0.025);
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.mnav-svc {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.mnav-svc:hover, .mnav-svc:active { background: rgba(60, 110, 60, 0.04); }

.mnav-svc-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(60, 110, 60, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--g-500);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.mnav-svc-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mnav-svc-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--n-800);
  font-family: var(--font-heading);
  line-height: 1.2;
}
.mnav-svc-sub {
  font-size: 0.73rem;
  color: var(--n-400);
  line-height: 1.3;
}


/* ================================================================
   HERO — LIGHT PREMIUM
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(155deg, #fff 0%, var(--g-25) 55%, var(--g-50) 100%);
  overflow: hidden;
  padding: 120px 0 90px;
}

/* Orbs */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  will-change: transform;
}
.orb-1 {
  width: 640px; height: 640px;
  top: -180px; left: -180px;
  background: radial-gradient(circle at 40% 40%,
    rgba(51,102,73,0.13) 0%, rgba(51,102,73,0.04) 55%, transparent 70%);
  animation: orbFloat1 18s ease-in-out infinite;
}
.orb-2 {
  width: 520px; height: 520px;
  top: 35%; right: -140px;
  background: radial-gradient(circle at 60% 40%,
    rgba(207,148,30,0.11) 0%, rgba(207,148,30,0.03) 55%, transparent 70%);
  animation: orbFloat2 24s ease-in-out infinite;
}
.orb-3 {
  width: 400px; height: 400px;
  bottom: -80px; left: 28%;
  background: radial-gradient(circle at 50% 60%,
    rgba(51,102,73,0.08) 0%, transparent 65%);
  animation: orbFloat3 16s ease-in-out infinite;
}
.orb-4 {
  width: 280px; height: 280px;
  top: 18%; left: 48%;
  background: radial-gradient(circle at 50% 50%,
    rgba(207,148,30,0.07) 0%, transparent 65%);
  animation: orbFloat1 27s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-48px) scale(1.07); }
  66%     { transform: translate(-24px,28px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(-36px,44px) scale(1.06); }
  70%     { transform: translate(28px,-20px) scale(0.94); }
}
@keyframes orbFloat3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(20px,-32px) scale(1.04); }
}

/* Hero layout */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--g-25);
  border: 1px solid var(--border-green);
  border-radius: var(--r-full);
  padding: 7px 16px;
  margin-bottom: 24px;
  width: fit-content;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--g-400);
  border-radius: 50%;
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; }
  50%     { opacity:0.25; }
}
.hero-badge-text {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--g-600);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--n-900);
  margin-bottom: 24px;
}
.hero-title .accent-line {
  display: block;
  color: var(--g-500);
}

.hero-desc {
  font-size: 1.06rem;
  color: var(--n-600);
  line-height: 1.76;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Mini stats */
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--g-500);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--n-500);
  font-weight: 500;
}

/* Hero visual */
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
}
.hero-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
}

/* Float cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--glass-w);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-wb);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  animation: cardFloat 4s ease-in-out infinite;
}
.card-rating    { bottom: -24px; left: -24px; animation-delay: 0s; }
.card-certified { top: -20px; right: -20px; animation-delay: 2s; }
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
.float-card-icon  { font-size: 1.5rem; flex-shrink: 0; }
.float-card-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--n-900);
  line-height: 1.2;
}
.float-card-sub { font-size: 0.72rem; color: var(--n-500); margin-top: 2px; }

/* Hero entry animations */
[data-hero] { opacity: 0; }
.hero-ready [data-hero="up"]   { animation: hUp    0.9s var(--ease-out) forwards; }
.hero-ready [data-hero="right"]{ animation: hRight 0.9s var(--ease-out) forwards; }
.hero-ready [data-hero="scale"]{ animation: hScale 1.0s var(--ease-out) forwards; }
.hero-ready [data-delay="1"] { animation-delay: 0.05s; }
.hero-ready [data-delay="2"] { animation-delay: 0.15s; }
.hero-ready [data-delay="3"] { animation-delay: 0.25s; }
.hero-ready [data-delay="4"] { animation-delay: 0.38s; }
.hero-ready [data-delay="5"] { animation-delay: 0.52s; }

@keyframes hUp    { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }
@keyframes hRight { from { opacity:0; transform:translateX(-32px); } to { opacity:1; transform:translateX(0); } }
@keyframes hScale { from { opacity:0; transform:scale(0.92); } to { opacity:1; transform:scale(1); } }


/* ================================================================
   TRUST TICKER
   ================================================================ */
.ticker-bar {
  background: linear-gradient(90deg, var(--g-600) 0%, var(--g-500) 50%, var(--g-600) 100%);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: tickerScroll 34s linear infinite;
}
.ticker-bar:hover .ticker-track { animation-play-state: paused; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
}
.ticker-item i { color: var(--au-300); font-size: 0.78rem; }


/* ================================================================
   STATS — WHITE
   ================================================================ */
.stats-section {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--n-200);
  border: 1px solid var(--n-200);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--white);
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: background 0.28s;
}
.stat-item:hover { background: var(--g-25); }
.stat-icon {
  width: 52px; height: 52px;
  background: var(--g-50);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--g-500);
}
.stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--g-500);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--n-500);
  font-weight: 500;
}


/* ================================================================
   SECTION ORBS (light sections)
   ================================================================ */
.section-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.section-orb-tl {
  width: 480px; height: 480px;
  top: -140px; left: -100px;
  background: radial-gradient(circle, rgba(51,102,73,0.08) 0%, transparent 70%);
  animation: orbFloat1 22s ease-in-out infinite;
}
.section-orb-br {
  width: 400px; height: 400px;
  bottom: -120px; right: -80px;
  background: radial-gradient(circle, rgba(207,148,30,0.07) 0%, transparent 70%);
  animation: orbFloat2 28s ease-in-out infinite;
}
.section-orb-mid {
  width: 320px; height: 320px;
  top: 40%; left: 55%;
  background: radial-gradient(circle, rgba(51,102,73,0.05) 0%, transparent 70%);
  animation: orbFloat3 18s ease-in-out infinite;
}


/* ================================================================
   SERVICES — SAGE BG
   ================================================================ */
.services-section {
  background: var(--bg-sage);
  position: relative;
  overflow: hidden;
}
.services-section .container { position: relative; z-index: 2; }

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.42) 0%, transparent 55%);
}
.service-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--au-500);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.service-card-icon {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--g-500);
}

.service-card-body {
  padding: 22px 22px 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--n-900);
  margin-bottom: 8px;
}
.service-card-text {
  font-size: 0.875rem;
  color: var(--n-600);
  line-height: 1.65;
  margin-bottom: 14px;
}
.service-list { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.service-list li {
  font-size: 0.82rem;
  color: var(--n-600);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--g-400);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-card-footer {
  padding: 14px 22px 18px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--g-500);
  transition: gap 0.22s, color 0.22s;
}
.service-card-link:hover { gap: 10px; color: var(--g-600); }

/* CTA service card */
.service-card-cta {
  background: linear-gradient(145deg, var(--g-600), var(--g-700));
  border-color: transparent;
}
.service-card-cta .service-card-body {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 44px 28px;
}
.service-cta-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--au-300);
  margin: 0 auto 20px;
}
.service-card-cta .service-card-title { color: #fff; }
.service-card-cta .service-card-text  { color: rgba(255,255,255,0.62); }


/* ================================================================
   WHY CHOOSE US — WHITE
   ================================================================ */
.features-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.features-section .container { position: relative; z-index: 2; }

.feature-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xs);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g-500), var(--au-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--border-green);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.fi-green  { background: var(--g-50); }
.fi-gold   { background: var(--au-50); }
.fi-sage   { background: var(--bg-sage); }
.fi-light  { background: var(--n-100); }
.fi-cream  { background: var(--bg-cream); }

.feature-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--n-900);
}
.feature-text { font-size: 0.875rem; color: var(--n-600); line-height: 1.7; }


/* ================================================================
   PROCESS — DARK (30%)
   ================================================================ */
.process-section {
  background: linear-gradient(145deg, var(--g-700) 0%, var(--bg-dark) 50%, var(--bg-darkest) 100%);
  position: relative;
  overflow: hidden;
  padding: var(--section-py) 0;
}
/* Dark section orbs */
.dark-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.dark-orb-1 {
  width: 600px; height: 600px;
  top: -200px; right: -120px;
  background: radial-gradient(circle, rgba(51,102,73,0.35) 0%, transparent 65%);
  animation: orbFloat1 22s ease-in-out infinite;
}
.dark-orb-2 {
  width: 450px; height: 450px;
  bottom: -150px; left: -80px;
  background: radial-gradient(circle, rgba(207,148,30,0.18) 0%, transparent 65%);
  animation: orbFloat2 28s ease-in-out infinite;
}
.dark-orb-3 {
  width: 280px; height: 280px;
  top: 50%; left: 40%;
  background: radial-gradient(circle, rgba(51,102,73,0.20) 0%, transparent 65%);
  animation: orbFloat3 17s ease-in-out infinite;
}
.process-section .container { position: relative; z-index: 2; }

.process-steps-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps-wrap::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.14) 20%,
    rgba(255,255,255,0.14) 80%,
    transparent
  );
  pointer-events: none;
  z-index: 1;
}
.process-step {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: background 0.28s, border-color 0.28s, transform 0.28s;
}
.process-step:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-4px);
}
.step-number {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--g-500), var(--g-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 16px rgba(51,102,73,0.4);
  flex-shrink: 0;
}
.step-icon { font-size: 1.4rem; color: var(--au-300); }
.step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.step-text { font-size: 0.85rem; color: rgba(255,255,255,0.60); line-height: 1.7; }


/* ================================================================
   TESTIMONIALS — WARM CREAM
   ================================================================ */
.testimonials-section {
  background: var(--bg-cream);
  overflow: hidden;
  position: relative;
}
.testimonials-section .container { position: relative; z-index: 2; }

.testimonials-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  margin: 0 -24px;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  padding: 16px 40px;
  width: max-content;
  animation: testimonialScroll 46s linear infinite;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes testimonialScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testimonial-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.28s, box-shadow 0.28s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.testimonial-stars { color: var(--au-400); font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-quote {
  font-size: 0.9rem;
  color: var(--n-700);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--g-500), var(--g-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--n-800);
}
.testimonial-role { font-size: 0.74rem; color: var(--n-500); margin-top: 2px; }


/* ================================================================
   AREAS — LIGHT SAGE
   ================================================================ */
.areas-section {
  background: var(--bg-light);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.areas-section .container { position: relative; z-index: 2; }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border-green);
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--g-600);
  box-shadow: var(--sh-xs);
  transition: all 0.22s;
}
.area-chip i { font-size: 0.72rem; color: var(--g-400); }
.area-chip:hover {
  background: var(--g-500);
  color: #fff;
  border-color: var(--g-500);
  transform: translateY(-2px);
  box-shadow: var(--sh-green);
}
.area-chip:hover i { color: rgba(255,255,255,0.7); }


/* ================================================================
   CTA — DARK (30%)
   ================================================================ */
.cta-section {
  background: linear-gradient(155deg, var(--bg-darkest) 0%, var(--bg-dark) 60%, var(--g-600) 100%);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-content {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--au-300);
  margin-bottom: 20px;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: var(--au-300); }
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}
.cta-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.cta-trust-item i { color: var(--au-300); font-size: 0.85rem; }


/* ================================================================
   FOOTER — DARK
   ================================================================ */
.site-footer { background: var(--n-900); color: rgba(255,255,255,0.70); }
.footer-main {
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo img {
  height: 66px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}
.footer-logo-sub { font-size: 0.7rem; color: rgba(255,255,255,0.42); margin-top: 2px; }
.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.52);
  transition: all 0.22s;
}
.social-link:hover {
  background: var(--g-500);
  border-color: var(--g-500);
  color: #fff;
  transform: translateY(-2px);
}
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.footer-links a:hover { color: var(--g-300); transform: translateX(4px); }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.5;
}
.footer-contact-item a { color: rgba(255,255,255,0.48); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--g-300); }
.footer-contact-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--g-300);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom { padding: 22px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.32); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.32);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--g-300); }


/* ================================================================
   WHATSAPP + BACK TO TOP
   ================================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 90px; right: 24px;
  z-index: 800;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
}
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.50);
}
.whatsapp-tooltip {
  position: absolute;
  right: 62px; top: 50%;
  transform: translateY(-50%);
  background: var(--n-900);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--n-900);
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 800;
  width: 46px; height: 46px;
  background: var(--g-500);
  color: #fff;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--sh-green);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all 0.3s var(--ease-out);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--g-600); transform: translateY(-3px); }


/* ================================================================
   ENQUIRY / CONTACT FORM SECTION
   ================================================================ */
.enquiry-section {
  background: var(--bg-light);
  overflow: hidden;
}

.enquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.10);
}

/* ── Left: image panel ── */
.enquiry-visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.enquiry-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.enquiry-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.enquiry-overlay-card {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 2;
  background: rgba(8,22,12,0.80);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.enquiry-card-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.enquiry-card-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--g-300);
  flex-shrink: 0;
}
.enquiry-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  font-family: var(--font-heading);
}
.enquiry-card-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin-top: 2px;
}

/* ── Right: form panel ── */
.enquiry-form-wrap {
  background: #fff;
  display: flex;
  align-items: stretch;
}
.enquiry-form-inner {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.enquiry-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--n-900);
  margin: 10px 0 14px;
}
.enquiry-form-sub {
  font-size: 0.92rem;
  color: var(--n-500);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ── Form elements ── */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--n-700);
  letter-spacing: 0.02em;
  font-family: var(--font-heading);
}
.form-input {
  padding: 11px 14px;
  border: 1.5px solid var(--n-200);
  border-radius: var(--r-md);
  font-size: 0.88rem;
  color: var(--n-800);
  font-family: var(--font-body);
  background: var(--bg-light);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--g-400);
  box-shadow: 0 0 0 3px rgba(74,138,78,0.10);
  background: #fff;
}
.form-input::placeholder { color: var(--n-400); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--bg-light);
  padding-right: 40px;
  cursor: pointer;
}
.form-textarea {
  resize: vertical;
  min-height: 108px;
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.form-trust-note {
  font-size: 0.75rem;
  color: var(--n-400);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
}
.form-trust-note i { color: var(--g-400); font-size: 0.7rem; }


/* ================================================================
   SERVICE PAGES — SHARED TEMPLATE STYLES
   ================================================================ */

/* ── Service Hero ── */
.service-hero {
  position: relative;
  background: linear-gradient(140deg, var(--g-900) 0%, var(--g-800) 55%, #0c1e10 100%);
  padding: 150px 0 88px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.service-hero .container { position: relative; z-index: 2; }
.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.40);
  margin-bottom: 28px;
  font-family: var(--font-heading);
  font-weight: 500;
}
.service-breadcrumb a { color: rgba(255,255,255,0.40); text-decoration: none; transition: color 0.2s; }
.service-breadcrumb a:hover { color: var(--g-300); }
.service-breadcrumb-sep { opacity: 0.35; font-size: 0.65rem; }
.service-breadcrumb-current { color: var(--g-300); font-weight: 600; }
.service-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.74rem; font-weight: 700;
  color: var(--g-300);
  letter-spacing: 0.09em; text-transform: uppercase;
  font-family: var(--font-heading); margin-bottom: 20px;
}
.service-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900; line-height: 1.13;
  color: #fff; margin-bottom: 20px;
}
.service-hero-title .sh-accent { color: var(--g-300); }
.service-hero-desc {
  font-size: 1.03rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.72; margin-bottom: 34px; max-width: 510px;
}
.service-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.service-hero-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.service-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.service-hero-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(8,22,12,0.80);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md); padding: 12px 16px;
  display: flex; align-items: center; gap: 12px; color: #fff;
}
.service-hero-badge-icon {
  width: 34px; height: 34px; background: var(--g-600); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: #fff; flex-shrink: 0;
}
.service-hero-badge-title { font-size: 0.82rem; font-weight: 700; }
.service-hero-badge-sub { font-size: 0.68rem; color: rgba(255,255,255,0.50); }

/* Fix: service page data-hero elements visible (main.js only triggers .hero-ready on .hero-section) */
.service-hero [data-hero] { opacity: 1 !important; animation: none !important; transform: none !important; }

/* ── Service Image Strip (3-photo feature row) ── */
.si-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.si-strip-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--sh-md);
}
.si-strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease-out); }
.si-strip-item:hover img { transform: scale(1.04); }
.si-strip-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── Gallery Section (Masonry) ── */
.gallery-section { background: var(--bg-alt); }
.masonry-grid {
  column-count: 3;
  column-gap: 16px;
  margin-top: 44px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-md);
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item .masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,20,8,0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay-label {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 920px) {
  .masonry-grid { column-count: 2; }
}
@media (max-width: 680px) {
  .si-strip { grid-template-columns: 1fr 1fr; }
  .masonry-grid { column-count: 2; column-gap: 10px; }
  .masonry-item { margin-bottom: 10px; }
}

/* ── Overview ── */
.overview-section { background: var(--white); }
.overview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px; align-items: start;
}
.overview-title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  font-weight: 800; line-height: 1.18;
  color: var(--n-900); margin: 10px 0 18px;
}
.overview-body { font-size: 0.96rem; color: var(--n-600); line-height: 1.76; margin-bottom: 20px; }
.overview-checklist { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 10px; }
.overview-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--n-700); line-height: 1.5; }
.ov-check {
  width: 20px; height: 20px;
  background: var(--g-100); border: 1.5px solid var(--g-300); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; color: var(--g-600); flex-shrink: 0; margin-top: 1px;
}
.overview-highlights { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 108px; }
.ov-highlight {
  background: var(--bg-light); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 22px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.ov-highlight:hover { border-color: var(--g-200); box-shadow: var(--sh-sm); }
.ov-highlight-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ohi-green { background: var(--g-100); color: var(--g-600); }
.ohi-gold  { background: var(--au-50); color: var(--au-600); }
.ohi-sage  { background: var(--bg-sage); color: var(--g-700); }
.ohi-light { background: var(--n-100); color: var(--n-700); }
.ov-highlight-title { font-family: var(--font-heading); font-size: 0.87rem; font-weight: 700; color: var(--n-800); margin-bottom: 4px; }
.ov-highlight-text { font-size: 0.81rem; color: var(--n-500); line-height: 1.5; }

/* ── Services Included ── */
.si-section { background: var(--bg-light); }
.si-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.si-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 28px 24px 24px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s, border-color 0.28s;
}
.si-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--g-500), var(--g-300));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.32s var(--ease-out);
}
.si-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--g-100); }
.si-card:hover::after { transform: scaleX(1); }
.si-card-icon { width: 52px; height: 52px; border-radius: var(--r-md); background: var(--g-100); color: var(--g-600); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.si-card-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--n-800); }
.si-card-text { font-size: 0.84rem; color: var(--n-500); line-height: 1.62; flex: 1; }

/* ── Benefits ── */
.benefits-section { background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.benefit-card {
  padding: 30px 26px; border: 1px solid var(--border-light);
  border-radius: var(--r-lg); background: var(--white);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.benefit-icon { width: 52px; height: 52px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.bi-green { background: var(--g-100); color: var(--g-600); }
.bi-gold  { background: var(--au-50); color: var(--au-600); }
.bi-sage  { background: var(--bg-sage); color: var(--g-700); }
.benefit-title { font-family: var(--font-heading); font-size: 0.98rem; font-weight: 700; color: var(--n-800); }
.benefit-text { font-size: 0.85rem; color: var(--n-500); line-height: 1.66; }

/* ── Service Process (5-step) ── */
.service-process-section {
  background: linear-gradient(155deg, var(--g-900) 0%, #091510 100%);
  position: relative; overflow: hidden;
}
.service-process-section .container { position: relative; z-index: 2; }
.sp-wrap {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative;
}
.sp-wrap::before {
  content: ''; position: absolute;
  top: 34px; left: 8%; width: 84%; height: 1px;
  background: rgba(255,255,255,0.10); z-index: 0;
}
.sp-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.sp-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800;
  color: var(--g-300); margin-bottom: 18px;
  transition: background 0.3s, border-color 0.3s;
}
.sp-step:hover .sp-num { background: var(--g-700); border-color: var(--g-500); }
.sp-icon { width: 36px; height: 36px; background: var(--g-700); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; color: var(--g-200); margin-bottom: 14px; }
.sp-title { font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.sp-text { font-size: 0.76rem; color: rgba(255,255,255,0.47); line-height: 1.56; }

/* ── Before & After ── */
.ba-section { background: var(--bg-light); }
.ba-grid { display: grid; grid-template-columns: 1fr 48px 1fr; gap: 0; align-items: center; }
.ba-card { border-radius: var(--r-xl); overflow: hidden; position: relative; aspect-ratio: 16/11; box-shadow: var(--sh-md); }
.ba-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.ba-card:hover img { transform: scale(1.04); }
.ba-label { position: absolute; top: 16px; left: 16px; padding: 6px 16px; border-radius: 100px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; font-family: var(--font-heading); }
.ba-label-before { background: rgba(10,24,15,0.78); backdrop-filter: blur(10px); color: rgba(255,255,255,0.80); border: 1px solid rgba(255,255,255,0.10); }
.ba-label-after { background: var(--g-600); color: #fff; }
.ba-arrow { display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--g-400); }

/* ── Industries ── */
.industries-section { background: var(--white); }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.industry-card { display: flex; align-items: center; gap: 16px; padding: 20px; border: 1px solid var(--border-light); border-radius: var(--r-lg); background: var(--white); transition: border-color 0.25s, box-shadow 0.25s, background 0.25s; }
.industry-card:hover { border-color: var(--g-200); box-shadow: var(--sh-sm); background: var(--bg-light); }
.industry-icon { width: 46px; height: 46px; border-radius: var(--r-md); background: var(--g-100); color: var(--g-600); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.industry-name { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--n-800); margin-bottom: 3px; }
.industry-desc { font-size: 0.77rem; color: var(--n-500); line-height: 1.4; }

/* ── FAQ ── */
.faq-section { background: var(--bg-light); }
.faq-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 72px; align-items: start; }
.faq-side { position: sticky; top: 108px; }
.faq-side-title { font-family: var(--font-heading); font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 800; line-height: 1.22; color: var(--n-900); margin: 10px 0 16px; }
.faq-side-text { font-size: 0.92rem; color: var(--n-500); line-height: 1.66; margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--r-lg); overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s; }
.faq-item.faq-open { border-color: var(--g-200); box-shadow: var(--sh-sm); }
.faq-question { width: 100%; background: none; border: none; padding: 17px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; text-align: left; font-family: var(--font-heading); font-size: 0.91rem; font-weight: 600; color: var(--n-800); transition: color 0.2s; }
.faq-question:hover { color: var(--g-600); }
.faq-item.faq-open .faq-question { color: var(--g-600); }
.faq-q-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--bg-light); border: 1.5px solid var(--border-light); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; color: var(--n-500); flex-shrink: 0; transition: background 0.25s, color 0.25s, transform 0.32s var(--ease-out); }
.faq-item.faq-open .faq-q-icon { background: var(--g-100); color: var(--g-600); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), padding 0.38s; padding: 0 20px; }
.faq-item.faq-open .faq-answer { max-height: 500px; padding-bottom: 18px; }
.faq-answer p { font-size: 0.87rem; color: var(--n-600); line-height: 1.72; margin: 0; }

/* ── Service Page Responsive ── */
@media (max-width: 1100px) {
  .sp-wrap { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .sp-wrap::before { display: none; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-side { position: static; }
  .overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .overview-highlights { position: static; flex-direction: row; flex-wrap: wrap; }
  .ov-highlight { flex: 1 1 calc(50% - 8px); }
}
@media (max-width: 920px) {
  .service-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-hero { padding: 130px 0 64px; }
  .service-hero-visual { max-width: 480px; }
  .service-hero-desc { max-width: 100%; }
  .si-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { display: none; }
}
@media (max-width: 680px) {
  .si-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .sp-wrap { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .overview-highlights { flex-direction: column; }
  .ov-highlight { flex: 1 1 100%; }
  .service-hero-actions { flex-direction: column; }
  .service-hero-actions .btn { width: 100%; justify-content: center; }
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .mega-menu { width: min(820px, 92vw); }
}

@media (max-width: 1100px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-content { gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 920px) {
  :root { --section-py: 72px; }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
  }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .hero-badge  { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats  { justify-content: center; gap: 24px; }
  .hero-desc   { margin-left: auto; margin-right: auto; }

  .main-nav, .btn-header-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  /* Hide mega menus on mobile */
  .mega-menu { display: none; }

  .process-steps-wrap { grid-template-columns: repeat(2,1fr); }
  .process-steps-wrap::before { display: none; }

  .enquiry-inner { grid-template-columns: 1fr; }
  .enquiry-visual { min-height: 300px; }
  .enquiry-form-inner { padding: 40px 36px; }
}

@media (max-width: 680px) {
  :root { --section-py: 56px; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
  .process-steps-wrap { grid-template-columns: 1fr; }
  .cta-trust   { gap: 16px; }
  .header-inner { height: 68px; }
  .header-logo img { height: 56px; }
  .testimonial-card { width: 292px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .enquiry-form-inner { padding: 32px 20px; }
}
