/* ==========================================================================
   Taxi Casablanca Airport — main stylesheet
   Pure CSS, mobile-first. Palette: deep navy + gold accents.
   ========================================================================== */

:root {
  --navy-900: #0a1628;
  --navy-800: #0f2043;
  --navy-700: #16305c;
  --navy-600: #1e3a6e;
  --gold-500: #c9a24b;
  --gold-400: #d9b968;
  --gold-300: #e8cf95;
  --white: #ffffff;
  --off-white: #f6f4ee;
  --gray-100: #f1f2f5;
  --gray-300: #d7dbe2;
  --gray-500: #8792a2;
  --gray-700: #4c5566;
  --text-main: #1b2436;
  --success: #2f8f5b;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 10px 30px rgba(10, 22, 40, 0.12);
  --shadow-sm: 0 4px 12px rgba(10, 22, 40, 0.08);
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: Georgia, 'Times New Roman', serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; margin: 0 0 0.5em; color: var(--navy-900); }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 60px 0; }
.section-alt { background: var(--off-white); }
.section-navy { background: var(--navy-900); color: var(--gray-300); }
.section-navy h2, .section-navy h3 { color: var(--white); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.eyebrow {
  display: inline-block;
  color: var(--gold-500);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.section-head h2 { font-size: 1.9rem; }
.section-head p { color: var(--gray-700); }
.section-navy .section-head p { color: var(--gray-300); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold-500); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-400); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy-900); }
.btn-navy { background: var(--navy-800); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebc59; }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy-900); color: var(--gray-300); font-size: 0.82rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 8px 20px; gap: 10px; flex-wrap: wrap; }
.topbar-info { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar-info a, .topbar-hours { display: inline-flex; align-items: center; gap: 6px; color: var(--gray-300); }
.topbar-info a:hover { color: var(--gold-400); }
.topbar-lang a { margin-left: 10px; color: var(--gray-300); font-weight: 700; }
.topbar-lang a:hover { color: var(--gold-400); }
.icon { color: var(--gold-500); }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 46px; width: auto; }
.logo-text { display: flex; flex-direction: column; font-family: var(--font-head); font-weight: 700; color: var(--navy-900); font-size: 1.05rem; line-height: 1.2; }
.logo-text small { font-family: var(--font-body); font-weight: 500; color: var(--gray-700); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.04em; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy-900); border-radius: 2px; }

.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--navy-900);
  padding: 90px 30px 30px;
  transition: right 0.3s ease;
  z-index: 200;
  overflow-y: auto;
}
.main-nav.is-open { right: 0; }
.main-nav ul { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.main-nav a { display: block; padding: 12px 6px; color: var(--gray-300); font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.08); }
.main-nav a.active, .main-nav a:hover { color: var(--gold-400); }
.main-nav .nav-cta { text-align: center; }

.nav-close-overlay {
  display: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg, url('../images/airport-384562-1-scaled.jpg'));
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.hero.hero-compact .hero-inner { padding: 46px 20px 40px; }
.hero.hero-compact .hero-layout { align-items: center; }
.hero-crumb { color: var(--gray-300); font-size: 0.85rem; margin-bottom: 16px; }
.hero-crumb a { color: var(--gray-300); }
.hero-crumb a:hover { color: var(--gold-400); }
.hero-crumb .sep { margin: 0 6px; color: var(--gray-500); }
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 64px 20px 50px;
  max-width: 1180px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 75, 0.15);
  border: 1px solid rgba(201, 162, 75, 0.4);
  color: var(--gold-300);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); font-size: 2.1rem; max-width: 720px; }
.hero h1 .accent { color: var(--gold-400); }
.hero p.lead { font-size: 1.05rem; color: var(--gray-300); max-width: 560px; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust div { display: flex; align-items: center; gap: 10px; color: var(--gray-300); font-size: 0.85rem; font-weight: 600; }
.hero-trust .num { color: var(--gold-400); font-family: var(--font-head); font-size: 1.4rem; }

/* Quick quote / booking widget */
.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
  margin-top: -30px;
  position: relative;
  z-index: 3;
}
.quote-card h3 { font-size: 1.1rem; margin-bottom: 16px; color: var(--navy-900); }
.quote-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.8rem; font-weight: 700; color: var(--navy-700); text-transform: uppercase; letter-spacing: 0.02em; }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--off-white);
  color: var(--text-main);
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
}
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 12px; }

/* ---------- How it works ---------- */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.step-card { text-align: center; padding: 26px 18px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.step-icon {
  width: 62px; height: 62px; margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-600));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400); font-size: 1.6rem;
}
.step-card h3 { font-size: 1.05rem; }
.step-card p { color: var(--gray-700); font-size: 0.92rem; margin: 0; }

/* ---------- Vehicles ---------- */
.vehicle-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.vehicle-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
.vehicle-img { height: 220px; overflow: hidden; }
.vehicle-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.vehicle-card:hover .vehicle-img img { transform: scale(1.06); }
.vehicle-body { padding: 22px; }
.vehicle-body h3 { font-size: 1.2rem; margin-bottom: 4px; }
.vehicle-tag { color: var(--gold-500); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 12px; display: block; }
.vehicle-feats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.vehicle-feats li { background: var(--off-white); border-radius: 999px; padding: 5px 12px; font-size: 0.8rem; color: var(--navy-700); font-weight: 600; }

/* ---------- Price table / cards ---------- */
.price-table-wrap { overflow-x: auto; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
table.price-table { width: 100%; border-collapse: collapse; min-width: 640px; }
table.price-table th, table.price-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--gray-100); font-size: 0.92rem; }
table.price-table th { background: var(--navy-900); color: var(--white); font-weight: 700; position: sticky; top: 0; }
table.price-table tr:last-child td { border-bottom: none; }
table.price-table tr:hover td { background: var(--off-white); }
table.price-table td.price { font-weight: 700; color: var(--navy-800); }
table.price-table td .btn { padding: 8px 16px; font-size: 0.82rem; }

.price-cards { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 30px; }
.price-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); }
.price-card .route { font-weight: 700; color: var(--navy-900); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.price-card .route .arrow { color: var(--gold-500); }
.price-card .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.price-card .price-grid div { background: var(--off-white); border-radius: var(--radius); padding: 10px; text-align: center; }
.price-card .price-grid strong { display: block; color: var(--navy-800); font-size: 1.05rem; }
.price-card .price-grid span { font-size: 0.72rem; color: var(--gray-700); text-transform: uppercase; }

.price-note { background: var(--off-white); border-left: 4px solid var(--gold-500); padding: 16px 20px; border-radius: var(--radius); margin-bottom: 30px; color: var(--navy-700); font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.testi-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 24px; }
.testi-stars { color: var(--gold-400); margin-bottom: 10px; letter-spacing: 2px; }
.testi-name { font-weight: 700; color: var(--white); margin-top: 12px; }

/* ---------- Services teaser ---------- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); border-top: 3px solid var(--gold-500); }
.service-card h3 { font-size: 1.08rem; }
.service-card p { color: var(--gray-700); font-size: 0.92rem; margin-bottom: 12px; }
.service-card a { color: var(--navy-800); font-weight: 700; font-size: 0.88rem; }
.service-card a:hover { color: var(--gold-500); }

/* ---------- Route stats (distance / duration / price teaser) ---------- */
.route-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 26px 0; }
.route-stat { background: var(--off-white); border-radius: var(--radius); padding: 16px; text-align: center; }
.route-stat strong { display: block; color: var(--navy-800); font-size: 1.3rem; font-family: var(--font-head); }
.route-stat span { font-size: 0.75rem; color: var(--gray-700); text-transform: uppercase; letter-spacing: 0.03em; }

/* ---------- FAQ accordion ---------- */
.faq-item { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 4px 20px; margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.faq-item summary { cursor: pointer; font-weight: 700; padding: 16px 0; color: var(--navy-900); list-style: none; position: relative; padding-right: 28px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: 16px; color: var(--gold-500); font-size: 1.2rem; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { color: var(--gray-700); padding-bottom: 16px; margin: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  color: var(--navy-900);
}
.cta-banner h2 { color: var(--navy-900); margin-bottom: 10px; }
.cta-banner .btn-navy { margin-top: 10px; }

/* ---------- Forms (booking page) ---------- */
.booking-form { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 30px 22px; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
fieldset { border: none; padding: 0; margin: 0 0 20px; }
legend { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy-900); margin-bottom: 12px; padding: 0; }
.payment-options { display: grid; grid-template-columns: 1fr; gap: 12px; }
.payment-option {
  display: flex; align-items: center; gap: 12px;
  border: 2px solid var(--gray-300); border-radius: var(--radius);
  padding: 14px 16px; cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease;
}
.payment-option:has(input:checked) { border-color: var(--gold-500); background: #fbf6ea; }
.payment-option input { accent-color: var(--gold-500); width: 18px; height: 18px; }
.payment-option .p-title { font-weight: 700; color: var(--navy-900); }
.payment-option .p-desc { font-size: 0.82rem; color: var(--gray-700); }
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--gray-700); }
.checkbox-field input { margin-top: 4px; accent-color: var(--gold-500); }
.form-msg { padding: 14px 16px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.92rem; }
.form-msg.error { background: #fdecec; color: #b02a2a; border: 1px solid #f2b9b9; }
.form-msg.success { background: #e9f7ef; color: #1f6b41; border: 1px solid #b7e3c8; }

/* ---------- Booking wizard (reservation → confirmation → merci) ---------- */
.booking-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 34px; }
.booking-step { display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; }
.booking-step + .booking-step::before {
  content: ''; position: absolute; top: 15px; right: 100%; width: 60px; height: 2px;
  background: var(--gray-300);
}
.booking-step.done + .booking-step::before, .booking-step.active + .booking-step::before { background: var(--gold-500); }
.booking-step-num {
  width: 30px; height: 30px; border-radius: 50%; background: var(--gray-100); color: var(--gray-700);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem;
}
.booking-step.active .booking-step-num { background: var(--gold-500); color: var(--navy-900); }
.booking-step.done .booking-step-num { background: var(--navy-800); color: var(--white); }
.booking-step-label { font-size: 0.78rem; font-weight: 600; color: var(--gray-700); }
.booking-step.active .booking-step-label { color: var(--navy-900); }

.route-bar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 20px;
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  padding: 16px 22px; margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.route-bar-from, .route-bar-to { font-weight: 700; color: var(--navy-900); font-size: 0.92rem; }
.route-bar-arrow { color: var(--gold-500); font-weight: 700; }
.route-bar-detail { font-size: 0.8rem; color: var(--gray-700); font-weight: 600; }
.route-bar-edit { margin-left: auto; font-size: 0.8rem; font-weight: 700; color: var(--gray-700); border: 1px solid var(--gray-300); border-radius: 999px; padding: 6px 14px; }
.route-bar-edit:hover { border-color: var(--navy-800); color: var(--navy-900); }

.empty-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 50px 30px; text-align: center; box-shadow: var(--shadow-sm); }

/* Vehicle selection cards (reservation step 1) */
.vehicle-select-grid { display: flex; flex-direction: column; gap: 14px; margin: 20px 0; }
.vehicle-option {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  border: 2px solid var(--gray-300); border-radius: var(--radius-lg); padding: 16px; cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.vehicle-option:has(input:checked) { border-color: var(--gold-500); background: #fbf6ea; }
.vehicle-option input { accent-color: var(--gold-500); width: 18px; height: 18px; }
.vehicle-option-img { width: 96px; height: 64px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.vehicle-option-img img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-option-info { flex: 1; min-width: 160px; }
.vehicle-option-info .name { font-weight: 700; color: var(--navy-900); }
.vehicle-option-info .model { font-size: 0.82rem; color: var(--gray-700); }
.vehicle-option-price { text-align: right; font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--navy-800); }
.vehicle-option-price small { display: block; font-family: var(--font-body); font-size: 0.7rem; color: var(--gray-700); font-weight: 600; text-transform: uppercase; }
.vehicle-option--unavailable { opacity: 0.5; cursor: not-allowed; }

/* Trip summary block (confirmation step) */
.trip-summary { background: var(--navy-900); color: var(--white); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-wrap: wrap; gap: 18px 28px; margin-bottom: 24px; }
.trip-summary-item { display: flex; flex-direction: column; gap: 4px; }
.trip-summary-item .label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gray-300); }
.trip-summary-item .value { font-weight: 700; }
.trip-summary-price { margin-left: auto; text-align: right; }
.trip-summary-price .price-big { font-family: var(--font-head); font-size: 1.7rem; color: var(--gold-400); }

/* Booking summary list (merci page) */
.booking-summary-list { display: flex; flex-direction: column; }
.booking-summary-list .row { display: flex; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.booking-summary-list .row:last-child { border-bottom: none; }
.booking-summary-list .row .label { min-width: 130px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--gray-700); }
.booking-summary-list .row .value { font-weight: 600; color: var(--navy-900); }

.next-steps-list { display: flex; flex-direction: column; gap: 16px; list-style: none; padding: 0; margin: 0; text-align: left; }
.next-steps-list li { display: flex; gap: 14px; align-items: flex-start; }
.next-steps-list .num { width: 26px; height: 26px; border-radius: 50%; background: rgba(201,162,75,0.15); color: var(--gold-500); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; flex-shrink: 0; }
.next-steps-list .title { font-weight: 700; color: var(--navy-900); font-size: 0.92rem; }
.next-steps-list .desc { color: var(--gray-700); font-size: 0.85rem; margin-top: 2px; }

/* ---------- Success / merci page ---------- */
.success-box { text-align: center; max-width: 560px; margin: 0 auto; }
.success-icon { width: 84px; height: 84px; border-radius: 50%; background: var(--success); color: var(--white); font-size: 2.4rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.booking-ref { display: inline-block; background: var(--navy-900); color: var(--gold-400); font-weight: 700; padding: 10px 22px; border-radius: 999px; margin: 14px 0 24px; letter-spacing: 0.04em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: var(--gray-300); padding-top: 50px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 34px; padding-bottom: 30px; }
.footer-logo img { height: 40px; margin-bottom: 14px; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.footer-col p { color: var(--gray-500); font-size: 0.9rem; }
.footer-links li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-links a { color: var(--gray-300); }
.footer-links a:hover { color: var(--gold-400); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; }
.footer-social a:hover { background: var(--gold-500); color: var(--navy-900); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; margin-top: 10px; }
.footer-bottom-inner { display: flex; justify-content: center; text-align: center; font-size: 0.82rem; color: var(--gray-500); }

.mobile-call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow);
  z-index: 150;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.breadcrumb { background: var(--off-white); padding: 14px 0; font-size: 0.85rem; color: var(--gray-700); }
.breadcrumb a { color: var(--navy-700); font-weight: 600; }
.page-hero { background: linear-gradient(150deg, var(--navy-900), var(--navy-700)); color: var(--white); padding: 50px 0; text-align: center; }
.page-hero h1 { color: var(--white); font-size: 1.9rem; margin-bottom: 8px; }
.page-hero p { color: var(--gray-300); max-width: 600px; margin: 0 auto; }

/* ==========================================================================
   Responsive — tablet and up
   ========================================================================== */
@media (min-width: 720px) {
  .hero h1 { font-size: 2.7rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row-2 { grid-template-columns: 1fr 1fr; }
  .quote-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .payment-options { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Responsive — desktop
   ========================================================================== */
@media (min-width: 1000px) {
  .hero-inner { padding: 90px 20px 70px; }
  .hero-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: start; }
  .quote-card { margin-top: 0; }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .price-cards { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .route-stats { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }

  .nav-toggle { display: none; }
  .main-nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .main-nav ul { flex-direction: row; margin-bottom: 0; gap: 4px; }
  .main-nav a { color: var(--navy-800); padding: 8px 4px; border-bottom: none; font-size: 0.92rem; }
  .main-nav a.active, .main-nav a:hover { color: var(--gold-500); }
  .main-nav .nav-cta { padding: 11px 22px; }
}
