/* ============================================================
   MILLEDGEVILLE GRAVEL — index-styles.css
   Niche: Gravel Driveway | Layout: 2 Problem-Solution
   Palette: Midnight Navy + Gold | Fonts: Exo 2 + Mulish
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  /* Base Colors */
  --primary:           #0d1b2a;
  --primary-light:     #1a2e4a;
  --primary-mid:       #14253d;
  --primary-dark:      #080f18;
  --primary-rgb:       13, 27, 42;

  /* Accent — Rich Gold (user-directed) */
  --accent:            #c9a227;
  --accent-light:      #d4b030;
  --accent-dark:       #a8851f;
  --accent-rgb:        201, 162, 39;
  --accent-gradient:   linear-gradient(135deg, var(--accent), var(--accent-light));

  /* Gradient combining primary tones */
  --navy-gradient:     linear-gradient(135deg, var(--primary-light), var(--primary));

  /* Stone & Road niche tones — mid-dark sections distinct from navy */
  --slate:             #1e2d3d;
  --slate-light:       #243b4f;
  --slate-rgb:         30, 45, 61;

  /* Secondary Accent — Georgia Clay / Terracotta */
  --earth-red:         #c0522a;
  --earth-red-light:   #d4643b;
  --earth-red-dark:    #9e4222;
  --earth-red-rgb:     192, 82, 42;
  --earth-gradient:    linear-gradient(135deg, #c85e33, #9e4222);

  /* Tertiary Accent — Georgia Forest Green */
  --forest:            #2d6a4f;
  --forest-light:      #3a8464;
  --forest-dark:       #215239;
  --forest-rgb:        45, 106, 79;
  --forest-gradient:   linear-gradient(160deg, var(--forest-light), var(--forest));
  --navy-deep:         #0f2035;

  /* Warm earth tones for light section backgrounds */
  --warm-tan:          #faf0e4;
  --warm-tan-alt:      #f5e8d5;

  /* Secondary Accent */
  --accent-secondary:  #5d6d7e;

  /* Header / depth tones */
  --header-navy:       #0a1729;
  --header-navy-rgb:   10, 23, 41;
  --depth-dark:        #070e1a;
  --depth-darker:      #050c15;

  /* Neutrals */
  --warm-white:        #f5f6f7;
  --off-white:         #edf0f2;
  --gray:              #5d6d7e;
  --gray-light:        #d5dce3;
  --gray-dark:         #2c3e50;
  --text:              #1a2533;
  --text-muted:        #5a6a7a;
  --text-light:        #8899aa;

  /* Surface tokens */
  --white:             #ffffff;
  --surface:           #ffffff;
  --surface-alt:       #edf0f2;
  --surface-chat:      #f8fafc;

  /* Semantic */
  --red-urgent:        #c0392b;
  --red-urgent-rgb:    192, 57, 43;
  --success:           #27ae60;
  --warning:           #e67e22;

  /* Shadows */
  --shadow-sm:         0 2px 4px rgba(13,27,42,0.12);
  --shadow-md:         0 4px 12px rgba(13,27,42,0.18);
  --shadow-lg:         0 8px 24px rgba(13,27,42,0.22);
  --shadow-xl:         0 16px 48px rgba(13,27,42,0.28);

  /* Transitions */
  --transition-fast:   0.2s ease;
  --transition-base:   0.3s ease;
  --transition-slow:   0.5s ease;

  /* Border Radius */
  --radius-sm:         3px;
  --radius-md:         6px;
  --radius-lg:         10px;
  --radius-xl:         14px;

  /* Spacing */
  --space-xs:          0.5rem;
  --space-sm:          1rem;
  --space-md:          1.5rem;
  --space-lg:          2rem;
  --space-xl:          3rem;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Mulish', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4 { font-family: 'Exo 2', sans-serif; font-weight: 700; line-height: 1.2; }

/* ── SKIP LINK ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  font-weight: 700;
  z-index: 9999;
  border-radius: var(--radius-sm);
  transition: top var(--transition-fast);
}
.skip-link:focus { top: 1rem; }

/* ── UTILITY ───────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 var(--space-md); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.gold-text { color: var(--accent); }
.text-center { text-align: center; }

/* Section heading — background-highlight treatment */
.section-heading {
  display: inline-block;
  position: relative;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--primary);
  margin-bottom: var(--space-md);
}
.section-heading::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px; right: -4px;
  height: 40%;
  background: rgba(var(--accent-rgb), 0.18);
  z-index: -1;
  border-radius: 2px;
}
.section-heading-white {
  display: inline-block;
  position: relative;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: var(--space-md);
}
.section-heading-white::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px; right: -4px;
  height: 40%;
  background: rgba(var(--accent-rgb), 0.22);
  z-index: -1;
  border-radius: 2px;
}

/* ── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(var(--header-navy-rgb), 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.15);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}
.site-header.scrolled {
  background: rgba(var(--header-navy-rgb), 1);
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(var(--accent-rgb), 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 var(--space-md);
  max-width: 1140px;
  margin: 0 auto;
}
.site-logo img { height: 60px; width: auto; }
.site-logo:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: var(--radius-sm); }

.main-nav { display: flex; align-items: center; gap: var(--space-md); }
.main-nav a {
  color: rgba(255,255,255,0.88);
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}
.main-nav a:hover { color: var(--accent); }
.main-nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--accent-gradient);
  color: var(--primary-dark) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-md);
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md) !important; color: var(--primary-dark) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--primary);
  border-bottom: 2px solid rgba(var(--accent-rgb), 0.25);
  z-index: 999;
  padding: var(--space-sm) var(--space-md) var(--space-md);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition-fast);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .mobile-nav-cta {
  display: block;
  margin-top: var(--space-sm);
  background: var(--accent-gradient);
  color: var(--primary-dark) !important;
  text-align: center;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  border: none;
  font-size: 1rem;
}

/* ── HERO — SPLIT 60/40 (Layout 2) ────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: 68px;
  overflow: hidden;
}
/* Full-hero layered background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 60%, rgba(var(--earth-red-rgb), 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(var(--accent-rgb), 0.10) 0%, transparent 50%),
    var(--primary);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('images/hero-bg.webp') center center / cover no-repeat,
    linear-gradient(135deg, transparent 55%, rgba(var(--accent-rgb), 0.08) 100%);
  opacity: 0.42;
  z-index: 1;
}
.hero-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 2;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  width: 100%;
}
.hero-content { padding: var(--space-lg) 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: var(--space-sm);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-badge-dot { animation: none; }
}
.hero-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}
.hero-h1 .highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
  max-width: 500px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-gradient);
  color: var(--primary-dark);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  letter-spacing: 0.02em;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(var(--accent-rgb), 0.45); }
.hero-cta svg { width: 18px; height: 18px; }

/* Hero stat card */
.hero-stat-card {
  background: rgba(var(--header-navy-rgb), 0.88);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xl);
}
.stat-card-header {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.2);
}
.stat-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-bottom: none; padding-bottom: 0; }
.stat-icon {
  width: 36px; height: 36px;
  background: rgba(var(--accent-rgb), 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 18px; height: 18px; color: var(--accent); }
.stat-text-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 2px;
}
.stat-text-value {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.hero-scroll-hint {
  margin-top: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.scroll-arrow {
  animation: bounce-down 1.6s ease-in-out infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-arrow { animation: none; }
}

/* ── WHY US / ABOUT SECTION ─────────────────────────────────── */
.why-us {
  background: var(--warm-tan);
  padding: var(--space-xl) 0;
}
.why-us-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.why-us-text .section-heading { margin-bottom: var(--space-sm); }
.why-us-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}
.why-us-points { display: flex; flex-direction: column; gap: var(--space-sm); }
.why-point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}
.why-point-icon {
  width: 40px; height: 40px;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-point-icon svg { width: 20px; height: 20px; color: var(--accent); }
.why-point:nth-child(2) .why-point-icon { background: rgba(var(--earth-red-rgb), 0.10); border-color: rgba(var(--earth-red-rgb), 0.25); }
.why-point:nth-child(2) .why-point-icon svg { color: var(--earth-red); }
.why-point:nth-child(3) .why-point-icon { background: rgba(var(--forest-rgb), 0.10); border-color: rgba(var(--forest-rgb), 0.25); }
.why-point:nth-child(3) .why-point-icon svg { color: var(--forest); }
.why-point:nth-child(4) .why-point-icon { background: rgba(var(--earth-red-rgb), 0.10); border-color: rgba(var(--earth-red-rgb), 0.25); }
.why-point:nth-child(4) .why-point-icon svg { color: var(--earth-red); }
.why-point-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}
.why-point-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* Right side — conditions panel (forest green — Georgia outdoors) */
.why-us-conditions {
  background: var(--forest-gradient);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}
.conditions-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.conditions-item:last-child { border-bottom: none; padding-bottom: 0; }
.conditions-number {
  font-family: 'Exo 2', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  min-width: 3.5rem;
  margin-top: -6px;
  letter-spacing: -0.04em;
  user-select: none;
}
.conditions-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 4px;
}
.conditions-body {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ── SERVICES SECTION ──────────────────────────────────────── */
.services {
  background: var(--white);
  padding: var(--space-xl) 0;
}
.services-inner { max-width: 1140px; margin: 0 auto; padding: 0 var(--space-md); }
.services-header { text-align: center; margin-bottom: var(--space-md); }
.services-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto var(--space-lg);
  text-align: center;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border-left: 4px solid var(--accent);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-card:nth-child(3n+2) { border-left-color: var(--earth-red); }
.service-card:nth-child(3n+3) { border-left-color: var(--forest); }
.service-card:nth-child(3n+2) .service-icon-wrap { background: rgba(var(--earth-red-rgb), 0.10); }
.service-card:nth-child(3n+2) .service-icon-wrap svg { color: var(--earth-red); }
.service-card:nth-child(3n+3) .service-icon-wrap { background: rgba(var(--forest-rgb), 0.10); }
.service-card:nth-child(3n+3) .service-icon-wrap svg { color: var(--forest); }
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.service-card-body {
  padding: var(--space-md) var(--space-md) var(--space-lg);
  background: linear-gradient(to bottom right, var(--white), var(--warm-white));
}
.service-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(var(--accent-rgb), 0.10);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xs);
}
.service-icon-wrap svg { width: 22px; height: 22px; color: var(--accent); }
.service-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.service-card-link {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: none;
}
.service-card-link:hover { color: var(--accent); text-decoration: underline; }

/* ── TRUST STATS ROW — slate/stone niche tone ──────────────── */
.trust-stats {
  background: var(--earth-gradient);
  padding: calc(var(--space-lg) + 3rem) 0;
  clip-path: polygon(0 3rem, 100% 0, 100% calc(100% - 3rem), 0 100%);
  margin-top: -3rem;
  margin-bottom: -3rem;
  position: relative;
  z-index: 3;
}
.trust-stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.trust-stat {
  text-align: center;
  padding: var(--space-sm);
}
.trust-stat-icon {
  width: 48px; height: 48px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xs);
}
.trust-stat-icon svg { width: 24px; height: 24px; color: var(--warm-tan); }
.trust-stat-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.trust-stat-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ── CONDITIONS PANEL (driveway warning signs) ─────────────── */
.conditions-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.conditions-left {
  background: var(--forest-gradient);
  padding: var(--space-xl) var(--space-lg);
}
.conditions-right {
  background: var(--off-white);
  padding: var(--space-xl) var(--space-lg);
}
.conditions-left-inner,
.conditions-right-inner {
  max-width: 480px;
  margin: 0 auto;
}
.conditions-left .conditions-item { border-bottom-color: rgba(255,255,255,0.1); }
.conditions-left .conditions-title { color: var(--accent-light); font-size: 0.87rem; }
.conditions-right-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
}
.warning-list { display: flex; flex-direction: column; gap: var(--space-xs); }
.warning-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.91rem;
  color: var(--text);
  line-height: 1.6;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(var(--primary-rgb),0.06);
}
.warning-list li:last-child { border-bottom: none; }
.warning-check {
  width: 18px; height: 18px;
  background: rgba(var(--accent-rgb), 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.warning-check svg { width: 10px; height: 10px; color: var(--accent-dark); }
.conditions-crew-photo {
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.conditions-crew-photo img {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
}

/* ── FAQ SECTION ───────────────────────────────────────────── */
.faq {
  background: var(--warm-tan);
  padding: var(--space-xl) 0;
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.faq-header { text-align: center; margin-bottom: var(--space-lg); }
.faq-list { display: flex; flex-direction: column; gap: var(--space-xs); }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast);
}
.faq-item[open] { box-shadow: var(--shadow-md); border-color: rgba(var(--accent-rgb), 0.3); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--primary);
  list-style: none;
  user-select: none;
  transition: color var(--transition-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-dark); }
.faq-chevron {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 var(--space-md) var(--space-md);
  border-top: 1px solid var(--gray-light);
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: var(--space-sm);
}

/* ── CLUSTER LINKS (intra-cluster prose block) ─────────────── */
.cluster-links {
  margin-top: var(--space-md);
  padding: var(--space-md) var(--space-md);
  background: rgba(var(--accent-rgb), 0.05);
  border-left: 3px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.91rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.cluster-links a { color: var(--accent-dark); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(var(--accent-rgb),0.4); }
.cluster-links a:hover { color: var(--accent); }

/* ── SERVICE AREA — navy with slate undertone ──────────────── */
.service-area {
  background:
    radial-gradient(ellipse at 90% 50%, rgba(var(--forest-rgb),0.12) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-deep), var(--primary-mid));
  padding: var(--space-xl) 0;
}
.city-chip:nth-child(4n+2) { border-color: rgba(var(--earth-red-rgb), 0.35); }
.city-chip:nth-child(4n+3) { border-color: rgba(var(--forest-rgb), 0.35); }
.service-area-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.service-area-header { text-align: center; margin-bottom: var(--space-lg); }
.service-area-lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  text-align: center;
  line-height: 1.65;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.city-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.8rem;
  text-align: center;
}
.city-chip-name {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  display: block;
}
.city-chip-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.service-area-cta {
  text-align: center;
}
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.btn-outline-gold:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

/* ── CONTACT FORM ──────────────────────────────────────────── */
.contact {
  background: var(--primary);
  background-image:
    radial-gradient(circle at 80% 20%, rgba(var(--accent-rgb),0.06) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(var(--forest-rgb),0.06) 0%, transparent 50%),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 40px
    );
  padding: var(--space-xl) 0;
}
.contact-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-left { padding-top: var(--space-sm); }
.contact-left .section-heading-white { display: block; }
.contact-lead {
  color: rgba(255,255,255,0.72);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.contact-details { display: flex; flex-direction: column; gap: var(--space-sm); }
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact-detail-icon {
  width: 36px; height: 36px;
  background: rgba(var(--accent-rgb), 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--accent); }
.contact-detail-text { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.contact-detail-text a {
  color: var(--accent-light);
  font-weight: 600;
}
.contact-detail-text a:hover { color: var(--accent); text-decoration: underline; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: var(--space-sm); }
.form-group label {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  font-family: 'Exo 2', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.85rem;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%;
  background: var(--accent-gradient);
  color: var(--primary-dark);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(var(--accent-rgb), 0.4); }
.btn-submit:disabled { opacity: 0.7; transform: none; cursor: not-allowed; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.5rem;
}
.form-error {
  display: none;
  background: rgba(var(--red-urgent-rgb), 0.07);
  border: 1px solid rgba(var(--red-urgent-rgb), 0.35);
  color: var(--red-urgent);
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
}
.form-error.visible { display: block; }
.form-success { display: none; text-align: center; padding: var(--space-md) 0; }
.form-success.visible { display: block; }
.form-success-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}
.form-success h3 { color: var(--primary); margin-bottom: var(--space-xs); }
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* ── MAPS ──────────────────────────────────────────────────── */
.maps-section {
  background: var(--white);
  padding: var(--space-lg) 0 0;
}
.maps-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.maps-header { text-align: center; margin-bottom: var(--space-md); }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 220px;
  max-height: 220px;
}
.map-embed iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(to bottom, var(--depth-dark), var(--depth-darker));
  padding: var(--space-xl) 0 0;
  border-top: 2px solid rgba(var(--accent-rgb), 0.15);
}
.footer-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-lg);
}
.footer-brand .footer-logo { margin-bottom: var(--space-sm); }
.footer-brand .footer-logo img { height: 54px; width: auto; }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
  max-width: 260px;
}
.footer-email-wrap { margin-bottom: var(--space-sm); }
.footer-col-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.footer-col a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: var(--space-sm) var(--space-md);
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-xs);
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}
.footer-bottom-links {
  display: flex;
  gap: var(--space-sm);
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}
.footer-bottom-links a:hover { color: var(--accent-light); }

/* ── MOBILE TOOLBAR ────────────────────────────────────────── */
.mobile-toolbar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: linear-gradient(to top, var(--depth-darker), var(--depth-dark));
  border-top: 1px solid rgba(var(--accent-rgb), 0.2);
  padding: 0.6rem var(--space-sm);
  gap: var(--space-xs);
}
.toolbar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem;
  border-radius: var(--radius-md);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  min-height: 44px;
}
.toolbar-btn-quote {
  background: var(--accent-gradient);
  color: var(--primary-dark);
}
.toolbar-btn-chat {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.toolbar-btn svg { width: 18px; height: 18px; }

/* ── CHAT WIDGET ───────────────────────────────────────────── */
.chat-trigger {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 997;
  width: 56px; height: 56px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: none;
  cursor: pointer;
}
.chat-trigger:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(var(--accent-rgb), 0.5); }
.chat-trigger svg { width: 26px; height: 26px; color: var(--primary-dark); }
.chat-panel {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 996;
  width: min(360px, calc(100vw - 2rem));
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-light);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-panel.open { display: flex; }
.chat-panel-header {
  background: var(--navy-gradient);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: 0.6rem; }
.chat-status-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
}
.chat-header-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}
.chat-header-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
}
.chat-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  padding: 4px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}
.chat-close:hover { color: var(--white); }
.chat-close svg { width: 18px; height: 18px; }
.chat-messages {
  background: var(--surface-chat);
  padding: var(--space-sm);
  height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.chat-bubble {
  max-width: 85%;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-lg);
  font-size: 0.87rem;
  line-height: 1.55;
}
.chat-bubble.bot {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm) var(--radius-lg) var(--radius-lg) var(--radius-lg);
  align-self: flex-start;
}
.chat-bubble.user {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg) var(--radius-sm) var(--radius-lg) var(--radius-lg);
  align-self: flex-end;
}
.chat-typing {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 0.55rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm) var(--radius-lg) var(--radius-lg) var(--radius-lg);
  align-self: flex-start;
  width: fit-content;
}
.chat-typing.visible { display: flex; }
.typing-dot {
  width: 6px; height: 6px;
  background: var(--gray);
  border-radius: 50%;
  animation: typing-bounce 1.2s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-4px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .typing-dot { animation: none; }
}
.chat-input-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem;
  border-top: 1px solid var(--gray-light);
  background: var(--white);
}
.chat-input {
  flex: 1;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.7rem;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition-fast);
  resize: none;
}
.chat-input:focus { outline: none; border-color: var(--accent); }
.chat-send {
  width: 36px; height: 36px;
  background: var(--accent-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.chat-send:hover { transform: scale(1.08); }
.chat-send svg { width: 16px; height: 16px; color: var(--primary-dark); }

/* ── ANIMATE IN ────────────────────────────────────────────── */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .animate-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── EYEBROW LABELS ────────────────────────────────────────── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow-white { color: rgba(255,255,255,0.6); }
.eyebrow-forest { color: rgba(255,255,255,0.75); }
.eyebrow.text-center,
.text-center .eyebrow,
.services-header .eyebrow,
.faq-header .eyebrow,
.service-area-header .eyebrow,
.contact-left .eyebrow { justify-content: flex-start; }
.services-header .eyebrow,
.faq-header .eyebrow,
.service-area-header .eyebrow { justify-content: center; }

/* ── SERVICES DOT PATTERN ──────────────────────────────────── */
.services {
  background-color: var(--white);
  background-image:
    radial-gradient(circle, rgba(var(--primary-rgb),0.045) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ── FAQ SECTION RULE ──────────────────────────────────────── */
.section-rule {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-xs) 0 var(--space-md);
  width: 100%;
}
.section-rule::before,
.section-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-light);
}
.section-rule-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.18);
  flex-shrink: 0;
}

/* ── SECTION HEADING ACCENT BAR ────────────────────────────── */
/* Add a colored left-border accent on centered headings */
.services-header .section-heading,
.faq-header .section-heading,
.service-area-header .section-heading-white {
  display: inline-block;
}

/* ── CARD BADGE ────────────────────────────────────────────── */
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}
.service-card:nth-child(3n+2) .service-badge { background: var(--earth-red); color: var(--white); }
.service-card:nth-child(3n+3) .service-badge { background: var(--forest); color: var(--white); }

/* ── HERO ACCENT BAR ───────────────────────────────────────── */
.hero-accent-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}
.hero-accent-bar::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  border-radius: 2px;
}

/* ── WHY-US ICON NUMBERS ───────────────────────────────────── */
.why-point-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 1px;
  opacity: 0.7;
}
.why-point:nth-child(2) .why-point-num { color: var(--earth-red); }
.why-point:nth-child(3) .why-point-num { color: var(--forest); }
.why-point:nth-child(4) .why-point-num { color: var(--earth-red); }

/* ── SERVICE AREA IMPROVED CHIPS ───────────────────────────── */
.city-chip {
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}
.city-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.4);
}

/* ── RESPONSIVE — 1024px ────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
}

/* ── RESPONSIVE — 768px ─────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --space-xl: 2.5rem;
    --space-lg: 1.75rem;
  }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stat-card { display: none; }
  .hero { min-height: 85vh; }
  .hero-h1 { font-size: clamp(2rem, 6vw, 2.6rem); }
  .why-us-inner { grid-template-columns: 1fr; }
  .conditions-panel { grid-template-columns: 1fr; }
  .conditions-left { padding: var(--space-lg) var(--space-md); }
  .conditions-right { padding: var(--space-lg) var(--space-md); }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mobile-toolbar { display: flex; }
  .chat-trigger { bottom: 5.5rem; }
  .chat-panel { bottom: 9rem; right: 1rem; }
}

/* ── RESPONSIVE — 480px ─────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 var(--space-sm); }
  .services-grid { grid-template-columns: 1fr; }
  .trust-stats-inner { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta { width: 100%; justify-content: center; }
  /* iOS zoom prevention */
  .form-group input,
  .form-group select,
  .form-group textarea,
  .chat-input {
    font-size: 16px;
  }
  .contact-inner { gap: var(--space-lg); }
}

/* ── RESPONSIVE — 375px ─────────────────────────────────────── */
@media (max-width: 375px) {
  .hero-h1 { font-size: 1.85rem; }
  .header-inner { padding: 0 var(--space-sm); }
}


/* ── CONVERTED FROM INLINE STYLES ─────────────────────────── */
.conditions-panel-header { margin-bottom: var(--space-md); }
.conditions-panel-title { font-size: 1.2rem; color: var(--white); margin-bottom: 0.5rem; }
.form-honeypot { display: none; }
.email-encoded { color: var(--accent-light); font-size: 0.85rem; font-weight: 600; }
/* Ensure chat UI is not visible even if injected later (broad coverage) */
[id*="chat"],
[class*="chat"] { display: none !important; }
#chat-widget-wrap,
#chat-panel,
#chat-bubble-btn,
#chat-open-btn,
#chat-close-btn,
#toolbar-chat-btn,
.mobile-toolbar,
.chat-btn,
.chat-widget-wrap {
  display: none !important;
}
