﻿/* ===== VARIABLES PREMIUM — DA SM SECRÉTARIAT ===== */
:root {
  --primary-gold: #C89F7B;          /* Rose gold / cuivre clair */
  --primary-gold-light: #D8B38C;    /* Rose gold clair */
  --secondary-rose: #A67B5B;        /* Cuivre profond */
  --accent-blue: #6B4F3A;           /* Brun moyen */
  --neutral-white: #FDFBF7;         /* Ivoire */
  --neutral-cream: #F5EFE6;         /* Crème */
  --neutral-dark: #2E211A;          /* Brun chocolat profond */
  --neutral-gray: #7A6A5D;          /* Gris chaud */
  
  --gradient-primary: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-rose) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-gold) 100%);
  --gradient-dark: linear-gradient(135deg, #3B2A20 0%, #2E211A 100%);
  
  --shadow-soft: 0 4px 20px rgba(46, 33, 26, 0.08);
  --shadow-medium: 0 8px 30px rgba(46, 33, 26, 0.12);
  --shadow-strong: 0 15px 50px rgba(46, 33, 26, 0.15);
  
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-script: 'Great Vibes', cursive;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* ===== RATING ICONS ===== */
.bi-star-fill {
    display: none;
}
/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--neutral-dark);
  background: var(--neutral-white);
  overflow-x: hidden;
}

::selection {
  background: var(--primary-gold);
  color: white;
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #F5EFE6 0%, #FDFBF7 50%, #F0E8DC 100%);
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.1;
  animation: float 20s infinite linear;
}

.shape-1 { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; }
.shape-2 { width: 120px; height: 120px; top: 60%; right: 15%; animation-delay: -5s; }
.shape-3 { width: 60px; height: 60px; top: 80%; left: 70%; animation-delay: -10s; }
.shape-4 { width: 100px; height: 100px; top: 10%; right: 30%; animation-delay: -15s; }
.shape-5 { width: 140px; height: 140px; top: 40%; left: 5%; animation-delay: -7s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(90deg); }
  50% { transform: translateY(-40px) rotate(180deg); }
  75% { transform: translateY(-20px) rotate(270deg); }
}

/* ===== NAVBAR PREMIUM ===== */
.glass-nav {
  background: linear-gradient(135deg, rgba(245, 239, 230, 0.78) 0%, rgba(240, 232, 220, 0.72) 100%);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(200, 159, 123, 0.22);
  transition: var(--transition-smooth);
  padding: 15px 0;
}

.glass-nav.scrolled {
  background: linear-gradient(135deg, rgba(245, 239, 230, 0.94) 0%, rgba(236, 226, 212, 0.92) 100%);
  border-bottom-color: rgba(200, 159, 123, 0.38);
  box-shadow: 0 6px 26px rgba(46, 33, 26, 0.1);
  padding: 10px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold-light);
  font-size: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  border-radius: 50%;
  transform: scale(1.15);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--neutral-dark);
  line-height: 1;
}

.brand-tagline {
  font-size: 12px;
  color: var(--neutral-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-toggler {
  border: none;
  padding: 8px;
  background: transparent;
  position: relative;
  width: 40px;
  height: 40px;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--neutral-dark);
  margin: 5px 0;
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-link {
  position: relative;
  font-weight: 500;
  color: var(--neutral-dark) !important;
  padding: 12px 20px !important;
  margin: 0 5px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
  z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
  left: 0;
}

.nav-link:hover,
.nav-link.active {
  color: white !important;
  transform: translateY(-2px);
}

.btn-phone {
  background: var(--gradient-primary);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  animation: pulse 2s infinite;
}

.btn-phone:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 159, 123, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(200, 159, 123, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 159, 123, 0); }
}

/* ===== HERO PREMIUM ===== */
.hero-premium {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 159, 123, 0.1);
  color: var(--primary-gold);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(200, 159, 123, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  animation: badgeShine 4s ease-in-out infinite;
}

@keyframes badgeShine {
  0%, 55% { left: -70%; }
  100% { left: 140%; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--neutral-dark);
}

.gradient-text {
  background: linear-gradient(120deg, var(--primary-gold) 0%, var(--secondary-rose) 35%, var(--accent-blue) 60%, var(--primary-gold) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 7s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--neutral-gray);
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.feature-item i {
  color: var(--primary-gold);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-gradient {
  background: var(--gradient-primary);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary-gradient:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.btn-outline-premium {
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.btn-outline-premium:hover {
  background: var(--primary-gold);
  color: white;
  transform: translateY(-2px);
}

/* Reflet lumineux au survol des boutons pleins */
.btn-primary-gradient::after,
.btn-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn-primary-gradient:hover::after,
.btn-premium:hover::after {
  left: 130%;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.medical-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 400px;
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* ===== CARTE « NOS PRESTATIONS » (hero) ===== */
.prestations-card .card-header {
  padding: 0 0 16px;
  text-align: left;
  gap: 12px;
  flex-wrap: wrap;
}

.card-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--neutral-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-header-title i {
  color: var(--primary-gold);
  font-size: 1.35rem;
}

.card-header-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--neutral-gray);
}

.card-header-status .status-indicator {
  margin-right: 0;
}

.prestations-card .card-body {
  padding: 0;
  text-align: left;
  display: block;
}

.prestations-card .service-item {
  padding: 13px 0;
  gap: 14px;
  transition: var(--transition-smooth);
}

.prestations-card .service-item i {
  font-size: 20px;
  width: 34px;
  flex-shrink: 0;
}

.prestations-card .service-item h6 {
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.35;
}

.prestations-card .service-item:hover {
  transform: translateX(5px);
}

.prestations-card .service-item:hover h6 {
  color: var(--primary-gold);
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
}

.status-indicator.online {
  background: #10B981;
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.card-actions {
  display: flex;
  gap: 4px;
}

.action-dot {
  width: 6px;
  height: 6px;
  background: var(--neutral-gray);
  border-radius: 50%;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-item:last-child {
  border-bottom: none;
}

.service-item i {
  font-size: 24px;
  color: var(--primary-gold);
  width: 40px;
  text-align: center;
}

.service-info h6 {
  margin: 0;
  font-weight: 600;
  color: var(--neutral-dark);
}

.service-info p {
  margin: 0;
  font-size: 14px;
  color: var(--neutral-gray);
}

.author-info span {
  font-size: 14px;
  color: var(--neutral-gray);
  margin-bottom: 8px;
  display: block;
}

.rating {
  display: flex;
  gap: 2px;
  margin-top: 8px;
}

.rating i {
  color: #FFD700;
  font-size: 14px;
}

.service-status {
  color: #10B981;
  font-size: 12px;
  margin-left: auto;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.feature-tag {
  background: rgba(200, 159, 123, 0.1);
  color: var(--primary-gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(200, 159, 123, 0.2);
  transition: var(--transition-smooth);
}

.feature-tag:hover {
  background: var(--primary-gold);
  color: white;
}

.stats-floating {
  position: absolute;
  top: 50px;
  right: -50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: statFloat 4s ease-in-out infinite;
}

.stat-item:nth-child(2) {
  animation-delay: -2s;
}

@keyframes statFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-gold);
  font-family: var(--font-display);
}

.stat-label {
  font-size: 12px;
  color: var(--neutral-gray);
  font-weight: 500;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--neutral-gray);
  font-size: 14px;
  font-weight: 500;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--neutral-gray);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--neutral-gray);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 20px; opacity: 0.5; }
}

/* ===== SECTIONS COMMUNES ===== */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--neutral-dark);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--neutral-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== INTRO SECTION ===== */
.intro-premium {
  padding: 80px 0;
  background: rgba(200, 159, 123, 0.05);
}

.intro-text {
  font-size: 1.5rem;
  text-align: center;
  color: var(--neutral-dark);
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  padding: 120px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.partner-card {
  background: white;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.partner-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-dark);
}

/* ===== PRICING CARDS PREMIUM ===== */
.premium-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: #d8b38c;
}

.premium-card.popular {
  border: 2px solid #d8b38c;
  transform: scale(1.05);
  background: rgba(216, 179, 140, 0.05);
}

.premium-card.featured {
  background: linear-gradient(135deg, rgba(216, 179, 140, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 2px solid #d8b38c;
  box-shadow: 0 20px 60px rgba(216, 179, 140, 0.2);
}

.popular-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 0 0 12px 12px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.featured-crown {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 10px 25px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-medium);
  z-index: 2;
}

.card-header {
  padding: 30px 25px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-header.premium {
  background: linear-gradient(135deg, rgba(216, 179, 140, 0.1) 0%, transparent 100%);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 159, 123, 0.1);
  color: var(--primary-gold);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
  border: 1px solid rgba(200, 159, 123, 0.2);
}

.plan-badge.starter { background: rgba(216, 179, 140, 0.15); color: #d8b38c; border-color: rgba(216, 179, 140, 0.3); }
.plan-badge.balanced { background: rgba(216, 179, 140, 0.2); color: #b8956f; border-color: rgba(216, 179, 140, 0.4); }
.plan-badge.popular { background: rgba(216, 179, 140, 0.25); color: #a0824d; border-color: rgba(216, 179, 140, 0.5); }
.plan-badge.active { background: rgba(216, 179, 140, 0.3); color: #8b6f3a; border-color: rgba(216, 179, 140, 0.6); }
.plan-badge.volume { background: rgba(216, 179, 140, 0.35); color: #7a5f2e; border-color: rgba(216, 179, 140, 0.7); }
.plan-badge.enterprise { background: rgba(216, 179, 140, 0.4); color: #6b5025; border-color: rgba(216, 179, 140, 0.8); }
.plan-badge.premium { background: var(--gradient-primary); color: white; border: none; }

.plan-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.plan-subtitle {
  color: var(--neutral-gray);
  font-size: 14px;
  margin: 0;
}

.card-body {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-body.premium {
  background: linear-gradient(135deg, rgba(216, 179, 140, 0.05) 0%, transparent 100%);
}

.price-display {
  margin-bottom: 20px;
}

.price-display.premium {
  position: relative;
}

.price-display.premium::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.price-main {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #d8b38c;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 5px;
}

.price-unit {
  font-size: 14px;
  color: var(--neutral-gray);
  font-weight: 500;
}

.price-note {
  font-size: 13px;
  color: var(--neutral-gray);
  font-weight: 500;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  margin-top: 15px;
}

.price-note.savings {
  background: rgba(216, 179, 140, 0.15);
  color: #b8956f;
  font-weight: 600;
}

.price-note.premium {
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
}

.card-footer {
  padding: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-premium {
  width: 100%;
  padding: 15px 25px;
  background: linear-gradient(135deg, #d8b38c 0%, #b8956f 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-premium.featured {
  background: linear-gradient(135deg, #d8b38c 0%, #a0824d 100%);
  font-size: 16px;
  padding: 18px 30px;
  box-shadow: var(--shadow-medium);
}

.btn-premium i {
  transition: var(--transition-smooth);
}

.btn-premium:hover i {
  transform: translateX(3px);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 159, 123, 0.1);
  color: var(--primary-gold);
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(200, 159, 123, 0.2);
  backdrop-filter: blur(10px);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--neutral-dark);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--neutral-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CTA PREMIUM CARD ===== */
.cta-premium-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 60px 40px;
  border: 1px solid rgba(216, 179, 140, 0.2);
  box-shadow: 0 20px 60px rgba(216, 179, 140, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #d8b38c 0%, #b8956f 100%);
  border-radius: 32px 32px 0 0;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d8b38c 0%, #b8956f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 32px;
  color: white;
  box-shadow: 0 15px 40px rgba(216, 179, 140, 0.3);
}

.cta-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--neutral-gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  min-width: 200px;
}

.btn-premium-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  background: transparent;
  color: #d8b38c;
  border: 2px solid #d8b38c;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition-smooth);
  min-width: 200px;
}

.btn-premium-outline:hover {
  background: #d8b38c;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  text-decoration: none;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn,
  .btn-premium-outline {
    width: 100%;
    max-width: 280px;
  }
}

/* ===== CARTES PREMIUM SERVICES ===== */
.premium-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px 30px;
  border: 2px solid rgba(216, 179, 140, 0.15);
  box-shadow: 0 10px 40px rgba(216, 179, 140, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #d8b38c 0%, #b8956f 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(216, 179, 140, 0.2);
  border-color: #d8b38c;
}

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

.premium-card.featured {
  background: linear-gradient(135deg, rgba(216, 179, 140, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 2px solid #d8b38c;
  box-shadow: 0 15px 50px rgba(216, 179, 140, 0.25);
  transform: scale(1.02);
}

.premium-card.featured::before {
  transform: scaleX(1);
  height: 6px;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d8b38c 0%, #b8956f 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 25px rgba(216, 179, 140, 0.3);
  z-index: 2;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d8b38c 0%, #b8956f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 32px;
  color: white;
  box-shadow: 0 10px 30px rgba(216, 179, 140, 0.3);
  transition: all 0.3s ease;
}

.premium-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(216, 179, 140, 0.4);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.card-description {
  color: var(--neutral-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.card-price {
  background: linear-gradient(135deg, rgba(216, 179, 140, 0.1) 0%, rgba(216, 179, 140, 0.05) 100%);
  border: 2px solid rgba(216, 179, 140, 0.2);
  border-radius: 16px;
  padding: 20px;
  margin-top: auto;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.card-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(216, 179, 140, 0.05) 0%, transparent 100%);
  z-index: 0;
}

.card-price .price {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #d8b38c;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.card-price .period {
  font-size: 1rem;
  color: var(--neutral-gray);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.premium-card.featured .card-price {
  background: linear-gradient(135deg, rgba(216, 179, 140, 0.15) 0%, rgba(216, 179, 140, 0.08) 100%);
  border-color: #d8b38c;
  box-shadow: 0 5px 20px rgba(216, 179, 140, 0.2);
}

.premium-card.featured .card-price .price {
  font-size: 2.8rem;
  color: #b8956f;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .premium-card {
    padding: 30px 25px;
    margin-bottom: 30px;
  }
  
  .card-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
  
  .card-price .price {
    font-size: 2.2rem;
  }
  
  .premium-card.featured .card-price .price {
    font-size: 2.4rem;
  }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(200, 159, 123, 0.03) 0%, rgba(166, 123, 91, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23D4AF37" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
  opacity: 0.3;
  z-index: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 50px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 50px 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transform-style: preserve-3d;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-primary);
  border-radius: 32px 32px 0 0;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 159, 123, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-20px) rotateX(5deg);
  box-shadow: 0 30px 80px rgba(200, 159, 123, 0.2);
  border-color: rgba(200, 159, 123, 0.3);
}

.service-card:hover::after {
  opacity: 1;
}

.service-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-display);
  opacity: 0.3;
  z-index: 1;
  transition: all 0.3s ease;
}

.service-card:hover .service-number {
  opacity: 0.6;
  transform: scale(1.1);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 36px;
  color: white;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(200, 159, 123, 0.3);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 50px rgba(200, 159, 123, 0.4);
}

.service-content {
  position: relative;
  z-index: 2;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--neutral-dark);
  line-height: 1.3;
}

.service-card p {
  color: var(--neutral-gray);
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.feature-tag {
  background: linear-gradient(135deg, rgba(200, 159, 123, 0.15) 0%, rgba(166, 123, 91, 0.15) 100%);
  color: var(--primary-gold);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(200, 159, 123, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.feature-tag:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 159, 123, 0.3);
}

.feature-tag:hover::before {
  left: 0;
}

/* ===== ADVANTAGES SECTION ===== */
.advantages-section {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(200, 159, 123, 0.05) 0%, rgba(166, 123, 91, 0.05) 100%);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

/* Carte mise en avant : devis gratuit */
.advantage-card.highlight {
  background: linear-gradient(135deg, rgba(200, 159, 123, 0.14) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-color: rgba(200, 159, 123, 0.45);
}

.advantage-card.highlight h3 {
  color: var(--secondary-rose);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: white;
  box-shadow: var(--shadow-soft);
}

.advantage-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--neutral-dark);
}

.advantage-card p {
  color: var(--neutral-gray);
  line-height: 1.6;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

/* ===== ANIMATIONS ===== */
.animate-slide-up {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-slide-up.delay-1 { animation-delay: 0.15s; }
.animate-slide-up.delay-2 { animation-delay: 0.3s; }
.animate-slide-up.delay-3 { animation-delay: 0.45s; }
.animate-slide-up.delay-4 { animation-delay: 0.6s; }
.animate-slide-up.delay-5 { animation-delay: 0.75s; }
.animate-slide-up.delay-6 { animation-delay: 0.9s; }

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.animate-fade-in.delay-2 { animation-delay: 0.4s; }

@keyframes fadeIn {
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Apparition en cascade des cartes dans les grilles animées */
.animate-on-scroll .advantage-card,
.animate-on-scroll .service-card,
.animate-on-scroll .contact-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

.animate-on-scroll.visible .advantage-card,
.animate-on-scroll.visible .service-card,
.animate-on-scroll.visible .contact-item {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.visible .advantage-card:nth-child(2),
.animate-on-scroll.visible .service-card:nth-child(2),
.animate-on-scroll.visible .contact-item:nth-child(2) { transition-delay: 0.12s; }

.animate-on-scroll.visible .advantage-card:nth-child(3),
.animate-on-scroll.visible .service-card:nth-child(3),
.animate-on-scroll.visible .contact-item:nth-child(3) { transition-delay: 0.24s; }

.animate-on-scroll.visible .advantage-card:nth-child(4),
.animate-on-scroll.visible .service-card:nth-child(4),
.animate-on-scroll.visible .contact-item:nth-child(4) { transition-delay: 0.36s; }

.animate-on-scroll.visible .advantage-card:nth-child(5) { transition-delay: 0.48s; }
.animate-on-scroll.visible .advantage-card:nth-child(6) { transition-delay: 0.6s; }

/* Conserver les effets hover malgré la cascade */
.animate-on-scroll.visible .advantage-card:hover {
  transform: translateY(-10px);
  transition-delay: 0s;
}

.animate-on-scroll.visible .service-card:hover {
  transform: translateY(-20px) rotateX(5deg);
  transition-delay: 0s;
}

.animate-on-scroll.visible .contact-item:hover {
  transform: translateY(-6px);
  transition-delay: 0s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .hero-premium {
    padding: 110px 0 70px;
  }
  
  .hero-premium .min-vh-100 {
    min-height: auto;
  }
  
  .hero-visual {
    height: auto;
    margin-top: 50px;
  }
  
  .stats-floating {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 32px;
  }
  
  .navbar-actions {
    margin: 12px 0 6px;
    display: flex;
    justify-content: center;
  }
  
  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-actions .btn-primary-gradient,
  .hero-actions .btn-outline-premium {
    justify-content: center;
    text-align: center;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .script-accent {
    font-size: 1.7rem;
  }
  
  .advantages-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section-spacing,
  .services-section,
  .advantages-section,
  .partners-section,
  .contact-section,
  .testimonials-section,
  .faq-section {
    padding: 80px 0;
  }
  
  .section-spacing-lg {
    padding: 80px 0 100px;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .service-card {
    padding: 40px 28px;
  }
  
  .service-number {
    font-size: 3.5rem;
    top: 20px;
    right: 20px;
  }
  
  .cta-premium-card {
    padding: 40px 24px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }
  
  .section-header h2,
  .section-title {
    font-size: 2rem;
  }
  
  .hero-badge {
    font-size: 13px;
  }
  
  .brand-name {
    font-size: 20px;
  }
  
  .brand-tagline-script {
    font-size: 17px;
  }
  
  .footer-brand .brand-tagline-script {
    font-size: 19px;
  }
  
  .medical-card {
    padding: 24px;
  }
  
  .stat-item {
    padding: 14px 16px;
  }
  
  .btn-phone {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(107, 79, 58, 0.08) 0%, rgba(200, 159, 123, 0.08) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 159, 123, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(166, 123, 91, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
  overflow: hidden;
  padding: 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  width: 300%; /* 3 témoignages = 300% */
}

.testimonial-card {
  width: 33.333%; /* 100% / 3 cartes */
  flex-shrink: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-content {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  border-radius: 32px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: visible;
  width: 90%;
  max-width: 700px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.testimonial-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 32px 32px 0 0;
}

.testimonial-content::after {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 8rem;
  color: rgba(200, 159, 123, 0.08);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  z-index: 0;
}

.quote-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 32px;
  color: white;
  box-shadow: 0 15px 40px rgba(200, 159, 123, 0.3);
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--neutral-dark);
  margin-bottom: 40px;
  font-style: italic;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.testimonial-content strong {
  color: var(--primary-gold);
  font-weight: 700;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 3px solid white;
}

.author-info {
  text-align: left;
}

.author-info h6 {
  margin: 0 0 8px 0;
  font-weight: 700;
  color: var(--neutral-dark);
  font-size: 1.2rem;
  font-family: var(--font-display);
}

.author-info span {
  font-size: 15px;
  color: var(--neutral-gray);
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
}

.rating {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.rating i {
  color: #FFD700;
  font-size: 16px;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(200, 159, 123, 0.02) 0%, rgba(107, 79, 58, 0.02) 100%);
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 159, 123, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  margin-bottom: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: top;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(200, 159, 123, 0.15);
  border-color: rgba(200, 159, 123, 0.2);
}

.faq-item:hover::before {
  transform: scaleY(1);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 25px 70px rgba(200, 159, 123, 0.2);
  border-color: rgba(200, 159, 123, 0.3);
}

.faq-item.active::before {
  transform: scaleY(1);
}

.faq-question {
  padding: 32px 40px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--neutral-dark);
  transition: all 0.3s ease;
  font-size: 1.1rem;
  line-height: 1.4;
  position: relative;
}

.faq-question:hover {
  color: var(--primary-gold);
}

.faq-question span {
  flex: 1;
  margin-right: 20px;
}

.faq-question i {
  font-size: 24px;
  color: var(--primary-gold);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 159, 123, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  background: var(--primary-gold);
  color: white;
  box-shadow: 0 8px 20px rgba(200, 159, 123, 0.3);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-answer p {
  padding: 0 40px 32px;
  color: var(--neutral-gray);
  line-height: 1.7;
  font-size: 1.05rem;
  margin: 0;
  border-top: 1px solid rgba(200, 159, 123, 0.1);
  padding-top: 24px;
  margin-top: -8px;
}

.faq-answer strong {
  color: var(--primary-gold);
  font-weight: 700;
}

/* ===== ACCROCHE SCRIPT (DA affiches) ===== */
.script-accent {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--primary-gold);
  font-weight: 400;
  line-height: 1.3;
  display: block;
}

.brand-tagline-script {
  font-family: var(--font-script);
  font-size: 19px;
  line-height: 1.25;
  color: var(--secondary-rose);
  letter-spacing: 0.5px;
  text-transform: none;
  white-space: nowrap;
}

/* Baseline du footer : fond sombre, on éclaircit pour la lisibilité */
.footer-brand .brand-tagline-script {
  font-size: 21px;
  color: var(--primary-gold-light);
}

/* ===== FLOATING ANIMATION (medical card) ===== */
.floating {
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ===== NOTIFICATIONS ===== */
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.notification-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.notification-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(107, 79, 58, 0.05) 0%, rgba(200, 159, 123, 0.05) 100%);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 159, 123, 0.18);
  border-radius: 20px;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.contact-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(200, 159, 123, 0.45);
}

.contact-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  transition: var(--transition-smooth);
}

.contact-item:hover .contact-icon {
  transform: scale(1.08) rotate(-5deg);
}

.contact-details {
  min-width: 0;
}

.contact-details h6 {
  margin: 0 0 4px 0;
  font-weight: 600;
  color: var(--neutral-dark);
}

.contact-details span {
  display: block;
  color: var(--neutral-gray);
  overflow-wrap: anywhere;
  transition: color 0.3s ease;
}

.contact-item:hover .contact-details span {
  color: var(--primary-gold);
}

/* ===== FOOTER ===== */
.footer-premium {
  background: var(--neutral-dark);
  color: white;
  padding: 80px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.link-group h6 {
  color: white;
  margin-bottom: 16px;
  font-weight: 600;
}

.link-group a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.link-group a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-gold);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
  color: white;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===== SECTION SPACING (remplace les styles inline) ===== */
.section-spacing {
  padding: 120px 0;
}

.section-spacing-lg {
  padding: 120px 0 150px;
}

/* ===== ACCESSIBILITÉ : MOUVEMENT RÉDUIT ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== RESPONSIVE (contact + footer) ===== */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
  
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
}
