/* =========================================================
   AL KHALIFA MOBILITÉ — Feuille de style principale
   ========================================================= */

:root {
  --primary: #0E7C66;
  --primary-dark: #0A5C4B;
  --primary-light: #E6F2EF;
  --accent: #C9A227;
  --accent-light: #FBF3DC;
  --ink: #10201C;
  --ink-soft: #4A5A56;
  --muted: #7A8783;
  --line: #E2E8E6;
  --bg: #FFFFFF;
  --bg-alt: #F7FAF9;
  --white: #FFFFFF;

  --nav-h: 76px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(16, 32, 28, .06);
  --shadow: 0 8px 28px rgba(16, 32, 28, .10);
  --shadow-lg: 0 20px 56px rgba(16, 32, 28, .16);
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font-head: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.75rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1.1rem; }

a { color: var(--primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--primary-dark); }

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

.container-x {
  width: min(1240px, 100% - 3rem);
  margin-inline: auto;
}

@media (max-width: 576px) {
  .container-x { width: min(1240px, 100% - 2rem); }
}

/* ---------- Utilitaires ---------- */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-alt { background: var(--bg-alt); }
.text-primary-c { color: var(--primary) !important; }
.text-accent-c { color: var(--accent) !important; }
.bg-primary-c { background: var(--primary) !important; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: .42rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.eyebrow--accent { color: #8A6D12; background: var(--accent-light); }

.section-head { max-width: 720px; margin-bottom: 3.2rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.06rem; color: var(--muted); margin-bottom: 0; }

.lead { font-size: 1.12rem; color: var(--ink-soft); }

/* ---------- Boutons ---------- */
.btn-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .97rem;
  padding: .88rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
  white-space: nowrap;
}

.btn-x:hover { transform: translateY(-2px); }

.btn-primary-x {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(14, 124, 102, .28);
}
.btn-primary-x:hover { background: var(--primary-dark); color: var(--white); box-shadow: 0 12px 30px rgba(14, 124, 102, .36); }

.btn-accent-x {
  background: var(--accent);
  color: #241C00;
  box-shadow: 0 6px 20px rgba(201, 162, 39, .3);
}
.btn-accent-x:hover { background: #B08E1E; color: #241C00; }

.btn-ghost-x {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost-x:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

.btn-light-x {
  background: rgba(255, 255, 255, .14);
  color: var(--white);
  border-color: rgba(255, 255, 255, .4);
  backdrop-filter: blur(6px);
}
.btn-light-x:hover { background: var(--white); color: var(--primary); }

/* ---------- Navigation ---------- */
.nav-x {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
  background: transparent;
}

.nav-x.scrolled,
.nav-x.solid {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(1240px, 100% - 3rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand { display: flex; align-items: center; gap: .7rem; }
.nav-brand img { height: 44px; width: auto; }

.nav-brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--white);
  line-height: 1.15;
  transition: color .3s var(--ease);
}
.nav-brand-text small {
  display: block;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  opacity: .82;
}
.nav-x.scrolled .nav-brand-text,
.nav-x.solid .nav-brand-text { color: var(--ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .95rem;
  color: rgba(255, 255, 255, .92);
  padding: .55rem .95rem;
  border-radius: 999px;
  transition: all .2s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { background: rgba(255, 255, 255, .16); color: var(--white); }

.nav-x.scrolled .nav-links a,
.nav-x.solid .nav-links a { color: var(--ink-soft); }
.nav-x.scrolled .nav-links a:hover,
.nav-x.solid .nav-links a:hover,
.nav-x.scrolled .nav-links a.active,
.nav-x.solid .nav-links a.active { background: var(--primary-light); color: var(--primary); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  color: var(--white);
  cursor: pointer;
  padding: .3rem;
}
.nav-x.scrolled .nav-toggle,
.nav-x.solid .nav-toggle { color: var(--ink); }

@media (max-width: 992px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    padding: 1rem 1.5rem 1.6rem;
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { color: var(--ink) !important; padding: .85rem .6rem; border-radius: 10px; }
  .nav-links .btn-x { margin-top: .7rem; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(600px, 92vh, 880px);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  color: var(--white);
  overflow: hidden;
}

/* Diaporama du hero : plusieurs images en fondu enchaîné + effet Ken Burns */
.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s var(--ease);
  will-change: opacity, transform;
}
.hero-slide.is-active {
  opacity: 1;
  animation: heroKenBurns 8s ease-out forwards;
}

@keyframes heroKenBurns { from { transform: scale(1.12); } to { transform: scale(1); } }

/* Repli / cas image unique */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 22s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

/* Vidéo de fond optionnelle */
.hero-video { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;          /* 16:9 */
  min-height: 100%;
  min-width: 177.78vh;      /* 16:9 */
  transform: translate(-50%, -50%);
  border: 0;
}

/* Puces de navigation du diaporama */
.hero-dots {
  position: absolute;
  bottom: 1.7rem;
  right: 2rem;
  z-index: 3;
  display: flex;
  gap: .5rem;
}
.hero-dot {
  width: 30px;
  height: 5px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, .35);
  transition: background .3s var(--ease), width .3s var(--ease);
}
.hero-dot.is-active { background: var(--accent); width: 46px; }
@media (max-width: 700px) { .hero-dots { right: 50%; transform: translateX(50%); bottom: 4.2rem; } }

/* Bandeau de pays défilant */
.country-marquee {
  position: relative;
  z-index: 6;
  overflow: hidden;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary) 55%, #12A187);
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.country-track {
  display: flex;
  gap: 2.6rem;
  width: max-content;
  padding: .9rem 1.3rem;
  animation: countryScroll 32s linear infinite;
}
.country-marquee:hover .country-track { animation-play-state: paused; }
@keyframes countryScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.country-chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .95);
  white-space: nowrap;
}
.country-chip .country-flag { font-size: 1.3rem; line-height: 1; }
.country-chip small {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #241C00;
  background: var(--accent);
  padding: .1rem .5rem;
  border-radius: 999px;
}
.country-chip.is-soon { color: rgba(255, 255, 255, .78); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 46, 38, .93) 0%, rgba(10, 92, 75, .82) 45%, rgba(14, 124, 102, .5) 100%),
    radial-gradient(circle at 78% 22%, rgba(201, 162, 39, .28), transparent 55%);
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 .hl {
  background: linear-gradient(180deg, transparent 62%, rgba(201, 162, 39, .55) 62%);
  padding: 0 .1em;
}

.hero-sub {
  font-size: clamp(1.03rem, 1.9vw, 1.24rem);
  color: rgba(255, 255, 255, .9);
  max-width: 620px;
  margin-bottom: 2.2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(8px);
  padding: .5rem 1.15rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
}
.hero-badge i { color: var(--accent); }

.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.4rem 1rem;
  margin-top: 3.6rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, .22);
  max-width: 940px;
}

.hero-stat b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .76);
  letter-spacing: .03em;
}

@media (max-width: 700px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
}

.hero-scroll {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, .6);
  font-size: 1.5rem;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 9px); } }

/* ---------- Barre de réservation rapide ---------- */
.quickbar {
  position: relative;
  z-index: 5;
  margin-top: -52px;
}

.quickbar-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  align-items: end;
  border: 1px solid var(--line);
}

.quickbar label {
  display: block;
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .38rem;
}

.quickbar .form-control,
.quickbar .form-select {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: .68rem .85rem;
  font-size: .94rem;
  width: 100%;
  color: var(--ink);
  background: var(--bg-alt);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.quickbar .form-control:focus,
.quickbar .form-select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(14, 124, 102, .12);
}

/* ---------- Cartes piliers ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 1.5rem;
}

.pillar-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.75rem 1.9rem;
  overflow: hidden;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
  display: flex;
  flex-direction: column;
}

.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--pc, var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.pillar-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.pillar-card:hover::before { transform: scaleX(1); }

.pillar-num {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-family: var(--font-head);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--pc, var(--primary));
  opacity: .07;
  line-height: 1;
}

.pillar-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--pc, var(--primary));
  background: color-mix(in srgb, var(--pc, var(--primary)) 12%, white);
  margin-bottom: 1.35rem;
  transition: transform .32s var(--ease);
}
.pillar-card:hover .pillar-icon { transform: scale(1.08) rotate(-4deg); }

.pillar-card h3 { margin-bottom: .3rem; }

.pillar-tagline {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--pc, var(--primary));
  margin-bottom: .9rem;
}

.pillar-card p { font-size: .95rem; color: var(--muted); flex-grow: 1; }

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--pc, var(--primary));
  margin-top: .5rem;
}
.pillar-link i { transition: transform .25s var(--ease); }
.pillar-card:hover .pillar-link i { transform: translateX(5px); }

/* ---------- Section pôles : décor animé ---------- */
.section-poles { position: relative; overflow: hidden; }

.poles-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.poles-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .4;
}
.poles-orbs span:nth-child(1) {
  width: 340px; height: 340px; top: -80px; left: -60px;
  background: radial-gradient(circle, rgba(14, 124, 102, .5), transparent 70%);
  animation: orbFloat 16s ease-in-out infinite;
}
.poles-orbs span:nth-child(2) {
  width: 300px; height: 300px; bottom: -70px; right: -40px;
  background: radial-gradient(circle, rgba(201, 162, 39, .38), transparent 70%);
  animation: orbFloat 20s ease-in-out infinite reverse;
}
.poles-orbs span:nth-child(3) {
  width: 260px; height: 260px; top: 40%; left: 55%;
  background: radial-gradient(circle, rgba(21, 101, 192, .3), transparent 70%);
  animation: orbFloat 24s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -34px); }
}
.section-poles .container-x { position: relative; z-index: 1; }

/* Lueur d'accent au survol de la carte pôle */
.pillar-glow {
  position: absolute;
  inset: auto -40% -60% -40%;
  height: 70%;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--pc, var(--primary)) 40%, transparent), transparent 70%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.pillar-card:hover .pillar-glow { opacity: .5; }

/* Liste de prestations dans la carte pôle */
.pillar-features {
  list-style: none;
  padding: 0;
  margin: .2rem 0 1.1rem;
  display: grid;
  gap: .5rem;
}
.pillar-features li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .88rem;
  color: var(--ink-soft);
}
.pillar-features i {
  color: var(--pc, var(--primary));
  font-size: .95rem;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--pc, var(--primary)) 10%, white);
}

.pillar-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.pillar-count { font-size: .82rem; color: var(--muted); }
.pillar-count b {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--pc, var(--primary));
  margin-right: .2rem;
}
.pillar-link { margin-top: 0; }

/* ---------- Section présence / pays couverts ---------- */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

.coverage-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem 1.7rem;
  text-align: center;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.coverage-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.coverage-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.coverage-card:hover::before { transform: scaleX(1); }
.coverage-card.is-soon { background: var(--bg-alt); border-style: dashed; }

.coverage-flag {
  font-size: 3.1rem;
  line-height: 1;
  margin-bottom: .8rem;
  display: inline-block;
  transition: transform .35s var(--ease);
}
.coverage-card:hover .coverage-flag { transform: scale(1.12) rotate(-4deg); }

.coverage-card h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.coverage-card p { font-size: .9rem; color: var(--muted); margin-bottom: 1.1rem; }

.coverage-status {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--primary);
  background: var(--primary-light);
  padding: .38rem .9rem;
  border-radius: 999px;
}
.coverage-status i { font-size: .9rem; }
.coverage-status.is-soon { color: #8A6D12; background: var(--accent-light); }

/* ---------- Onglets services ---------- */
.svc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
  margin-bottom: 2.8rem;
}

.svc-tab {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .93rem;
  padding: .72rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.svc-tab:hover { border-color: var(--primary); color: var(--primary); }
.svc-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(14, 124, 102, .26);
}

.svc-panel { display: none; animation: fadeUp .45s var(--ease); }
.svc-panel.active { display: block; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.3rem;
}

.svc-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.svc-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.svc-item i.svc-ico {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: .85rem;
  display: block;
}
.svc-item h4 { font-family: var(--font-head); font-size: 1.06rem; color: var(--ink); margin-bottom: .45rem; }
.svc-item p { font-size: .92rem; color: var(--muted); margin-bottom: .7rem; }

.svc-price {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  color: #8A6D12;
  background: var(--accent-light);
  padding: .3rem .8rem;
  border-radius: 999px;
}

/* ---------- Flotte ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(284px, 1fr));
  gap: 1.5rem;
}

.fleet-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.fleet-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-alt);
  overflow: hidden;
}
.fleet-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.fleet-card:hover .fleet-media img { transform: scale(1.07); }

.fleet-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: var(--line);
}

.fleet-tag {
  position: absolute;
  top: .85rem;
  left: .85rem;
  background: rgba(255, 255, 255, .95);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .32rem .78rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.fleet-body { padding: 1.35rem 1.4rem 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.fleet-body h4 { font-family: var(--font-head); font-size: 1.1rem; color: var(--ink); margin-bottom: .2rem; }
.fleet-brand { font-size: .84rem; color: var(--muted); margin-bottom: .9rem; }

.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1.1rem;
}
.fleet-spec {
  font-size: .78rem;
  color: var(--ink-soft);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: .28rem .68rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: .32rem;
}

.fleet-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.fleet-price b { font-family: var(--font-head); font-size: 1.24rem; color: var(--primary); }
.fleet-price span { font-size: .8rem; color: var(--muted); }

/* ---------- Section « pourquoi nous » ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.why-ico {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}
.why-item h4 { font-family: var(--font-head); font-size: 1.02rem; margin-bottom: .3rem; color: var(--ink); }
.why-item p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- À propos ---------- */
.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  bottom: 1.3rem;
  left: 1.3rem;
  right: 1.3rem;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1.05rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.about-badge i { font-size: 1.7rem; color: var(--accent); }
.about-badge b { display: block; font-family: var(--font-head); color: var(--ink); font-size: .98rem; }
.about-badge span { font-size: .82rem; color: var(--muted); }

.check-list { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: .85rem;
  font-size: .97rem;
  color: var(--ink-soft);
}
.check-list i { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; margin-top: .12rem; }

/* ---------- Vidéos ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  overflow: hidden;
  background: #000;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), opacity .3s; }
.video-card:hover .video-thumb img { transform: scale(1.06); opacity: .82; }

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.video-play span {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  padding-left: 4px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .32);
  transition: transform .3s var(--ease);
}
.video-card:hover .video-play span { transform: scale(1.12); }

.video-thumb iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-body { padding: 1.15rem 1.3rem 1.4rem; }
.video-body h4 { font-family: var(--font-head); font-size: 1.02rem; margin-bottom: .35rem; color: var(--ink); }
.video-body p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ---------- Documents légaux ---------- */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
  gap: 1.15rem;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}
.legal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.legal-card .lc-type {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8A6D12;
  margin-bottom: .5rem;
  display: block;
}
.legal-card h4 { font-family: var(--font-head); font-size: 1rem; margin-bottom: .3rem; color: var(--ink); }
.legal-card .lc-ref {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .88rem;
  color: var(--primary);
  font-weight: 600;
}
.legal-card .lc-issuer { font-size: .82rem; color: var(--muted); margin-top: .3rem; }

.legal-note {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-top: 1.8rem;
  font-size: .93rem;
  color: var(--ink-soft);
}
.legal-note i { color: var(--primary); font-size: 1.3rem; flex-shrink: 0; }

/* ---------- Témoignages ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.4rem;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: .4rem;
  right: 1.4rem;
  font-family: Georgia, serif;
  font-size: 4.6rem;
  color: var(--primary);
  opacity: .1;
  line-height: 1;
}
.testi-stars { color: var(--accent); font-size: .92rem; margin-bottom: .85rem; }
.testi-card p { font-size: .96rem; color: var(--ink-soft); font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author b { display: block; font-family: var(--font-head); font-size: .95rem; color: var(--ink); }
.testi-author span { font-size: .82rem; color: var(--muted); }

/* ---------- Bande CTA ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--primary-dark), var(--primary) 60%, #12A187);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 5vw, 3.6rem);
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, .34), transparent 68%);
}
.cta-band h2 { color: var(--white); position: relative; z-index: 1; }
.cta-band p { color: rgba(255, 255, 255, .88); position: relative; z-index: 1; margin-bottom: 1.8rem; }
.cta-band .btn-x { position: relative; z-index: 1; }

/* ---------- Formulaire de contact ---------- */
.form-x .form-label {
  font-family: var(--font-head);
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .4rem;
}
.form-x .form-control,
.form-x .form-select {
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: .78rem .95rem;
  font-size: .95rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-x .form-control:focus,
.form-x .form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14, 124, 102, .12);
}
.form-x textarea.form-control { min-height: 130px; resize: vertical; }

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
}

.contact-info-list { list-style: none; padding: 0; margin: 0; }
.contact-info-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-list li:last-child { border-bottom: 0; }
.contact-info-list .ci-ico {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.contact-info-list b { display: block; font-family: var(--font-head); font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.contact-info-list a, .contact-info-list span.ci-val { color: var(--ink); font-weight: 500; font-size: .98rem; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 300px;
  background: var(--bg-alt);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }

/* ---------- Pied de page ---------- */
.footer-x {
  background: #0A1614;
  color: rgba(255, 255, 255, .68);
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
  font-size: .93rem;
}
.footer-x h5 {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-brand { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.1rem; }
.footer-brand img { height: 46px; }
.footer-brand b { font-family: var(--font-head); font-size: 1.15rem; color: var(--white); display: block; line-height: 1.2; }
.footer-brand small { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .62rem; }
.footer-links a { color: rgba(255, 255, 255, .68); transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: .7rem; margin-bottom: .8rem; align-items: flex-start; }
.footer-contact i { color: var(--accent); margin-top: .18rem; }
.footer-contact a { color: rgba(255, 255, 255, .68); }
.footer-contact a:hover { color: var(--white); }

.footer-socials { display: flex; gap: .6rem; margin-top: 1.3rem; }
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.footer-socials a:hover { background: var(--primary); transform: translateY(-3px); }

.footer-legal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  padding: 1.2rem 0;
  margin-top: 2.6rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .82rem;
  font-family: ui-monospace, Menlo, monospace;
  color: rgba(255, 255, 255, .5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.3rem 0;
  font-size: .86rem;
  color: rgba(255, 255, 255, .5);
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: space-between;
  align-items: center;
}

/* ---------- WhatsApp flottant ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 26px rgba(37, 211, 102, .44);
  z-index: 900;
  transition: transform .28s var(--ease);
}
.wa-float:hover { transform: scale(1.09); color: var(--white); }

/* ---------- Alertes ---------- */
.alert-x {
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .94rem;
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
  border: 1px solid transparent;
}
.alert-x i { font-size: 1.15rem; flex-shrink: 0; margin-top: .08rem; }
.alert-ok { background: #E7F6F1; color: #0A5C4B; border-color: #B9E4D8; }
.alert-err { background: #FDECEC; color: #96231E; border-color: #F5C6C4; }

/* ---------- Animations au défilement ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

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

/* ---------- Impression ---------- */
@media print {
  .nav-x, .wa-float, .hero-scroll, .quickbar, .cta-band { display: none !important; }
  body { color: #000; }
}
