/* ===============================
   DESIGN SYSTEM — MS Global Services
   =============================== */

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

:root {
  /* Couleurs */
  --navy-dark: #0A1F44;
  --navy-medium: #003087;
  --gold: #D4AF37;
  --gold-light: #F2C94C;
  --cream: #F8F9FB;
  --charcoal: #1C1F26;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --white: #FFFFFF;
  --gray-light: #E5E7EB;
  --gray: #9CA3AF;
  --gray-dark: #4B5563;
  --overlay: rgba(10, 31, 68, 0.85);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);

  /* Typographie */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Espacements */
  --section-padding: 80px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 48px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

main {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 12px;
  color: var(--navy-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--gray-dark);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto var(--gap-lg);
  font-weight: 400;
}

/* ===============================
   BUTTONS
   =============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

/* ===============================
   NAVBAR
   =============================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  padding: 8px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

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

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===============================
   HERO
   =============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 40%, rgba(0,48,135,0.6));
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-logo {
  margin-bottom: 20px;
}

.hero-logo img {
  height: 80px;
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--gray-light);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.hero-tag {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===============================
   BADGES CHIFFRES CLES
   =============================== */
.badges-section {
  background: var(--navy-dark);
  padding: 40px 0;
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

.badge-card {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.badge-card:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.1);
  transform: translateY(-4px);
}

.badge-card .badge-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.badge-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.badge-card p {
  font-size: 0.85rem;
  color: var(--gray-light);
  opacity: 0.8;
}

/* ===============================
   CARTES POLES
   =============================== */
.poles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-md);
}

.pole-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pole-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pole-card .pole-img {
  height: 220px;
  overflow: hidden;
}

.pole-card .pole-img img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.pole-card:hover .pole-img img {
  transform: scale(1.05);
}

.pole-card .pole-content {
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pole-card .pole-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-dark);
  border-radius: 12px;
  font-size: 1.5rem;
  color: var(--gold);
}

.pole-card .pole-text h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.pole-card .pole-text p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.5;
}

/* ===============================
   AVANTAGES
   =============================== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.advantage-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.advantage-item .adv-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 16px;
  font-size: 1.8rem;
}

.advantage-item h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.advantage-item p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.5;
}

/* ===============================
   TEMOIGNAGES (CAROUSEL)
   =============================== */
.testimonials-section {
  background: var(--navy-dark);
  color: var(--white);
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
  color: var(--white);
}

.testimonials-section .section-subtitle {
  color: var(--gray-light);
}

.carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 0 16px;
}

.testimonial-card {
  text-align: center;
  padding: 40px 32px;
}

.testimonial-card .test-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 3px solid var(--gold);
  overflow: hidden;
}

.testimonial-card .test-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card .test-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--gray-light);
}

.testimonial-card .test-name {
  font-weight: 600;
  color: var(--gold);
  font-family: var(--font-heading);
}

.testimonial-card .test-ville {
  font-size: 0.85rem;
  color: var(--gray);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--gold);
}

/* ===============================
   ZONES INTERVENTION
   =============================== */
.zones-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}

.zones-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.zones-map img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.zones-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.zone-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.zone-item .zone-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
}

.zone-item .zone-info h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-dark);
}

.zone-item .zone-info p {
  font-size: 0.85rem;
  color: var(--gray-dark);
}

.international-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--navy-dark);
  color: var(--gold);
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
}

/* ===============================
   CTA FINAL
   =============================== */
.cta-final {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
  text-align: center;
  padding: 80px 0;
}

.cta-final h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-final p {
  color: var(--gray-light);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ===============================
   WHATSAPP FLOATING
   =============================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-family: var(--font-body);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
}

/* Pulse animation */
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ===============================
   FOOTER
   =============================== */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 48px 0 24px;
  border-top: 1px solid rgba(212,175,55,0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gap-lg);
  margin-bottom: 32px;
}

.footer-brand p {
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.7;
}

.footer h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray-light);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--gray-light);
  font-size: 0.9rem;
}

.footer-contact li i {
  color: var(--gold);
  margin-top: 4px;
  width: 16px;
}

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

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===============================
   ANIMATIONS
   =============================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   PAGE SPECIFIQUE — SERENO AUTO COMMUNS
   =============================== */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  padding-top: 80px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 50%, rgba(0,48,135,0.7));
  z-index: 1;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--gray-light);
  max-width: 600px;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Price callout */
.price-callout {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.price-callout .price-tag {
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--gold);
  padding: 12px 24px;
  border-radius: 10px;
  text-align: center;
}

.price-callout .price-tag .amount {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
}

.price-callout .price-tag .label {
  font-size: 0.8rem;
  color: var(--gray-light);
  opacity: 0.8;
}

/* Mini badges */
.mini-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.mini-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

.mini-badge i {
  color: var(--gold);
}

/* Alerte panne */
.alerte-panne {
  background: linear-gradient(135deg, #1a0a0a, #2d0f0f);
  border: 1px solid rgba(255,80,80,0.3);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
}

.alerte-panne h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: #ff6b6b;
  margin-bottom: 8px;
}

.alerte-panne p {
  color: #ffcccc;
  font-size: 1rem;
  line-height: 1.6;
}

.alerte-panne .highlight {
  color: var(--gold);
  font-weight: 700;
}

/* Formules */
.formules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.formule-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
}

.formule-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.formule-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.formule-card.featured:hover {
  transform: scale(1.05) translateY(-6px);
}

.formule-card .formule-img {
  height: 180px;
  overflow: hidden;
}

.formule-card .formule-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.formule-card .formule-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  font-family: var(--font-heading);
}

.formule-card .formule-body {
  padding: 24px;
}

.formule-card .formule-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.formule-card .formule-body .price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.formule-card .formule-body .price-sub {
  font-size: 0.85rem;
  color: var(--gray-dark);
  margin-bottom: 16px;
}

.formule-card .formule-body ul {
  margin-bottom: 20px;
}

.formule-card .formule-body ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gray-light);
}

.formule-card .formule-body ul li:last-child {
  border-bottom: none;
}

.formule-card .formule-body ul li i {
  color: var(--gold);
  font-size: 0.8rem;
}

.formule-card .formule-body .btn {
  width: 100%;
  justify-content: center;
}

/* Processus */
.processus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

.processus-step {
  text-align: center;
  position: relative;
}

.processus-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 30px;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.processus-step .step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold);
}

.processus-step h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.processus-step p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 1.5;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
  text-align: left;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--cream);
}

.faq-question i {
  color: var(--gold);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* Page Avis */
.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.avis-card {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.avis-card .avis-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avis-card .avis-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.avis-card .avis-info h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.avis-card .avis-info span {
  font-size: 0.8rem;
  color: var(--gray);
}

.avis-card .avis-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.avis-card p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.6;
  font-style: italic;
}

/* ===============================
   DARK SECTION VARIANT
   =============================== */
.section-dark {
  background: var(--navy-dark);
  color: var(--white);
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-subtitle {
  color: var(--gray-light);
}
