/* ==========================================================
   KIWI CLEANING COMPANY — Main Stylesheet
   Design: Fresh, organic-modern | Clean & premium feel
   Fonts: Outfit (display) + Nunito (body)

   Brand Palette (official color_scheme.png):
     Lime    #5EE030  — bright accent / badges only
     Emerald #00C853  — hover states / highlights
     Forest  #0D2B19  — dark backgrounds / footer
   Logo green #1C6B3A — PRIMARY (buttons, links, icons)
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Nunito:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  /*
   * Hierarchy:
   *  --g-800  #0D2B19  dark forest   → hero/footer bg, dark sections
   *  --g-700  #1C6B3A  logo green    → PRIMARY buttons, links, borders
   *  --g-600  #1E8040  logo hover    → button hover, active states
   *  --g-500  #00C853  emerald       → CTA hover glow, section accents
   *  --g-400  #5EE030  lime          → badges, small highlights only
   */
  --g-950:  #030E06;   /* near black                              */
  --g-900:  #081A0E;   /* deepest footer bg                       */
  --g-800:  #0D2B19;   /* dark forest  — dark section bg          */
  --g-700:  #1C6B3A;   /* LOGO GREEN   — primary brand color      */
  --g-600:  #1E8040;   /* logo hover   — button hover             */
  --g-550:  #00C853;   /* emerald      — energetic accent/glow    */
  --g-500:  #14A84A;   /* mid green    — icon fills, highlights   */
  --g-400:  #5EE030;   /* LIME         — badges, micro-accents    */
  --g-300:  #86E85C;   /* lime mid     — light lime               */
  --g-200:  #B8F29A;   /* lime pale    — very light tint          */
  --g-100:  #DDFAC8;   /* lime wash                               */
  --g-50:   #EDFEE0;   /* near-white green tint                   */

  /* Neutrals */
  --n-900:  #111827;
  --n-700:  #374151;
  --n-500:  #6B7280;
  --n-300:  #D1D5DB;
  --n-100:  #F3F4F6;
  --white:  #FFFFFF;

  /* Semantic — logo green as authoritative primary */
  --color-primary:    var(--g-700);   /* #1C6B3A logo green   */
  --color-primary-h:  var(--g-600);   /* #1E8040 hover        */
  --color-accent:     var(--g-400);   /* #5EE030 lime accent  */
  --color-text:       #182820;
  --color-text-muted: #4D6858;
  --color-bg:         #F8FCF9;
  --color-border:     #C8E4D0;
  --color-surface:    var(--white);

  /* Typography — Outfit + Nunito */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Nunito', sans-serif;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 100px;

  /* Layout */
  --max-w:    1270px;
  --nav-h:    80px;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --radius-x: 999px;

  /* Shadows — keyed to logo green rgb(28,107,58) */
  --shadow-s: 0 1px 6px rgba(28,107,58,.09);
  --shadow-m: 0 4px 24px rgba(28,107,58,.12);
  --shadow-l: 0 12px 60px rgba(28,107,58,.15);
  --shadow-x: 0 24px 100px rgba(28,107,58,.20);

  /* Transitions */
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-fast:   0.18s var(--ease);
  --t-mid:    0.32s var(--ease);
  --t-slow:   0.55s var(--ease);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img   { max-width: 100%; display: block; height: auto; }
a     { text-decoration: none; color: inherit; transition: color var(--t-fast); }
ul    { list-style: none; }
button{ cursor: pointer; border: none; background: none; font-family: inherit; }

/* Accessibility: skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-md);
  background: var(--color-primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-s);
  font-weight: 600;
  z-index: 10000;
  transition: top var(--t-fast);
}
.skip-link:focus { top: var(--space-md); }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--g-900);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }
p  { font-size: 1.05rem; max-width: 68ch; }
strong { font-weight: 600; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.section         { padding: var(--space-3xl) 0; }
.section--sm     { padding: 60px 0; }
.section--dark   { background: var(--g-800); color: var(--white); }
.section--green  { background: var(--g-50);  color: var(--color-text); }
.section--tinted { background: #F0FAF3; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  border-radius: var(--radius-x);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--t-mid);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--g-700);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27,107,58,.30);
}
.btn-primary:hover {
  background: var(--g-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27,107,58,.35);
}
.btn-secondary {
  background: transparent;
  color: var(--g-700);
  border-color: var(--g-700);
}
.btn-secondary:hover {
  background: var(--g-700);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--g-700);
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.btn-white:hover {
  background: var(--g-100);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }

/* ── Section Labels ─────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--g-100);
  color: var(--g-700);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-x);
  margin-bottom: var(--space-md);
}
.section--dark .section-label {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

/* ── Pill badges ─────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-x);
  font-size: 0.8rem;
  font-weight: 600;
}
.badge-green  { background: var(--g-100); color: var(--g-700); }
.badge-dark   { background: var(--g-900); color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
}

.mobile-phone-bar { display: none; }
.mobile-call-btn { display: none; }

.navbar {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--t-mid);
}
.navbar.scrolled { box-shadow: var(--shadow-m); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  height: var(--nav-h);
}

.nav-logo img { height: 42px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--g-800);
  padding: 8px 14px;
  border-radius: var(--radius-s);
  transition: all var(--t-fast);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--g-700);
  background: var(--g-100);
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown-toggle .fa { font-size: 0.7rem; transition: transform var(--t-fast); }
.has-dropdown.open .dropdown-toggle .fa { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-l);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-mid);
  z-index: 100;
}
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
@media (min-width: 769px) {
  .has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-header {
  padding: 6px 12px 4px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-s);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: all var(--t-fast);
}
.dropdown-item .fa { color: var(--g-500); font-size: 0.8rem; }
.dropdown-item:hover { background: var(--g-50); color: var(--g-700); }

.dropdown-footer { border-top: 1px solid var(--color-border); margin-top: 6px; padding-top: 6px; }
.dropdown-all {
  display: block;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--g-700);
  border-radius: var(--radius-s);
  transition: all var(--t-fast);
}
.dropdown-all:hover { background: var(--g-100); }

.nav-btn { padding: 10px 24px; font-size: 0.88rem; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--g-700);
  padding: 8px 16px;
  border: 1.5px solid var(--g-700);
  border-radius: var(--radius-x);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.nav-phone:hover { background: var(--g-700); color: var(--white); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--radius-s);
}
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--g-900);
  border-radius: 2px;
  transition: all var(--t-fast);
}
.nav-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HOME — HERO (LIGHT SPLIT LAYOUT)
═══════════════════════════════════════════════════════════ */
.hero {
  background: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

/* Soft green blob — bottom-right, behind image */
.hero::before {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--g-50) 0%, transparent 72%);
  pointer-events: none;
}
/* Smaller top-left accent dot */
.hero::after {
  content: '';
  position: absolute;
  top: 80px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--g-100) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Two-column split ── */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 80px;
  position: relative;
  z-index: 1;
}

/* ── LEFT: text content ── */
.hero-content { color: var(--color-text); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--g-50);
  border: 1.5px solid var(--g-200);
  color: var(--g-700);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-x);
  margin-bottom: var(--space-lg);
  animation: fadeInDown 0.6s var(--ease) both;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--g-550);
  animation: pulse 2s infinite;
}

.hero-title {
  color: var(--g-800);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.7s 0.1s var(--ease) both;
  letter-spacing: -0.03em;
}
.hero-title em {
  font-style: normal;
  color: var(--g-700);
  display: block;
}

.hero-desc {
  color: var(--color-text-muted);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  max-width: 460px;
  animation: fadeInUp 0.7s 0.2s var(--ease) both;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.7s 0.3s var(--ease) both;
}

/* Social proof strip under buttons */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeInUp 0.7s 0.4s var(--ease) both;
}
.hero-proof-avatars {
  display: flex;
}
.hero-proof-avatars span {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  background: linear-gradient(135deg, var(--g-700), var(--g-500));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  margin-right: -10px;
  flex-shrink: 0;
}
.hero-proof-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.hero-proof-text strong {
  color: var(--g-700);
  font-weight: 700;
}

/* ── RIGHT: image block ── */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.9s 0.15s var(--ease) both;
}

.hero-img-wrap {
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 5/4;
  background: linear-gradient(145deg, var(--g-100) 0%, var(--g-50) 100%);
  box-shadow:
    0 20px 60px rgba(28,107,58,.15),
    0  4px 16px rgba(28,107,58,.08);
  position: relative;
}

/* Placeholder shown when no photo is uploaded yet */
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(145deg, #e8faf0 0%, #d0f5e0 100%);
  color: var(--g-700);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
}
.hero-img-placeholder .img-icon { font-size: 3.5rem; opacity: 0.5; }

/* Actual hero image — replace placeholder with this */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Floating badge on image */
.hero-float-badge {
  position: absolute;
  bottom: 24px; left: -20px;
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 1s 0.6s var(--ease) both;
  z-index: 2;
}
.hero-float-badge .badge-icon {
  width: 44px; height: 44px;
  background: var(--g-50);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hero-float-badge .badge-label { font-size: 0.75rem; color: var(--color-text-muted); }
.hero-float-badge .badge-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--g-800);
  line-height: 1.2;
}

/* Second float badge top-right */
.hero-float-rating {
  position: absolute;
  top: 24px; right: -16px;
  background: var(--g-700);
  border-radius: var(--radius-m);
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(28,107,58,.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  animation: fadeInDown 1s 0.7s var(--ease) both;
  z-index: 2;
}
.hero-float-rating .stars { color: #FBBF24; font-size: 0.8rem; letter-spacing: 2px; }
.hero-float-rating .rating-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-float-rating .rating-label { font-size: 0.72rem; color: rgba(255,255,255,.75); }

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--g-800);
}
.trust-item .fa { color: var(--g-600); font-size: 1.1rem; }
.trust-divider { width: 1px; height: 24px; background: var(--color-border); }

/* ═══════════════════════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-l);
  padding: var(--space-xl);
  transition: all var(--t-mid);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--g-700), var(--g-400));
  transform: scaleX(0);
  transition: transform var(--t-mid);
}
.service-card:hover { box-shadow: var(--shadow-l); transform: translateY(-6px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  background: var(--g-100);
  border-radius: var(--radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--g-700);
  margin-bottom: var(--space-lg);
  transition: all var(--t-mid);
}
.service-card:hover .service-icon {
  background: var(--g-700);
  color: var(--white);
}
.service-card h3 { margin-bottom: 10px; }
.service-card p  { color: var(--color-text-muted); font-size: 0.95rem; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--g-700);
  transition: gap var(--t-fast);
}
.service-card .card-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════════
   HOME — REDESIGNED SERVICE CARDS
═══════════════════════════════════════════════════════════ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-m);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all var(--t-mid);
}
.svc-card:hover {
  box-shadow: var(--shadow-m);
  transform: translateY(-4px);
  border-color: var(--g-300);
}
.svc-card__img {
  width: 100%;
  height: 170px;
  overflow: hidden;
}
.svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--t-mid);
}
.svc-card:hover .svc-card__img img {
  transform: scale(1.05);
}
.svc-card__body {
  padding: var(--space-md) var(--space-lg) 0;
  flex: 1;
}
.svc-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--g-900);
  margin-bottom: 4px;
}
.svc-card__desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.svc-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  margin-top: auto;
}
.svc-card__pricing {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.svc-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--g-700);
  line-height: 1.2;
}
.svc-card__tagline {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--g-500);
  line-height: 1.3;
}
.svc-card__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background: var(--g-100);
  color: var(--g-700);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: var(--radius-x);
  transition: all var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
}
.svc-card__btn:hover {
  background: var(--g-700);
  color: var(--white);
}
.svc-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--g-700);
  transition: gap var(--t-fast), color var(--t-fast);
}
.svc-more-link:hover {
  gap: 10px;
  color: var(--g-600);
}

/* ═══════════════════════════════════════════════════════════
   WHY US / FEATURES
═══════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
.feature-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-l);
  transition: all var(--t-mid);
}
.feature-item:hover {
  box-shadow: var(--shadow-m);
  border-color: var(--g-300);
  transform: translateY(-4px);
}
.feature-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--g-200);
  line-height: 1;
  flex-shrink: 0;
}
.feature-text h4 { color: var(--g-800); margin-bottom: 6px; }
.feature-text p  { color: var(--color-text-muted); font-size: 0.92rem; }

/* ═══════════════════════════════════════════════════════════
   LOCATION CARDS
═══════════════════════════════════════════════════════════ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}
.location-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-m);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: all var(--t-mid);
  cursor: pointer;
}
.location-card:hover {
  background: var(--g-50);
  border-color: var(--g-300);
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
}
.location-card .fa {
  font-size: 1.4rem;
  color: var(--g-700);
  margin-bottom: 8px;
}
.location-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--g-900);
  margin-bottom: 4px;
}
.location-card span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════════
   PROCESS / STEPS
═══════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--g-200), var(--g-300), var(--g-200));
  z-index: 0;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  background: var(--g-700);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto var(--space-lg);
  border: 4px solid var(--color-bg);
  box-shadow: 0 4px 20px rgba(27,107,58,.3);
}
.step-item h4 { margin-bottom: 8px; }
.step-item p  { font-size: 0.9rem; color: var(--color-text-muted); }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-l);
  padding: var(--space-xl);
  transition: all var(--t-mid);
}
.testimonial-card:hover { box-shadow: var(--shadow-m); transform: translateY(-4px); }
.tc-stars { color: #F59E0B; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: var(--space-md); }
.tc-text {
  font-size: 0.97rem;
  color: var(--color-text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--g-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--g-700);
  font-size: 1rem;
  flex-shrink: 0;
}
.tc-author-name  { font-weight: 600; font-size: 0.92rem; }
.tc-author-city  { font-size: 0.8rem; color: var(--color-text-muted); }

/* ═══════════════════════════════════════════════════════════
   PRICING PAGE
═══════════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-l);
  padding: var(--space-xl);
  transition: all var(--t-mid);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--g-700);
  transform: scale(1.04);
  box-shadow: var(--shadow-x);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--g-700);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--radius-x);
}
.pricing-type {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--g-700);
  margin-bottom: 10px;
}
.pricing-card h3 { margin-bottom: var(--space-sm); }
.pricing-card p   { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: var(--space-lg); }
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--g-900);
  line-height: 1;
  margin-bottom: var(--space-xl);
}
.pricing-price sup { font-size: 1.3rem; vertical-align: super; }
.pricing-price sub { font-size: 0.85rem; color: var(--color-text-muted); font-weight: 400; }
.pricing-includes {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.pricing-list { margin-bottom: var(--space-xl); }
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--g-50);
  font-size: 0.92rem;
}
.pricing-list li .fa-check { color: var(--g-700); margin-top: 3px; flex-shrink: 0; }
.pricing-list li .fa-times  { color: var(--n-300); margin-top: 3px; flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* Narrow pricing grid — 1–2 card layouts (service pages) */
.pricing-grid--narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(2, 1fr);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split.reverse { direction: rtl; }
.about-split.reverse > * { direction: ltr; }

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
}
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--g-800), var(--g-700));
  border-radius: var(--radius-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.4);
}
.about-badge-float {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 14px 20px;
  box-shadow: var(--shadow-l);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge-float .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--g-700);
  line-height: 1;
}
.about-badge-float .label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  max-width: 80px;
  line-height: 1.3;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.value-card {
  background: var(--g-50);
  border: 1px solid var(--g-200);
  border-radius: var(--radius-m);
  padding: var(--space-lg);
  text-align: center;
}
.value-card .fa {
  font-size: 1.8rem;
  color: var(--g-700);
  margin-bottom: var(--space-md);
}
.value-card h4 { font-size: 1rem; margin-bottom: 6px; }
.value-card p  { font-size: 0.85rem; color: var(--color-text-muted); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.team-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-l);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: all var(--t-mid);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.team-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--g-800), var(--g-700));
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.team-card h4 { margin-bottom: 4px; }
.team-card span { font-size: 0.85rem; color: var(--g-700); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.contact-icon {
  width: 52px; height: 52px;
  background: var(--g-100);
  border-radius: var(--radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--g-700);
  flex-shrink: 0;
}
.contact-info-item h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-item p, .contact-info-item a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  transition: color var(--t-fast);
}
.contact-info-item a:hover { color: var(--g-700); }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-l);
  padding: var(--space-xl);
  box-shadow: var(--shadow-m);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-group { margin-bottom: var(--space-lg); }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--g-900);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: all var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--g-700);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,107,58,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* ═══════════════════════════════════════════════════════════
   LOCATION PAGES
═══════════════════════════════════════════════════════════ */
.location-hero {
  background: linear-gradient(135deg, var(--g-700) 0%, var(--g-600) 100%);
  padding: calc(var(--nav-h) + 60px) 0 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.location-hero::after {
  content: '';
  position: absolute;
  right: -100px; bottom: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.location-hero h1 { color: var(--white); }
.location-hero p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 560px; }

.nearby-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-xl);
}
.city-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-x);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
  transition: all var(--t-fast);
}
.city-tag:hover { background: var(--g-50); border-color: var(--g-300); color: var(--g-700); }

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════════════════ */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-m);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--g-900);
  text-align: left;
  cursor: pointer;
  transition: background var(--t-fast);
}
.faq-question:hover { background: var(--g-50); }
.faq-question .fa {
  color: var(--g-700);
  transition: transform var(--t-fast);
  flex-shrink: 0;
}
.faq-item.open .faq-question .fa { transform: rotate(180deg); }
.faq-answer {
  padding: 0 var(--space-xl);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-mid);
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: var(--space-lg);
}
.faq-answer p { font-size: 0.95rem; color: var(--color-text-muted); }

/* ═══════════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--g-700);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 120% at 50% 110%, rgba(94,224,48,.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60%  at 10%  20%, rgba(255,255,255,.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: var(--space-md); }
.cta-band p  { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin: 0 auto var(--space-xl); }
.cta-actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   BREADCRUMBS
═══════════════════════════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-lg);
}
.breadcrumb a { color: rgba(255,255,255,0.8); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb-dark { color: var(--color-text-muted); }
.breadcrumb-dark a { color: var(--g-700); }
.breadcrumb-dark .sep { color: var(--color-text-muted); }

/* ═══════════════════════════════════════════════════════════
   SECTION HEADER utility
═══════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--space-2xl);
}
.section-header p { margin: var(--space-md) auto 0; color: var(--color-text-muted); font-size: 1.05rem; }
.section--dark .section-header p { color: rgba(255,255,255,0.68); }
.section--dark .section-header h2 { color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--g-900);
  color: rgba(255,255,255,0.75);
  position: relative;
}
.footer-wave { line-height: 0; overflow: hidden; margin-bottom: -2px; }
.footer-wave svg { width: 100%; height: 60px; display: block; }
.footer-body { padding: 70px 0 50px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}
/*
 * Footer logo fix — the logo PNG is dark green on black.
 * On the dark footer we:
 *   1. brightness(0)   → collapse everything to pure black
 *   2. invert(1)       → flip to pure white
 *   3. sepia→saturate→hue-rotate → tint to lime #5EE030
 * Result: logo shape appears in the brand lime accent color.
 */
.footer-logo {
  filter: brightness(0) invert(1)
          sepia(1) saturate(4) hue-rotate(63deg) brightness(1.05);
  height: 40px;
  width: auto;
  margin-bottom: var(--space-lg);
}
.footer-tagline { font-size: 0.92rem; line-height: 1.65; color: rgba(255,255,255,0.6); margin-bottom: var(--space-lg); max-width: 280px; }

.footer-contact { font-style: normal; display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--space-lg); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast);
}
.footer-contact-item:hover { color: var(--white); }
.footer-contact-item .fa { color: var(--g-400); width: 16px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: all var(--t-fast);
}
.footer-social a:hover { background: var(--g-700); color: var(--white); transform: translateY(-3px); }

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-md);
}
.footer-links li a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  padding: 5px 0;
  transition: all var(--t-fast);
}
.footer-links li a:hover { color: var(--white); padding-left: 4px; }

.footer-badges { display: flex; flex-direction: column; gap: 8px; margin-top: var(--space-lg); }
.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.badge-item .fa { color: var(--g-400); }

.footer-hours {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: var(--space-lg) var(--space-xl);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-m);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-top: 50px;
}
.footer-hours strong { color: rgba(255,255,255,0.9); }
.footer-hours .fa { color: var(--g-400); }
.footer-hours .sep { color: rgba(255,255,255,0.2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-lg) 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-legal {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color var(--t-fast); }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* Back to top */
/* Mobile floating phone button — hidden on desktop */
.mobile-float-phone { display: none; }

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px; height: 58px;
  background: transparent;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-mid);
  z-index: 800;
  cursor: pointer;
  padding: 0;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.kiwi-icon { width: 58px; height: 58px; display: block; border-radius: 50%; }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--g-700) 0%, var(--g-600) 100%);
  padding: calc(var(--nav-h) + 70px) 0 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -150px; top: -150px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.07);
}
.page-hero h1 { color: var(--white); margin-bottom: var(--space-md); }
.page-hero p  { color: rgba(255,255,255,0.88); font-size: 1.1rem; max-width: 600px; }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight{ from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse      { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.6; } }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .svc-grid        { grid-template-columns: repeat(2, 1fr); }
  .locations-grid  { grid-template-columns: repeat(4, 1fr); }
  .team-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 50px; }
  .hero-visual       { max-width: 520px; margin: 0 auto; }
  .hero-float-badge  { left: 0; }
  .hero-float-rating { right: 0; }
  .about-split       { grid-template-columns: 1fr; gap: 40px; }
  .about-split.reverse { direction: ltr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .pricing-grid      { grid-template-columns: 1fr; }
  .pricing-grid--narrow { grid-template-columns: 1fr; max-width: 100%; }
  .pricing-card.featured { transform: none; }
  .features-grid     { grid-template-columns: 1fr; }
  .steps-grid        { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .locations-grid    { grid-template-columns: repeat(3, 1fr); }
  .values-grid       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }

  .mobile-call-btn { display: none !important; }

  .nav-toggle { display: flex; }
  .nav-phone  { display: none; }
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--color-border);
    padding: var(--space-lg);
    gap: 4px;
    box-shadow: var(--shadow-l);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }

  .nav-menu .nav-link { padding: 14px 16px; font-size: 1rem; }
  .nav-menu .dropdown-item { padding: 12px 16px; }

  .has-dropdown .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: var(--g-50);
    border-radius: var(--radius-m);
    margin-top: 4px;
    display: none;
  }
  .has-dropdown.open .dropdown-menu { display: block; }

  /* Mobile dropdown readability (prevents inherited/forced white text) */
  .nav-menu .dropdown-menu,
  .nav-menu .dropdown-menu * {
    color: var(--color-text);
    -webkit-text-fill-color: var(--color-text);
  }
  .nav-menu .dropdown-header,
  .nav-menu .dropdown-header span {
    color: var(--color-text-muted);
    -webkit-text-fill-color: var(--color-text-muted);
  }
  .nav-menu .dropdown-item i,
  .nav-menu .dropdown-item .fa {
    color: var(--g-700);
    -webkit-text-fill-color: var(--g-700);
  }
  .nav-menu .dropdown-all {
    color: var(--g-700);
    -webkit-text-fill-color: var(--g-700);
  }

  .nav-cta { margin-top: var(--space-sm); }
  .nav-btn  { width: 100%; justify-content: center; }

  .hero-stats { gap: var(--space-lg); }
  .services-grid   { grid-template-columns: 1fr; }
  .svc-grid        { grid-template-columns: repeat(2, 1fr); }
  .locations-grid  { grid-template-columns: repeat(2, 1fr); }
  .team-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr; gap: 32px; }
  .footer-hours    { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-hours .sep { display: none; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: var(--space-md); }
  .trust-divider   { display: none; }

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

  /* Replace back-to-top with phone button on mobile */
  .back-to-top { display: none !important; }
  .mobile-float-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 58px;
    height: 58px;
    background: var(--g-100);
    border: 2px solid var(--g-700);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    z-index: 800;
    -webkit-appearance: none;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-mid);
  }
  .mobile-float-phone.visible {
    opacity: 1;
    visibility: visible;
  }
  .mobile-float-phone svg {
    fill: var(--g-700);
  }
  .mobile-float-phone:active {
    background: var(--g-200);
  }
}

@media (max-width: 480px) {
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid       { grid-template-columns: 1fr; }
  .hero-actions   { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; max-width: 320px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ── Utility classes ─────────────────────────────────────── */
.text-center  { text-align: center; }
.text-green   { color: var(--g-700); }
.mt-sm   { margin-top: var(--space-sm); }
.mt-md   { margin-top: var(--space-md); }
.mt-lg   { margin-top: var(--space-lg); }
.mt-xl   { margin-top: var(--space-xl); }
.mb-sm   { margin-bottom: var(--space-sm); }
.mb-md   { margin-bottom: var(--space-md); }
.mb-lg   { margin-bottom: var(--space-lg); }
.mb-xl   { margin-bottom: var(--space-xl); }
.d-flex         { display: flex; }
.align-center   { align-items: center; }
.gap-md         { gap: var(--space-md); }
.gap-lg         { gap: var(--space-lg); }
.flex-wrap      { flex-wrap: wrap; }
