/* ================================================================
   ROADTRIP.TN — style.css
   Organisation :
   01. Reset & base
   02. Variables CSS
   03. Utilitaires (.container, .fu)
   04. Typographie
   05. Boutons
   06. Navigation (desktop + burger + drawer mobile)
   07. Hero (page d'accueil)
   08. Page hero (sous-pages)
   09. Sections & layout
   10. Services (grille 2 colonnes)
   11. À propos
   12. Caution cards
   13. Fleet / véhicule cards (page véhicules)
   14. Included strip (bande noire "inclus dans tous les tarifs")
   15. Tarif cards (page tarifs)
   16. FAQ accordéon
   17. Contact (formulaire + infos)
   18. CTA banner
   19. Footer
   20. WhatsApp bubble flottant
   21. Scroll-to-top
   22. Responsive (1100px → 860px → 600px → 380px)
================================================================ */

/* ── 01. RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  font-stretch: 112.5%;
  font-weight: 400;
  color: #0d141a;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── 02. VARIABLES ─────────────────────────────────────────── */
:root {
  --yellow:      #fff500;
  --yellow-dark: #e6dc00;
  --black:       #000000;
  --white:       #ffffff;
  --gray-100:    #f7f7f5;
  --gray-200:    #eeeeeb;
  --gray-300:    #d8d8d4;
  --gray-500:    #8a8a85;
  --gray-700:    #56585e;
  --dark:        #0d141a;

  --nav-h:  96px;
  --max-w:  1240px;
  --px:     48px;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 999px;

  --shadow-sm:     0 2px 8px rgba(0,0,0,.07);
  --shadow-md:     0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:     0 16px 48px rgba(0,0,0,.13);
  --shadow-yellow: 0 6px 22px rgba(255,245,0,.45);

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

/* ── 03. UTILITAIRES ───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

/* Fade-up au scroll — déclenché par IntersectionObserver */
.fu {
  opacity: 0;
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  -webkit-transition: opacity .65s var(--ease), -webkit-transform .65s var(--ease);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.fu.visible         { opacity: 1; -webkit-transform: none; transform: none; }
.fu[data-d="1"]     { -webkit-transition-delay: .08s; transition-delay: .08s; }
.fu[data-d="2"]     { -webkit-transition-delay: .16s; transition-delay: .16s; }
.fu[data-d="3"]     { -webkit-transition-delay: .24s; transition-delay: .24s; }
.fu[data-d="4"]     { -webkit-transition-delay: .32s; transition-delay: .32s; }
.fu[data-d="5"]     { -webkit-transition-delay: .40s; transition-delay: .40s; }

/* ── 04. TYPOGRAPHIE ───────────────────────────────────────── */
.t-label {
  font-size: 11px; font-weight: 800; font-stretch: 125%;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gray-500);
}
.t-h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800; font-stretch: 125%; line-height: 1.08; letter-spacing: -.01em;
}
.t-h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800; font-stretch: 125%; line-height: 1.15; letter-spacing: -.01em;
}
.t-h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700; font-stretch: 112.5%; line-height: 1.25;
}
.t-h4  { font-size: 18px; font-weight: 700; font-stretch: 112.5%; line-height: 1.3; }
.t-body { font-size: 16px; line-height: 1.7; color: var(--gray-700); }
.t-sm   { font-size: 14px; line-height: 1.6; color: var(--gray-700); }

.color-yellow { color: var(--yellow); }
.color-white  { color: var(--white);  }
.color-dark   { color: var(--dark);   }
.color-gray   { color: var(--gray-700); }

/* ── 05. BOUTONS ───────────────────────────────────────────── */
.btn {
  display: -webkit-inline-flex; display: inline-flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--r-full);
  font-size: 15px; font-weight: 700; font-stretch: 125%; letter-spacing: .03em;
  border: 2px solid transparent;
  -webkit-transition: -webkit-transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur), color var(--dur), border-color var(--dur);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur), color var(--dur), border-color var(--dur);
  white-space: nowrap; cursor: pointer;
}
.btn:hover { -webkit-transform: translateY(-2px); transform: translateY(-2px); }

.btn-yellow       { background: var(--yellow);  color: var(--black); border-color: var(--yellow); }
.btn-yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); box-shadow: var(--shadow-yellow); }
.btn-black        { background: var(--black);   color: var(--white); border-color: var(--black); }
.btn-black:hover  { background: #1a1a1a; border-color: #1a1a1a; }
.btn-outline-dark        { background: transparent; color: var(--dark);  border-color: var(--dark); }
.btn-outline-dark:hover  { background: var(--dark);  color: var(--white); }
.btn-outline-white       { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn-sm  { padding: 10px 22px; font-size: 13px; }
.btn-lg  { padding: 18px 52px; font-size: 17px; }
.btn-blk { width: 100%; }

/* ── 06. NAVIGATION ────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  padding-left: var(--px); padding-right: var(--px);
  -webkit-transition: box-shadow .3s; transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.4); }

.nav__inner {
  max-width: var(--max-w); width: 100%;
  margin-left: auto; margin-right: auto;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: space-between; justify-content: space-between;
  gap: 24px;
}
.nav__logo img { height: 72px; width: auto; object-fit: contain; }

.nav__links {
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  gap: 40px;
}
.nav__links a {
  font-size: 14px; font-weight: 700; font-stretch: 125%;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  padding-top: 6px; padding-bottom: 6px;
  position: relative;
  -webkit-transition: color var(--dur); transition: color var(--dur);
}
.nav__links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 100%;
  height: 2px; background: var(--yellow);
  -webkit-transition: right var(--dur) var(--ease);
  transition: right var(--dur) var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--yellow); }
.nav__links a:hover::after, .nav__links a.active::after { right: 0; }
.nav__links a.active { color: var(--yellow); }

.nav__cta { margin-left: 8px; }

/* Bouton hamburger — caché sur desktop */
.nav__burger {
  display: none;
  -webkit-flex-direction: column; flex-direction: column;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  gap: 6px;
  width: 44px; height: 44px; padding: 0;
  background: none; border: none; cursor: pointer;
  -webkit-flex-shrink: 0; flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--yellow); border-radius: 2px;
  -webkit-transition: -webkit-transform .28s ease, opacity .28s ease;
  transition: transform .28s ease, opacity .28s ease;
}
.nav__burger.open span:nth-child(1) { -webkit-transform: translateY(8px) rotate(45deg);  transform: translateY(8px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { -webkit-transform: translateY(-8px) rotate(-45deg); transform: translateY(-8px) rotate(-45deg); }

/* Menu drawer mobile */
.nav__drawer {
  display: none;
  -webkit-flex-direction: column; flex-direction: column;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: #0a0a0a; z-index: 499;
  padding: 8px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__drawer.open { display: -webkit-flex; display: flex; }
.nav__drawer a {
  font-size: 16px; font-weight: 700; font-stretch: 125%;
  letter-spacing: .05em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  padding: 16px var(--px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  -webkit-transition: color var(--dur), background var(--dur);
  transition: color var(--dur), background var(--dur);
}
.nav__drawer a:hover, .nav__drawer a.active { color: var(--yellow); background: rgba(255,245,0,.04); }
.nav__drawer a:last-child { border-bottom: none; }

/* ── 07. HERO (accueil) ────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 580px; max-height: 860px;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.hero__bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('/images/hero-bg.jpg');
  background-size: cover; background-position: center 50%;
  -webkit-filter: brightness(.5); filter: brightness(.5);
}
.hero__overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(160deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.05) 50%, rgba(0,0,0,.5) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center; padding-left: 24px; padding-right: 24px;
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  -webkit-align-items: center; align-items: center;
  gap: 20px;
  -webkit-animation: heroIn .9s var(--ease) both;
  animation: heroIn .9s var(--ease) both;
}
@-webkit-keyframes heroIn {
  from { opacity: 0; -webkit-transform: translateY(32px); }
  to   { opacity: 1; -webkit-transform: none; }
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
.hero__eyebrow {
  font-size: 13px; font-weight: 700; font-stretch: 125%;
  letter-spacing: .18em; text-transform: uppercase; color: var(--yellow); opacity: .85;
}
.hero__title {
  font-style: italic; font-stretch: 125%; font-weight: 300;
  font-size: clamp(48px, 10vw, 110px);
  color: var(--yellow); line-height: .95; letter-spacing: .03em;
  text-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.hero__sub {
  font-style: italic; font-stretch: 112.5%; font-weight: 300;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255,245,0,.85); letter-spacing: .06em;
}
.hero__actions {
  display: -webkit-flex; display: flex;
  gap: 12px; -webkit-flex-wrap: wrap; flex-wrap: wrap;
  -webkit-justify-content: center; justify-content: center;
  margin-top: 8px;
}
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%;
  -webkit-transform: translateX(-50%); transform: translateX(-50%);
  z-index: 2;
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  -webkit-align-items: center; align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.4); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  -webkit-animation: bounce 2s infinite; animation: bounce 2s infinite;
}
.hero__scroll svg { width: 20px; height: 20px; }
@-webkit-keyframes bounce {
  0%,100% { -webkit-transform: translateX(-50%) translateY(0); }
  50%      { -webkit-transform: translateX(-50%) translateY(6px); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── 08. PAGE HERO (sous-pages) ────────────────────────────── */
.page-hero {
  position: relative; margin-top: var(--nav-h);
  height: 300px;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.page-hero__bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover; background-position: center 40%;
  -webkit-filter: brightness(.38); filter: brightness(.38);
}
.page-hero__content { position: relative; z-index: 2; padding-left: 24px; padding-right: 24px; }
.page-hero__content h1 {
  font-size: clamp(34px, 6vw, 60px); font-weight: 800; font-stretch: 125%;
  color: var(--yellow); margin-bottom: 10px;
  -webkit-animation: heroIn .7s var(--ease) both; animation: heroIn .7s var(--ease) both;
}
.page-hero__content p {
  font-size: 16px; color: rgba(255,255,255,.7);
  -webkit-animation: heroIn .7s .1s var(--ease) both; animation: heroIn .7s .1s var(--ease) both;
}

/* ── 09. SECTIONS & LAYOUT ─────────────────────────────────── */
.section    { padding-top: 96px; padding-bottom: 96px; }
.section--sm { padding-top: 64px; padding-bottom: 64px; }
.section--dark { background: var(--black); }
.section--gray { background: var(--gray-100); }

.section-header { margin-bottom: 52px; }
.section-header--center { text-align: center; }
.section-header .t-label { margin-bottom: 10px; display: block; }
.section-header .t-h2    { margin-bottom: 14px; }
.section-header .t-body  { max-width: 560px; }
.section-header--center .t-body { margin-left: auto; margin-right: auto; }

/* ── 10. SERVICES ──────────────────────────────────────────── */
.services-grid {
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  gap: 3px; background: var(--gray-200);
  border-radius: var(--r-xl); overflow: hidden;
}
.service-card {
  background: var(--white);
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  -webkit-flex: 1 1 300px; flex: 1 1 300px; min-width: 0;
}
.service-card__top {
  background: var(--yellow);
  padding: 40px 40px 32px;
  -webkit-flex: 1; flex: 1;
}
.service-card__icon  { width: 40px; height: 40px; margin-bottom: 20px; opacity: .7; display: block; }
.service-card__title { font-size: 18px; font-weight: 800; font-stretch: 125%; color: var(--dark); margin-bottom: 10px; }
.service-card__text  { font-size: 15px; line-height: 1.65; color: var(--gray-700); }
.service-card__img   { width: 100%; height: 260px; object-fit: cover; display: block; background: var(--gray-200); }

/* ── 11. À PROPOS ──────────────────────────────────────────── */
.about-grid {
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  gap: 64px; -webkit-align-items: center; align-items: center;
}
.about__img-wrap { position: relative; -webkit-flex: 1 1 320px; flex: 1 1 320px; min-width: 0; }
.about__img {
  width: 100%; height: 500px;
  object-fit: cover; border-radius: var(--r-xl); display: block; background: var(--gray-200);
}
.about__accent {
  position: absolute; bottom: -20px; left: -20px;
  width: 48%; height: 0; padding-bottom: 48%;
  background: var(--yellow); border-radius: var(--r-lg); z-index: -1;
}
.about__text { -webkit-flex: 1 1 320px; flex: 1 1 320px; min-width: 0; }
.about__text .t-h2   { margin-bottom: 16px; }
.about__text .t-body { margin-bottom: 28px; }
.testimonial { background: var(--yellow); border-radius: var(--r-lg); padding: 28px 32px; margin-bottom: 32px; }
.testimonial__quote  { font-size: 17px; font-weight: 800; font-stretch: 125%; color: var(--dark); margin-bottom: 8px; line-height: 1.45; }
.testimonial__author { font-size: 13px; font-weight: 600; color: var(--gray-700); }

/* ── 12. CAUTION CARDS ─────────────────────────────────────── */
.caution-grid {
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap; gap: 20px;
}
.caution-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 28px 24px;
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  gap: 12px;
  -webkit-flex: 1 1 240px; flex: 1 1 240px; min-width: 0;
  -webkit-transition: border-color var(--dur), box-shadow var(--dur), -webkit-transform var(--dur);
  transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur);
}
.caution-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 32px rgba(255,245,0,.12);
  -webkit-transform: translateY(-3px); transform: translateY(-3px);
}
.caution-card__icon {
  width: 44px; height: 44px; background: var(--yellow);
  border-radius: var(--r-md);
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  -webkit-flex-shrink: 0; flex-shrink: 0;
}
.caution-card__icon svg    { width: 22px; height: 22px; display: block; }
.caution-card__title       { font-size: 16px; font-weight: 800; font-stretch: 125%; color: var(--dark); }
.caution-card__amount      { font-size: 28px; font-weight: 800; font-stretch: 125%; color: var(--dark); line-height: 1; }
.caution-card__amount span { font-size: 14px; font-weight: 500; color: var(--gray-500); }
.caution-card__desc        { font-size: 13px; color: var(--gray-700); line-height: 1.6; }

/* ── 13. FLEET / VÉHICULE CARDS (page véhicules) ───────────── */
.veh-grid {
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap; gap: 24px;
}
.veh-card {
  -webkit-flex: 1 1 280px; flex: 1 1 280px;
  min-width: 0; border-radius: var(--r-xl); overflow: hidden;
  background: var(--white); border: 1.5px solid var(--gray-200);
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  cursor: pointer;
  -webkit-transition: -webkit-transform .22s var(--ease), box-shadow .22s, border-color .22s;
  transition: transform .22s var(--ease), box-shadow .22s, border-color .22s;
}
.veh-card:hover {
  -webkit-transform: translateY(-6px); transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.12); border-color: var(--yellow);
}
.veh-card__img-wrap { overflow: hidden; -webkit-flex-shrink: 0; flex-shrink: 0; }
.veh-card__img {
  width: 100%; height: 220px; object-fit: cover; display: block;
  background: var(--gray-200);
  -webkit-transition: -webkit-transform .45s var(--ease);
  transition: transform .45s var(--ease);
}
.veh-card:hover .veh-card__img { -webkit-transform: scale(1.04); transform: scale(1.04); }
.veh-card__body {
  padding: 20px 22px 22px;
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  -webkit-flex: 1; flex: 1; gap: 6px;
}
.veh-card__cat     { font-size: 10px; font-weight: 800; font-stretch: 125%; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-500); }
.veh-card__name    { font-size: 19px; font-weight: 800; font-stretch: 125%; color: var(--dark); line-height: 1.15; }
.veh-card__tagline { font-size: 13px; color: var(--gray-700); line-height: 1.5; -webkit-flex: 1; flex: 1; }
.veh-card__cta {
  margin-top: 16px;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  gap: 8px; font-size: 13px; font-weight: 800; font-stretch: 125%; color: var(--dark);
}
.veh-card__cta-arrow {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  border-radius: 50%;
  background: var(--yellow);
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  -webkit-flex-shrink: 0; flex-shrink: 0;
  overflow: hidden;
  -webkit-transition: -webkit-transform .2s; transition: transform .2s;
}
.veh-card:hover .veh-card__cta-arrow { -webkit-transform: translateX(3px); transform: translateX(3px); }
.veh-card__cta-arrow svg {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  min-height: 14px;
  display: block;
  -webkit-flex-shrink: 0; flex-shrink: 0;
}

/* ── 14. INCLUDED STRIP (page tarifs) ──────────────────────── */
.included-strip {
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  gap: 16px; padding: 28px 32px;
  background: var(--black); border-radius: var(--r-xl);
}
.included-strip__item {
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  gap: 10px; -webkit-flex: 1 1 180px; flex: 1 1 180px; min-width: 0;
}
.included-strip__icon {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--yellow); border-radius: var(--r-md);
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  -webkit-flex-shrink: 0; flex-shrink: 0;
}
.included-strip__icon svg { width: 18px; height: 18px; display: block; }
.included-strip__label { font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.3; display: block; }
.included-strip__sub   { font-size: 12px; color: rgba(255,255,255,.45); display: block; }

/* ── 15. TARIF CARDS (page tarifs) ────────────────────────── */
.tarif-grid {
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap; gap: 24px;
}
.tarif-card {
  -webkit-flex: 1 1 280px; flex: 1 1 280px; min-width: 0;
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl); overflow: hidden;
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  -webkit-transition: -webkit-transform .22s var(--ease), box-shadow .22s, border-color .22s;
  transition: transform .22s var(--ease), box-shadow .22s, border-color .22s;
}
.tarif-card:hover {
  -webkit-transform: translateY(-6px); transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.11); border-color: var(--yellow);
}
.tarif-card--featured { border-color: var(--yellow); }

.tarif-card__img-wrap { overflow: hidden; position: relative; }
.tarif-card__img {
  width: 100%; height: 210px; object-fit: cover; display: block; background: var(--gray-200);
  -webkit-transition: -webkit-transform .45s var(--ease);
  transition: transform .45s var(--ease);
}
.tarif-card:hover .tarif-card__img { -webkit-transform: scale(1.05); transform: scale(1.05); }

.tarif-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--yellow); color: var(--black);
  font-size: 10px; font-weight: 800; font-stretch: 125%;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--r-full);
}
.tarif-card__badge--dark { background: var(--black); color: var(--yellow); }

.tarif-card__body {
  padding: 22px 22px 24px;
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  -webkit-flex: 1; flex: 1;
}
.tarif-card__cat     { font-size: 10px; font-weight: 800; font-stretch: 125%; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 4px; }
.tarif-card__name    { font-size: 19px; font-weight: 800; font-stretch: 125%; color: var(--dark); line-height: 1.15; margin-bottom: 4px; }
.tarif-card__gearbox { font-size: 12px; font-weight: 600; color: var(--gray-500); margin-bottom: 16px; }

.tarif-card__specs { display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.tarif-card__spec {
  display: -webkit-inline-flex; display: inline-flex;
  -webkit-align-items: center; align-items: center;
  gap: 4px; background: var(--gray-100); border-radius: var(--r-full);
  padding: 4px 10px; font-size: 11px; font-weight: 600; color: var(--gray-700);
}
.tarif-card__spec svg { width: 11px; height: 11px; opacity: .5; display: block; -webkit-flex-shrink: 0; flex-shrink: 0; }

.tarif-card__price-row {
  display: -webkit-flex; display: flex;
  -webkit-align-items: flex-end; align-items: flex-end;
  gap: 6px; padding: 16px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 18px;
}
.tarif-card__price-from { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 4px; display: block; }
.tarif-card__price-val  { font-size: 36px; font-weight: 800; font-stretch: 125%; color: var(--dark); line-height: 1; }
.tarif-card__price-unit { font-size: 13px; font-weight: 500; color: var(--gray-500); padding-bottom: 4px; }

.tarif-card__includes {
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  gap: 7px; margin-bottom: 20px; -webkit-flex: 1; flex: 1;
}
.tarif-card__include {
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  gap: 8px; font-size: 13px; color: var(--gray-700);
}
.tarif-card__include-dot {
  width: 16px; height: 16px; min-width: 16px;
  background: var(--yellow); border-radius: 50%;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  font-size: 8px; font-weight: 900; color: var(--black);
  -webkit-flex-shrink: 0; flex-shrink: 0;
}
.tarif-card__actions { display: -webkit-flex; display: flex; gap: 8px; -webkit-flex-wrap: wrap; flex-wrap: wrap; }
.tarif-card__actions .btn { -webkit-flex: 1; flex: 1; min-width: 100px; padding-left: 16px; padding-right: 16px; font-size: 13px; }

/* ── 16. FAQ ───────────────────────────────────────────────── */
.faq-wrap { max-width: 720px; margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-btn {
  width: 100%; display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: space-between; justify-content: space-between;
  gap: 16px; padding: 20px 0;
  background: none; border: none;
  font-size: 15px; font-weight: 700; font-stretch: 112.5%;
  color: var(--dark); text-align: left; cursor: pointer;
}
.faq-icon {
  width: 28px; height: 28px; min-width: 28px;
  background: var(--yellow); border-radius: 50%;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  font-size: 18px; font-weight: 300; color: var(--black);
  -webkit-transition: -webkit-transform var(--dur); transition: transform var(--dur);
}
.faq-btn.open .faq-icon { -webkit-transform: rotate(45deg); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; -webkit-transition: max-height .32s ease; transition: max-height .32s ease; }
.faq-answer.open { max-height: 400px; }
.faq-answer p { padding-bottom: 20px; font-size: 14px; color: var(--gray-700); line-height: 1.75; }

/* ── 17. CONTACT ───────────────────────────────────────────── */
.contact-layout {
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  gap: 56px; -webkit-align-items: flex-start; align-items: flex-start;
}
.contact-form-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 48px 44px; box-shadow: var(--shadow-lg);
  -webkit-flex: 1 1 340px; flex: 1 1 340px; min-width: 0;
}
.form-row { display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; gap: 16px; }
.form-row .form-group { -webkit-flex: 1 1 140px; flex: 1 1 140px; min-width: 0; }
.form-group { display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group:last-child { margin-bottom: 0; }
.form-label { font-size: 12px; font-weight: 800; font-stretch: 125%; letter-spacing: .08em; text-transform: uppercase; color: var(--dark); }
.form-label .req { color: #dc2626; margin-left: 2px; }
.form-input, .form-textarea, .form-select {
  padding: 13px 16px; border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md); font-size: 15px; color: var(--dark);
  background: var(--white); outline: none;
  -webkit-appearance: none; appearance: none; width: 100%;
  -webkit-transition: border-color var(--dur), box-shadow var(--dur);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-300); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,245,0,.18);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-alert { display: none; padding: 14px 18px; border-radius: var(--r-md); font-size: 14px; font-weight: 600; margin-top: 16px; }
.form-alert--success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; display: block; }
.form-alert--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; display: block; }

.contact-info { display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; gap: 28px; padding-top: 8px; -webkit-flex: 1 1 300px; flex: 1 1 300px; min-width: 0; }
.contact-info__block { display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; gap: 6px; }
.contact-info__label { font-size: 11px; font-weight: 800; font-stretch: 125%; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-500); }
.contact-info__value { font-size: 16px; font-weight: 600; color: var(--dark); }
.contact-info__map   { border-radius: var(--r-lg); overflow: hidden; border: 1.5px solid var(--gray-200); }
.contact-info__map iframe { width: 100%; height: 260px; border: none; display: block; }
.hours-grid { display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; gap: 16px; }
.hours-item { display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; gap: 4px; min-width: 120px; }
.hours-item__label { font-size: 11px; font-weight: 800; font-stretch: 125%; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-500); }
.hours-item__val   { font-size: 15px; font-weight: 600; color: var(--dark); }

/* ── 18. CTA BANNER ────────────────────────────────────────── */
.cta-banner { background: var(--black); padding-top: 88px; padding-bottom: 88px; text-align: center; }
.cta-banner .t-h2   { margin-bottom: 14px; }
.cta-banner .t-body { max-width: 500px; margin-left: auto; margin-right: auto; margin-bottom: 40px; }
.cta-banner__actions {
  display: -webkit-flex; display: flex;
  gap: 14px; -webkit-justify-content: center; justify-content: center;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
}

/* ── 19. FOOTER ────────────────────────────────────────────── */
.footer { background: var(--black); border-top: 1px solid rgba(255,255,255,.07); padding-top: 64px; }
.footer__grid {
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  gap: 40px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__grid > div:first-child { -webkit-flex: 2 1 240px; flex: 2 1 240px; min-width: 0; }
.footer__grid > div:not(:first-child) { -webkit-flex: 1 1 140px; flex: 1 1 140px; min-width: 0; }
.footer__logo    { height: 68px; width: auto; object-fit: contain; margin-bottom: 16px; display: block; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.65; max-width: 210px; margin-bottom: 24px; }
.footer__social  { display: -webkit-flex; display: flex; gap: 14px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  color: rgba(255,255,255,.5);
  -webkit-transition: background var(--dur), color var(--dur);
  transition: background var(--dur), color var(--dur);
}
.footer__social a:hover { background: var(--yellow); color: var(--black); }
.footer__social svg      { width: 16px; height: 16px; display: block; }
.footer__col-title  { font-size: 11px; font-weight: 800; font-stretch: 125%; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.footer__col-links  { display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; gap: 10px; }
.footer__col-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.55); -webkit-transition: color var(--dur); transition: color var(--dur); }
.footer__col-links a:hover { color: var(--yellow); }
.footer__col-text   { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.55); line-height: 1.7; }
.footer__bottom {
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: space-between; justify-content: space-between;
  padding-top: 22px; padding-bottom: 22px;
  font-size: 12px; color: rgba(255,255,255,.28);
  gap: 16px; -webkit-flex-wrap: wrap; flex-wrap: wrap;
}

/* ── 20. WHATSAPP FLOTTANT ─────────────────────────────────── */
.wa-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  -webkit-transition: -webkit-transform var(--dur), box-shadow var(--dur);
  transition: transform var(--dur), box-shadow var(--dur);
}
.wa-btn:hover { -webkit-transform: scale(1.12); transform: scale(1.12); }
.wa-btn svg   { width: 28px; height: 28px; fill: white; display: block; }

/* ── 21. SCROLL-TO-TOP ─────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 90px; right: 24px; z-index: 399;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--gray-200);
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  -webkit-transform: translateY(8px); transform: translateY(8px);
  -webkit-transition: opacity .25s, -webkit-transform .25s, box-shadow .2s, border-color .2s;
  transition: opacity .25s, transform .25s, box-shadow .2s, border-color .2s;
  box-shadow: var(--shadow-sm);
}
.scroll-top.visible      { opacity: 1; pointer-events: all; -webkit-transform: none; transform: none; }
.scroll-top:hover        { box-shadow: var(--shadow-md); border-color: var(--yellow); }
.scroll-top svg          { width: 18px; height: 18px; color: var(--dark); }

/* ── 22. RESPONSIVE ────────────────────────────────────────── */
/* Desktop large : 3 colonnes pour véhicules et tarifs */
@media (min-width: 1101px) {
  .veh-card   { max-width: calc(33.333% - 16px); }
  .tarif-card { max-width: calc(33.333% - 16px); }
}

/* Tablette : 2 colonnes */
@media (max-width: 1100px) {
  :root { --px: 32px; }
  .veh-card   { max-width: calc(50% - 12px); }
  .tarif-card { max-width: calc(50% - 12px); }
  .footer__grid > div:first-child { -webkit-flex-basis: 100%; flex-basis: 100%; }
}

/* Tablette portrait : menu burger */
@media (max-width: 860px) {
  :root { --px: 24px; --nav-h: 72px; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: -webkit-flex; display: flex; }
  .about__img  { height: 340px; }
}

/* Mobile : 1 colonne */
@media (max-width: 600px) {
  :root { --px: 20px; }
  .section { padding-top: 52px; padding-bottom: 52px; }
  .page-hero { height: 220px; }
  .service-card__img { height: 200px; }
  .about__img   { height: 250px; }
  .veh-card     { max-width: 100%; -webkit-flex-basis: 100%; flex-basis: 100%; }
  .tarif-card   { max-width: 100%; -webkit-flex-basis: 100%; flex-basis: 100%; }
  .caution-card { -webkit-flex-basis: 100%; flex-basis: 100%; }
  .hero__actions, .cta-banner__actions {
    -webkit-flex-direction: column; flex-direction: column;
    -webkit-align-items: center; align-items: center;
  }
  .hero__actions .btn, .cta-banner__actions .btn { width: 100%; max-width: 300px; }
  .contact-form-card { padding: 28px 20px; }
  .form-row .form-group { -webkit-flex-basis: 100%; flex-basis: 100%; }
  .tarif-card__price-val { font-size: 28px; }
  .included-strip { padding: 20px; }
  .footer__grid > div:not(:first-child) { -webkit-flex-basis: calc(50% - 20px); flex-basis: calc(50% - 20px); }
  .footer__bottom { -webkit-flex-direction: column; flex-direction: column; text-align: center; }
}

/* Très petit mobile */
@media (max-width: 380px) {
  :root { --px: 16px; }
  .footer__grid > div:not(:first-child) { -webkit-flex-basis: 100%; flex-basis: 100%; }
}

/* ================================================================
   INCLUS GRID — section "Pas de frais caches" (accueil)
   ================================================================ */
.inclus-grid {
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  gap: 20px;
}
.inclus-card {
  -webkit-flex: 1 1 260px; flex: 1 1 260px;
  min-width: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 28px 24px;
}
.inclus-card__icon {
  width: 48px; height: 48px;
  background: var(--yellow); border-radius: var(--r-md);
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  margin-bottom: 18px;
}
.inclus-card__icon svg   { width: 24px; height: 24px; display: block; }
.inclus-card__title      { font-size: 16px; font-weight: 800; font-stretch: 125%; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.inclus-card__text       { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.75; }

/* ================================================================
   CONDITIONS GRID — section conditions de location (accueil)
   ================================================================ */
.conditions-grid {
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  gap: 20px;
}
.condition-card {
  -webkit-flex: 1 1 280px; flex: 1 1 280px;
  min-width: 0;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  -webkit-transition: border-color var(--dur), box-shadow var(--dur);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.condition-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 32px rgba(255,245,0,.10);
}
.condition-card__icon {
  width: 44px; height: 44px;
  background: var(--yellow); border-radius: var(--r-md);
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  margin-bottom: 16px;
}
.condition-card__icon svg { width: 22px; height: 22px; display: block; }
.condition-card__title    { font-size: 16px; font-weight: 800; font-stretch: 125%; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.condition-card__text     { font-size: 14px; color: var(--gray-700); line-height: 1.75; }
.condition-card__text strong { color: var(--dark); font-weight: 700; }

@media (max-width: 600px) {
  .inclus-card, .condition-card { -webkit-flex-basis: 100%; flex-basis: 100%; }
}


