/* ============================================================
   AK AUTOCARS — Design System
   Colors from brand logo: Red #9B1A1A · Navy #1E3566
   ============================================================ */

/* === VARIABLES === */
:root {
  /* Brand colors from logo */
  --red:          #9B1A1A;   /* "AK" — deep crimson */
  --red-dark:     #7D1515;
  --navy:         #1E3566;   /* "autocars" — deep navy */
  --navy-dark:    #172952;

  /* Text */
  --body:         #2D3748;
  --muted:        #6B7280;
  --subtle:       #9CA3AF;

  /* Backgrounds — predominantly white */
  --bg:           #FFFFFF;
  --bg-alt:       #F4F7FB;   /* very light blue-gray for alternating sections */
  --bg-red-soft:  #FBF4F4;   /* barely-there red tint */

  /* Borders */
  --border:       #D8DFF0;
  --border-light: #EBF0F8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition:  all 0.22s ease;
  --shadow-sm:   0 1px 3px rgba(30,53,102,0.06);
  --shadow:      0 4px 18px rgba(30,53,102,0.08);
  --shadow-md:   0 8px 32px rgba(30,53,102,0.1);
  --radius:      6px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; }

/* === LAYOUT === */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.18;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.1rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); }

.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.75);
}

.btn-white {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-white:hover { background: rgba(255,255,255,0.9); }

/* === NAVIGATION === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 1.5rem;
}

/* Logo image */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}
.logo-img {
  height: 23px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 0;
  margin-left: auto;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
  padding: 0.5rem 1rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover { color: var(--navy); }
.nav-link.active {
  color: var(--navy);
  font-weight: 500;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}
.nav-btn {
  flex-shrink: 0;
  padding: 0.6rem 1.35rem;
  font-size: 0.8rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: var(--transition);
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 101;
  padding: 5.5rem 2rem 2.5rem;
  flex-direction: column;
}
.nav-overlay.open { display: flex; }
.nav-overlay-link {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.nav-overlay-link:hover { color: #fff; }
.nav-overlay .btn { margin-top: 2rem; align-self: flex-start; }
.nav-close {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.nav-close:hover { color: #fff; }

/* === HERO (homepage) — coach photo background === */
.hero {
  min-height: 100vh;
  background:
    url('../assets/hero-coach.webp')
    center center / cover no-repeat,
    var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 9rem 0 5rem;
}
/* Red accent stripe on hero */
.hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  z-index: 4;
}

/* Dual overlay: base dimming on entire photo + strong gradient left for text */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* base dark layer — tones the whole photo */
    linear-gradient(rgba(5,12,35,0.42), rgba(5,12,35,0.42)),
    /* left-to-right gradient — opaque left (text), transparent right (coach) */
    linear-gradient(
      to right,
      rgba(5,12,35,0.82)  0%,
      rgba(5,12,35,0.70)  32%,
      rgba(5,12,35,0.32)  58%,
      rgba(5,12,35,0.00)  82%
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.hero h1 {
  color: #fff;
  font-weight: 300;
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #fff;
}
.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.80);
  max-width: 480px;
  margin-bottom: 2.75rem;
  line-height: 1.75;
  font-weight: 300;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* === PAGE HERO (inner pages) — navy bg === */
.page-hero {
  padding: 9rem 0 4.5rem;
  background: var(--navy);
  position: relative;
  border-bottom: 3px solid var(--red);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 52px
  );
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
}
.page-hero .container { position: relative; z-index: 1; }
.page-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 0.875rem;
}
.page-hero h1 {
  color: #fff;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}
.page-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  max-width: 520px;
  margin-top: 0.875rem;
  line-height: 1.75;
  font-weight: 300;
}

/* === SECTIONS === */
.section      { padding: 5.5rem 0; }
.section-sm   { padding: 3.5rem 0; }
.section-lg   { padding: 7.5rem 0; }
.section-white { background: #fff; }
.section-alt   { background: var(--bg-alt); }

/* Section labels — red accent */
.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; color: var(--navy); }
.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
}
.section-header-left { max-width: 480px; }

/* === STATS BAR === */
.stats-bar {
  background: var(--navy);
  border-bottom: 3px solid var(--red);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 2.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* === SERVICES DETAIL GRID (services.html full listing) === */
.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.services-detail-card {
  background: #fff;
  padding: 2.75rem 2.5rem;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(30,53,102,0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.services-detail-card:hover {
  border-color: var(--border);
  border-top-color: var(--red);
  box-shadow: 0 10px 32px rgba(30,53,102,0.12);
  transform: translateY(-3px);
}
.services-detail-card .svc-head {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.services-detail-card .svc-icon {
  flex-shrink: 0;
  color: var(--navy);
  margin-top: 3px;
}
.services-detail-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0;
  color: var(--navy);
}
.services-detail-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.services-detail-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: auto;
}
.services-detail-card ul li {
  font-size: 0.85rem;
  color: var(--body);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.services-detail-card ul li::before {
  content: '';
  display: block;
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === SERVICES GRID (white bg, navy/red accents) === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  padding: 2.75rem 2.25rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(30,53,102,0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  background: #fff;
  border-color: var(--border);
  box-shadow: 0 8px 28px rgba(30,53,102,0.11);
  transform: translateY(-3px);
}
.service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.5rem;
  color: var(--red);    /* red icons */
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* === FLEET CARDS === */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.fleet-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(30,53,102,0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.fleet-card:hover {
  box-shadow: 0 12px 36px rgba(30,53,102,0.13);
  transform: translateY(-4px);
}
.fleet-card:hover .fleet-card-link { gap: 0.7rem; }
/* Red accent top-border on fleet cards */
.fleet-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  z-index: 1;
}
.fleet-card-body {
  padding: 2.75rem 2rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
}
.fleet-card-photo {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  border-left: 1px solid var(--border-light);
}
.fleet-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 210px;
  display: block;
}
.fleet-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  margin-top: 0.25rem;
}
.fleet-badge-dot {
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.fleet-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}
.fleet-pax {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.fleet-features {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  position: relative;
  z-index: 1;
}
.fleet-features li {
  font-size: 0.875rem;
  color: var(--body);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.fleet-features li::before {
  content: '';
  display: block;
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.fleet-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  margin-top: 1.75rem;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

/* Fleet detail page */
.fleet-full-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(30,53,102,0.07);
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}
.fleet-full-visual {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border-light);
  min-height: 320px;
}
.fleet-full-visual::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  display: none; /* accent is on the card top */
}
.fleet-full-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 300px;
  display: block;
}
.fleet-full-visual-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(30,53,102,0.88));
  padding: 2rem 2rem 1.5rem;
  pointer-events: none;
}
.fleet-full-visual-caption .fleet-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.3rem;
  font-family: var(--font-body);
}
.fleet-full-visual-caption h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff;
  font-weight: 300;
  margin: 0 0 0.2rem;
  line-height: 1.15;
}
.fleet-full-visual-caption .fleet-pax-big {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-weight: 500;
}
.fleet-full-info {
  padding: 3rem 3rem 3rem 3.5rem;
  background: #fff;
}
.fleet-full-info p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.fleet-features-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

/* Interior split section */
.interior-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.interior-text .section-label { margin-bottom: 1rem; }
.interior-text h2 {
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.interior-text p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.interior-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.interior-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--body);
}
.interior-highlights li svg { color: var(--red); flex-shrink: 0; }
.interior-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(30,53,102,0.12);
  aspect-ratio: 4/3;
}
.interior-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* === WHY SECTION === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-item {
  padding: 2.75rem 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(30,53,102,0.06);
  background: #fff;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.why-item:hover {
  box-shadow: 0 8px 24px rgba(30,53,102,0.10);
  transform: translateY(-2px);
}
.why-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.why-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.why-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}

/* === CTA BANNER — navy bg === */
.cta-banner {
  background: var(--navy);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--red);
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 52px
  );
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 0.875rem; }
.cta-banner p { color: rgba(255,255,255,0.5); font-size: 0.9375rem; margin-bottom: 2.25rem; }
.cta-guarantee {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.cta-guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
}
.cta-guarantee-item svg {
  width: 14px; height: 14px;
  color: var(--red);
}

/* === FORM === */
.form-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--navy);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus { border-color: var(--navy); }
.form-control::placeholder { color: var(--subtle); }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6' viewBox='0 0 11 6'%3E%3Cpath d='M1 1l4.5 4L10 1' stroke='%231E3566' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
textarea.form-control {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-hint {
  font-size: 0.78rem;
  color: var(--subtle);
  margin-top: 0.4rem;
}

/* === INFO ASIDE === */
.info-aside {
  position: sticky;
  top: 6rem;
}
.info-box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(30,53,102,0.07);
  padding: 2.25rem;
  margin-bottom: 1.5rem;
}
.info-box-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.info-list li {
  display: flex;
  gap: 0.875rem;
  font-size: 0.875rem;
  color: var(--body);
  line-height: 1.55;
}
.info-list svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--red);
  margin-top: 1px;
}
.info-separator {
  height: 1px;
  background: var(--border-light);
  margin: 1.25rem 0;
}

/* === CONTACT === */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.contact-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(30,53,102,0.07);
  padding: 2.25rem;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.contact-card:hover {
  box-shadow: 0 8px 26px rgba(30,53,102,0.11);
  transform: translateY(-2px);
}
.contact-card-icon {
  width: 42px; height: 42px;
  margin: 0 auto 1.25rem;
  color: var(--red);
}
.contact-card h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.625rem;
}
.contact-card p,
.contact-card a {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* === FOOTER — navy bg === */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 4.5rem 0 0;
  border-top: 3px solid var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* Footer logo */
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
.footer-logo .logo-img { filter: brightness(0) invert(1); }

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.38);
  max-width: 280px;
}
.footer-heading {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  transition: var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
}
.footer-contact-item svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
  transition: var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }
.footer-credit {
  text-align: center;
  padding: 1rem 0 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 1rem;
}
.footer-credit a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: var(--transition);
}
.footer-credit a:hover { opacity: 0.75; }

/* === LEGAL PAGES === */
.legal-content { max-width: 800px; }
.legal-content h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin: 2.75rem 0 0.75rem;
  color: var(--navy);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-light);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.5rem 0 0.4rem;
}
.legal-content p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}
.legal-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.6rem 0 1rem;
}
.legal-content ul li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 1rem;
  position: relative;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
}
.legal-content .legal-info-block {
  background: var(--bg-alt);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.8;
}
.legal-updated {
  font-size: 0.8rem;
  color: var(--subtle);
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}
mark.todo {
  background: #FFF9C4;
  border: 1px solid #E8C832;
  padding: 1px 5px;
  border-radius: 3px;
  font-style: italic;
  color: #7A5F00;
  font-size: 0.9em;
}

/* === EXPRESS DEVIS WIDGET === */
/* ── Trip type toggle (Aller simple / Aller-retour) ── */
.trip-toggle {
  display: flex;
  margin-bottom: 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.trip-toggle input[type="radio"] { display: none; }
.trip-toggle label {
  flex: 1;
  text-align: center;
  padding: 0.65rem 1rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: background 0.18s, color 0.18s;
  user-select: none;
}
.trip-toggle input[type="radio"]:checked + label {
  background: var(--navy);
  color: #fff;
}
.retour-field { transition: none; }

.express-devis {
  background: var(--bg-alt);
  padding: 4.5rem 0;
}
.express-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--red);
  box-shadow: 0 6px 32px rgba(30,53,102,0.09);
  padding: 2.5rem 2.75rem;
}
.express-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-light);
}
.express-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin: 0.3rem 0 0;
  line-height: 1.2;
}
.express-note {
  font-size: 0.8375rem;
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
  margin: 0;
  flex-shrink: 0;
}
.express-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.express-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.express-field label {
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
}
.express-field input,
.express-field select {
  width: 100%;
  padding: 0.72rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  min-height: 46px;
}
.express-field input[type="date"] {
  height: 46px;
  min-height: 46px;
  line-height: 46px;
  padding-top: 0;
  padding-bottom: 0;
}
.express-field input:focus,
.express-field select:focus {
  border-color: var(--navy);
  background: #fff;
}
.express-field input::placeholder {
  color: var(--subtle);
  font-size: 0.875rem;
}
.express-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6' viewBox='0 0 11 6'%3E%3Cpath d='M1 1l4.5 4L10 1' stroke='%231E3566' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}
.express-field-submit {
  justify-content: flex-end;
}
.express-submit {
  width: 100%;
  padding: 0.72rem 1.25rem;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  white-space: nowrap;
}
.express-submit:hover { background: var(--red-dark); }
.express-success {
  text-align: center;
  padding: 2.5rem 1rem;
}
.express-success svg { margin: 0 auto 1.5rem; display: block; color: var(--red); }
.express-success h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.express-success p { font-size: 0.9375rem; color: var(--muted); margin-bottom: 1.5rem; }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 3rem);
  max-width: 860px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(30,53,102,0.14);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
  pointer-events: none;
}
.cookie-banner-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  color: var(--navy);
}
.cookie-banner-text {
  flex: 1;
  min-width: 0;
}
.cookie-banner-text p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.cookie-banner-text a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover { color: var(--red); }
.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn-accept {
  padding: 0.65rem 1.35rem;
  background: var(--navy);
  color: #fff;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.cookie-btn-accept:hover { background: var(--navy-dark); border-color: var(--navy-dark); }
.cookie-btn-refuse {
  padding: 0.65rem 1.35rem;
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.cookie-btn-refuse:hover { border-color: var(--muted); color: var(--body); }
@media (max-width: 680px) {
  .cookie-banner { flex-direction: column; gap: 1.25rem; align-items: flex-start; padding: 1.5rem; }
  .cookie-banner-icon { display: none; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-refuse { flex: 1; text-align: center; }
}

/* === UTILITIES === */
.divider { height: 1px; background: var(--border); }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

/* Certifications/badges strip */
.badges-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.badge-item svg { width: 18px; height: 18px; color: var(--red); }

/* Red horizontal rule accent */
.rule-red {
  height: 2px;
  background: var(--red);
  width: 40px;
  margin-bottom: 1rem;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .express-grid { grid-template-columns: repeat(2, 1fr); }
  .express-field-submit { grid-column: span 2; }
}

@media (max-width: 1024px) {
  .nav-menu, .nav-btn { display: none; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .fleet-full-card { grid-template-columns: 1fr; }
  .fleet-full-visual { min-height: 240px; border-right: none; border-bottom: 1px solid var(--border-light); }
  .fleet-full-img { max-height: 220px; }
  .fleet-full-info { padding: 2.25rem; }
  .fleet-card { grid-template-columns: 1fr; }
  .fleet-card-photo { display: none; }
  .interior-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .interior-photo { aspect-ratio: 16/9; order: -1; }
}

/* ── City autocomplete dropdown ── */
.city-ac-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #fff;
  border: 1.5px solid var(--border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.11);
  max-height: 220px;
  overflow-y: auto;
}
.city-ac-list[hidden] { display: none; }
.city-ac-list li {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--navy);
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.city-ac-list li:last-child { border-bottom: none; }
.city-ac-list li:hover { background: rgba(30,53,102,0.07); }

@media (max-width: 768px) {
  html { overflow-x: hidden; max-width: 100vw; }
  body { overflow-x: hidden; max-width: 100vw; width: 100%; position: relative; }
  section, footer, header, .stats-bar { overflow-x: hidden; }
  .logo-img { height: 15px !important; }
  .container { padding: 0 20px; overflow: hidden; }
  form { overflow: hidden; max-width: 100%; }
  input, select, textarea { min-width: 0; max-width: 100%; }
  .form-control { width: 100% !important; max-width: 100% !important; min-width: 0; box-sizing: border-box; }
  .form-layout { overflow: hidden; min-width: 0; }
  .form-layout > * { min-width: 0; }
  .form-row { min-width: 0; }
  .form-group { min-width: 0; }
  /* Fleet card: full-width edge-to-edge on mobile */
  .fleet-full-card { margin-left: -20px; margin-right: -20px; border-radius: 0; border-left: none; border-right: none; box-shadow: none; }
  .fleet-full-card > * { min-width: 0; }
  .fleet-full-visual { flex-direction: column; height: auto; min-height: unset; padding: 0.75rem 0 0; border-bottom: none; }
  .fleet-full-img { width: 100%; height: 210px; max-height: unset; object-fit: contain; }
  .fleet-full-visual-caption { position: static; background: var(--navy); padding: 0.875rem 1.25rem 1rem; }
  /* Fleet info: keep text readable with padding */
  .fleet-full-info { padding: 1.75rem 1.25rem; }
  .fleet-full-info > div:last-child { flex-wrap: wrap; }
  .hero-overlay { background: rgba(10,20,50,0.72); }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .services-grid { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .express-card { padding: 2rem 1.5rem; }
  .express-head { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .express-note { text-align: left; white-space: normal; }
  .fleet-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { transform: none !important; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child  { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-wrap: wrap; gap: 0.75rem 1.25rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .fleet-features-two-col { grid-template-columns: 1fr; }
  .entretien-grid { grid-template-columns: 1fr !important; }
  .faq-grid { grid-template-columns: 1fr !important; }
  .info-aside { position: static; }
  .cta-guarantee { gap: 1rem; }
  .badges-strip { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .express-grid { grid-template-columns: 1fr; }
  .express-field-submit { grid-column: span 1; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(4) { border-right: none; }
}
