/* ============================================
   ACCIDENT NETWORKS - SHARED STYLESHEET
   accidentnetworks.com / [city].accidentnetworks.com
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=Merriweather:wght@400;700&display=swap');

/* ============================================
   CSS VARIABLES - DESIGN SYSTEM
   ============================================ */
:root {
  /* Brand Colors */
  --navy:       #1D2F55;
  --navy-dark:  #0f1e3d;
  --navy-light: #2a4070;
  --gold:       #D4AF37;
  --gold-light: #e8c84a;
  --gold-dark:  #b8960f;
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-300:   #cbd5e1;
  --gray-400:   #94a3b8;
  --gray-500:   #64748b;
  --gray-600:   #475569;
  --gray-700:   #334155;
  --gray-800:   #1e293b;
  --gray-900:   #0f172a;
  --green:      #16a34a;
  --red:        #dc2626;

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-serif:   'Merriweather', serif;

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

  /* Border Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.12);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.16);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.20);
  --shadow-gold: 0 0 32px rgba(212,175,55,0.35);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;

  /* Container */
  --max-width: 1280px;
  --container-pad: clamp(16px, 4vw, 48px);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section { padding: var(--space-3xl) 0; }
.section--tight { padding: var(--space-2xl) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }

/* ============================================
   TYPOGRAPHY SCALE
   ============================================ */
.display-1 { font-family: var(--font-display); font-size: clamp(48px, 7vw, 90px); line-height: 0.95; letter-spacing: 2px; }
.display-2 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: 1px; }
.display-3 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); line-height: 1.05; }
.heading-1 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.2; }
.heading-2 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; line-height: 1.25; }
.heading-3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 600; line-height: 1.3; }
.body-lg { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.7; }
.body-md { font-size: 16px; line-height: 1.6; }
.body-sm { font-size: 14px; line-height: 1.5; }
.caption { font-size: 12px; line-height: 1.4; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray-500); }
.font-bold { font-weight: 700; }
.font-semi { font-weight: 600; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition-fast);
}
.btn:hover::before { opacity: 1; }
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 0 48px rgba(212,175,55,0.5);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
}

.btn-xl {
  padding: 22px 52px;
  font-size: 20px;
  font-weight: 700;
}

/* Phone pulse animation */
.btn-phone {
  animation: pulse-gold 2.5s infinite;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4), var(--shadow-gold); }
  50% { box-shadow: 0 0 0 12px rgba(212,175,55,0), var(--shadow-gold); }
}

/* ============================================
   BADGE / CHIP
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-gold {
  background: rgba(212,175,55,0.15);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
}
.badge-green {
  background: rgba(22,163,74,0.12);
  color: var(--green);
}
.badge-navy {
  background: rgba(29,47,85,0.1);
  color: var(--navy);
}
.badge-white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.badge-dot::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--space-xl);
}
.header-logo img {
  height: 52px;
  width: auto;
}
.header-logo .logo-text {
  display: flex;
  flex-direction: column;
}
.header-logo .logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 1px;
  line-height: 1;
}
.header-logo .logo-city {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}
.nav-link:hover {
  color: var(--navy);
  background: var(--gray-100);
}
.nav-link.has-dropdown { padding-right: 10px; }
.nav-link.has-dropdown::after {
  content: '▾';
  margin-left: 4px;
  font-size: 10px;
  color: var(--gray-400);
}

/* Dropdown */
.nav-item {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 200;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-link {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.dropdown-link:hover {
  background: var(--gray-100);
  color: var(--navy);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--gold);
  transition: var(--transition);
}
.header-phone:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.header-phone svg { width: 18px; height: 18px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img, .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,30,61,0.90) 0%,
    rgba(15,30,61,0.65) 50%,
    rgba(15,30,61,0.20) 100%
  );
}
.hero-border-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gold);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-3xl) 0;
}
.hero-content { color: var(--white); }
.hero-eyebrow {
  display: inline-flex;
  margin-bottom: var(--space-lg);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: var(--space-lg);
}
.hero-title .city-name { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: var(--space-xl);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}
.trust-chip svg { width: 14px; height: 14px; color: var(--gold); }
.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}
.form-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-lg);
}
.form-group {
  margin-bottom: var(--space-md);
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--gray-100);
  transition: var(--transition-fast);
  outline: none;
}
.form-input:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(29,47,85,0.1);
}
.form-input::placeholder { color: var(--gray-400); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: var(--space-sm);
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.form-disclaimer {
  font-size: 11px;
  color: var(--gray-400);
  text-align: center;
  margin-top: var(--space-sm);
  line-height: 1.4;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}
.form-success.visible { display: block; }
.success-icon {
  width: 60px;
  height: 60px;
  background: rgba(22,163,74,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}
.success-icon svg { width: 30px; height: 30px; color: var(--green); }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-lg) 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(29,47,85,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 22px; height: 22px; color: var(--navy); }
.trust-text .label { font-weight: 700; font-size: 15px; color: var(--gray-800); line-height: 1.2; }
.trust-text .sub { font-size: 12px; color: var(--gray-500); }

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: var(--navy);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ============================================
   ABOUT / NETWORK SECTION
   ============================================ */
.about-section {
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.about-badge .stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; }
.about-badge .rating { font-weight: 700; font-size: 16px; color: var(--gray-800); }
.about-badge .count { font-size: 12px; color: var(--gray-500); }

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: var(--space-md);
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}
.section-title-accent {
  display: block;
  width: 56px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: var(--space-lg);
}
.section-desc {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}
.checklist { display: flex; flex-direction: column; gap: var(--space-md); }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}
.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon svg { width: 14px; height: 14px; color: var(--gold); }
.check-text { font-weight: 600; font-size: 16px; color: var(--gray-800); line-height: 1.3; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: calc(100%/6);
  right: calc(100%/6);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gray-200) 20%, var(--gray-200) 80%, transparent);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  position: relative;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.step-num .num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}
.step-num svg { width: 36px; height: 36px; color: var(--navy); display: none; }
.step-card:hover .step-num {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.step-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.why-image {
  position: relative;
}
.why-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.why-image-main img { width: 100%; height: 100%; object-fit: cover; }
.why-image-overlay {
  position: absolute;
  bottom: -var(--space-lg);
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  border-top: 3px solid var(--gold);
}
.why-image-overlay .icon {
  width: 48px;
  height: 48px;
  background: rgba(212,175,55,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-image-overlay .icon svg { width: 24px; height: 24px; color: var(--gold); }
.why-image-overlay .label { font-weight: 700; font-size: 16px; color: var(--gray-800); }
.why-image-overlay .sub { font-size: 13px; color: var(--gray-500); }

.features-list { display: flex; flex-direction: column; gap: var(--space-lg); }
.feature-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.feature-item:hover {
  background: var(--off-white);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(29,47,85,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  transition: var(--transition);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-item:hover .feature-icon {
  background: var(--navy);
  color: var(--white);
}
.feature-content {}
.feature-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feature-desc { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ============================================
   ACCIDENT TYPES CARDS
   ============================================ */
.accident-types { background: var(--gray-100); }
.accident-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.accident-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: block;
}
.accident-card:hover {
  border-color: rgba(212,175,55,0.5);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.accident-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.accident-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.accident-card:hover .accident-card-img img { transform: scale(1.08); }
.accident-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,30,61,0.75) 0%, transparent 60%);
}
.accident-card-img-title {
  position: absolute;
  bottom: 14px;
  left: 16px;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}
.accident-card-body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
}
.accident-card-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}
.accident-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition-fast);
}
.accident-card-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.accident-card:hover .accident-card-link { color: var(--gold); }
.accident-card:hover .accident-card-link svg { transform: translateX(4px); }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.service-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(212,175,55,0.4);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.service-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -48px;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
  color: var(--navy);
}
.service-icon svg { width: 30px; height: 30px; }
.service-title { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-2px); }
.testimonial-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-info .name { font-weight: 700; font-size: 14px; color: var(--gray-800); }
.testimonial-info .location { font-size: 12px; color: var(--gray-500); }
.testimonial-info .date { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
.testimonial-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-md);
  font-style: italic;
}
.verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}
.verified svg { width: 14px; height: 14px; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--gray-100); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(29,47,85,0.25); box-shadow: var(--shadow-md); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  gap: var(--space-md);
}
.faq-question-text { font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.faq-item.open .faq-question-text { color: var(--navy); }
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-toggle svg { width: 16px; height: 16px; color: var(--gray-500); transition: transform 0.3s; }
.faq-item.open .faq-toggle { background: var(--navy); }
.faq-item.open .faq-toggle svg { color: var(--white); transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 var(--space-xl) var(--space-lg);
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 15px; color: var(--gray-600); line-height: 1.7; border-top: 1px solid var(--gray-100); padding-top: var(--space-md); }

/* FAQ CTA box */
.faq-cta {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-2xl);
  text-align: center;
  margin-top: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq-cta h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.faq-cta p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: var(--space-lg); }

/* ============================================
   AREAS SERVED
   ============================================ */
.areas-section { background: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.area-chip {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 10px var(--space-md);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  transition: var(--transition-fast);
  cursor: default;
}
.area-chip:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--navy);
  border-top: 8px solid var(--gold);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(212,175,55,0.08) 0%, transparent 60%);
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner-icon {
  width: 72px;
  height: 72px;
  background: rgba(212,175,55,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}
.cta-banner-icon svg { width: 36px; height: 36px; color: var(--gold); }
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto var(--space-md);
  line-height: 1.2;
}
.cta-banner p { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: var(--space-xl); max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-meta { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: var(--space-md); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: var(--space-3xl) 0 0;
}
.footer-cta-bar {
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}
.footer-cta-bar h3 { font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer-cta-bar p { font-size: 15px; color: rgba(255,255,255,0.7); }
.footer-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 20px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  transition: var(--transition);
}
.footer-cta-phone:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.footer-cta-phone svg { width: 20px; height: 20px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 4px;
}
.footer-brand .logo-city {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-contact { margin-top: var(--space-lg); }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-sm);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact a svg { width: 16px; height: 16px; color: var(--gold); }
.footer-contact .hours { font-size: 11px; color: var(--gray-500); margin-top: 4px; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-lg);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-400);
  transition: color 0.2s;
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
}
.footer-links a:hover { color: var(--white); }

.footer-stats {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-lg) 0;
  margin-bottom: var(--space-lg);
}
.footer-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}
.footer-stat .num { font-weight: 700; font-size: 20px; color: var(--gold); }
.footer-stat .lbl { font-size: 11px; color: var(--gray-500); margin-top: 2px; }

.footer-bottom {
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--gray-600); }
.footer-legal {
  display: flex;
  gap: var(--space-lg);
}
.footer-legal a { font-size: 12px; color: var(--gray-600); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ============================================
   FLOATING CTA BAR (mobile)
   ============================================ */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: var(--space-md) var(--container-pad);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
}
.floating-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 17px;
  padding: 16px;
  border-radius: var(--radius-lg);
  width: 100%;
}

/* ============================================
   SECTION HEADER (shared)
   ============================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
}
.section-header .section-desc { margin-bottom: 0; }

/* Rating display */
.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.rating-display .stars { font-size: 18px; letter-spacing: 2px; }
.rating-display .score { font-weight: 700; font-size: 20px; color: var(--gray-800); }
.rating-display .count { font-size: 13px; color: var(--gray-500); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 560px; margin: 0 auto; }
  .hero-subtitle { max-width: 100%; }
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .about-image, .why-image-main { aspect-ratio: 16/9; max-height: 400px; }
  .grid-2 { grid-template-columns: 1fr; }
  .accident-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 80px 0 0 0;
    background: var(--white);
    padding: var(--space-xl);
    gap: var(--space-sm);
    overflow-y: auto;
    z-index: 99;
    box-shadow: var(--shadow-xl);
  }
  .mobile-nav-open .main-nav .nav-link {
    font-size: 18px;
    padding: var(--space-md);
    border-bottom: 1px solid var(--gray-100);
  }
  .mobile-nav-open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
    border: none;
    border-left: 2px solid var(--gold);
    border-radius: 0;
    margin-left: var(--space-md);
  }
  .header-phone span { display: none; }
  .trust-bar-inner { gap: var(--space-lg); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .accident-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cta-bar { flex-direction: column; text-align: center; }
  .footer-cta-phone { width: 100%; justify-content: center; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-trust { flex-direction: column; }
  .trust-chip { width: fit-content; }
  .floating-cta { display: block; }
  body { padding-bottom: 80px; }
  .hero { min-height: 100svh; }
  .section { padding: var(--space-2xl) 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .why-image-overlay { position: static; transform: none; width: 100%; border-radius: var(--radius-lg); margin-top: var(--space-md); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   LOCAL SEO BLOCK
   ============================================ */
.local-seo-section {
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.local-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: var(--transition);
}
.local-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(29,47,85,0.15); }
.local-card--law {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-lg);
  align-items: start;
}
.local-card-icon {
  width: 56px; height: 56px;
  background: rgba(29,47,85,0.07);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--navy); margin-bottom: var(--space-md);
}
.local-card--law .local-card-icon { margin-bottom: 0; }
.local-card-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.local-card-intro { font-size: 13px; color: var(--gray-500); margin-bottom: var(--space-md); line-height: 1.5; }
.local-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.local-list-item {
  font-size: 14px; color: var(--gray-700);
  padding: 8px 12px; background: var(--gray-100);
  border-radius: var(--radius-sm); border-left: 3px solid var(--gold); line-height: 1.4;
}
.local-list--law .local-list-item { border-left-color: var(--navy); }
.law-cta { display: flex; flex-direction: column; align-items: flex-end; gap: var(--space-md); min-width: 200px; }
.law-cta p { font-size: 13px; color: var(--gray-500); text-align: right; line-height: 1.5; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.areas-header { margin-top: var(--space-2xl); margin-bottom: var(--space-md); }
.areas-title { font-size: 18px; font-weight: 700; color: var(--navy); }
@media (max-width: 768px) {
  .local-grid { grid-template-columns: 1fr; }
  .local-card--law { grid-column: span 1; grid-template-columns: 1fr; }
  .law-cta { align-items: flex-start; }
  .law-cta p { text-align: left; }
}

/* ============================================
   NOT YOUR CITY BUTTON + CITY PICKER MODAL
   ============================================ */

/* Header button */
.not-your-city {
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.not-your-city:hover {
  border-color: var(--gold);
  color: var(--gold);
}
/* Hide text on mobile — icon only */
@media (max-width: 768px) {
  .not-your-city { display: none; }
}

/* Modal overlay */
.city-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,0.85);
  backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
.city-modal-overlay.open {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Modal box */
.city-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  animation: slideUp 0.25s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.city-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.city-modal-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}
.city-modal-close {
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-500);
  transition: var(--transition);
  flex-shrink: 0;
}
.city-modal-close:hover {
  background: var(--gray-200);
  color: var(--navy);
}
.city-modal-sub {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: var(--space-lg);
}

/* State grid inside modal */
.city-modal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.city-modal-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 6px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  gap: 3px;
}
.city-modal-btn:hover,
.city-modal-btn.active {
  background: var(--navy);
  border-color: var(--navy);
}
.city-modal-btn .code {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
  line-height: 1;
  transition: var(--transition);
}
.city-modal-btn .name {
  font-size: 10px;
  color: var(--gray-500);
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  transition: var(--transition);
}
.city-modal-btn:hover .code,
.city-modal-btn.active .code {
  color: var(--gold);
}
.city-modal-btn:hover .name,
.city-modal-btn.active .name {
  color: rgba(255,255,255,0.75);
}

@media (max-width: 540px) {
  .city-modal-grid { grid-template-columns: repeat(3, 1fr); }
  .city-modal { padding: var(--space-lg); }
}

/* Footer city change link */
.not-your-city-footer {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
}
.not-your-city-footer:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* ============================================
   LANGUAGE TOGGLE BUTTON
   ============================================ */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.lang-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}
@media (max-width: 768px) {
  .lang-toggle { padding: 6px 10px; }
  .lang-toggle svg { display: none; }
}
