/* ════════════════════════════════════════
   CLINIQUE CARDIOLAB — styles.css
   ════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --rouge:       #C0392B;
  --rouge-fonce: #922B21;
  --rouge-light: #fdecea;
  --noir:        #0A0A0A;
  --blanc:       #FFFFFF;
  --gris-clair:  #F8F8F8;
  --gris-texte:  #666666;
  --gris-bordure:#E8E8E8;
  --transition:  0.3s ease;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.16);
  --radius:      4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --max-width:   1200px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--noir);
  background: var(--blanc);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ── TYPO ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { color: var(--gris-texte); }

/* ── CONTENEUR ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px)  { .container { padding: 0 36px; } }
@media (min-width: 1200px) { .container { padding: 0 48px; } }

/* ── SECTION GÉNÉRIQUE ── */
section { padding: 80px 0; }
@media (min-width: 768px)  { section { padding: 100px 0; } }

.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 12px;
}
.section-deco {
  width: 40px;
  height: 2px;
  background: var(--rouge);
  margin: 16px 0 24px;
}
.section-deco.center { margin: 16px auto 24px; }

/* ── COULEURS FOND ── */
.bg-blanc     { background: var(--blanc); }
.bg-gris      { background: var(--gris-clair); }
.bg-noir      { background: var(--noir); }
.bg-rouge     { background: var(--rouge); }
.text-blanc   { color: var(--blanc); }
.text-rouge   { color: var(--rouge); }

/* ── BOUTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rouge);
  color: var(--blanc);
  border-color: var(--rouge);
}
.btn-primary:hover {
  background: var(--rouge-fonce);
  border-color: var(--rouge-fonce);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(192,57,43,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--rouge);
  border-color: var(--rouge);
}
.btn-secondary:hover {
  background: var(--rouge);
  color: var(--blanc);
  transform: translateY(-1px);
}
.btn-blanc {
  background: var(--blanc);
  color: var(--rouge);
  border-color: var(--blanc);
}
.btn-blanc:hover { background: #f0f0f0; }
.btn-outline-blanc {
  background: transparent;
  color: var(--blanc);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-blanc:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--blanc);
}
.btn-wa {
  background: #25D366;
  color: var(--blanc);
  border-color: #25D366;
}
.btn-wa:hover { background: #1ebe5c; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-full { width: 100%; }

/* ── CARTE SERVICE ── */
.card {
  background: var(--blanc);
  border: 1px solid var(--gris-bordure);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--rouge);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--rouge-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { color: var(--noir); margin-bottom: 10px; }
.card p  { font-size: 14px; line-height: 1.6; }

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.badge-rouge  { background: var(--rouge);  color: var(--blanc); }
.badge-noir   { background: var(--noir);   color: var(--blanc); }
.badge-gris   { background: #f0f0f0; color: #555; }
.badge-vert   { background: #27ae60; color: var(--blanc); }
.badge-bleu   { background: #2980b9; color: var(--blanc); }

/* ── GRILLES ── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── BARRE SUPÉRIEURE ── */
.top-bar {
  background: var(--rouge);
  padding: 9px 0;
  position: relative;
  z-index: 200;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.top-bar-urgence {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-bar-urgence a { color: #fff; font-weight: 700; }
.top-bar-urgence a:hover { text-decoration: underline; }
.lang-btns { display: flex; gap: 4px; }
.lang-btn {
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  color: rgba(255,255,255,0.8);
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
.lang-btn.active, .lang-btn:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-color: #fff;
}

/* ── NAVIGATION ── */
.navbar {
  background: var(--blanc);
  border-bottom: 1px solid var(--gris-bordure);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  line-height: 1.2;
}
.nav-logo .clinique { color: var(--noir); }
.nav-logo .cardiolab { color: var(--rouge); }
.nav-logo .subtitle { font-size: 9px; font-weight: 400; color: var(--gris-texte); letter-spacing: 1px; text-transform: uppercase; display: block; }
.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gris-texte);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--rouge); }
.nav-cta { display: none; }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--noir);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  display: none;
  background: var(--blanc);
  border-top: 1px solid var(--gris-bordure);
  padding: 20px;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  box-shadow: var(--shadow-md);
  z-index: 99;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  padding: 12px 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--noir);
  border-bottom: 1px solid var(--gris-bordure);
  display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--rouge); }
.mobile-menu .btn { margin-top: 12px; width: 100%; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta   { display: flex; }
  .hamburger { display: none; }
}

/* ── HERO ── */
.hero {
  padding: 80px 0 60px;
  background: var(--blanc);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rouge-light);
  color: var(--rouge);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--rouge); }
.hero h1 { margin-bottom: 6px; }
.hero-sub {
  font-size: 16px;
  color: var(--gris-texte);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 50px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gris-bordure);
  border: 1px solid var(--gris-bordure);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 480px;
}
.stat-item {
  background: var(--gris-clair);
  padding: 20px;
  border-left: 3px solid var(--rouge);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--rouge);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--gris-texte); margin-top: 4px; }

/* ── HERO PAGE INTERNE ── */
.page-hero {
  background: var(--gris-clair);
  padding: 60px 0;
  border-bottom: 1px solid var(--gris-bordure);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.page-hero p  { font-size: 16px; max-width: 600px; }

/* ── SECTION RYTHMOLOGIE (fond noir) ── */
.section-noir { background: var(--noir); }
.section-noir .section-tag  { color: rgba(192,57,43,0.9); }
.section-noir h2             { color: var(--blanc); }
.section-noir p              { color: rgba(255,255,255,0.72); }
.section-noir .section-deco  { background: var(--rouge); }
.ryth-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.ryth-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.5;
}
.ryth-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rouge);
  flex-shrink: 0;
  margin-top: 8px;
}
.dr-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px;
}
.dr-card h3 { color: var(--blanc); font-size: 1.4rem; margin-bottom: 6px; }
.dr-card .dr-titre { color: var(--rouge); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.dr-card p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 16px 0; }
.dr-card .dr-tel { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--rouge); }
.dr-card .dr-dispo { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* ── SECTION ROUGE ── */
.section-rouge { background: var(--rouge); }
.section-rouge h2  { color: var(--blanc); }
.section-rouge p   { color: rgba(255,255,255,0.85); }
.fidelite-levels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
  justify-content: center;
}
.fid-level {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  text-align: center;
  min-width: 100px;
  transition: background var(--transition);
}
.fid-level:hover { background: rgba(255,255,255,0.25); }
.fid-medal { font-size: 22px; display: block; margin-bottom: 6px; }
.fid-name  { font-size: 12px; font-weight: 700; color: #fff; letter-spacing: 0.5px; }
.fid-pct   { font-size: 18px; font-weight: 800; color: #fff; display: block; margin-top: 4px; font-family: 'Playfair Display', serif; }

/* ── TÉMOIGNAGES ── */
.temoignage-card {
  background: var(--gris-clair);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--gris-bordure);
}
.stars { color: #f1c40f; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.temoignage-card blockquote {
  font-size: 14px;
  color: var(--gris-texte);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 14px;
}
.temoignage-card cite {
  font-size: 13px;
  font-weight: 600;
  color: var(--noir);
  font-style: normal;
}
.note-globale {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.note-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--noir);
  line-height: 1;
}
.note-detail .stars { margin-bottom: 4px; }
.note-detail p { font-size: 13px; }

/* ── CTA ROUGE ── */
.cta-section {
  background: var(--rouge);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: var(--blanc); margin-bottom: 12px; }
.cta-section p  { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 32px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── TRANSPORT ── */
.transport-card { background: var(--blanc); border: 1px solid var(--gris-bordure); border-radius: var(--radius-md); padding: 28px; transition: all var(--transition); }
.transport-card:hover { border-color: var(--rouge); box-shadow: var(--shadow-md); }
.tc-stripe { height: 4px; border-radius: 2px 2px 0 0; margin: -28px -28px 24px; }
.tc-stripe-rouge  { background: linear-gradient(90deg, var(--rouge-fonce), var(--rouge)); }
.tc-stripe-vert   { background: linear-gradient(90deg, #1a7a44, #27ae60); }
.tc-stripe-bleu   { background: linear-gradient(90deg, #1a5276, #2980b9); }

/* ── LOCALISATION ── */
.map-iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: var(--radius-md);
  display: block;
}
.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.info-icon {
  width: 38px;
  height: 38px;
  background: var(--rouge-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; }
.info-label { font-size: 11px; font-weight: 700; color: var(--rouge); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.info-val { font-size: 14px; color: var(--noir); }
.info-val a { color: var(--rouge); font-weight: 600; }

/* ── BILAN CARD ── */
.bilan-card {
  background: var(--blanc);
  border: 1px solid var(--gris-bordure);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.bilan-card:hover { border-color: var(--rouge); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.bilan-stripe { height: 3px; background: linear-gradient(90deg, var(--rouge-fonce), var(--rouge)); }
.bilan-body { padding: 22px; }
.bilan-body h3 { font-size: 15px; margin-bottom: 8px; color: var(--noir); line-height: 1.4; }
.bilan-public { font-size: 12px; color: var(--gris-texte); margin-bottom: 10px; }
.bilan-items { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.bilan-item { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--gris-texte); line-height: 1.4; }
.bilan-item::before { content: '✓'; color: var(--rouge); font-weight: 700; flex-shrink: 0; }
.bilan-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.meta-chip { background: var(--gris-clair); border-radius: 20px; padding: 3px 10px; font-size: 11px; font-weight: 600; color: var(--gris-texte); }
.bilan-footer { padding: 0 22px 22px; display: flex; flex-direction: column; gap: 8px; }

/* ── FORMATION CARD ── */
.formation-card {
  background: var(--blanc);
  border: 1px solid var(--gris-bordure);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.formation-card:hover { border-color: var(--rouge); box-shadow: var(--shadow-md); }
.fc-header { padding: 24px 24px 0; }
.fc-body   { padding: 0 24px 8px; }
.fc-footer { padding: 12px 24px 24px; display: flex; flex-direction: column; gap: 8px; }
.fc-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--rouge-light); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.fc-icon svg { width: 22px; height: 22px; }
.fc-title { font-size: 16px; color: var(--noir); margin-bottom: 8px; line-height: 1.3; }
.fc-animateur { font-size: 12px; color: var(--rouge); font-weight: 600; margin-bottom: 10px; }
.fc-desc { font-size: 13px; color: var(--gris-texte); line-height: 1.6; margin-bottom: 14px; }
.fc-modules { display: flex; flex-direction: column; gap: 8px; }
.fc-module { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--gris-texte); }
.fc-module::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--rouge); flex-shrink: 0; margin-top: 8px; }

/* ── SPÉCIALITÉS ── */
.specialite-section { margin-bottom: 40px; }
.specialite-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--noir);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gris-bordure);
  display: flex;
  align-items: center;
  gap: 10px;
}
.specialite-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 600px) { .specialite-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .specialite-grid { grid-template-columns: repeat(3, 1fr); } }
.specialite-item {
  background: var(--blanc);
  border: 1px solid var(--gris-bordure);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
  font-size: 14px;
  color: var(--noir);
  font-weight: 500;
}
.specialite-item:hover { border-color: var(--rouge); background: var(--rouge-light); }
.specialite-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rouge); flex-shrink: 0; }
.specialite-vedette {
  border-color: var(--rouge) !important;
  background: var(--rouge-light);
}

/* ── ÉQUIPE ── */
.team-card {
  background: var(--blanc);
  border: 1px solid var(--gris-bordure);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { border-color: var(--rouge); box-shadow: var(--shadow-sm); }
.team-photo {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #fdecea, #f5e6e5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.team-info { padding: 16px; }
.team-name { font-size: 14px; font-weight: 700; color: var(--noir); margin-bottom: 4px; }
.team-spec { font-size: 12px; color: var(--rouge); font-weight: 600; }
.team-note { font-size: 11px; color: var(--gris-texte); margin-top: 3px; }

/* ── VALEURS ── */
.valeur-item {
  text-align: center;
  padding: 24px 16px;
}
.valeur-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--rouge-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px;
}
.valeur-item h4 { font-size: 15px; color: var(--noir); margin-bottom: 6px; }
.valeur-item p  { font-size: 13px; }

/* ── FORMULAIRE CONTACT ── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--noir);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}
.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gris-bordure);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--noir);
  background: var(--blanc);
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus { border-color: var(--rouge); }
.form-input.error { border-color: #e74c3c; }
.form-error { font-size: 11px; color: #e74c3c; font-weight: 600; margin-top: 4px; display: none; }
.form-error.show { display: block; }
textarea.form-input { resize: vertical; min-height: 120px; }

/* ── RADIO STYLISÉ ── */
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border: 1.5px solid var(--gris-bordure);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
}
.radio-item:hover { border-color: var(--rouge); background: var(--rouge-light); }
.radio-item.selected { border-color: var(--rouge); background: var(--rouge-light); }
.radio-item input[type="radio"] { display: none; }
.radio-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid #ccc;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.2s;
}
.radio-dot::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--rouge); opacity: 0; transition: opacity 0.15s; }
.radio-item.selected .radio-dot { border-color: var(--rouge); }
.radio-item.selected .radio-dot::after { opacity: 1; }
.radio-text { font-size: 13px; font-weight: 500; color: var(--noir); }

/* ── BARRE PROGRESSION FORMULAIRE ── */
.progress-wrap { background: var(--gris-clair); padding: 18px 0; border-bottom: 1px solid var(--gris-bordure); }
.steps { display: flex; align-items: center; justify-content: center; max-width: 400px; margin: 0 auto; }
.step-item { display: flex; flex-direction: column; align-items: center; gap: 5px; flex: 1; }
.step-circle {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--gris-bordure);
  background: var(--blanc);
  color: #bbb;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.step-name { font-size: 10px; font-weight: 600; color: #bbb; text-transform: uppercase; letter-spacing: 0.5px; text-align: center; }
.step-item.active .step-circle { border-color: var(--rouge); background: var(--rouge); color: var(--blanc); }
.step-item.active .step-name   { color: var(--rouge); }
.step-item.done .step-circle   { border-color: var(--rouge); background: var(--rouge); color: var(--blanc); }
.step-item.done .step-name     { color: var(--rouge); }
.step-line { flex: 1; height: 2px; background: var(--gris-bordure); margin-bottom: 20px; max-width: 50px; transition: background 0.3s; }
.step-line.done { background: var(--rouge); }

/* ── FORMULE CARD (formulaire devis) ── */
.formule-card {
  background: var(--blanc);
  border: 2px solid var(--gris-bordure);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
  cursor: pointer;
}
.formule-card:hover { border-color: var(--rouge); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.formule-card-top { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.formule-icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--rouge-light); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.formule-name { font-size: 18px; font-weight: 700; color: var(--noir); margin-bottom: 6px; font-family: 'Playfair Display', serif; }
.formule-desc { font-size: 13px; color: var(--gris-texte); line-height: 1.6; }

/* ── CONFIRMATION ── */
.confirmation-card { background: var(--blanc); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.conf-header { background: linear-gradient(135deg, #1a7a44, #27ae60); padding: 36px 28px; text-align: center; }
.conf-header .check { font-size: 56px; margin-bottom: 12px; }
.conf-header h2 { color: var(--blanc); font-size: 1.5rem; }
.conf-header p  { color: rgba(255,255,255,0.85); margin-top: 6px; }
.conf-body { padding: 28px; }
.conf-msg { font-size: 14px; color: var(--gris-texte); line-height: 1.8; background: var(--gris-clair); border-left: 4px solid #27ae60; border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 20px; margin-bottom: 24px; }
.conf-btns { display: flex; flex-direction: column; gap: 10px; }

/* ── FOOTER ── */
footer {
  background: var(--noir);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
@media (min-width: 600px)  { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-logo .logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.footer-logo .clinique-f { color: rgba(255,255,255,0.9); }
.footer-logo .cardiolab-f { color: var(--rouge); }
.footer-desc { font-size: 13px; line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--blanc); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 12px; }
.footer-bottom a { color: var(--rouge); }

/* ── WHATSAPP FLOTTANT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  z-index: 999;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,211,102,0.6); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--noir);
  color: var(--blanc);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--noir);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── URGENCE BOX ── */
.urgence-box {
  background: var(--rouge);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  color: var(--blanc);
}
.urgence-box h3 { font-size: 1.3rem; color: var(--blanc); margin-bottom: 8px; }
.urgence-box p  { color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.urgence-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 8px;
}

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── UTILITAIRES ── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.mt-8  { margin-top:  8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom:  8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.gap-8  { gap:  8px; }
.gap-12 { gap: 12px; }
.flex   { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-col  { flex-direction: column; }
.divider { height: 1px; background: var(--gris-bordure); margin: 24px 0; }

/* ── SECTION HELPERS ── */
.section-blanc { background: var(--blanc); }
.section-gris  { background: var(--gris-clair); }
.section-noir  { background: var(--noir); }
.section-rouge { background: var(--rouge); }

/* ── PAGE HERO ── */
.page-hero { padding: 5rem 0 3rem; margin-top: 70px; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .hero-sub { max-width: 600px; margin: 0 auto; }
@media (max-width: 768px) { .page-hero { padding: 3rem 0 2rem; } }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { max-width: 600px; margin: 0 auto; }

/* ── SPECIALITE VEDETTE ── */
.specialite-vedette {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  background: var(--gris-clair);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border-left: 4px solid var(--rouge);
}
.specialite-vedette-icon {
  font-size: 4rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: .5rem;
}
.specialite-vedette-content h3 { margin-bottom: .75rem; font-size: 1.4rem; }
@media (max-width: 640px) {
  .specialite-vedette { grid-template-columns: 1fr; gap: 1rem; }
  .specialite-vedette-icon { font-size: 2.5rem; justify-content: flex-start; }
}

/* ── SPECIALITE ITEM ── */
.specialite-item {
  background: var(--blanc);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--gris-bordure);
  transition: box-shadow var(--transition);
}
.specialite-item:hover { box-shadow: var(--shadow-md); }
.specialite-icon { font-size: 2rem; margin-bottom: 1rem; }
.specialite-item h4 { margin-bottom: .5rem; }

/* ── DR CARD (VEDETTE MÉDECIN) ── */
.dr-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2.5rem;
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gris-bordure);
}
.dr-card-photo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.dr-initials {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rouge), var(--rouge-fonce));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
}
.dr-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--rouge);
  margin-bottom: .75rem;
}
.dr-card-content h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.dr-expertise { padding-left: 1.2rem; margin-top: .75rem; }
.dr-expertise li { list-style: disc; color: var(--gris-texte); margin-bottom: .3rem; }
@media (max-width: 640px) {
  .dr-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .dr-card-photo { justify-content: flex-start; }
}

/* ── TEAM CARD ── */
.team-card {
  background: var(--blanc);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 1px solid var(--gris-bordure);
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gris-clair);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-initials {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ddd, #bbb);
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.team-card h4 { font-size: 1rem; margin-bottom: .25rem; }
.team-spec { font-size: .85rem; color: var(--rouge); font-weight: 500; }

/* ── BILAN CARD ── */
.bilan-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gris-bordure);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.bilan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.bilan-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.bilan-card h3 { font-size: 1.2rem; margin-bottom: .75rem; }
.bilan-card p { margin-bottom: 1rem; }
.bilan-card ul { padding-left: 1.2rem; margin-bottom: 1.5rem; flex: 1; }
.bilan-card ul li { list-style: disc; color: var(--gris-texte); margin-bottom: .3rem; font-size: .9rem; }

/* ── FORMATION CARD ── */
.formation-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gris-bordure);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.formation-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.formation-header {
  padding: 2rem;
  text-align: center;
  color: #fff;
}
.formation-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.formation-header h3 { color: #fff; font-size: 1.2rem; margin-bottom: .4rem; }
.formation-header p { color: rgba(255,255,255,.8); font-size: .85rem; }
.formation-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.formation-body p { margin-bottom: 1rem; font-size: .9rem; }
.formation-body ul { padding-left: 1.2rem; margin-bottom: 1.5rem; flex: 1; }
.formation-body ul li { list-style: disc; color: var(--gris-texte); margin-bottom: .3rem; font-size: .875rem; }
.formation-footer { margin-top: auto; }

/* ── TRANSPORT CARD ── */
.transport-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gris-bordure);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.transport-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.transport-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.transport-card h3 { font-size: 1.15rem; }
.transport-card p { font-size: .9rem; }
.transport-card ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.transport-card ul li { list-style: disc; color: var(--gris-texte); font-size: .875rem; margin-bottom: .25rem; }

/* ── FORMULE CARD (DEVIS STEP 1) ── */
.formule-card {
  background: var(--blanc);
  border: 2px solid var(--gris-bordure);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.formule-card:hover {
  border-color: var(--rouge);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.formule-card h3 { margin-bottom: .75rem; }
.formule-card p { font-size: .9rem; }

/* ── DEVIS FORM ── */
.devis-form-wrap { max-width: 680px; margin: 0 auto; }
.devis-form { background: var(--blanc); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gris-bordure); }
.devis-section { background: var(--blanc); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gris-bordure); }
@media (max-width: 640px) {
  .devis-form { padding: 1.5rem; }
  .devis-section { padding: 1.5rem; }
}

/* ── CONTACT LAYOUT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: flex-start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-info h2 { margin-bottom: 2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}
.contact-item strong { display: block; color: var(--noir); font-weight: 600; margin-bottom: .2rem; }
.contact-item p, .contact-item a { font-size: .95rem; }
.contact-item a { color: var(--rouge); }
.contact-item a:hover { text-decoration: underline; }

.contact-form-wrap { background: var(--blanc); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gris-bordure); }
.contact-form-wrap h2 { margin-bottom: .5rem; }
@media (max-width: 640px) { .contact-form-wrap { padding: 1.5rem; } }

/* ── CONFIRMATION CARD ── */
.confirmation-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gris-bordure);
  text-align: center;
}
.conf-header { margin-bottom: 2rem; }
.conf-checkmark { font-size: 3.5rem; margin-bottom: 1rem; }
.conf-header h2 { color: #27AE60; }
.conf-body { text-align: left; max-width: 520px; margin: 0 auto 2rem; }
.conf-msg { line-height: 1.8; color: var(--gris-texte); }
.conf-msg strong { color: var(--noir); }
.conf-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BTN OUTLINE ── */
.btn-outline {
  background: transparent;
  color: var(--rouge);
  border: 2px solid var(--rouge);
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--rouge); color: #fff; }
.btn-outline-blanc {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
  transition: background var(--transition);
}
.btn-outline-blanc:hover { background: rgba(255,255,255,.15); }

/* ── GRID 4 ── */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .grid-4 { grid-template-columns: 1fr; } }

/* ── FIELD ERROR ── */
.field-error {
  display: none;
  color: var(--rouge);
  font-size: .8rem;
  margin-top: .25rem;
}
.field-error.show { display: block; }
input.error, select.error, textarea.error { border-color: var(--rouge) !important; }

/* ── RADIO GROUP ── */
.radio-group { display: flex; flex-direction: column; gap: .6rem; margin-top: .5rem; }
.radio-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  border: 2px solid var(--gris-bordure);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.radio-item:hover { border-color: var(--rouge); background: var(--rouge-light); }
.radio-item.selected { border-color: var(--rouge); background: var(--rouge-light); }
.radio-dot {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gris-bordure);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--transition);
}
.radio-item.selected .radio-dot { border-color: var(--rouge); }
.radio-item.selected .radio-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rouge);
}
.radio-text { font-size: .9rem; }
