/* ============================================================================
   Location de voiture — feuille de style premium (automotive / méditerranéen)
   Mobile-first. Les couleurs de marque (--brand / --accent) sont injectées
   par app.js depuis config.brand ; les valeurs ci-dessous sont des fallbacks.
   ========================================================================== */

/* ------------------------------------------------------------------ Tokens */
:root {
  /* Marque (surchargée par JS) — FM RENT A CAR : bleu saphir + safran */
  --brand: #0C2C55;          /* bleu saphir */
  --accent: #F2A81D;         /* safran */
  --accent-deep: #a06f13;    /* safran assombri, lisible sur fond clair */

  /* Dérivés saphir */
  --brand-900: #071a31;
  --brand-800: #0C2C55;
  --brand-700: #294569;
  --brand-600: #425a7a;
  --accent-600: #f2a81d80;

  /* Neutres */
  --ink: #14151a;            /* texte principal */
  --ink-soft: #4d5158;       /* texte secondaire */
  --line: #e8e8ec;           /* bordures */
  --bg: #ffffff;
  --bg-soft: #f6f6f4;        /* sections claires alternées (blanc chaud) */
  --white: #ffffff;

  /* Effets */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 8px rgba(15, 16, 20, .06);
  --shadow: 0 14px 40px -14px rgba(15, 16, 20, .28);
  --shadow-lg: 0 30px 70px -24px rgba(15, 16, 20, .45);
  --ring: 0 0 0 3px color-mix(in srgb, var(--accent) 45%, transparent);

  /* Typo */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(18px, 5vw, 40px);
  --header-h: 76px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ------------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
figure, blockquote { margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0; letter-spacing: -.02em; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

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

/* ----------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(56px, 9vw, 108px); }
.section__head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}
/* Sur fond sombre, l'or champagne pur reste le plus lisible */
.section__head--light .section__eyebrow { color: var(--accent); }
.section__title { font-size: clamp(1.7rem, 4.4vw, 2.9rem); font-weight: 700; }
.section__lead { margin-top: 16px; color: var(--ink-soft); font-size: clamp(1rem, 2vw, 1.12rem); max-width: 60ch; }
.section__head--light .section__title,
.section__head--light .section__lead { color: var(--white); }
.section__head--light .section__lead { color: rgba(255,255,255,.78); }

/* ---------------------------------------------------------------- Buttons */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), filter .25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--accent {
  --btn-bg: var(--accent);
  --btn-fg: #1c1403;
  box-shadow: 0 10px 26px -8px color-mix(in srgb, var(--accent) 70%, transparent);
}
.btn--accent:hover { filter: brightness(1.05); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--block { width: 100%; }
.btn__icon { display: inline-flex; align-items: center; }
.btn__icon svg { width: 20px; height: 20px; }
/* Petit glyphe WhatsApp : accent discret AVANT le texte, jamais dominant */
.btn__icon--wa { color: #25D366; }
.btn__icon--wa svg { width: 18px; height: 18px; }

/* Icônes inline (fill/stroke héritent de currentColor) */
[data-icon] svg { width: 22px; height: 22px; display: block; }

/* ============================================================= EN-TÊTE === */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

/* transparent sur le hero */
.site-header .brand,
.site-header .main-nav a,
.site-header .header-phone { color: #fff; }

/* état "scrollé" : navy plein, texte blanc, lisible sur les sections claires */
.site-header.scrolled {
  background: var(--brand-900);
  box-shadow: 0 8px 30px -14px rgba(0,0,0,.5);
  backdrop-filter: saturate(1.2);
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; letter-spacing: -.01em; }
.brand img { height: 38px; width: auto; }
.brand__mark {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--accent); color: #1c1403;
  font-weight: 700; font-size: 1.05rem; flex: none;
}
.brand__name small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; opacity: .7; }

/* Lockup vectoriel : silhouette or (reprise de l'enseigne) + wordmark capitales */
.brand__car { width: 52px; height: auto; flex: none; color: var(--accent); }
.brand__name--lockup { font-size: 1.14rem; letter-spacing: .1em; text-transform: uppercase; line-height: 1.15; }
.brand__name--lockup small { color: var(--accent); opacity: 1; letter-spacing: .3em; font-size: .56rem; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-weight: 500; font-size: .96rem; position: relative; padding: 6px 0; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--accent); transition: width .25s var(--ease);
}
.main-nav a:hover::after, .main-nav a.is-active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .95rem; white-space: nowrap; }
.header-phone svg { width: 18px; height: 18px; }
.header-cta { padding: 11px 20px; font-size: .92rem; }
.header-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px; border: 0; background: transparent;
  flex-direction: column; justify-content: center; gap: 5px; padding: 10px;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.site-header.scrolled .nav-toggle span { background: #fff; }
.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;
  min-height: 100svh;
  display: flex;
  align-items: center;
  /* Fallback garanti : dégradé graphite (jamais de fond blanc) */
  background:
    radial-gradient(120% 90% at 80% 10%, var(--brand-700) 0%, transparent 55%),
    linear-gradient(160deg, var(--brand-900) 0%, var(--brand-800) 45%, #08090c 100%);
  color: #fff;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 20px);
  padding-bottom: 40px;
}
/* Le poster (background-image injecté par JS) reste visible sous la vidéo */
.hero__media { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.hero__video {
  width: 100%; height: 100%; object-fit: cover;
  /* invisible tant que la vidéo n'est pas prête -> on garde le dégradé */
  opacity: 0; transition: opacity 1.2s ease;
}
.hero__video.is-ready { opacity: 1; }
/* Overlay navy obligatoire (contraste texte blanc) */
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,21,40,.55) 0%, rgba(7,21,40,.35) 35%, rgba(7,21,40,.82) 100%),
    linear-gradient(105deg, color-mix(in srgb, var(--brand) 88%, transparent) 0%, color-mix(in srgb, var(--brand) 55%, transparent) 45%, transparent 100%);
}

.hero__content {
  position: relative; z-index: 2;
  display: grid;
  gap: clamp(30px, 5vw, 56px);
  width: 100%;
}
.hero__copy { max-width: 640px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.hero__title { font-size: clamp(2.3rem, 7vw, 4.4rem); font-weight: 700; letter-spacing: -.03em; }
.hero__title .accent { color: var(--accent); }
.hero__subtitle { margin-top: 20px; font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: rgba(255,255,255,.85); max-width: 52ch; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; }
.hero__trust li { display: inline-flex; align-items: center; gap: 9px; font-weight: 500; font-size: .95rem; color: rgba(255,255,255,.9); }
.hero__trust svg { width: 20px; height: 20px; color: var(--accent); flex: none; }

/* Widget de réservation */
.booking {
  background: rgba(255,255,255,.97);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.5);
  max-width: 1120px;
}
.booking__title { font-size: 1.15rem; font-weight: 600; margin-bottom: 18px; }
.booking__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field__label { font-size: .78rem; font-weight: 600; color: var(--ink-soft); letter-spacing: .02em; }
.field__control {
  appearance: none;
  width: 100%;
  padding: 13px 14px;
  font-family: var(--font-body); font-size: .98rem; color: var(--ink);
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field__control:hover { border-color: color-mix(in srgb, var(--accent) 50%, var(--line)); }
.field__control:focus { border-color: var(--accent); background: #fff; box-shadow: var(--ring); outline: none; }
select.field__control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 38px; cursor: pointer;
}
.booking__submit { margin-top: 18px; width: 100%; padding: 16px; font-size: 1.05rem; }
.booking__note { margin: 12px 0 0; font-size: .82rem; color: var(--ink-soft); text-align: center; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 2; color: #fff; opacity: .8;
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.3);
  animation: bob 2.4s var(--ease) infinite;
}
.hero__scroll:hover { opacity: 1; }
.hero__scroll svg { width: 22px; height: 22px; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }

/* ============================================================== FLOTTE === */
.fleet { background: var(--bg); }
.fleet__filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(24px, 3vw, 36px); }
.filter-tab {
  padding: 10px 20px; border-radius: 999px;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink-soft);
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  transition: all .22s var(--ease);
}
.filter-tab:hover { border-color: var(--accent); color: var(--ink); }
.filter-tab.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}
.car-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.car-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
.car-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.car-card:hover .car-card__img { transform: scale(1.07); }
.car-card__badge {
  position: absolute; top: 12px; left: 12px;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(15,16,20,.86); color: #fff; backdrop-filter: blur(4px);
  font-family: var(--font-display); font-weight: 600; font-size: .74rem; letter-spacing: .04em;
}
/* Voiture « très demandée » : rareté + preuve sociale */
.car-card__flag {
  position: absolute; top: 12px; right: 12px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--accent); color: #1c1403;
  font-family: var(--font-display); font-weight: 600; font-size: .72rem; letter-spacing: .04em;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,.45);
}
.car-card__price {
  position: absolute; bottom: 12px; right: 12px;
  padding: 8px 14px; border-radius: 12px;
  background: var(--accent); color: #1c1403;
  font-family: var(--font-display); font-weight: 700; line-height: 1;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.5);
}
.car-card__price b { font-size: 1.15rem; }
.car-card__price small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .66rem; opacity: .8; margin-top: 2px; }

.car-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; gap: 14px; }
.car-card__name { font-size: 1.22rem; font-weight: 700; }
.car-card__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 12px; }
.car-card__spec { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--ink-soft); }
.car-card__spec svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
/* CTA par voiture : navy (l'or reste réservé au CTA principal du hero
   et aux badges de prix) — accent doré discret au survol. */
.car-card__cta { margin-top: auto; --btn-bg: var(--brand); }
.car-card__cta:hover {
  background: var(--brand-700);
  box-shadow:
    inset 0 0 0 1.5px color-mix(in srgb, var(--accent) 65%, transparent),
    0 12px 28px -12px color-mix(in srgb, var(--accent) 45%, transparent);
}

/* ============================================================ ATOUTS === */
.features {
  background:
    radial-gradient(80% 120% at 100% 0%, var(--brand-700) 0%, transparent 50%),
    linear-gradient(160deg, var(--brand-800), var(--brand-900));
  color: #fff;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(16px, 2vw, 22px);
}
.feature {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s;
}
.feature:hover { transform: translateY(-5px); background: rgba(255,255,255,.08); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
.feature__icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  color: var(--accent);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature__title { font-size: 1.16rem; font-weight: 600; margin-bottom: 8px; }
.feature__text { color: rgba(255,255,255,.72); font-size: .96rem; }

/* =========================================================== LIVRAISON === */
.delivery { background: var(--bg-soft); }
.delivery__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.delivery__list { display: grid; gap: 12px; margin: 26px 0 30px; }
.delivery__list li {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 18px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s;
}
.delivery__list li:hover { transform: translateX(6px); border-color: color-mix(in srgb, var(--accent) 50%, var(--line)); }
.delivery__list .pin {
  width: 40px; height: 40px; flex: none; border-radius: 11px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent);
}
.delivery__list .pin svg { width: 20px; height: 20px; }

.delivery__visual { position: relative; min-height: 340px; }
.delivery__card {
  position: relative; height: 100%; min-height: 360px;
  border-radius: var(--radius-lg); overflow: hidden;
  background:
    radial-gradient(90% 80% at 20% 15%, var(--brand-600) 0%, transparent 55%),
    linear-gradient(150deg, var(--brand-800), var(--brand-900));
  box-shadow: var(--shadow-lg);
  display: flex; align-items: flex-end;
  padding: 30px; color: #fff;
}
.delivery__badge {
  position: absolute; top: 24px; right: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  font-weight: 600; font-size: .82rem; backdrop-filter: blur(6px);
}
.delivery__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #38d39f; box-shadow: 0 0 0 4px rgba(56,211,159,.25); }
.delivery__stat { position: relative; z-index: 1; }
.delivery__stat b { display: block; font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 3.4rem); line-height: 1; color: var(--accent); }
.delivery__stat span { color: rgba(255,255,255,.82); font-size: 1rem; }
.delivery__grid-lines {
  position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(80% 80% at 70% 30%, #000, transparent);
          mask-image: radial-gradient(80% 80% at 70% 30%, #000, transparent);
}

/* ============================================================= CHIFFRES === */
.stats { background: var(--brand-900); color: #fff; padding-block: clamp(48px, 7vw, 80px); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 6vw, 3.6rem); line-height: 1; color: var(--accent); }
.stat__num .suffix { font-size: .55em; }
.stat__label { margin-top: 8px; color: rgba(255,255,255,.72); font-weight: 500; letter-spacing: .02em; }

/* ========================================================== TÉMOIGNAGES === */
.testimonials { background: var(--bg); }
/* Badge « Note Google » cliquable — preuve sociale vérifiable */
.greviews {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 18px; padding: 12px 18px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s;
}
.greviews:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--accent) 50%, var(--line)); }
.greviews b { font-family: var(--font-display); font-size: 1.15rem; }
.greviews__stars { display: inline-flex; gap: 2px; color: var(--accent); }
.greviews__stars svg { width: 15px; height: 15px; }
.greviews__meta { font-size: .85rem; color: var(--ink-soft); font-weight: 500; }
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(18px, 2.4vw, 26px); }
.testimonial {
  padding: 28px 26px; border-radius: var(--radius);
  background: var(--bg-soft); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial__stars { display: inline-flex; gap: 3px; color: var(--accent); }
.testimonial__stars svg { width: 18px; height: 18px; }
.testimonial__text { font-size: 1.02rem; color: var(--ink); font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  background: var(--brand); color: #fff;
}
.testimonial__name { font-weight: 600; }
.testimonial__role { font-size: .82rem; color: var(--ink-soft); }

/* ================================================================= FAQ === */
.faq {
  background:
    radial-gradient(70% 110% at 0% 100%, var(--brand-700) 0%, transparent 55%),
    linear-gradient(160deg, var(--brand-900), var(--brand-800));
  color: #fff;
}
.faq__list { display: grid; gap: 12px; max-width: 860px; }
.faq__item {
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.faq__item:hover { border-color: color-mix(in srgb, var(--accent) 40%, transparent); }
.faq__item[open] { background: rgba(255,255,255,.07); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  cursor: pointer; list-style: none; user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev { display: grid; place-items: center; width: 30px; height: 30px; flex: none; border-radius: 50%; background: rgba(255,255,255,.08); color: var(--accent); transition: transform .3s var(--ease); }
.faq__chev svg { width: 17px; height: 17px; }
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__answer { margin: 0; padding: 0 20px 20px; color: rgba(255,255,255,.75); font-size: .96rem; max-width: 70ch; }

/* ============================================================= CONTACT === */
.contact { background: var(--bg-soft); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: stretch; }
.contact__list { display: grid; gap: 14px; margin: 26px 0 24px; }
.contact__list a, .contact__list li {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s;
}
.contact__list a:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent) 50%, var(--line)); }
.contact__ico {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent);
}
.contact__ico svg { width: 21px; height: 21px; }
.contact__meta { min-width: 0; }
.contact__meta small { display: block; font-size: .76rem; color: var(--ink-soft); letter-spacing: .02em; }
.contact__meta b { font-weight: 600; font-size: 1.02rem; overflow-wrap: anywhere; }
.contact__socials { display: flex; gap: 12px; }
.contact__socials a {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand); color: #fff; transition: transform .25s var(--ease), background .25s;
}
.contact__socials a:hover { transform: translateY(-3px); background: var(--accent); color: #1c1403; }
.contact__socials svg { width: 22px; height: 22px; }
.contact__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 380px; border: 1px solid var(--line); }
.contact__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }

/* ============================================================== FOOTER === */
.site-footer { background: var(--brand-900); color: rgba(255,255,255,.72); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); padding-block: clamp(44px, 6vw, 72px); }
.footer__logo { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 14px; }
.footer__logo img { height: 36px; }
.footer__tagline { max-width: 34ch; font-size: .95rem; }
.footer__socials { display: flex; gap: 12px; margin-top: 20px; }
.footer__socials a { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; transition: background .25s, transform .25s; }
.footer__socials a:hover { background: var(--accent); color: #1c1403; transform: translateY(-3px); }
.footer__socials svg { width: 20px; height: 20px; }
.footer__col-title { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1rem; margin-bottom: 16px; }
.footer__nav ul { display: grid; gap: 11px; }
.footer__nav a { font-size: .95rem; transition: color .2s, padding .2s; }
.footer__nav a:hover { color: var(--accent); padding-left: 4px; }
.footer__contact { display: grid; gap: 12px; }
.footer__contact a { display: flex; align-items: center; gap: 11px; font-size: .95rem; transition: color .2s; }
.footer__contact a:hover { color: #fff; }
.footer__contact svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-block: 22px; font-size: .85rem; }

/* ===================================================== WHATSAPP FLOTTANT === */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 14px 32px -8px rgba(37,211,102,.6);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; position: relative; z-index: 1; }
.wa-float__pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; z-index: 0;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .55; } 70%, 100% { transform: scale(1.9); opacity: 0; } }

/* ================================================ BARRE D'ACTIONS MOBILE === */
/* Appel + WhatsApp à portée de pouce — le vrai moteur de conversion mobile */
.mobile-bar { display: none; }
@media (max-width: 860px) {
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }
  .wa-float { display: none; }
  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    display: grid; grid-template-columns: 1fr 1.7fr; gap: 10px;
    padding: 10px max(14px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom, 0px)) max(14px, env(safe-area-inset-right));
    background: color-mix(in srgb, var(--brand-900) 90%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .mobile-bar__btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 14px 10px; border-radius: 999px;
    font-family: var(--font-display); font-weight: 600; font-size: .95rem; line-height: 1;
    white-space: nowrap;
  }
  .mobile-bar__btn [data-icon] svg { width: 18px; height: 18px; }
  .mobile-bar__btn--call { color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
  .mobile-bar__btn--call:active { background: rgba(255,255,255,.1); }
  .mobile-bar__btn--wa {
    background: #1fbe5f; color: #fff;
    box-shadow: 0 10px 24px -10px rgba(31,190,95,.7);
  }
  .mobile-bar__btn--wa:active { filter: brightness(.94); }
}

/* ===================================================== SCROLL REVEAL === */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ================================================== RESPONSIVE === */
@media (max-width: 1150px) {
  /* Header serré (6 liens + tél + CTA) : on garde l'icône d'appel seule */
  .header-phone .txt { display: none; }
}

@media (max-width: 1024px) {
  .booking__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .header-cta { display: none; }
  .header-phone span.txt { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--brand-900);
    padding: 10px var(--gutter) 24px;
    box-shadow: 0 20px 40px -16px rgba(0,0,0,.6);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .main-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .site-header .main-nav a { color: #fff; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .main-nav a::after { display: none; }

  .delivery__inner { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .delivery__visual { min-height: 300px; }

  /* La barre mobile occupe le bas d'écran : on remonte l'indicateur de scroll */
  .hero__scroll { bottom: 86px; }
}

@media (max-width: 560px) {
  :root { --header-h: 66px; }
  .booking__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; }
  .footer-inner { grid-template-columns: 1fr; }
  .fleet__grid { grid-template-columns: 1fr; }
  .hero__trust { gap: 8px 16px; }
  .footer__bottom-inner { flex-direction: column; }
}
