/* ============================================
   CABINET MÉDICAL ZÉNITH — Styles
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #1a4f8a;
  --blue-dark:  #0f3460;
  --blue-light: #2d7dd2;
  --teal:       #0d9488;
  --teal-light: #14b8a6;
  --accent:     #e8a020;
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-400:   #94a3b8;
  --gray-600:   #475569;
  --gray-800:   #1e293b;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--teal); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-light); border-color: var(--teal-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,148,136,.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-nav {
  background: var(--teal);
  color: var(--white);
  padding: 10px 22px;
  font-size: .88rem;
}
.btn-nav:hover { background: var(--teal-light); transform: translateY(-1px); }
.btn-full { width: 100%; }

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  background: rgba(13,148,136,.1);
  color: var(--teal);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-header h2 { font-size: 2.1rem; font-family: 'Playfair Display', serif; margin-bottom: 14px; }
.section-header p { color: var(--gray-600); max-width: 560px; margin: 0 auto; }
h2 { font-size: 2rem; font-family: 'Playfair Display', serif; line-height: 1.25; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow);
}
.navbar.scrolled .nav-links a { color: var(--gray-800); }
.navbar.scrolled .nav-logo { color: var(--gray-800); }
.navbar.scrolled .logo-sub { color: var(--gray-600); }
.navbar.scrolled .nav-burger span { background: var(--gray-800); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
}
.logo-icon {
  font-size: 1.5rem;
  color: var(--teal-light);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title { font-size: 1.1rem; font-weight: 700; }
.logo-sub { font-size: .7rem; font-weight: 400; opacity: .8; }

.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--teal) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(45,125,210,.25) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(20,184,166,.2) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: center;
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: .03em;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-content h1 .accent { color: var(--teal-light); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-info {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  padding: 18px 32px;
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
  justify-content: center;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.info-icon { font-size: 1.2rem; }
.info-item div { display: flex; flex-direction: column; text-align: left; }
.info-item strong { font-size: .9rem; font-weight: 600; }
.info-item span { font-size: .8rem; opacity: .8; }
.info-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,.4);
  border-bottom: 2px solid rgba(255,255,255,.4);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(5px)} }

/* ============================================
   STATS
   ============================================ */
.stats {
  background: var(--blue-dark);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.1);
  color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--teal-light);
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  text-align: center;
  margin-top: 4px;
}

/* ============================================
   À PROPOS
   ============================================ */
.apropos {
  padding: 96px 0;
  background: var(--white);
}
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}
.apropos-image { position: relative; }
.image-card {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.image-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 150px; height: 150px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
}
.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.doc-initial {
  font-size: 1rem;
  font-weight: 500;
  opacity: .8;
}
.doc-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
.image-badge-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .85rem;
}
.image-badge-card div { display: flex; flex-direction: column; text-align: left; }
.image-badge-card strong { font-weight: 600; }
.image-badge-card span { opacity: .8; font-size: .78rem; }
.badge-icon { font-size: 1.3rem; }

.clinic-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  margin-top: 16px;
}
.clinic-icon { font-size: 1.8rem; }
.clinic-card div { display: flex; flex-direction: column; }
.clinic-card strong { font-size: .9rem; font-weight: 600; color: var(--blue-dark); }
.clinic-card span { font-size: .8rem; color: var(--gray-600); }

.apropos-content .section-label { margin-bottom: 12px; }
.apropos-content h2 { margin-bottom: 20px; }
.apropos-content p { color: var(--gray-600); margin-bottom: 16px; }

.apropos-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 32px;
}
.feature {
  display: flex;
  gap: 14px;
}
.feature-icon {
  font-size: 1.3rem;
  background: rgba(13,148,136,.1);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature strong { display: block; font-weight: 600; margin-bottom: 2px; }
.feature p { color: var(--gray-600); font-size: .88rem; margin: 0; }

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 96px 0;
  background: var(--gray-50);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}
.service-card.featured {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  border-color: transparent;
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,.75); }
.service-card.featured .service-list li { color: rgba(255,255,255,.85); }
.service-card.featured .service-list li::before { color: var(--teal-light); }
.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--blue-dark); }
.service-card p { font-size: .88rem; color: var(--gray-600); margin-bottom: 16px; }
.service-list { display: flex; flex-direction: column; gap: 6px; }
.service-list li {
  font-size: .84rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-list li::before { content: '✓'; color: var(--teal); font-weight: 700; font-size: .8rem; }
.service-tag {
  display: inline-block;
  background: rgba(13,148,136,.12);
  color: var(--teal);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 16px;
}
.service-card.featured .service-tag {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

/* ============================================
   TARIFS
   ============================================ */
.tarifs {
  padding: 96px 0;
  background: var(--white);
}
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.tarif-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.tarif-card.highlight {
  background: linear-gradient(135deg, var(--blue-dark), var(--teal));
  border-color: transparent;
  color: var(--white);
}
.tarif-card.highlight .tarif-title { color: var(--white); }
.tarif-card.highlight .tarif-item { border-color: rgba(255,255,255,.15); }
.tarif-card.highlight .tarif-item span:first-child { color: rgba(255,255,255,.85); }
.tarif-card.highlight .tarif-price { color: var(--teal-light); }
.tarif-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.tarif-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 20px;
}
.tarif-list { display: flex; flex-direction: column; gap: 0; }
.tarif-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  gap: 12px;
}
.tarif-item:last-child { border-bottom: none; }
.tarif-item span:first-child { font-size: .88rem; color: var(--gray-600); }
.tarif-price {
  font-weight: 700;
  font-size: .9rem;
  color: var(--blue);
  white-space: nowrap;
}
.tarif-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(232,160,32,.12);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-top: 16px;
  font-size: .82rem;
  color: var(--gray-600);
}
.tarif-footer {
  text-align: center;
  color: var(--gray-600);
  font-size: .85rem;
  margin-top: 8px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

/* ============================================
   RENDEZ-VOUS
   ============================================ */
.rendez-vous {
  padding: 96px 0;
  background: var(--gray-50);
}
.rdv-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.rdv-info .section-label { margin-bottom: 12px; }
.rdv-info h2 { margin-bottom: 14px; }
.rdv-info > p { color: var(--gray-600); margin-bottom: 28px; }

.rdv-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.rdv-option {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: all var(--transition);
}
.rdv-option:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateX(4px); }
.rdv-option.whatsapp:hover { border-color: #25d366; }
.rdv-option-icon { font-size: 1.4rem; width: 40px; text-align: center; }
.rdv-option div { display: flex; flex-direction: column; }
.rdv-option strong { font-size: .9rem; font-weight: 600; color: var(--gray-800); }
.rdv-option span { font-size: .82rem; color: var(--gray-600); }

.rdv-horaires {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.rdv-horaires h4 { font-size: .9rem; font-weight: 700; margin-bottom: 14px; color: var(--blue-dark); }
.horaire-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .88rem;
  color: var(--gray-600);
}
.horaire-row:last-child { border-bottom: none; }
.horaire-row span:last-child { font-weight: 600; color: var(--gray-800); }
.horaire-row.urgent span { color: var(--teal); font-weight: 600; }

.rdv-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.rdv-form-wrapper h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-100);
}
.rdv-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .83rem; font-weight: 600; color: var(--gray-800); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,.1);
}
.form-group input.error,
.form-group select.error { border-color: #ef4444; }
.form-group textarea { resize: vertical; }
.form-note { font-size: .78rem; color: var(--gray-400); text-align: center; margin-top: 4px; }

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h4 { font-size: 1.3rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.form-success p { color: var(--gray-600); margin-bottom: 24px; }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 96px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--transition);
}
.contact-item:last-child { border-bottom: none; }
.contact-item:hover { background: var(--white); }
.contact-icon { font-size: 1.3rem; margin-top: 2px; }
.contact-item strong { display: block; font-size: .85rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 2px; }
.contact-item p { font-size: .88rem; color: var(--gray-600); margin: 0; }
.contact-item a { color: var(--teal); font-weight: 500; }
.contact-item a:hover { color: var(--teal-light); }
.contact-item em { font-size: .8rem; opacity: .75; font-style: italic; }

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.map-wrapper iframe { display: block; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.map-btn {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 16px;
  text-align: center;
  font-size: .9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .nav-logo { margin-bottom: 16px; color: var(--white); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 20px; }
.social-btn {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--teal); border-color: var(--teal); }

.footer-links h4,
.footer-contact h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li { font-size: .88rem; color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-links li:hover { color: var(--teal-light); }
.footer-links a { color: inherit; }

.footer-contact p {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
}
.footer-contact a { color: var(--teal-light); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background: #25d366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all var(--transition);
}
.whatsapp-fab:hover { background: #1ebe5d; transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.55); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .apropos-grid { grid-template-columns: 1fr; gap: 40px; }
  .apropos-image { max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tarifs-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto 24px; }
  .rdv-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.1); border-top: 1px solid rgba(255,255,255,.1); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--blue-dark);
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 999;
  }
  .nav-links.open a {
    color: var(--white);
    font-size: 1.2rem;
    padding: 12px 24px;
  }
  .nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .navbar.scrolled .nav-burger span { background: var(--gray-800); }

  .hero-info { gap: 14px; padding: 14px 20px; }
  .info-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .rdv-form-wrapper { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-header h2 { font-size: 1.7rem; }
  h2 { font-size: 1.65rem; }
}

@media (max-width: 480px) {
  .hero-content { padding: 100px 16px 60px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
