/* ============================================================
   TAXI CONVENTIONNÉ PRO — CSS v1.0.0
   Ultra-Modern Dark Theme — Medical Transport
   Responsive Mobile-First — No Horizontal Scroll
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@700;800;900&display=swap');

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

:root {
  --blue:        #1a6bff;
  --blue-dark:   #0d4fd6;
  --blue-light:  #4d8dff;
  --amber:       #f59e0b;
  --amber-dark:  #d97706;
  --amber-light: #fbbf24;
  --green:       #10b981;
  --green-dark:  #059669;
  --purple:      #7c3aed;
  --cyan:        #06b6d4;
  --red:         #ef4444;
  --dark:        #050d1a;
  --dark2:       #0a1628;
  --dark3:       #0e1f38;
  --gray:        #8898aa;
  --light:       #e8eef8;
  --white:       #ffffff;
  --glass:       rgba(255,255,255,0.04);
  --glass-border:rgba(255,255,255,0.08);
  --radius:      16px;
  --shadow:      0 20px 60px rgba(0,0,0,0.5);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body.txc-body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── UTILITY ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber-light);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title span { color: var(--amber); }
.section-desc {
  color: var(--gray);
  font-size: 17px;
  max-width: 600px;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
@keyframes btnShine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes btnSweep {
  0%   { left: -70%; }
  100% { left: 130%; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fbbf24 0%, var(--amber) 40%, #b45309 100%);
  background-size: 200% auto;
  animation: btnShine 3s linear infinite;
  color: var(--dark);
  font-weight: 800;
  font-size: 17px;
  padding: 18px 36px;
  border-radius: 100px;
  border: 1px solid rgba(251,191,36,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(245,158,11,0.5), 0 2px 0 rgba(255,255,255,0.12) inset;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -70%;
  width: 35%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: btnSweep 2.8s ease-in-out infinite;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 60px rgba(245,158,11,0.65), 0 6px 20px rgba(245,158,11,0.35);
  animation-play-state: paused;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(-1px) scale(0.99); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 17px 32px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.20);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.5); opacity: 0.15; }
  100% { transform: scale(1.7); opacity: 0; }
}
.pulse-btn { position: relative; }
.pulse-btn::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 100px;
  border: 2px solid rgba(245,158,11,0.7);
  background: transparent;
  animation: pulse-ring 1.8s ease-out infinite;
  z-index: -1;
}

/* ─── CTA TOPBAR ───────────────────────────────────────────── */
.cta-topbar {
  background: linear-gradient(135deg, #0d1f3c, #152847);
  border-bottom: 1px solid rgba(245,158,11,0.15);
  padding: 8px 0;
}
.cta-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cta-topbar-left { font-size: 13px; color: var(--gray); font-weight: 500; }
.cta-topbar-right { display: flex; align-items: center; gap: 10px; }
.cta-topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 5px 14px;
  border-radius: 100px;
  transition: all 0.2s;
}
.cta-topbar-phone:hover { background: rgba(245,158,11,0.25); }
.cta-topbar-devis {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--dark);
  font-weight: 800;
  font-size: 13px;
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  padding: 6px 16px;
  border-radius: 100px;
  transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(245,158,11,0.3);
}
.cta-topbar-devis:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,158,11,0.5); }

/* ─── HEADER ────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5,13,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.5); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--amber), #b45309);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--white);
  white-space: nowrap;
}
.logo-text span { color: var(--amber); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--gray); transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 16px; color: var(--dark);
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  padding: 10px 22px; border-radius: 100px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}
.header-phone:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(245,158,11,0.6); }
.urgence-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  color: #fbbf24;
  font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 100px;
}
.dot-live {
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* ─── TRUST BADGES ──────────────────────────────────────────── */
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  backdrop-filter: blur(8px);
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 80px 0;
  width: 100%;
}
.hero-container { max-width: 1400px !important; padding: 0 48px !important; }
/* ─── HERO VIDEO FOND D'ÉCRAN (fixe, plein hero, aucun contrôle) ── */

/* 1 — fond sombre de secours (quand aucune vidéo n'est chargée) */
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,158,11,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(26,107,255,0.06) 0%, transparent 50%),
              var(--dark);
  z-index: 0;
}

/* 2 — vidéo fond d'écran AU-DESSUS du fond de secours */
.hero-video-slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;           /* ← au-dessus de .hero-bg */
  overflow: hidden;
  pointer-events: none;
}
.hero-slide-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.35) saturate(0.7);
  opacity: 0;
  transition: opacity 1.5s ease;
  pointer-events: none;
  border: none;
  outline: none;
  display: block;
}
.hero-slide-video.active { opacity: 1; }

/* 3 — overlay semi-transparent au-dessus de la vidéo */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(5,13,26,0.45) 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none; z-index: 2;
}

/* 4 — grille et orbes décoratifs */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.03) 1px, transparent 1px);
  background-size: 60px 60px; z-index: 3;
}
.orb { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 3; }
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,158,11,0.12), transparent 70%);
  top: -250px; right: -150px;
}
.orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(26,107,255,0.08), transparent 70%);
  bottom: -100px; left: 150px;
}
.hero-content {
  position: relative; z-index: 10;  /* au-dessus de video + overlays */
  width: 100%; display: flex; align-items: center; gap: 64px;
}
.hero-left {
  flex: 1; min-width: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 4px 40px rgba(0,0,0,0.6);
}
.hero-right {
  flex: 0 0 340px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.hero-stat-card {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 28px 20px;
  text-align: center;
  transition: all 0.35s ease;
  backdrop-filter: blur(12px);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.hero-stat-card:hover {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.35);
  transform: translateY(-6px);
}
.hero-stat-icon { font-size: 26px; margin-bottom: 4px; }
.hero-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 34px; font-weight: 900;
  color: var(--white); line-height: 1;
}
.hero-stat-number span { color: var(--amber); }
.hero-stat-label { font-size: 12px; color: var(--white); font-weight: 500; line-height: 1.4; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(245,158,11,0.4);
  color: #fbbf24; font-size: 13px; font-weight: 700;
  padding: 8px 20px; border-radius: 100px;
  margin-bottom: 24px; letter-spacing: 1px; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900; line-height: 1.08;
  margin-bottom: 24px; letter-spacing: -1px;
  text-shadow: 0 3px 24px rgba(0,0,0,0.9);
}
.hero h1 .highlight { color: var(--amber); -webkit-text-fill-color: var(--amber); }
.hero h1 .blue {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-underline-offset: 6px;
  text-decoration-thickness: 4px;
}
.hero-desc { font-size: 18px; color: #e0eaf5; margin-bottom: 40px; line-height: 1.7; max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-phone-cta {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, var(--amber-light), #b45309);
  color: var(--dark); font-weight: 900; font-size: 20px;
  padding: 20px 40px; border-radius: 100px;
  transition: all 0.3s;
  box-shadow: 0 10px 40px rgba(245,158,11,0.5);
  position: relative; overflow: hidden;
}
.hero-phone-cta::after {
  content: '';
  position: absolute; inset: -4px; border-radius: 100px;
  background: rgba(245,158,11,0.3);
  animation: pulse-ring 2s ease-out infinite; z-index: -1;
}
.hero-phone-cta:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 20px 60px rgba(245,158,11,0.65); }
.phone-icon {
  width: 44px; height: 44px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { opacity: 0; animation: fadeInUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ─── URGENCE BANNER ────────────────────────────────────────── */
.urgence-banner {
  background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(180,83,9,0.06));
  border-top: 1px solid rgba(245,158,11,0.2);
  border-bottom: 1px solid rgba(245,158,11,0.2);
  padding: 20px 0;
}
.urgence-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.urgence-text { display: flex; align-items: center; gap: 14px; }
.urgence-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.urgence-text strong { font-size: 18px; font-weight: 800; display: block; }
.urgence-text p { font-size: 14px; color: var(--gray); }

/* ─── SERVICES ──────────────────────────────────────────────── */
.services { padding: 100px 0; }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-desc { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--dark2);
  border: 1px solid var(--glass-border);
  border-radius: 24px; overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,158,11,0.35);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,158,11,0.1);
}
.service-img-wrap { position: relative; height: 220px; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.08); }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10,22,40,0.95) 100%);
}
.service-img-gradient {
  width: 100%; height: 100%;
}
.gradient-blue { background: linear-gradient(135deg, #0d2149, #1a6bff44); }
.gradient-amber { background: linear-gradient(135deg, #2d1a00, #f59e0b44); }
.gradient-cyan { background: linear-gradient(135deg, #001a2d, #06b6d444); }
.gradient-purple { background: linear-gradient(135deg, #150d2d, #7c3aed44); }
.gradient-green { background: linear-gradient(135deg, #001a14, #10b98144); }
.gradient-red { background: linear-gradient(135deg, #1a0000, #ef444444); }
.service-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--amber); color: var(--dark);
  font-size: 11px; font-weight: 800;
  padding: 5px 12px; border-radius: 100px;
  letter-spacing: 1px; text-transform: uppercase;
}
.service-tag.cyan { background: var(--cyan); color: var(--dark); }
.service-tag.purple { background: var(--purple); color: white; }
.service-tag.green { background: var(--green); color: var(--dark); }
.service-body { padding: 24px; }
.service-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.service-icon.blue   { background: rgba(26,107,255,0.12);  border: 1px solid rgba(26,107,255,0.2); }
.service-icon.amber  { background: rgba(245,158,11,0.12);  border: 1px solid rgba(245,158,11,0.2); }
.service-icon.cyan   { background: rgba(6,182,212,0.12);   border: 1px solid rgba(6,182,212,0.2); }
.service-icon.purple { background: rgba(124,58,237,0.12);  border: 1px solid rgba(124,58,237,0.2); }
.service-icon.green  { background: rgba(16,185,129,0.12);  border: 1px solid rgba(16,185,129,0.2); }
.service-icon.red    { background: rgba(239,68,68,0.12);   border: 1px solid rgba(239,68,68,0.2); }
.service-title { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.service-desc { color: var(--gray); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.service-features { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.feature-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #9cb0c8;
}
.feature-item::before {
  content: '\2713';
  width: 18px; height: 18px;
  background: rgba(16,185,129,0.15); color: #10b981;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--amber); font-size: 14px; font-weight: 700; transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ─── PROCESS ───────────────────────────────────────────────── */
.process-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 50%, var(--dark) 100%);
}
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  position: relative;
}
.process-card {
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.4s;
}
.process-card:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.process-number {
  font-family: 'Poppins', sans-serif;
  font-size: 64px; font-weight: 900;
  color: rgba(245,158,11,0.12);
  position: absolute; top: 16px; right: 24px; line-height: 1;
  pointer-events: none;
}
.process-icon {
  font-size: 52px; margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(245,158,11,0.3));
}
.process-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 800; margin-bottom: 12px;
}
.process-card p { color: var(--gray); font-size: 15px; line-height: 1.7; }
.process-connector {
  display: none;
}

/* ─── CPAM SECTION ──────────────────────────────────────────── */
.cpam-section {
  padding: 100px 0;
  position: relative;
  background: var(--dark2);
  overflow: hidden;
}
.cpam-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.12) saturate(0.5);
}
.cpam-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,13,26,0.9), rgba(10,22,40,0.85));
}
.cpam-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.cpam-badges { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.cpam-badge {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 14px 18px;
  transition: all 0.3s;
}
.cpam-badge:hover {
  background: rgba(245,158,11,0.06);
  border-color: rgba(245,158,11,0.2);
}
.cpam-badge-icon {
  font-size: 20px; flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(245,158,11,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.cpam-badge strong { display: block; font-size: 15px; font-weight: 800; }
.cpam-badge span { font-size: 13px; color: var(--gray); }
.cpam-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.cpam-stat-card {
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 20px; padding: 28px;
  text-align: center;
  transition: all 0.35s;
}
.cpam-stat-card:hover {
  background: rgba(245,158,11,0.12);
  transform: translateY(-4px);
}
.cpam-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 48px; font-weight: 900;
  color: var(--amber); line-height: 1;
}
.cpam-stat-number span { font-size: 24px; }
.cpam-stat-label { font-size: 14px; font-weight: 700; margin-top: 6px; }
.cpam-stat-sub { font-size: 12px; color: var(--gray); margin-top: 4px; }

/* ─── TÉMOIGNAGES ───────────────────────────────────────────── */
.testi-section { padding: 100px 0; overflow: hidden; }
.testi-outer { overflow: hidden; padding: 8px 0 24px; }

/* Mobile swipe */
.ejc-testi-swipe {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding: 8px 4px 20px;
  scrollbar-width: none;
}
.ejc-testi-swipe::-webkit-scrollbar { display: none; }
.ejc-testi-swipe .testi-card {
  flex: 0 0 calc(100% - 32px);
  scroll-snap-align: start;
  min-width: 280px;
}

/* Desktop track */
.ejc-testi-overflow { overflow: hidden; }
.ejc-testi-track {
  display: flex;
  gap: 24px;
  animation: scrollLeft 40s linear infinite;
  width: max-content;
}
.ejc-testi-track:hover { animation-play-state: paused; }
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

.testi-card {
  flex: 0 0 320px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.35s;
}
.testi-card:hover {
  border-color: rgba(245,158,11,0.25);
  transform: translateY(-4px);
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testi-text { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: var(--dark);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 14px; }
.testi-location { color: rgba(255,255,255,0.5); font-size: 12px; margin-top: 2px; }

/* Dots mobile */
.ejc-testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.ejc-testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: none; cursor: pointer; transition: all 0.3s;
}
.ejc-testi-dot.active { background: var(--amber); transform: scale(1.3); }

/* ─── GALERIE FLOTTE ────────────────────────────────────────── */
.galerie-section { padding: 100px 0; overflow: hidden; }
.real-masonry { overflow: hidden; padding: 4px 0; }
.ejc-real-track {
  display: flex;
  gap: 20px;
  animation: scrollLeft 35s linear infinite;
  width: max-content;
}
.ejc-real-track:hover { animation-play-state: paused; }
.real-card {
  flex: 0 0 320px;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  transition: all 0.35s;
}
.real-card:hover { transform: scale(1.03); }
.real-media { width: 100%; height: 100%; object-fit: cover; }
.real-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
}
.real-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(5,13,26,0.9), transparent);
  padding: 16px;
}
.real-label { font-weight: 700; font-size: 14px; }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}
.faq-grid { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(245,158,11,0.2); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  background: none; border: none; cursor: pointer;
  padding: 22px 24px;
  color: var(--white); font-size: 16px; font-weight: 700;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(245,158,11,0.04); }
.faq-question[aria-expanded="true"] { color: var(--amber); }
.faq-icon {
  font-size: 24px; font-weight: 300; color: var(--amber);
  flex-shrink: 0; transition: transform 0.3s;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { color: var(--gray); font-size: 15px; line-height: 1.8; }

/* ─── ZONES ─────────────────────────────────────────────────── */
.zones-section {
  padding: 100px 0;
  background: var(--dark2);
}
.zones-tags {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin: 0 auto;
  max-width: 900px;
}
.zone-tag {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  color: #fbbf24;
  padding: 8px 18px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  transition: all 0.2s;
}
.zone-tag:hover {
  background: rgba(245,158,11,0.15);
  border-color: rgba(245,158,11,0.4);
  transform: translateY(-2px);
}

/* ─── CONTACT FORM ──────────────────────────────────────────── */
.contact-section {
  padding: 100px 0;
  position: relative;
  background: var(--dark);
  overflow: hidden;
}
.contact-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.1) saturate(0.4);
}
.contact-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,13,26,0.95), rgba(10,22,40,0.9));
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start;
}
.contact-infos { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 14px 18px;
}
.contact-info-icon {
  font-size: 22px; flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(245,158,11,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 40px;
  backdrop-filter: blur(20px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 700;
  color: #c5d4e8; margin-bottom: 8px;
}
.required { color: var(--amber); }
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s;
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(245,158,11,0.06);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input option { background: var(--dark3); color: var(--white); }

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: #030810; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
}
.footer-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--dark); font-weight: 800; font-size: 15px;
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  padding: 10px 20px; border-radius: 100px;
  transition: all 0.2s;
}
.footer-phone:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,158,11,0.4); }
.footer-title { font-weight: 800; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: #c5d4e8; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--gray); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }
.footer-zones { display: flex; flex-direction: column; gap: 8px; }
.footer-zones a { color: var(--gray); font-size: 14px; transition: color 0.2s; }
.footer-zones a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { color: var(--gray); font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--gray); font-size: 13px; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--amber); }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { flex-direction: column; gap: 48px; }
  .hero-right { flex: none; width: 100%; max-width: 480px; }
  .cpam-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .hero-container { padding: 0 24px !important; }
  .hero { padding: 60px 0; min-height: 100vh; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero-right { grid-template-columns: 1fr 1fr; }

  /* ══ CENTRAGE HERO ══ */
  .hero-left {
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
  }
  .hero-badge { align-self: center; }
  .hero-desc { text-align: center; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: center; width: 100%; }
  .hero-phone-cta { font-size: 17px; padding: 16px 28px; width: 100%; justify-content: center; }
  .btn-secondary { width: 100%; justify-content: center; }
  .hero-trust { justify-content: center !important; }

  /* ══ BANNIÈRE URGENCE centrée ══ */
  .urgence-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .urgence-text { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .urgence-inner .btn-primary { width: 100%; justify-content: center; }

  /* ══ CENTRAGE GLOBAL tous les boutons + contenus ══ */
  .btn-primary {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  /* Exception : boutons dans des contextes flex parent inline */
  .header-cta .btn-primary,
  .cta-topbar .btn-primary { width: auto; }

  /* Toutes les sections : titres et labels déjà centrés,
     mais on force les boutons standalone */
  .process-card,
  .service-card { text-align: center; }

  .section-label { display: inline-flex; }
  .section-title,
  .section-desc { text-align: center; }

  /* CPAM section */
  .cpam-inner { text-align: center; }
  .cpam-badges { justify-content: center; }
  .cpam-inner .btn-primary { margin-left: auto; margin-right: auto; }

  /* Contact / Formulaire */
  .contact-section h2,
  .contact-section p { text-align: center; }

  /* Footer */
  .footer-col { text-align: center; }
  .footer-col h4::after { margin: 8px auto 0; }
  .footer-zones { justify-content: center; }
  .footer-phone { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }

  /* ── Header mobile : logo compact + bouton rond visible ── */
  .header-inner { gap: 0; }
  .logo-text { font-size: 16px; }
  .logo-icon { width: 36px; height: 36px; font-size: 18px; border-radius: 10px; }
  .logo { gap: 8px; }

  /* Bouton rond doré — icône seule, toujours visible */
  .header-phone {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    font-size: 0;         /* cache le texte "Réserver un Taxi" */
    gap: 0;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(245,158,11,0.5);
  }
  .header-phone svg { width: 20px; height: 20px; flex-shrink: 0; }

  /* Navigation */
  .nav-links { display: none; }
  .urgence-badge { display: none; }

  /* Grilles */
  .services-grid { grid-template-columns: 1fr; }
  .cpam-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-topbar-left { display: none; }
  .sections-title { font-size: clamp(26px, 6vw, 36px); }
}

@media (max-width: 480px) {
  .hero-right { grid-template-columns: 1fr 1fr; }
  .cpam-stats { grid-template-columns: 1fr 1fr; }
  .cta-topbar-devis { display: none; }
  .form-card { padding: 24px; }
  .services, .process-section, .cpam-section, .testi-section, .galerie-section, .faq-section, .zones-section, .contact-section { padding: 72px 0; }
}

/* ═══════════════════════════════════════════════════════════
   FAB — Bouton flottant persistant (suit le client partout)
═══════════════════════════════════════════════════════════ */
.fab-call {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--amber-light), #b45309);
  color: var(--dark);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 22px 14px 16px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(245,158,11,0.55), 0 2px 8px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.fab-call:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 48px rgba(245,158,11,0.7), 0 4px 16px rgba(0,0,0,0.3);
  color: var(--dark);
}
/* Cercle pulsant autour du FAB */
.fab-ripple {
  position: absolute;
  inset: -6px;
  border-radius: 50px;
  background: rgba(245,158,11,0.25);
  animation: fab-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes fab-pulse {
  0%   { transform: scale(1);    opacity: 0.9; }
  70%  { transform: scale(1.2);  opacity: 0; }
  100% { transform: scale(1.2);  opacity: 0; }
}
.fab-call svg { flex-shrink: 0; position: relative; z-index: 1; }
.fab-label    { position: relative; z-index: 1; white-space: nowrap; }

/* Très petit mobile : rond icône seulement */
@media (max-width: 400px) {
  .fab-call { padding: 16px; border-radius: 50%; }
  .fab-label { display: none; }
}
