/* ===== VARIABLES ===== */
:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE6D6;
  --sage: #7A9E7E;
  --sage-dark: #5E8462;
  --sage-light: #A8C4AB;
  --terracotta: #C17B5A;
  --terracotta-light: #D4967A;
  --sand: #E8DCC8;
  --off-white: #FAFAF7;
  --text-dark: #2C2C2C;
  --text-mid: #5A5A5A;
  --text-light: #8A8A8A;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

#navbar.scrolled {
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.6rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.nav-logo-sub {
  font-size: 0.65rem;
  color: var(--sage);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--sage); }
.nav-links a:hover::after { width: 100%; }

.btn-rdv-nav {
  background: var(--sage);
  color: white !important;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s ease !important;
  text-decoration: none;
}

.btn-rdv-nav:hover {
  background: var(--sage-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(122, 158, 126, 0.35);
}

.btn-rdv-nav::after { display: none !important; }

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--sage); }

.mobile-menu .btn-rdv-mobile {
  background: var(--sage);
  color: white !important;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: rgba(122, 158, 126, 0.15);
  color: var(--sage-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: linear-gradient(135deg, var(--cream) 0%, #EDE8DC 50%, #E8E0D0 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  right: -10%;
  top: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122, 158, 126, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-shape-2 {
  position: absolute;
  left: -5%;
  bottom: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(193, 123, 90, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(122, 158, 126, 0.12);
  border: 1px solid rgba(122, 158, 126, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--sage-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.hero-title em {
  font-style: normal;
  color: var(--sage);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sage);
  color: white;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(122, 158, 126, 0.3);
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(122, 158, 126, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-dark);
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--sand);
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  border-color: var(--sage);
  color: var(--sage);
  transform: translateY(-2px);
}

/* Hero Card */
.hero-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  position: relative;
}

.hero-card-image {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%);
  border-radius: 16px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

/* Floating badges */
.floating-badge {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  animation: float 3s ease-in-out infinite;
}

.floating-badge:nth-child(2) { animation-delay: 1s; }
.floating-badge:nth-child(3) { animation-delay: 2s; }

.badge-top-left {
  top: -15px;
  left: -20px;
}

.badge-top-right {
  top: 20px;
  right: -20px;
}

.badge-bottom-left {
  bottom: 80px;
  left: -25px;
}

/* ===== TREATMENTS ===== */
#traitements {
  background: var(--off-white);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.treatment-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.treatment-card:hover::before { transform: scaleX(1); }

.treatment-icon {
  width: 60px;
  height: 60px;
  background: rgba(122, 158, 126, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  transition: background 0.3s;
}

.treatment-card:hover .treatment-icon {
  background: rgba(122, 158, 126, 0.2);
}

.treatment-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.treatment-tag {
  background: var(--cream);
  color: var(--sage-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

.treatment-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.treatment-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== TEAM ===== */
#equipe {
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.team-photo-container {
  position: relative;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 60%, var(--sage-dark) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 20px 60px rgba(122, 158, 126, 0.25);
}

.team-photo-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: white;
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  text-align: center;
}

.team-photo-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
}

.team-photo-badge-label {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-info h2 {
  margin-bottom: 0.3rem;
}

.team-title {
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.team-bio {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.credentials {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.credential-icon {
  width: 28px;
  height: 28px;
  background: rgba(122, 158, 126, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  color: var(--sage-dark);
}

/* ===== TESTIMONIALS ===== */
#avis {
  background: var(--cream-dark);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header .section-subtitle {
  margin: 0 auto 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover { transform: translateY(-4px); }

.quote-icon {
  font-size: 2.5rem;
  color: var(--sage-light);
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 1rem;
  display: block;
}

.stars {
  color: #F5A623;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.author-treatment {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Reviews Carousel */
.reviews-carousel-wrapper {
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5rem;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  animation: scrollReviews 35s linear infinite;
  width: max-content;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  min-width: 340px;
  max-width: 340px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.review-meta {
  font-size: 0.75rem;
  color: var(--text-light);
}

.review-stars {
  color: #F5A623;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
}

.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.reviews-google-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.reviews-google-badge strong {
  color: var(--text-dark);
  font-size: 1rem;
}

.reviews-google-badge span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.reviews-see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--sage);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}

.reviews-see-all:hover { color: var(--sage-dark); }

@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Google Map — full width before footer */
.google-map-full {
  width: 100%;
  line-height: 0;
}

.google-map-full iframe {
  display: block;
}

/* ===== CONTACT ===== */
#contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(122, 158, 126, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.contact-item-text span,
.contact-item-text a {
  font-size: 0.9rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item-text a:hover { color: var(--sage); }

.horaires {
  background: var(--cream);
  border-radius: 16px;
  padding: 1.5rem;
}

.horaires h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.horaire-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: var(--text-mid);
}

.horaire-row:last-child { border-bottom: none; }

.horaire-row span:last-child { font-weight: 600; color: var(--text-dark); }

/* Doctolib CTA block */
.doctolib-block {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
}

.doctolib-logo {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.doctolib-block h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.doctolib-block p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-doctolib {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #0596DE;
  color: white;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  width: 100%;
  box-shadow: 0 4px 20px rgba(5, 150, 222, 0.3);
}

.btn-doctolib:hover {
  background: #0480be;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 150, 222, 0.4);
}

.doctolib-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.doctolib-feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-light);
}

.doctolib-feature-icon {
  color: var(--sage);
  font-weight: 700;
}

.doctolib-phone-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand);
  font-size: 0.85rem;
  color: var(--text-mid);
}

.doctolib-phone-note a {
  color: var(--sage-dark);
  font-weight: 700;
  text-decoration: none;
}

.doctolib-phone-note a:hover { text-decoration: underline; }

/* ===== SECTEUR BANNER ===== */
.secteur-banner {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  padding: 3rem 1.5rem;
  text-align: center;
}

.secteur-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.secteur-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
}

.secteur-icon {
  font-size: 1.5rem;
}

.secteur-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.secteur-item span {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 300px;
}

.footer-col h4 {
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--sage-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-logo-text { color: white; }
.footer-logo-text .nav-logo-sub { color: var(--sage-light); }

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-card { max-width: 500px; margin: 0 auto; }
  .team-photo-container { max-width: 400px; margin: 0 auto; }
  .team-photo-badge { right: 10px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .section { padding: 3.5rem 1.2rem; }

  .hero-title { font-size: 2rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .floating-badge { display: none; }

  .treatments-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .secteur-banner .container { flex-direction: column; gap: 1.5rem; }

  .doctolib-features { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 0.7rem; }
  .hero-title { font-size: 1.75rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

  .section-title { font-size: 1.6rem; }

  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .hero-stat-num { font-size: 1.3rem; }
}
