/* ═══════════════════════════════════════════════════════════════
   AUTO VERKAUFEN BOCHOLT – Design System v3
   Modern German Automotive Platform
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. CSS Variables ────────────────────────────────────────── */
:root {
  --primary:         #1a7a38;
  --primary-light:   #25a44e;
  --primary-lighter: #3ecf72;
  --primary-dark:    #105a27;
  --accent:          #22c55e;
  --accent-soft:     #bbf7d0;
  --gold:            #f59e0b;
  --white:           #ffffff;
  --off-white:       #f7faf8;
  --light-bg:        #ecf7ef;
  --grey-50:         #f7f8f9;
  --grey-100:        #f0f1f3;
  --grey-200:        #e2e4e8;
  --grey-400:        #9ca3af;
  --grey-600:        #6b7280;
  --text-dark:       #1c2b1e;
  --text-medium:     #4a5c50;
  --text-light:      #8ea494;
  --border:          #cce5d4;
  --border-light:    #e4f0e7;
  --danger:          #ef4444;
  --warning:         #f59e0b;
  --success:         #16a34a;
  --shadow-sm:       0 1px 2px rgba(0,0,0,0.06);
  --shadow:          0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:       0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg:       0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl:       0 20px 48px rgba(0,0,0,0.16);
  --shadow-green:    0 4px 24px rgba(26,122,56,0.22);
  --radius-sm:       4px;
  --radius:          8px;
  --radius-lg:       14px;
  --radius-xl:       20px;
  --radius-full:     9999px;
  --container:       1200px;
  --font:            'Inter', system-ui, -apple-system, sans-serif;
  --transition:      0.2s ease;
}

/* ── 2. Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: var(--font); }
svg { flex-shrink: 0; }

/* ── 3. Layout Utilities ─────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section-padding { padding: 5rem 0; }
.section-padding-sm { padding: 3.5rem 0; }
.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

/* ── 4. Typography System ────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 0.3rem 0.875rem;
  background: rgba(26,122,56,0.07);
  border-radius: var(--radius-full);
  border: 1px solid rgba(26,122,56,0.18);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  margin-bottom: 0.875rem;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 640px;
}
.section-header { margin-bottom: 3rem; }
.section-header.text-center .section-subtitle { margin: 0 auto; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 5. Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.75rem 1.5rem;
  min-height: 48px;
  line-height: 1;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 10px rgba(26,122,56,0.22);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,122,56,0.32);
}
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  font-weight: 700;
}
.btn-white:hover { background: var(--light-bg); }
.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--light-bg);
  border-color: var(--primary-light);
  color: var(--primary);
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; min-height: 38px; border-radius: var(--radius-sm); }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2.25rem; font-size: 1.0625rem; border-radius: var(--radius-lg); }
.btn-full { width: 100%; justify-content: center; }

/* ── 6. Badges ───────────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; padding: 0.25rem 0.65rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; }
.badge-green { background: rgba(26,122,56,0.1); color: var(--primary); }
.badge-gold { background: rgba(245,158,11,0.12); color: #92400e; }
.badge-grey { background: var(--grey-100); color: var(--grey-600); }

/* ── 7. Header / Navigation ──────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
}

/* Slim info bar */
.header-top {
  background: var(--primary-dark);
  padding: 0.4rem 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.header-top-left { display: flex; align-items: center; gap: 1.25rem; }
.header-top-right { display: flex; align-items: center; gap: 1rem; }
.header-info {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
}
.header-info svg { color: var(--accent); flex-shrink: 0; }
.header-phone-top {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  transition: color var(--transition);
  font-size: 0.8rem;
}
.header-phone-top:hover { color: var(--accent); }
.btn-callback-top {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.35);
  color: var(--accent);
  border-radius: var(--radius-sm);
  padding: 0.2rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
}
.btn-callback-top:hover { background: rgba(34,197,94,0.25); }

/* Main nav bar */
.navbar {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 2px 12px rgba(0,0,0,0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 62px;
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-svg { display: block; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  border: 1px solid var(--border-light);
}
.nav-toggle:hover { background: var(--light-bg); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile: menu hidden */
.nav-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 400;
  flex-direction: column;
  padding: 5.5rem 1.5rem 2rem;
  overflow-y: auto;
}
.nav-menu.open { display: flex; }
.nav-list { display: flex; flex-direction: column; gap: 0; flex: 1; }
.nav-item { border-bottom: 1px solid var(--border-light); }
.nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: color var(--transition);
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font);
}
.nav-link:hover { color: var(--primary); }
.nav-item.active > .nav-link { color: var(--primary); font-weight: 600; }

/* Mobile dropdown */
.nav-dropdown {
  display: none;
  flex-direction: column;
  padding: 0.25rem 0 1rem 0.75rem;
  gap: 0.125rem;
}
.nav-dropdown.open { display: flex; }
.nav-dropdown-toggle svg { transition: transform 0.22s; }
.nav-dropdown-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: var(--text-medium);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-dropdown-item:hover { background: var(--light-bg); color: var(--primary); }
.nav-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  margin-top: 0.5rem;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

/* ── 8. Hero – Asymmetric Split ──────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 100px; /* header-top (~34px) + navbar (~66px) */
  background: #0a1e0e;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(155deg, #071610 0%, #0e4420 38%, #1a7a38 75%, #25a44e 100%);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(7,22,16,0.96) 0%, rgba(14,68,32,0.82) 45%, rgba(26,122,56,0.55) 100%);
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(80px); }
.hero-shape-1 { width: 550px; height: 550px; background: rgba(34,197,94,0.14); top: -140px; right: 3%; animation: drift1 18s ease-in-out infinite alternate; }
.hero-shape-2 { width: 420px; height: 420px; background: rgba(26,122,56,0.22); bottom: -60px; left: -100px; animation: drift2 22s ease-in-out infinite alternate; }
.hero-shape-3 { width: 300px; height: 300px; background: rgba(34,197,94,0.07); top: 35%; right: 28%; }
@keyframes drift1 { from { transform: translate(0,0); } to { transform: translate(-30px,30px); } }
@keyframes drift2 { from { transform: translate(0,0); } to { transform: translate(30px,-20px); } }

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 3.5rem 1.25rem 2.5rem;
  flex: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  align-items: flex-start;
}

/* Left column: hero text */
.hero-content { flex: 1; width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-full);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(2.5rem, 7.5vw, 4.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.03;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-title-accent {
  color: var(--accent);
  display: block;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 500px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.25rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem;
}
.hero-trust-item svg { color: var(--accent); flex-shrink: 0; }
.hero-trust-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.15); }

/* Right column: Sofortangebot card */
.hero-car-visual { flex: 1; width: 100%; display: flex; }
.hero-car-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.hero-car-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light), var(--accent));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* Offer form card interior */
.hero-car-icon { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.hero-offer-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  text-align: center;
}
.hero-offer-card-sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  text-align: center;
}
.hero-offer-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.375rem;
}
.hero-offer-select {
  width: 100%;
  padding: 0.75rem 2.25rem 0.75rem 0.9375rem;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.9);
  font-family: var(--font);
  font-size: 0.9375rem;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 24 24' stroke='%2386efac' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  min-height: 48px;
  margin-bottom: 0.875rem;
  transition: all var(--transition);
}
.hero-offer-select option { background: #1a4d28; color: #fff; }
.hero-offer-select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
.hero-offer-select:hover { border-color: rgba(255,255,255,0.28); }

.hero-quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 1.5rem;
  padding-top: 1.25rem;
}
.quick-stat { text-align: center; padding: 0 0.5rem; }
.quick-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.07); }
.quick-stat-num { display: block; font-size: 1.375rem; font-weight: 800; color: var(--accent); line-height: 1; }
.quick-stat-label { display: block; font-size: 0.685rem; color: rgba(255,255,255,0.45); margin-top: 0.3rem; line-height: 1.35; }

/* Hero wave separator */
.hero-wave { position: relative; z-index: 1; line-height: 0; margin-top: auto; }
.hero-wave svg { display: block; width: 100%; }

/* ── 9. Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: #fff;
  transition: background var(--transition);
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.stat-item:hover { background: var(--off-white); }
.stat-item:hover::after { transform: scaleX(1); }
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(26,122,56,0.08);
  color: var(--primary);
  flex-shrink: 0;
}
.stat-content { min-width: 0; }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-number-text { font-size: 1.625rem; }
.stat-label { font-size: 0.8125rem; color: var(--text-medium); margin-top: 0.2rem; }

/* ── 10. Services – Left-Border Accent Cards ─────────────────── */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-card {
  background: #fff;
  padding: 1.875rem 1.75rem;
  border-left: 4px solid transparent;
  transition: all 0.22s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  background: var(--off-white);
  border-left-color: var(--primary);
}
.service-card-highlight {
  background: var(--primary);
  border-left-color: transparent !important;
}
.service-card-highlight:hover { background: var(--primary-dark); }
.service-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(26,122,56,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.service-card:hover .service-card-icon { background: rgba(26,122,56,0.14); }
.service-card-highlight .service-card-icon { background: rgba(255,255,255,0.15); color: #fff; }
.service-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}
.service-card-highlight .service-card-title { color: #fff; }
.service-card-text {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}
.service-card-highlight .service-card-text { color: rgba(255,255,255,0.78); }
.service-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 0.55rem; }
.service-card-highlight .service-card-link { color: var(--accent-soft); }

/* ── 11. Process Steps – Horizontal Flow Line ────────────────── */
.process-section { background: #fff; }
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
}

/* Mobile vertical connector */
.process-timeline::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 46px;
  bottom: 46px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  opacity: 0.22;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-hline,
.timeline-hline-left,
.timeline-hline-right { display: none; }
.timeline-vline { display: none; }

.timeline-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(26,122,56,0.3);
  position: relative;
  flex-shrink: 0;
}
.timeline-circle::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px dashed rgba(26,122,56,0.22);
}
.timeline-step:nth-child(1) .timeline-circle { background: var(--primary-dark); }
.timeline-step:nth-child(4) .timeline-circle { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.timeline-content { padding: 0 0 0 1.5rem; min-width: 0; }
.timeline-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(26,122,56,0.07);
  padding: 0.2rem 0.625rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}
.timeline-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
  line-height: 1.35;
}
.timeline-content p {
  font-size: 0.875rem;
  color: var(--text-medium);
  line-height: 1.65;
}

/* ── 12. Why Us ──────────────────────────────────────────────── */
.why-section { background: var(--light-bg); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.why-content {}
.why-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.125rem 1.25rem;
  background: rgba(255,255,255,0.65);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.85);
  transition: all var(--transition);
}
.why-feature:hover { background: #fff; box-shadow: var(--shadow); transform: translateY(-1px); }
.why-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: rgba(26,122,56,0.1);
  color: var(--primary);
  flex-shrink: 0;
}
.why-feature h4 { font-size: 0.9375rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.why-feature p { font-size: 0.875rem; color: var(--text-medium); line-height: 1.6; margin: 0; }
.why-visual {}
.why-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.why-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}
.why-card-icon-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(26,122,56,0.1);
  color: var(--primary);
  flex-shrink: 0;
}
.why-card-title-wrap { flex: 1; }
.why-card-title-wrap h3 { font-size: 0.9375rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.125rem; }
.why-card-title-wrap p { font-size: 0.8125rem; color: var(--text-medium); }
.why-card-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.why-card-feature {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.875rem; color: var(--text-dark);
}
.why-card-check {
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  flex-shrink: 0;
}
.why-card-divider { border: none; border-top: 1px solid var(--border-light); margin: 1.25rem 0; }
.why-card-rating-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.why-card-stars { font-size: 1rem; color: var(--gold); letter-spacing: 0.05em; }
.why-card-rating-text { font-size: 0.8125rem; color: var(--text-medium); }
.why-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 1rem;
  background: var(--light-bg);
  border-radius: var(--radius);
  text-align: center;
}
.why-stat-num { display: block; font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.why-stat span:last-child { font-size: 0.75rem; color: var(--text-medium); }

/* ── 13. Testimonials ────────────────────────────────────────── */
.testimonials-section {
  background: var(--text-dark);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(34,197,94,0.04);
  pointer-events: none;
}
.testimonials-section .section-tag { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); color: var(--accent); }
.testimonials-section .section-title { color: #fff; }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.58); }
.testimonials-carousel {
  overflow: hidden;
  padding: 0.5rem;
  margin: 0 -0.5rem;
}
.testimonials-track {
  display: flex;
  gap: 24px; /* must match JS hardcoded offset (+24) */
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  flex: 0 0 calc(100% - 0.5rem);
  min-width: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.testimonial-rating { color: var(--gold); font-size: 1rem; letter-spacing: 0.05em; margin-bottom: 0.875rem; }
.testimonial-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; flex-wrap: wrap; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  border: 1px solid rgba(34,197,94,0.2);
}
.testimonial-name { font-weight: 600; font-size: 0.9375rem; color: #fff; display: block; line-height: 1.3; }
.testimonial-location { font-size: 0.8125rem; color: rgba(255,255,255,0.42); }
.testimonial-date { font-size: 0.8rem; color: rgba(255,255,255,0.28); margin-left: auto; }
.testimonials-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.testimonial-nav-btn {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}
.testimonial-nav-btn:hover { background: var(--primary); border-color: var(--primary); }
.testimonials-dots { display: flex; gap: 0.5rem; align-items: center; }
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.testimonial-dot.active { background: var(--accent); width: 20px; border-radius: 4px; }

/* ── 14. Districts ───────────────────────────────────────────── */
.districts-section { background: #fff; }
.districts-grid { display: flex; flex-wrap: wrap; gap: 0.625rem; justify-content: center; }
.district-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}
.district-chip:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(26,122,56,0.2);
}
.district-chip svg { color: var(--text-light); transition: color var(--transition); flex-shrink: 0; }
.district-chip:hover svg { color: rgba(255,255,255,0.75); }

/* ── 15. Blog Preview ────────────────────────────────────────── */
.blog-preview-section { background: var(--off-white); }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.22s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--border);
}
.blog-card-img-link { display: block; }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--light-bg); }
.blog-card-img img, .blog-card-img svg { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.5rem; display: block; }
.blog-card-title { font-size: 1.0625rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.625rem; line-height: 1.4; }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { font-size: 0.875rem; color: var(--text-medium); line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.blog-card-link { font-size: 0.875rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 0.25rem; transition: gap var(--transition); }
.blog-card-link:hover { gap: 0.5rem; }

/* ── 16. FAQ ─────────────────────────────────────────────────── */
.faq-section { background: #fff; }
.faq-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.faq-header .section-title { font-size: clamp(1.5rem, 3.5vw, 2rem); }
.faq-list {}
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.625rem;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%;
  padding: 1.125rem 1.25rem;
  background: #fff;
  font-size: 0.9375rem; font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font);
  line-height: 1.4;
}
.faq-question:hover { background: var(--off-white); color: var(--primary); }
.faq-question[aria-expanded="true"] { background: rgba(26,122,56,0.04); color: var(--primary); border-bottom: 1px solid var(--border-light); }
.faq-icon { flex-shrink: 0; transition: transform 0.25s; color: var(--primary); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 1.125rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.72;
  background: rgba(26,122,56,0.02);
}
.faq-answer.open { display: block; }

/* ── 17. CTA Section ─────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
}
.cta-shapes { position: absolute; inset: 0; overflow: hidden; }
.cta-shape { position: absolute; border-radius: 50%; filter: blur(60px); }
.cta-shape-1 { width: 480px; height: 480px; background: rgba(255,255,255,0.05); top: -140px; right: -80px; }
.cta-shape-2 { width: 320px; height: 320px; background: rgba(255,255,255,0.03); bottom: -80px; left: 8%; }
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 0.875rem;
  line-height: 1.12;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── 18. Contact Form ────────────────────────────────────────── */
.contact-section { background: var(--off-white); padding: 5rem 0; }
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.contact-form-header { margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border-light); }
.contact-form-header h2 { font-size: 1.375rem; font-weight: 700; color: var(--text-dark); }
.contact-form-header p { font-size: 0.875rem; color: var(--text-medium); margin-top: 0.25rem; }
.vehicle-form .form-group { margin-bottom: 1.125rem; }
.vehicle-form .form-row { display: grid; gap: 1rem; }
.vehicle-form label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.375rem; }
.vehicle-form input,
.vehicle-form select,
.vehicle-form textarea {
  width: 100%;
  padding: 0.75rem 0.9375rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--off-white);
  font-family: var(--font);
  transition: all var(--transition);
  min-height: 48px;
  appearance: none;
  -webkit-appearance: none;
}
.vehicle-form input:focus,
.vehicle-form select:focus,
.vehicle-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,122,56,0.1);
}
.vehicle-form textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: 0.8rem; color: var(--text-light); margin-top: 0.25rem; }
.form-check { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--text-medium); }
.form-check input { width: auto; min-height: auto; margin-top: 0.2rem; accent-color: var(--primary); }
.form-success { padding: 1rem 1.25rem; background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.2); border-radius: var(--radius); color: var(--success); font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }
.form-error { padding: 1rem 1.25rem; background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); border-radius: var(--radius); color: var(--danger); }

/* ── 19. Footer – GREY NEUTRAL ───────────────────────────────── */
.site-footer {
  background: #f4f5f7;
  color: var(--text-dark);
  border-top: 1px solid #e2e4e8;
}
.footer-main { padding: 3.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer-col {}
.footer-brand {}
.footer-logo { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo svg { display: block; }
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-medium);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 280px;
}
.footer-contact-info { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-contact-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--text-medium);
  transition: color var(--transition);
}
.footer-contact-item svg { color: var(--primary); flex-shrink: 0; }
.footer-contact-item:hover { color: var(--primary); }
.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links li a {
  font-size: 0.875rem;
  color: var(--text-medium);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.footer-links li a:hover { color: var(--primary); }
.footer-links-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0.375rem 0.875rem; }
.footer-links-two-col li a { font-size: 0.8125rem; }

/* Footer CTA strip */
.footer-cta-bar {
  background: rgba(26,122,56,0.05);
  border-top: 1px solid rgba(26,122,56,0.1);
  border-bottom: 1px solid rgba(26,122,56,0.1);
  padding: 1.25rem 0;
}
.footer-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.footer-cta-inner p { font-size: 0.9375rem; color: var(--text-dark); }
.footer-cta-inner strong { color: var(--primary); }
.footer-cta-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-cta-btns .btn-white { color: var(--primary); background: var(--primary); color: #fff; }
.footer-cta-btns .btn-primary { background: var(--primary); }

/* Footer bottom */
.footer-bottom {
  background: #e9eaec;
  border-top: 1px solid #d5d7db;
  padding: 1.125rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: flex-start;
}
.footer-bottom-inner p { font-size: 0.8125rem; color: var(--text-light); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-legal-links a { font-size: 0.8125rem; color: var(--text-medium); transition: color var(--transition); }
.footer-legal-links a:hover { color: var(--primary); }
.footer-trust-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(26,122,56,0.08);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(26,122,56,0.14);
}

/* ── 20. Page Hero (Inner Pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  isolation: isolate; /* own stacking context → ::after z-indices stay inside */
  padding: calc(100px + 2.5rem) 0 calc(3.5rem + 50px);
  background:
    radial-gradient(circle at 90% 20%, rgba(62,207,114,0.07) 0%, transparent 50%),
    radial-gradient(circle at 8%  80%, rgba(26,122,56,0.10) 0%, transparent 42%),
    linear-gradient(155deg, #0a2216 0%, var(--primary-dark) 50%, #1a4d28 100%);
  overflow: hidden;
}
/* White wave separator – creates smooth hero→content transition, prevents "dark overlay" look */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 52px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 52' preserveAspectRatio='none'%3E%3Cpath d='M0,24 C380,52 1060,0 1440,24 L1440,52 L0,52 Z' fill='white'/%3E%3C/svg%3E") no-repeat bottom center / 100% 100%;
  z-index: 2;
  pointer-events: none;
}
/* .page-hero-bg handles optional background images — no dark overlay of its own */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  z-index: 0;
}
.page-hero-bg[style] {
  background-color: rgba(7,22,16,0.55);
  background-blend-mode: multiply;
}
/* Content stack above background and below wave */
.page-hero .container { position: relative; z-index: 1; }
.page-hero-inner { position: relative; z-index: 1; }

.page-hero-tag {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.875rem;
}

/* H1 and aliased class */
.page-hero h1,
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900; color: #fff; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 0.875rem;
}
.page-hero h1 span,
.page-hero-title span { color: var(--accent); }

/* Subtitle — both class names that templates use */
.page-hero-sub,
.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* CTA button row inside hero */
.page-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 0.5rem;
}

/* Breadcrumb nav (both naming conventions) */
.page-hero-breadcrumb,
.page-hero nav.breadcrumb {
  display: flex; align-items: center; gap: 0.375rem;
  margin-bottom: 1rem; flex-wrap: wrap;
}
.page-hero nav.breadcrumb a,
.breadcrumb-item {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.52);
  text-decoration: none;
}
.page-hero nav.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.page-hero nav.breadcrumb span,
.breadcrumb-item.active { color: rgba(255,255,255,0.85); font-size: 0.8125rem; }
.breadcrumb-sep { color: rgba(255,255,255,0.28); font-size: 0.75rem; }

/* ── Hero signature car (side-profile decoration on homepage hero) ── */
.hero-signature-car {
  position: absolute;
  bottom: 58px;
  left: 50%;
  transform: translateX(-50%);
  width: min(820px, 88vw);
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
}
@media (max-width: 900px) { .hero-signature-car { display: none; } }

/* ── 21. Content Layout ──────────────────────────────────────── */
.content-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0; }
.content-body { min-width: 0; }
.content-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.content-prose h2 { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin: 2rem 0 0.875rem; }
.content-prose h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin: 1.5rem 0 0.625rem; }
.content-prose p { color: var(--text-medium); line-height: 1.78; margin-bottom: 1.25rem; }
.content-prose ul, .content-prose ol { margin: 1rem 0 1.25rem 1.25rem; color: var(--text-medium); }
.content-prose li { margin-bottom: 0.5rem; line-height: 1.65; }
.content-prose ul li { list-style: disc; }
.content-prose ol li { list-style: decimal; }
.content-prose strong { font-weight: 700; color: var(--text-dark); }
.article-cta-box {
  background: rgba(26,122,56,0.05);
  border: 1px solid rgba(26,122,56,0.18);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
}
.article-cta-box h3 { font-size: 1.0625rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.article-cta-box p { font-size: 0.9rem; color: var(--text-medium); margin-bottom: 1rem; }
.sidebar-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-card-title { font-size: 0.75rem; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.sidebar-card-link {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; color: var(--text-medium);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition);
}
.sidebar-card-link:last-child { border-bottom: none; }
.sidebar-card-link:hover { color: var(--primary); }
.contact-info-card {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.contact-info-card h3 { font-size: 1.0625rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.contact-info-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 0.625rem; }
.contact-info-item svg { color: var(--accent); flex-shrink: 0; }
.contact-info-item a { color: #fff; font-weight: 500; }

/* ── 22. Blog & Article Pages ────────────────────────────────── */
.blog-article-header { margin-bottom: 2rem; }
.blog-article-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.875rem; }
.blog-article-tag { display: inline-block; padding: 0.25rem 0.75rem; background: rgba(26,122,56,0.08); border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; color: var(--primary); }
.blog-article-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; background: var(--light-bg); }
.blog-related-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1.5rem; }

/* ── 23. District Page ───────────────────────────────────────── */
.district-trust-list { display: flex; flex-direction: column; gap: 0.625rem; margin: 1rem 0; }
.district-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--text-medium); }
.district-trust-icon { color: var(--primary); flex-shrink: 0; }
.district-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
.district-related-link {
  display: flex; align-items: center; gap: 0.375rem;
  padding: 0.625rem 0.875rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem; color: var(--text-dark);
  transition: all var(--transition);
}
.district-related-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── 24. Alerts ──────────────────────────────────────────────── */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 1rem; display: flex; align-items: flex-start; gap: 0.625rem; }
.alert-success { background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.2); color: var(--success); }
.alert-error { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); color: var(--danger); }
.alert-info { background: rgba(26,122,56,0.08); border: 1px solid rgba(26,122,56,0.2); color: var(--primary-dark); }

/* ── 25. Modal ───────────────────────────────────────────────── */
/* Structure: .modal-overlay (full-screen backdrop, the toggle target #callbackModal)
   wraps .modal (the dialog box). Overlay is HIDDEN by default — only shown via .open.
   NOTE: overlay must be display:none when closed, otherwise its dark blur layer
   covers the whole page (caused the site-wide "dark/blur overlay" bug). */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  align-items: center; justify-content: center; padding: 1rem;
  background: rgba(0,0,0,0.52);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  position: relative; background: #fff; border-radius: var(--radius-xl);
  padding: 2rem 2rem 2.25rem; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: modalPop 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalPop { from { opacity: 0; transform: translateY(16px) scale(0.97); } to { opacity: 1; transform: none; } }
.modal-box {
  position: relative; background: #fff; border-radius: var(--radius-xl);
  padding: 2rem; width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; z-index: 1;
  box-shadow: var(--shadow-xl);
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--grey-100); color: var(--text-medium);
  cursor: pointer; transition: all var(--transition); font-family: var(--font); font-size: 1.125rem;
}
.modal-close:hover { background: var(--danger); color: #fff; }
.modal-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-dark); }

/* ── 26. Cookie Consent ──────────────────────────────────────── */
.cookie-consent {
  position: fixed; bottom: 1.5rem; left: 1rem; right: 1rem; z-index: 999;
  background: var(--text-dark); color: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-xl);
  display: none;
}
.cookie-consent.show { display: flex; flex-direction: column; gap: 0.875rem; }
.cookie-text { font-size: 0.875rem; line-height: 1.6; }
.cookie-text a { color: var(--accent); }
.cookie-actions { display: flex; gap: 0.625rem; flex-wrap: wrap; }

/* ── 27. WhatsApp Float ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  display: flex; align-items: center; gap: 0.625rem;
  background: #25d366; color: #fff;
  border-radius: var(--radius-full);
  padding: 0.75rem 1.25rem 0.75rem 0.875rem;
  box-shadow: 0 4px 22px rgba(37,211,102,0.42);
  font-size: 0.875rem; font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); color: #fff; }

/* ── 28. Scroll To Top ───────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 900;
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff;
  box-shadow: var(--shadow-md); cursor: pointer; transition: all var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ── 29. Animations ──────────────────────────────────────────── */
.animate-fade-up { animation: fadeUp 0.65s ease forwards; opacity: 0; }
.animate-slide-right { animation: slideRight 0.72s ease forwards; opacity: 0; }
.animate-delay-1 { animation-delay: 0.14s; }
.animate-delay-2 { animation-delay: 0.28s; }
.animate-delay-3 { animation-delay: 0.42s; }
.animate-delay-4 { animation-delay: 0.56s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(36px); } to { opacity: 1; transform: translateX(0); } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.revealed { opacity: 1; transform: none; }

/* ── 30. Tablet 768px+ ───────────────────────────────────────── */
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
  .section-padding { padding: 6rem 0; }
  .section-padding-sm { padding: 4.5rem 0; }

  /* Hero */
  .hero-container { flex-direction: row; align-items: center; padding: 5rem 2rem 3rem; gap: 4rem; }
  .hero-content { flex: 1.2; max-width: 560px; }
  .hero-car-visual { flex: 1; justify-content: flex-end; }
  .hero-car-card { min-width: 320px; max-width: 380px; }

  /* Stats 4-col */
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-item { border-bottom: none; }

  /* Services 2-col */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process horizontal */
  .process-timeline {
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
  }
  .process-timeline::before {
    top: 29px;
    left: calc(12.5% + 29px);
    right: calc(12.5% + 29px);
    bottom: auto;
    height: 2px;
    width: auto;
    background: linear-gradient(90deg, rgba(26,122,56,0.35), rgba(34,197,94,0.5), rgba(26,122,56,0.35));
    opacity: 1;
  }
  .timeline-step { flex-direction: column; align-items: center; text-align: center; flex: 1; padding: 0 0.75rem; }
  .timeline-node { align-items: center; justify-content: center; width: 100%; }
  .timeline-content { padding: 1.25rem 0 0; }

  /* Why 2-col features */
  .why-features { grid-template-columns: repeat(2, 1fr); }

  /* Blog 2-col */
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  /* FAQ 2-col */
  .faq-layout { grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }

  /* Footer 2-col */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-bottom-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ── 31. Desktop 1024px+ ─────────────────────────────────────── */
@media (min-width: 1024px) {
  /* Nav links visible, hamburger hidden */
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    flex: 1;
    align-items: center;
    overflow: visible;
    z-index: auto;
  }
  .nav-list { flex-direction: row; gap: 0; flex: 1; }
  .nav-item { border-bottom: none; position: relative; }
  .nav-link {
    font-size: 0.875rem; font-weight: 500;
    color: var(--text-medium);
    padding: 0.4rem 0.7rem;
    border-radius: var(--radius-sm);
    justify-content: flex-start;
    gap: 0.25rem;
    white-space: nowrap;
    height: auto; min-height: auto;
  }
  .nav-link:hover { background: rgba(26,122,56,0.06); color: var(--primary); }
  .nav-item.active > .nav-link { color: var(--primary); font-weight: 600; background: rgba(26,122,56,0.06); }

  /* Desktop dropdown */
  .nav-dropdown {
    position: absolute;
    top: 100%; /* No gap — hover stays continuous */
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-top: 8px solid transparent; /* invisible bridge over the visual gap */
    background-clip: padding-box;      /* background doesn't bleed into border area */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    gap: 0.125rem;
    z-index: 200;
    display: none;
    flex-direction: column;
  }
  .has-dropdown:hover .nav-dropdown { display: flex; }
  .nav-dropdown.open { display: flex; }
  /* Wide dropdown (Locations grid) — only shown on hover/open, NOT unconditionally */
  .has-dropdown:hover .nav-dropdown-wide { display: grid; grid-template-columns: 1fr 1fr; min-width: 280px; }
  .nav-dropdown-wide.open { display: grid; grid-template-columns: 1fr 1fr; min-width: 280px; }
  .nav-cta { flex-direction: row; align-items: center; padding: 0; border-top: none; margin-left: auto; gap: 0.75rem; }
  .nav-phone { font-size: 0.875rem; }

  /* Services 3-col */
  .services-grid { grid-template-columns: repeat(3, 1fr); }

  /* Why asymmetric */
  .why-grid { grid-template-columns: 1.5fr 1fr; gap: 5rem; }
  .why-features { grid-template-columns: 1fr; }

  /* Blog 3-col */
  .blog-grid { grid-template-columns: repeat(3, 1fr); }

  /* Content with sidebar */
  .content-layout { grid-template-columns: 1fr 300px; gap: 3.5rem; padding: 4.5rem 0; }

  /* Footer 4-col */
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; }
}

/* ── 32. Utilities ───────────────────────────────────────────── */
.visually-hidden, .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; }
hr { border: none; border-top: 1px solid var(--border-light); }
strong { font-weight: 700; }
