/* ============================================================
   AHMED CAR RECOVERY DUBAI — DESIGN SYSTEM
   Pure CSS | Mobile-First | Premium Design
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:       #0B133C;
  --navy-dark:  #060C28;
  --navy-mid:   #131D54;
  --gold:       #F5A623;
  --gold-dark:  #D4891A;
  --gold-light: #FFB84D;
  --red:        #E63946;
  --white:      #FFFFFF;
  --off-white:  #F8F9FC;
  --gray-100:   #F0F2F8;
  --gray-200:   #E2E6F0;
  --gray-400:   #9AA3BF;
  --gray-600:   #5A6280;
  --gray-800:   #2D3360;
  --text-main:  #1A1F3C;
  --text-muted: #5A6280;

  --font-main:  'Inter', sans-serif;
  --font-head:  'Outfit', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(11,19,60,0.08);
  --shadow-md:  0 8px 32px rgba(11,19,60,0.12);
  --shadow-lg:  0 20px 60px rgba(11,19,60,0.18);
  --shadow-gold:0 8px 32px rgba(245,166,35,0.30);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:  1200px;
  --section-py: 80px;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.2; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: var(--section-py) 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.75); }
.section--gray { background: var(--off-white); }
.section--navy-gradient { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }

/* --- Section Headers --- */
.section-label {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid rgba(245,166,35,0.25);
}
.section--dark .section-label {
  background: rgba(245,166,35,0.15);
  color: var(--gold-light);
  border-color: rgba(245,166,35,0.3);
}
.section-header { margin-bottom: 48px; }
.section-header.text-center { text-align: center; }
.section-header p { max-width: 600px; font-size: 1.05rem; }
.section-header.text-center p { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(245,166,35,0.4); }
.btn-secondary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn-call { background: var(--red); color: var(--white); box-shadow: 0 8px 24px rgba(230,57,70,0.35); }
.btn-call:hover { background: #c62d3a; transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-icon { font-size: 1.1em; }

/* --- Announcement Bar --- */
.announcement-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 0.02em;
}
.announcement-bar a { color: var(--gold); font-weight: 600; }
.announcement-bar strong { color: var(--white); }

/* --- Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(11,19,60,0.10);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 72px;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.logo-text { line-height: 1.1; }
.logo-name { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--navy); display: block; }
.logo-tagline { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--gray-100); }
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 200;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: var(--transition);
}
.dropdown-link:hover { background: var(--navy); color: var(--white); }
.dropdown-link span { font-size: 1rem; }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  transition: var(--transition);
}
.header-phone:hover { color: var(--gold-dark); }

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  padding: 80px 24px 40px;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  border: none;
}
.mobile-nav-link {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); padding-left: 8px; }
.mobile-sub { padding-left: 16px; margin-top: 4px; }
.mobile-sub-link { display: block; color: rgba(255,255,255,0.7); font-size: 0.95rem; padding: 8px 0; transition: var(--transition); }
.mobile-sub-link:hover { color: var(--gold); }
.mobile-cta-group { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }

/* --- Floating CTA --- */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); }
.float-whatsapp { background: #25D366; color: white; }
.float-call { background: var(--red); color: white; }

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1B2560 100%);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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.025'%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");
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-badge::before { content: '●'; color: var(--gold); font-size: 0.6em; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.80); margin-bottom: 32px; max-width: 520px; }
.hero-trust { display: flex; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.trust-stat { text-align: center; }
.trust-stat strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--gold); font-family: var(--font-head); }
.trust-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.65); font-weight: 500; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(10px);
}
.hero-card h3 { color: var(--white); margin-bottom: 20px; font-size: 1.1rem; }
.service-quick-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.service-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  cursor: pointer;
}
.service-chip:hover { background: rgba(245,166,35,0.15); border-color: rgba(245,166,35,0.3); color: var(--gold-light); }
.service-chip span { font-size: 1rem; }

.hero-emergency-block {
  margin-top: 20px;
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.3);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-emergency-block .em-icon { font-size: 1.5rem; }
.hero-emergency-block p { color: rgba(255,255,255,0.85); font-size: 0.875rem; margin: 0; }
.hero-emergency-block strong { color: var(--white); }
.hero-emergency-block a { color: var(--gold-light); font-weight: 700; }

/* --- Trust Bar --- */
.trust-bar { background: var(--navy); padding: 20px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.875rem; font-weight: 500; }
.trust-item-icon { font-size: 1.2rem; }
.trust-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.15); }

/* --- Service Cards --- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.service-card h3 { font-size: 1.05rem; color: var(--navy); margin: 0; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.service-card .arrow { color: var(--gold); font-size: 1rem; margin-top: auto; font-weight: 700; }

/* --- Location Cards --- */
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.location-card:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.location-icon { font-size: 1.5rem; flex-shrink: 0; }
.location-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.location-card p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.location-card .arrow { margin-left: auto; color: var(--gold); flex-shrink: 0; }

/* --- How It Works --- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 26px);
  right: calc(12.5% + 26px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  z-index: 0;
}
.step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 1.3rem;
  font-family: var(--font-head);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}
.step:first-child .step-num { background: var(--gold); color: var(--navy); }
.step h4 { margin-bottom: 8px; }
.step p { font-size: 0.875rem; }

/* --- Feature List --- */
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-check {
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 800;
}
.feature-item p { margin: 0; font-size: 0.9rem; }
.feature-item strong { color: var(--text-main); }

/* --- Stats Section --- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 32px 20px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-lg); }
.stat-num { font-size: 2.5rem; font-weight: 800; font-family: var(--font-head); color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.70); font-weight: 500; }

/* --- Review Cards --- */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; font-style: italic; line-height: 1.7; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}
.review-name { font-weight: 600; font-size: 0.875rem; color: var(--text-main); }
.review-meta { font-size: 0.75rem; color: var(--text-muted); }

/* --- FAQ Section --- */
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--navy); }
.faq-icon { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; font-weight: 700; }
.faq-a { display: none; padding-bottom: 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* --- CTA Band --- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '🚗';
  position: absolute;
  font-size: 200px;
  opacity: 0.03;
  right: -20px;
  top: -30px;
  transform: rotate(-15deg);
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 580px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy-mid));
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 640px; font-size: 1.05rem; margin-bottom: 28px; }
.page-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- Content Sections --- */
.content-block { padding: 60px 0; }
.content-block + .content-block { padding-top: 0; }
.content-prose h2 { margin-bottom: 20px; }
.content-prose h3 { margin-top: 32px; margin-bottom: 12px; font-size: 1.15rem; }
.content-prose ul { list-style: none; margin: 16px 0; }
.content-prose ul li { padding: 8px 0 8px 28px; position: relative; font-size: 0.9rem; color: var(--text-muted); border-bottom: 1px solid var(--gray-100); }
.content-prose ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 800; }

/* --- Vehicle Types --- */
.vehicle-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.vehicle-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.vehicle-chip:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* --- Pricing Card --- */
.pricing-note {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-note strong { color: var(--text-main); }

/* --- Contact Form --- */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--text-main); }
.form-input {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-input:focus { outline: none; border-color: var(--navy); }
.form-input::placeholder { color: var(--gray-400); }
textarea.form-input { min-height: 120px; resize: vertical; }
select.form-input { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235A6280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }

/* --- Footer --- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.80); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand { max-width: 320px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-name { font-size: 1.1rem; color: var(--white); }
.footer-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,0.65); }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; margin-bottom: 10px; color: rgba(255,255,255,0.75); }
.footer-contact-item a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-icon { font-size: 1rem; color: var(--gold); flex-shrink: 0; }

.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-link:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* --- Badges / Chips --- */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.badge-gold { background: rgba(245,166,35,0.12); color: var(--gold-dark); border: 1px solid rgba(245,166,35,0.25); }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-green { background: rgba(39,174,96,0.1); color: #27AE60; border: 1px solid rgba(39,174,96,0.25); }
.badge-red { background: rgba(230,57,70,0.1); color: var(--red); border: 1px solid rgba(230,57,70,0.25); }

/* --- Map Embed Placeholder --- */
.map-embed {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* --- Utility --- */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.py-24 { padding: 24px 0; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.divider { height: 1px; background: var(--gray-200); margin: 0; }
.divider--dark { background: rgba(255,255,255,0.1); }

/* --- Emergency Strip --- */
.emergency-strip {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.9rem;
}
.emergency-strip a { color: var(--white); font-weight: 800; text-decoration: underline; }

/* --- Sticky Call Bar (mobile) --- */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 901;
  background: var(--navy-dark);
  padding: 12px 20px;
  gap: 10px;
}
.sticky-call-bar .btn { flex: 1; justify-content: center; padding: 14px; font-size: 0.9rem; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-inner { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .main-nav, .header-phone { display: none; }
  .mobile-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-card { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 20px; }
  .trust-divider { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-trust { gap: 16px; }
  .sticky-call-bar { display: flex; }
  body { padding-bottom: 70px; }
  .floating-cta { bottom: 90px; right: 16px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
  .announcement-bar { font-size: 0.75rem; }
}
