/* ============================================
   CABINET MAÎTRE SALOMÉ RRR - STYLES COMPLETS
   ============================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;500;700&display=swap');

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #1a1a1a;
  --color-secondary: #2d2d2d;
  --color-accent: #666666;
  --color-gold: #C5A572;
  --color-gold-light: #d4af7a;
  --color-gold-dark: #b8956f;
  --color-light: #f8f6f4;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-medium: #444444;
  --color-border: #e5e0db;
  --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.7;
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(197, 165, 114, 0.15);
}

/* Logo en italique */
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.5px;
  font-style: italic; /* Ajout italique */
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
  font-style: italic; /* Ajout italique pour les menus */
}

/* Menu déroulant en italique aussi */
.dropdown-link {
  display: block;
  padding: 0.9rem 1.5rem;
  color: var(--color-text);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  font-style: italic; /* Ajout italique pour le dropdown */
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}


.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--color-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-cta {
  background: var(--color-gold);
  color: white;
  padding: 0.7rem 1.8rem;
  border-radius: 2px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-link-cta::after {
  display: none;
}

.nav-link-cta:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition);
}

/* ===== CORRECTION DROPDOWN MENU ===== */
/* Remplacez la section .dropdown et .dropdown-menu par ceci : */

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  padding: 1rem 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-top: 2px solid var(--color-gold);
  list-style: none;
  margin-top: 0;
  border-radius: 0;
  z-index: 1000;
}

/* IMPORTANT : Ajouter un pseudo-élément pour combler l'espace */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1rem;
  background: transparent;
}

/* DROPDOWN MENU - VERSION ROBUSTE */
.nav-item {
  position: relative;
}

.dropdown {
  position: relative;
}

.dropdown > .nav-link {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: white;
  min-width: 250px;
  padding: 0.5rem 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-top: 3px solid var(--color-gold);
  list-style: none;
  margin: 0;
  border-radius: 0;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.dropdown:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Créer une zone invisible pour éviter que le menu disparaisse */
.dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 20px;
  background: transparent;
  z-index: 9998;
}

.dropdown-link:hover {
  background: var(--color-light);
  color: var(--color-gold);
  padding-left: 2rem;
}

/* Animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .dropdown::before {
    display: none;
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}
/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.75), rgba(197, 165, 114, 0.4)),
              url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?w=1920&q=80') center/cover no-repeat;
  background-attachment: fixed;
  z-index: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display: inline-block;
  background: var(--color-gold);
  color: white;
  padding: 1.2rem 3rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(197, 165, 114, 0.4);
}

.hero-cta:hover {
  background: white;
  color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  animation: float 2s ease-in-out infinite;
  z-index: 2;
}

.scroll-indicator span {
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  animation: scroll 2s ease-in-out infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* ===== SECTIONS ===== */
section {
  padding: 6rem 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 0.5px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: 1.5rem auto;
}

/* ===== EXPERTISES SECTION ===== */
.expertises {
  background: var(--color-light);
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
  align-items: stretch;
}

/* Cartes cliquables - page d'accueil */
.expertises a {
  text-decoration: none;
  color: inherit;
  display: flex;
  height: 100%;
}

.expertise-card {
  background: white;
  padding: 3rem;
  border-radius: 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border-top: 3px solid var(--color-gold);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.expertises a .expertise-card:hover .expertise-title {
  color: var(--color-gold);
}

.expertise-number {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(197, 165, 114, 0.1);
  position: absolute;
  top: 1rem;
  right: 2rem;
  line-height: 1;
  z-index: 0;
}

.expertise-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.expertise-description {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.expertise-list {
  list-style: none;
  padding: 0;
  flex-grow: 1;
  margin-bottom: 2rem;
}

.expertise-list li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.98rem;
  line-height: 1.6;
}

.expertise-list li:last-child {
  border-bottom: none;
}

.expertise-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.4rem;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  transform: rotate(45deg);
}

/* Bouton en bas de carte */
.expertise-card > div:last-child {
  margin-top: auto;
}

/* ===== EXPERTISES SECTION ===== */
.expertises {
  background: var(--color-light);
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
  align-items: stretch;
}

/* Cartes cliquables - page d'accueil */
.expertises a {
  text-decoration: none;
  color: inherit;
  display: flex;
  height: 100%;
}

.expertise-card {
  background: white;
  padding: 3rem;
  border-radius: 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border-top: 3px solid var(--color-gold);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.expertises a .expertise-card:hover .expertise-title {
  color: var(--color-gold);
}

.expertise-number {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(197, 165, 114, 0.1);
  position: absolute;
  top: 1rem;
  right: 2rem;
  line-height: 1;
  z-index: 0;
}

.expertise-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.expertise-description {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.expertise-list {
  list-style: none;
  padding: 0;
  flex-grow: 1;
  margin-bottom: 2rem;
}

.expertise-list li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.98rem;
  line-height: 1.6;
}

.expertise-list li:last-child {
  border-bottom: none;
}

.expertise-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.4rem;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  transform: rotate(45deg);
}

/* Bouton en bas de carte */
.expertise-card > div:last-child {
  margin-top: auto;
}

/* ===== RESPONSIVE EXPERTISES ===== */

/* Tablette */
@media (max-width: 1024px) {
  .expertise-grid {
    gap: 2.5rem;
  }
}

/* Mobile - Passage en 1 colonne avec design simplifié */
@media (max-width: 768px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .expertise-card {
    padding: 2rem 1.5rem;
    border-left: 4px solid var(--color-gold);
    border-top: none;
  }
  
  /* Masquer le grand numéro sur mobile */
  .expertise-number {
    display: none;
  }
  
  /* Ajouter un petit badge numéro à la place */
  .expertise-card::before {
    content: attr(data-number);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: var(--font-serif);
  }
  
  .expertise-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding-right: 50px;
  }
  
  .expertise-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }
  
  /* Simplifier la liste sur mobile - afficher seulement les 3 premiers items */
  .expertise-list li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .expertise-list li::before {
    top: 1.1rem;
    width: 5px;
    height: 5px;
  }
  
  /* Icônes plus petites */
  .expertise-card > div[style*="font-size: 3.5rem"] {
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  /* Bouton "En savoir plus" pleine largeur sur mobile */
  .expertise-card > div:last-child {
    margin-top: 1.5rem;
  }
  
  .expertise-card span[style*="padding"] {
    display: block !important;
    width: 100% !important;
    padding: 1rem !important;
    font-size: 0.95rem !important;
    text-align: center;
    box-sizing: border-box;
  }
  
  /* Réduire l'effet hover sur mobile */
  .expertise-card:hover {
    transform: translateY(-5px);
  }
}

/* Très petit mobile */
@media (max-width: 480px) {
  .expertise-grid {
    gap: 1.5rem;
  }
  
  .expertise-card {
    padding: 1.5rem 1.2rem;
  }
  
  .expertise-card::before {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
    top: 1.2rem;
    right: 1.2rem;
  }
  
  .expertise-title {
    font-size: 1.2rem;
  }
  
  .expertise-description {
    font-size: 0.9rem;
  }
  
  .expertise-list li {
    font-size: 0.85rem;
  }
  
  /* Icônes encore plus petites */
  .expertise-card > div[style*="font-size: 3.5rem"] {
    font-size: 2rem !important;
  }
}

/* ===== PARCOURS ===== */
.parcours {
  background: var(--color-white);
}

.parcours-intro {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 4rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -3.5rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-primary);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-primary);
}

.timeline-year {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
}

.timeline-content p {
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.timeline-content ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.timeline-content ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text);
}

.timeline-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

/* ===== FAQ ACCORDÉON ===== */
.faq-section {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.faq-section > h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-primary);
}

.faq-section > h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: 1rem auto 0;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-gold);
  box-shadow: 0 2px 10px rgba(197, 165, 114, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 4rem 1.5rem 2rem;
  background: white;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  display: block;
  position: relative;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.faq-question::after {
  content: '+';
  font-size: 2rem;
  color: var(--color-gold);
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.faq-item.active .faq-question {
  background: var(--color-light);
  color: var(--color-gold);
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 2rem;
  background: white;
}

.faq-item.active .faq-answer {
  max-height: 2000px;
  padding: 0 2rem 2rem 2rem;
}

.faq-answer p {
  color: var(--color-text);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.faq-answer ul li {
  padding: 0.7rem 0 0.7rem 2rem;
  position: relative;
  color: var(--color-text);
  line-height: 1.7;
}

.faq-answer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  transform: rotate(45deg);
}

.faq-answer strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* ===== ÉTAPES DU DIVORCE ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.step {
  background: white;
  padding: 2rem;
  border-radius: 0;
  border-left: 4px solid var(--color-gold);
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.step:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
}

.step h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--color-primary);
}

.step p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ===== INTERVENTION SECTION ===== */
.intervention {
  background: white;
}

.intervention-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.intervention-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

/* Intervention cards - Sans animation de fond blanc */
/* Intervention cards - Correction hover */
.intervention-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    text-align: center;
}

.intervention-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-bottom-color: var(--color-gold);
    background: white !important; /* Force le fond blanc */
}

.intervention-card-primary {
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.9), rgba(197, 165, 114, 0.7));
    color: white;
    border-bottom: none;
}

.intervention-card-primary:hover {
    background: linear-gradient(135deg, rgba(197, 165, 114, 1), rgba(197, 165, 114, 0.85)) !important; /* Garde le doré */
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(197, 165, 114, 0.4);
    border-bottom: none;
}

.intervention-card-primary h3,
.intervention-card-primary p,
.intervention-card-primary strong {
    color: white !important;
}

.intervention-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.intervention-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.intervention-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
}

.intervention-card-primary h3 {
    color: white;
}

.intervention-card-primary p {
    color: white;
}

.intervention-note {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 2rem;
  background: white;
  color: var(--color-text);
  border-left: 4px solid var(--color-gold);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.intervention-note p {
  color: var(--color-text);
  line-height: 1.7;
}

.intervention-note strong {
  color: var(--color-gold-dark);
  font-weight: 600;
}

/* ===== SIDEBAR ===== */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.content-main {
  min-width: 0;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: white;
  padding: 2rem;
  border-radius: 0;
  border-left: 4px solid var(--color-border);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.sidebar-card:hover {
  border-left-color: var(--color-gold);
  box-shadow: 0 4px 25px rgba(197, 165, 114, 0.15);
}

.sidebar-card-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: white;
  border-left-color: var(--color-gold-dark);
}

.sidebar-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.sidebar-card-primary h3 {
  color: white;
}

.sidebar-card p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.sidebar-card-primary p {
  color: rgba(255, 255, 255, 0.95);
}

.sidebar-card p:last-child {
  margin-bottom: 0;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.sidebar-card ul li {
  padding: 0.6rem 0;
  line-height: 1.6;
  color: var(--color-text);
}

.sidebar-card ul li strong {
  color: var(--color-primary);
  font-weight: 600;
}

.btn-primary {
  display: inline-block;
  background: white;
  color: var(--color-gold);
  padding: 0.9rem 2rem;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.btn-primary:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-2px);
}

.sidebar-card:not(.sidebar-card-primary) .btn-primary {
  background: var(--color-gold);
  color: white;
  border-color: var(--color-gold);
}

.sidebar-card:not(.sidebar-card-primary) .btn-primary:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  transform: translateY(-2px);
}

/* ===== SERVICES LIST ===== */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.service-item {
  background: white;
  padding: 2rem;
  border-radius: 0;
  border-left: 4px solid var(--color-gold);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.service-item h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.service-item p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-list li {
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
  line-height: 1.7;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.3rem;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  transform: rotate(45deg);
}

.service-list li strong {
  color: var(--color-primary);
  font-weight: 600;
}

.intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-box, .info-box {
  background: var(--color-light);
  padding: 2rem;
  border-left: 4px solid var(--color-gold);
  margin: 2rem 0;
  border-radius: 0;
}

.highlight-box h3, .info-box h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.highlight-box p, .info-box p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.highlight-box ul, .info-box ul {
  list-style: none;
  padding: 0;
}

.highlight-box ul li, .info-box ul li {
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  line-height: 1.7;
}

.highlight-box ul li::before, .info-box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: bold;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.check-list li {
  padding: 0.7rem 0 0.7rem 2rem;
  position: relative;
  line-height: 1.7;
  color: var(--color-text);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: bold;
  font-size: 1.2rem;
}

.check-list li strong {
  color: var(--color-primary);
  font-weight: 600;
}
/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--color-light);
  padding: 6rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-intro {
  font-size: 1.15rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.contact-detail p {
  color: var(--color-text-light);
  line-height: 1.7;
}

.contact-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-card {
  background: white;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 0;
  max-width: 500px;
  width: 100%;
}

.whatsapp-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.whatsapp-card > p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: #25D366;
  color: white;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  margin-bottom: 2rem;
}

.btn-whatsapp:hover {
  background: #20BA55;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
  width: 24px;
  height: 24px;
}

.contact-alternative {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.contact-divider {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-alternative > p {
  color: var(--color-text);
}

.contact-email {
  color: var(--color-gold);
  font-weight: 500;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.contact-email:hover {
  text-decoration: underline;
  transform: translateX(5px);
}

/* ===== CTA SECTION FUSIONNÉE ET OPTIMISÉE ===== */
/* Section CTA principale */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  text-align: center;
  padding: 5rem 2rem;
}

.cta-section h2 {
  font-family: var(--font-serif);
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BOUTONS CTA PETITS (Hero + sections) ===== */
.cta-buttons-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  max-width: 600px;
  flex-wrap: wrap;
}

.cta-button-primary,
.cta-button-secondary {
  flex: 1;
  min-width: 200px;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.cta-button-primary {
  background: linear-gradient(135deg, #c5a572 0%, #d4b886 100%);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(197, 165, 114, 0.4);
}

.cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 165, 114, 0.6);
  background: linear-gradient(135deg, #d4b886 0%, #e5c997 100%);
}

.cta-button-secondary {
  background: #1a1a1a;
  color: #ffffff;
  border: 2px solid #c5a572;
  box-shadow: 0 4px 15px rgba(26, 26, 26, 0.3);
}

.cta-button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 165, 114, 0.4);
  background: #2a2a2a;
  color: #ffffff;
}

/* ===== GROS BOUTONS CTA AVEC ICÔNES (Section consultation gratuite) ===== */
.cta-buttons-container-large {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  margin: 2rem auto;
  max-width: 700px;
  flex-wrap: wrap;
}

.cta-button-large-primary,
.cta-button-large-secondary {
  flex: 1;
  min-width: 280px;
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.cta-button-large-primary {
  background: linear-gradient(135deg, #c5a572 0%, #d4b886 100%);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(197, 165, 114, 0.4);
}

.cta-button-large-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(197, 165, 114, 0.6);
  background: linear-gradient(135deg, #d4b886 0%, #e5c997 100%);
}

.cta-button-large-secondary {
  background: #1a1a1a;
  color: #ffffff;
  border: 2px solid #c5a572;
  box-shadow: 0 4px 15px rgba(26, 26, 26, 0.3);
}

.cta-button-large-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(197, 165, 114, 0.4);
  background: #2a2a2a;
  color: #ffffff;
}

.cta-icon-large {
  font-size: 2rem;
}

.cta-text-large-main {
  font-size: 1.1rem;
  font-weight: 700;
}

.cta-text-large-sub {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 400;
}

/* ===== ÉLÉMENTS SUPPLÉMENTAIRES ===== */
.urgent-banner {
  background: linear-gradient(135deg, #c5a572 0%, #d4b886 100%);
  color: #1a1a1a;
  padding: 0.8rem 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(197, 165, 114, 0.05);
  border-radius: 8px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.trust-icon {
  font-size: 1.3rem;
}

/* ===== ANIMATION PULSE ===== */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.cta-button-primary.pulse {
  animation: pulse 2s infinite;
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
  /* Section CTA principale */
  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  /* Petits boutons */
  .cta-buttons-container {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0 1rem;
  }
  
  .cta-button-primary,
  .cta-button-secondary {
    width: 100%;
    min-width: auto;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Gros boutons */
  .cta-buttons-container-large {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .cta-button-large-primary,
  .cta-button-large-secondary {
    width: 100%;
    min-width: auto;
    padding: 1.3rem 1.5rem;
  }

  /* Autres éléments */
  .urgent-banner {
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
    margin-bottom: 1.5rem;
  }

  .trust-indicators {
    gap: 1rem;
    padding: 1rem;
    font-size: 0.85rem;
  }

  .trust-item {
    font-size: 0.85rem;
    flex-basis: calc(50% - 0.5rem);
    justify-content: center;
  }

  .trust-icon {
    font-size: 1.1rem;
  }

  .hero-subtitle {
    font-size: 1rem !important;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem !important;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 2.5rem 1rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-button-primary,
  .cta-button-secondary {
    font-size: 0.9rem;
    padding: 0.9rem 1.2rem;
  }

  .cta-button-large-primary,
  .cta-button-large-secondary {
    padding: 1.2rem 1.2rem;
  }

  .trust-item {
    flex-basis: 100%;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
  font-family: var(--font-serif);
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.footer-location {
  margin-top: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: 4rem 0;
}

.content-section h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-primary);
  margin: 2rem 0 1rem;
}

.content-section p {
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.content-section ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.content-section ul li {
  line-height: 1.8;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.process-section {
  margin: 3rem 0;
}

.process-section h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  text-align: center;
}
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 1.5rem;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-content,
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    order: 2;
  }
  
  .content-main {
    order: 1;
  }
  
  .intervention-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transition: left 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  padding: 1rem 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-top: 2px solid var(--color-gold);
  list-style: none;
  margin-top: 0;
  border-radius: 0;
  z-index: 9999;
}
  
  .hero::before {
    background-attachment: scroll;
  }
  
  .hero {
    min-height: 600px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .scroll-indicator {
    bottom: 2rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .expertise-card {
    padding: 2rem;
  }
  
  .expertise-number {
    font-size: 4rem;
  }
  
  .intervention-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .timeline {
    padding-left: 2rem;
  }
  
  .timeline-item::before {
    left: -2.5rem;
  }
  
  .faq-section {
    padding: 0 1rem;
  }
  
  .faq-question {
    padding: 1.2rem 3rem 1.2rem 1.5rem;
    font-size: 1rem;
  }
  
  .faq-question::after {
    right: 1.5rem;
    font-size: 1.5rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  
  .sidebar-card {
    padding: 1.5rem;
  }
  
  .service-item {
    padding: 1.5rem;
  }
  
  .highlight-box,
  .info-box {
    padding: 1.5rem;
  }
  
  .whatsapp-card {
    padding: 2rem 1.5rem;
  }
  
  .btn-whatsapp {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }
  
  .contact-content {
    gap: 2rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-section p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .nav-container {
    padding: 1rem 1.5rem;
  }
  
  .nav-logo {
    font-size: 1.2rem;
  }
  
  .hero {
    min-height: 550px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .expertise-card {
    padding: 2rem 1.5rem;
  }
  
  .expertise-number {
    font-size: 3rem;
    top: 0.5rem;
    right: 1.5rem;
  }
  
  .expertise-title {
    font-size: 1.5rem;
  }
  
  .whatsapp-card {
    padding: 2rem 1.5rem;
  }
  
  .whatsapp-card h3 {
    font-size: 1.3rem;
  }
  
  .btn-whatsapp {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
  
  .intervention-card {
    padding: 2rem 1.5rem;
  }
  
  .step {
    padding: 1.5rem;
  }
  
  .step-number {
    font-size: 2rem;
  }
  
  .timeline {
    padding-left: 1.5rem;
  }
  
  .timeline-item::before {
    left: -2rem;
    width: 10px;
    height: 10px;
  }
  
  .cta-section {
    padding: 3rem 1.5rem;
  }
  
  .cta-section h2 {
    font-size: 1.8rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
}

/* ===== UTILITIES ===== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* Margins */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.my-1 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-2 { margin-top: 1rem; margin-bottom: 1rem; }
.my-3 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-4 { margin-top: 2rem; margin-bottom: 2rem; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }

/* Paddings */
.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flex utilities */
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* Colors */
.text-gold { color: var(--color-gold); }
.text-primary { color: var(--color-primary); }
.text-light { color: var(--color-text-light); }
.text-white { color: white; }

.bg-gold { background-color: var(--color-gold); }
.bg-light { background-color: var(--color-light); }
.bg-white { background-color: white; }
.bg-primary { background-color: var(--color-primary); }

/* Font weights */
.fw-light { font-weight: 300; }
.fw-normal { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }

/* Font sizes */
.fs-small { font-size: 0.875rem; }
.fs-normal { font-size: 1rem; }
.fs-large { font-size: 1.125rem; }
.fs-xlarge { font-size: 1.25rem; }

/* Border radius */
.rounded { border-radius: 4px; }
.rounded-lg { border-radius: 8px; }
.rounded-full { border-radius: 9999px; }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }

/* Width utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }
.max-w-screen { max-width: 100vw; }

/* FIN DU FICHIER CSS */