/* ============================================================
   Nova Lib — Transport et Transferts
   Brand: ocean blue #1381A2 · teal #35B4A3 (from logo)
   Type: Poppins (headings) / Open Sans (body)
   ============================================================ */

:root {
  --primary: #1381a2;
  --primary-dark: #0d5f78;
  --navy: #0b3140;
  --teal: #35b4a3;
  --teal-dark: #23907f;
  --whatsapp: #1faf58;
  --whatsapp-dark: #178f47;
  --bg: #ffffff;
  --bg-alt: #f2f8fa;
  --text: #17323e;
  --text-muted: #4a6570;
  --border: #dbe8ec;
  --radius: 14px;
  --shadow-sm: 0 1px 3px rgba(11, 49, 64, 0.08);
  --shadow-md: 0 6px 24px rgba(11, 49, 64, 0.10);
  --shadow-lg: 0 16px 48px rgba(11, 49, 64, 0.16);
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.modal-open { overflow: hidden; }

img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; margin: 0 0 0.6em; color: var(--navy); }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1em; }

a { color: var(--primary); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.icon { width: 24px; height: 24px; flex-shrink: 0; }
.icon-sm { width: 17px; height: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 44px;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
.btn .icon { width: 20px; height: 20px; }

.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; min-height: 40px; }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-md); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; white-space: normal; text-align: center; max-width: 100%; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: var(--shadow-md); }

.btn-light { background: #fff; color: var(--primary-dark); }
.btn-light:hover { background: #e8f6f4; box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

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

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}

.header .container { max-width: 1340px; }

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 52px; width: auto; }

.nav { display: flex; gap: 4px; }
.nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--navy);
  text-decoration: none;
  padding: 9px 13px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-link:hover { color: var(--primary); background: var(--bg-alt); }
.nav-link:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Sélecteur de langue */
.lang-switch { position: relative; }
.flag {
  display: inline-flex;
  width: 22px;
  height: 16px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(11, 49, 64, 0.12);
  flex-shrink: 0;
}
.flag svg { width: 100%; height: 100%; display: block; }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  min-width: 185px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 6px;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 11px 12px;
  background: none;
  border: none;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--navy);
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.lang-option:hover { background: var(--bg-alt); }
.lang-option:focus-visible { outline: 3px solid var(--teal); outline-offset: -3px; }
.lang-check { margin-left: auto; color: var(--teal-dark); visibility: hidden; }
.lang-option.active .lang-check { visibility: visible; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: var(--header-h); color: #fff; }

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/img/hero-van.webp") center 62% / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 47, 61, 0.92) 0%, rgba(13, 95, 120, 0.82) 45%, rgba(19, 129, 162, 0.42) 100%);
}

.hero-content { position: relative; z-index: 1; padding: 96px 24px 72px; }
.hero-text { max-width: 640px; }
.hero h1 { color: #fff; margin-bottom: 0.4em; }
.hero .accent { color: #7fe0d2; }
.hero-sub { font-size: 1.08rem; color: rgba(255, 255, 255, 0.92); margin-bottom: 28px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.badge-light { background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.35); color: #fff; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 14px 22px;
}
.price-label { font-family: var(--font-head); font-weight: 500; font-size: 0.95rem; }
.price-value { font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; color: #7fe0d2; line-height: 1; }
.price-note { font-size: 0.75rem; color: rgba(255, 255, 255, 0.75); }

.hero-stats { position: relative; z-index: 1; background: rgba(8, 40, 52, 0.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-top: 1px solid rgba(255, 255, 255, 0.15); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding-top: 22px; padding-bottom: 22px; }
.stat { display: flex; align-items: center; gap: 13px; }
.stat-icon { width: 30px; height: 30px; color: #7fe0d2; }
.stat strong { display: block; font-family: var(--font-head); font-size: 0.94rem; font-weight: 600; color: #fff; }
.stat span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.75); }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }

.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head p { color: var(--text-muted); }
.section-head-light h2 { color: #fff; }
.section-head-light p { color: rgba(255, 255, 255, 0.85); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 12px;
}
.eyebrow-light { color: #7fe0d2; }

/* ---------- Booking / estimation ---------- */
.booking-card {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 38px 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}
.form-field { display: flex; flex-direction: column; gap: 7px; position: relative; }

.ac-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20;
  margin: 4px 0 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  max-height: 240px;
  overflow-y: auto;
}
.ac-list li {
  padding: 10px 12px;
  border-radius: 7px;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.ac-list li:hover, .ac-list li.active { background: var(--bg-alt); color: var(--primary-dark); }
.form-field-wide { grid-column: 1 / -1; }
.form-field-submit { grid-column: 1 / -1; align-items: center; margin-top: 6px; }

.form-field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  min-height: 48px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field textarea { min-height: auto; resize: vertical; }
/* iOS Safari donne une largeur intrinsèque aux champs date qui déborde de la carte */
.form-field input[type="datetime-local"] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  min-width: 0;
  max-width: 100%;
}
.form-field select { cursor: pointer; }
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: #b9d9e2; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(19, 129, 162, 0.15);
}
.form-field input.invalid { border-color: #d64545; }

.btn:disabled { opacity: 0.65; cursor: not-allowed; box-shadow: none; }

.form-field-check { justify-content: flex-end; }
.check-label {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  padding: 0 2px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}
.check-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-height: auto;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.estimate-result {
  margin-top: 26px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  text-align: center;
}
.estimate-result.error { background: #fdf1f1; border-color: #efc4c4; color: #a03232; }
.estimate-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.estimate-meta strong { color: var(--text); }
.estimate-prix {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.3rem;
  color: var(--primary);
  line-height: 1.2;
}
.estimate-prix small { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); }

.estimate-hint {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  margin: 14px 0 0;
}

/* Choix du véhicule */
.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 22px;
}
.vehicle-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.vehicle-card:hover { box-shadow: var(--shadow-md); }
.vehicle-card.selected { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(53, 180, 163, 0.2); }
.vehicle-card.disabled { opacity: 0.6; }
.vehicle-card.disabled:hover { box-shadow: none; }
.vehicle-card > img { width: 100%; height: 170px; object-fit: cover; }
.vehicle-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 12px; }
.vehicle-body h3 { margin: 0; }
.vehicle-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--primary);
}
.vehicle-price small { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.vehicle-btn { width: 100%; }

.veh-more-btn {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary);
  cursor: pointer;
  border-bottom: 2px solid rgba(19, 129, 162, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.veh-more-btn:hover { color: var(--primary-dark); border-color: var(--primary-dark); }
.veh-more-btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }

/* Étape choix du véhicule */
.vehicle-step > h3 { text-align: center; margin-bottom: 10px; font-size: 1.35rem; }
.vehicle-step .estimate-meta { justify-content: center; margin-bottom: 22px; }
.vehicle-step .vehicle-grid { margin-top: 0; }

/* Arrêts intermédiaires */
.stops-block { gap: 12px; }
.stop-row { position: relative; }
.stop-remove {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 2px 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  color: #c0392b;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}
.stop-remove:hover { background: #fdf1f1; }
.stop-remove .icon { width: 15px; height: 15px; }
.btn-add-stop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 12px;
  background: #fff;
  border: 1.5px dashed var(--border);
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--primary);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.btn-add-stop:hover { border-color: var(--primary); background: var(--bg-alt); }
.btn-add-stop:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }

.vehicle-chip {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: #e2f4f1;
  border-radius: 999px;
  padding: 5px 14px;
  margin-left: 10px;
  vertical-align: middle;
}

.booking-details { margin-top: 34px; border-top: 1px solid var(--border); padding-top: 30px; }
.booking-details h3 { text-align: center; margin-bottom: 22px; }
.booking-details.solo { margin-top: 0; border-top: none; padding-top: 0; }

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  background: none;
  border: none;
  padding: 8px 0;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.btn-back:hover { color: var(--primary-dark); }
.btn-back:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 4px; }

.form-status {
  margin-top: 20px;
  border-radius: 10px;
  padding: 14px 18px;
  text-align: center;
  font-weight: 600;
}
.form-status.success { background: #e9f8ef; border: 1px solid #b7e4c7; color: #1e7a41; }
.form-status.error { background: #fdf1f1; border: 1px solid #efc4c4; color: #a03232; }

.booking-note { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin: 26px 0 0; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover { box-shadow: var(--shadow-md); border-color: #b9d9e2; }
.card h3 { margin-bottom: 0.45em; }
.card p { color: var(--text-muted); font-size: 0.94rem; margin: 0; }

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: linear-gradient(135deg, #e2f4f1, #dceef4);
  color: var(--primary);
  margin-bottom: 18px;
}
.card-icon .icon { width: 26px; height: 26px; }

.card-highlight { background: linear-gradient(150deg, var(--primary) 0%, var(--teal-dark) 100%); border-color: transparent; }
.card-highlight h3 { color: #fff; }
.card-highlight p { color: rgba(255, 255, 255, 0.9); }
.card-highlight .card-icon { background: rgba(255, 255, 255, 0.16); color: #fff; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.card-link:hover { border-color: #fff; }

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-reverse .split-media { order: 2; }
.split-reverse .split-text { order: 1; }

.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.split-media-secondary {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 55% !important;
  border: 5px solid #fff;
}
.split-media-portrait { max-width: 320px; margin-inline: auto; align-self: center; }
.split-media-portrait img:first-child { aspect-ratio: 4 / 4.6; object-fit: cover; }

.split-text .eyebrow { margin-bottom: 8px; }
.split-text p { color: var(--text-muted); }
.split-text .btn { margin-top: 10px; }

.quote-card {
  position: relative;
  margin: -46px 20px 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
}
.quote-card p { font-family: var(--font-head); font-weight: 600; color: var(--primary-dark); font-size: 1.05rem; margin: 0 0 4px; }
.quote-card cite { font-style: normal; font-size: 0.84rem; color: var(--text-muted); }

/* ---------- Check lists ---------- */
.check-list { list-style: none; padding: 0; margin: 0 0 24px; }
.check-list li {
  position: relative;
  padding: 7px 0 7px 34px;
  color: var(--text-muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.check-list strong { color: var(--text); }

/* ---------- Brand (PMR) section ---------- */
.section-brand { background: linear-gradient(150deg, var(--primary-dark) 0%, var(--primary) 55%, var(--teal-dark) 100%); color: #fff; }
.section-brand h2 { color: #fff; }
.section-brand .split-text p { color: rgba(255, 255, 255, 0.9); }
.section-brand .split-text strong { color: #fff; }

.check-list-light li { color: rgba(255, 255, 255, 0.88); }
.check-list-light li::before { background-color: rgba(255, 255, 255, 0.22); }
.check-list-light strong { color: #fff; }

/* ---------- Duo photo cards ---------- */
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.photo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease;
}
.photo-card:hover { box-shadow: var(--shadow-md); }
.photo-card > img { height: 250px; width: 100%; object-fit: cover; }
.photo-card-body { padding: 26px 28px 28px; }
.photo-card-body p { color: var(--text-muted); font-size: 0.95rem; }

.mini-list { list-style: none; padding: 0; margin: 0; }
.mini-list li {
  position: relative;
  padding: 4px 0 4px 22px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

/* ---------- Zones ---------- */
.section-zones { position: relative; color: #fff; overflow: hidden; }
.zones-bg {
  position: absolute;
  inset: 0;
  background: url("assets/img/lagon.webp") center / cover no-repeat;
}
.zones-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8, 47, 61, 0.86), rgba(11, 63, 80, 0.88));
}
.section-zones .container { position: relative; z-index: 1; }

.zones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.zone-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.zone-card strong { display: block; font-family: var(--font-head); font-size: 1.05rem; color: #7fe0d2; margin-bottom: 6px; }
.zone-card span { font-size: 0.9rem; color: rgba(255, 255, 255, 0.88); }
.zones-note { text-align: center; margin: 28px 0 0; color: rgba(255, 255, 255, 0.85); }

/* ---------- Partners ---------- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: center;
}
.partner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  transition: box-shadow 0.25s ease;
}
.partner:hover { box-shadow: var(--shadow-md); }
.partner img { max-height: 88px; width: auto; }

/* ---------- Contact ---------- */
.section-contact { background: linear-gradient(160deg, var(--navy) 0%, var(--primary-dark) 100%); color: #fff; }

.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 44px; }
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
a.contact-card { cursor: pointer; }
a.contact-card:hover { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.4); }
.contact-card .icon { width: 28px; height: 28px; color: #7fe0d2; margin-bottom: 6px; }
.contact-card strong { font-family: var(--font-head); font-weight: 600; }
.contact-card span { font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); overflow-wrap: anywhere; }

.contact-cta { text-align: center; }

/* ---------- Footer ---------- */
.footer { background: #071e28; color: rgba(255, 255, 255, 0.78); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 60px 24px 40px;
}
.footer-logo { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #fff; letter-spacing: 0.04em; margin: 0; }
.footer-tagline { color: #7fe0d2; font-size: 0.85rem; margin: 2px 0 14px; }
.footer strong { display: block; font-family: var(--font-head); color: #fff; font-weight: 600; margin-bottom: 14px; }
.footer-nav, .footer-contact, .footer-legal, .footer-cities { display: flex; flex-direction: column; gap: 4px; }
.footer a { color: rgba(255, 255, 255, 0.78); text-decoration: none; padding: 3px 0; transition: color 0.2s ease; }
.footer a:hover { color: #7fe0d2; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 22px; padding-bottom: 26px; font-size: 0.84rem; color: rgba(255, 255, 255, 0.5); }

.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.social-links a:hover { background: var(--teal); color: #fff; }
.social-links .icon { width: 20px; height: 20px; }

/* ---------- Sous-pages (SEO villes + légal) ---------- */
.subpage-main {
  max-width: 780px;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 80px;
}
.subpage-main h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 0.8em; }
.subpage-main h2 { font-size: 1.25rem; margin-top: 1.6em; }
.subpage-main p, .subpage-main li { color: var(--text-muted); }
.subpage-main strong { color: var(--text); }
.subpage-main ul { padding-left: 22px; }
.subpage-main .btn { margin-top: 10px; }
.cgv-frame { width: 100%; height: 75vh; border: 1px solid var(--border); border-radius: var(--radius); }
.subpage-footer a { color: rgba(255, 255, 255, 0.78); }
.subpage-footer a:hover { color: #7fe0d2; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
.hide-mobile { display: inline; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .partners-grid, .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1250px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 14px 20px 20px;
    gap: 2px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .nav.open { transform: none; opacity: 1; visibility: visible; }
  .nav-link { padding: 13px 14px; font-size: 1rem; }
  .nav-toggle { display: flex; }
}

@media (max-width: 860px) {
  .hide-mobile { display: none; }
  .btn-ghost.btn-sm { border: none; padding: 9px; }

  .split { grid-template-columns: 1fr; }
  .split-reverse .split-media { order: 0; }
  .split-reverse .split-text { order: 1; }
  .split-media-secondary { right: 12px; bottom: -24px; }
  .duo-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero-content { padding-top: 72px; padding-bottom: 56px; }
}

@media (max-width: 640px) {
  .booking-card { padding: 26px 20px; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .form-field-submit .btn { width: 100%; }
  .vehicle-grid { grid-template-columns: 1fr; }
  .vehicle-chip { display: block; margin: 10px auto 0; width: fit-content; }
}

@media (max-width: 560px) {
  .services-grid, .stats-grid, .contact-grid, .partners-grid, .zones-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-cta .btn { width: 100%; }
  .brand-logo { height: 44px; }
  .price-tag { width: 100%; justify-content: center; }
}
