/* ========================================
   PROFESSEUR ADAMA - CSS COMPLET
   Landing Page Marabout Voyant Médium Africain
   Ambiance traditionnelle africaine authentique
   Palette: Bleu royal + Or + Terre
   ======================================== */

/* ========================================
   RESET & BASE
   ======================================== */

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

:root {
    /* Couleurs principales */
    --bleu-royal: #0047AB;
    --bleu-royal-dark: #1E3A8A;
    --or: #D4AF37;
    --or-light: #F59E0B;
    --terre: #8B4513;
    --terre-light: #D2691E;
    --blanc-casse: #F5F5DC;
    --blanc-pur: #FAF9F6;
    --noir: #1A1A1A;
    --noir-profond: #0A0A0A;
    
    /* Typographie */
    --font-principale: 'Georgia', 'Times New Roman', serif;
    --font-secondaire: 'Arial', 'Helvetica', sans-serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-principale);
    color: var(--noir);
    background-color: var(--blanc-pur);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHIE
   ======================================== */

h1, h2, h3, h4 {
    font-family: var(--font-principale);
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    color: var(--bleu-royal-dark);
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.2);
}

h2 {
    font-size: 2.5rem;
    color: var(--bleu-royal);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--or), var(--or-light));
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
    color: var(--terre);
}

h4 {
    font-size: 1.25rem;
    color: var(--noir);
}

p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

strong {
    color: var(--bleu-royal);
    font-weight: 700;
}

a {
    color: var(--bleu-royal);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--or);
}

ul {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

li {
    margin-bottom: var(--spacing-xs);
    font-size: 1.05rem;
}

/* ========================================
   CONTENEURS
   ======================================== */

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

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

/* ========================================
   NAVIGATION FIXE
   ======================================== */

.nav-fixe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--bleu-royal-dark), var(--bleu-royal));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--or);
    font-family: var(--font-principale);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-subtitle {
    font-size: 0.875rem;
    color: var(--blanc-casse);
    font-family: var(--font-secondaire);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

.nav-links a {
    color: var(--blanc-casse);
    font-size: 1rem;
    font-family: var(--font-secondaire);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--or);
    color: var(--noir-profond);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-secondaire);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--or-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.icon-phone {
    font-size: 1.2rem;
}

/* ========================================
   BOUTON BURGER (MOBILE/TABLET)
   ======================================== */

.burger-menu {
    display: none; /* Masqué sur desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-bar {
    width: 100%;
    height: 3px;
    background: var(--or);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animation burger → X */
.burger-menu.active .burger-bar:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.burger-menu.active .burger-bar:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* ========================================
   RESPONSIVE - TABLET (768px)
   ======================================== */

@media (max-width: 768px) {
    /* Afficher le bouton burger */
    .burger-menu {
        display: flex;
    }
    
    /* Menu mobile caché par défaut */
    .nav-links {
        position: fixed;
        top: 90px; /* Hauteur de la nav */
        left: 0;
        width: 100%;
        height: calc(100vh - 90px);
        background: linear-gradient(135deg, var(--bleu-royal-dark), var(--bleu-royal));
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        z-index: 999;
        
        /* Masqué par défaut */
        display: none;
        opacity: 0;
        transform: translateX(-100%);
        transition: all 0.3s ease;
    }
    
    /* Menu ouvert */
    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Liens dans le menu mobile */
    .nav-links a {
        font-size: 1.5rem;
        color: var(--blanc-pur);
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .nav-links a:hover {
        background: rgba(212, 175, 55, 0.2);
    }
    
    /* CTA mobile - passer en dessous du burger */
    .nav-cta {
        order: 3; /* Après logo et burger */
        margin-left: auto;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (480px)
   ======================================== */

@media (max-width: 480px) {
    .nav-links {
        top: 120px; /* Ajuster selon hauteur nav mobile */
        height: calc(100vh - 120px);
    }
    
    .nav-links a {
        font-size: 1.25rem;
        padding: 0.75rem 1.5rem;
    }
}

/* ========================================
   BOUTON TÉLÉPHONE FLOTTANT (MOBILE)
   ======================================== */

.btn-flottant-mobile {
    display: none; /* Visible seulement sur mobile */
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--or), var(--or-light));
    color: var(--noir-profond);
    border-radius: 50%;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    z-index: 999;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 6px 35px rgba(212, 175, 55, 0.8);
    }
}

/* ========================================
   SECTION HERO
   ======================================== */

/* .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--blanc-pur) 0%, var(--blanc-casse) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Espace pour nav fixe *//*
} */
 
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--blanc-pur) 0%, var(--blanc-casse) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px; /* Augmenté pour éviter chevauchement */
    padding-bottom: var(--spacing-lg);
}

/* CORRECTION PRINCIPALE : Ajouter le container au hero-container */
.hero-container {
    max-width: 1200px; /* Même largeur que les autres sections */
    margin: 0 auto; /* Centrer */
    padding: 0 var(--spacing-md); /* Marges latérales */
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Réduit le ratio - plus d'espace au texte, moins à l'image */
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 71, 171, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--terre);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-secondaire);
}

.hero-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
}

.badge {
    background: linear-gradient(135deg, var(--or), var(--or-light));
    color: var(--noir-profond);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-secondaire);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.hero-text {
    margin: var(--spacing-md) 0;
}

.hero-cta {
    margin: var(--spacing-lg) 0;
}

.cta-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--terre);
    margin-top: var(--spacing-sm);
    font-style: italic;
}

.hero-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.hero-links a {
    color: var(--bleu-royal);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    padding-left: var(--spacing-sm);
}

.hero-links a:hover {
    color: var(--or);
    border-left-color: var(--or);
    padding-left: var(--spacing-md);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--or);
}

.hero-motif-africain {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--or) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   BOUTONS CTA
   ======================================== */

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-secondaire);
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bleu-royal), var(--bleu-royal-dark));
    color: var(--blanc-pur);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--bleu-royal-dark), var(--bleu-royal));
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 71, 171, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--or), var(--or-light));
    color: var(--noir-profond);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--or-light), var(--or));
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.cta-section {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ========================================
   SECTION QUI EST PROFESSEUR ADAMA
   ======================================== */

.section-qui-est {
    background: linear-gradient(135deg, var(--blanc-casse) 0%, var(--blanc-pur) 100%);
}

.qui-est-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.philosophie {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(245, 158, 11, 0.1));
    padding: var(--spacing-md);
    border-left: 4px solid var(--or);
    border-radius: 10px;
    margin-top: var(--spacing-md);
}

/* Timeline 5 générations */
.timeline-5-generations {
    background: var(--blanc-pur);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--or);
}

.timeline-title {
    text-align: center;
    color: var(--bleu-royal);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

.timeline {
    position: relative;
    padding-left: var(--spacing-md);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--or), var(--or-light));
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-md);
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--or);
    border-radius: 50%;
    border: 3px solid var(--blanc-pur);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.timeline-item.active .timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--bleu-royal);
    box-shadow: 0 0 15px rgba(0, 71, 171, 0.6);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 71, 171, 0.6);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 71, 171, 0.9);
    }
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.generation {
    font-size: 0.875rem;
    color: var(--terre);
    font-weight: 600;
    font-family: var(--font-secondaire);
}

.ancetre {
    font-size: 1rem;
    color: var(--noir);
}

/* Améliorer la lisibilité des noms */
.ancetre strong {
    color: var(--noir);
    font-weight: 700;
    font-size: 1.05rem;
}

.experience {
    font-size: 0.875rem;
    color: var(--bleu-royal);
    font-weight: 600;
    margin-top: 0.25rem;
}

.section-link {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.section-link a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bleu-royal);
    transition: var(--transition);
}

.section-link a:hover {
    color: var(--or);
    padding-left: var(--spacing-sm);
}

/* ========================================
   SECTION RETOUR DE L'ÊTRE AIMÉ
   ======================================== */

.section-retour-amour {
    background: linear-gradient(135deg, var(--blanc-pur) 0%, var(--blanc-casse) 100%);
    position: relative;
}

.section-retour-amour::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.retour-amour-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.ce-que-je-fais {
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.05), rgba(30, 58, 138, 0.05));
    padding: var(--spacing-md);
    border-radius: 15px;
    margin: var(--spacing-md) 0;
    border-left: 4px solid var(--bleu-royal);
}

.ce-que-je-fais h3 {
    margin-bottom: var(--spacing-sm);
}

.engagement {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(245, 158, 11, 0.15));
    padding: var(--spacing-md);
    border-radius: 10px;
    border: 2px solid var(--or);
    margin: var(--spacing-md) 0;
}

.retour-amour-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--terre);
}

/* ========================================
   SECTION DOMAINES
   ======================================== */

.section-domaines {
    background: var(--blanc-casse);
}

.intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--terre);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.domaines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.domaine-card {
    background: var(--blanc-pur);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.domaine-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--or);
}

.domaine-icon {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.domaine-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-chance {
    font-size: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--or), var(--or-light));
}

.domaine-content {
    padding: var(--spacing-md);
}

.domaine-content h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--bleu-royal);
}

/* ========================================
   SECTION 4 JOURS
   ======================================== */

.section-4-jours {
    background: linear-gradient(135deg, var(--bleu-royal-dark), var(--bleu-royal));
    color: var(--blanc-pur);
}

.section-4-jours h2 {
    color: var(--blanc-pur);
}

.section-4-jours h2::after {
    background: linear-gradient(90deg, var(--or), var(--or-light));
}

.jours-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-lg);
    align-items: start;
    margin-top: var(--spacing-lg);
}

.compteur-4-jours {
    background: linear-gradient(135deg, var(--or), var(--or-light));
    width: 250px;
    height: 250px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    border: 8px solid var(--blanc-pur);
    animation: pulse-compteur 3s infinite;
}

@keyframes pulse-compteur {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
        transform: scale(1.05);
    }
}

.compteur-chiffre {
    font-size: 7rem;
    font-weight: 900;
    color: var(--noir-profond);
    line-height: 1;
}

.compteur-label {
    font-size: 2rem;
    font-weight: 700;
    color: var(--noir-profond);
    text-transform: uppercase;
}

.jours-text p {
    color: var(--blanc-casse);
}

.etapes-rituel {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: 10px;
    border-left: 4px solid var(--or);
    margin: var(--spacing-md) 0;
}

.etapes-rituel li {
    color: var(--blanc-casse);
}

.avertissement {
    background: rgba(212, 175, 55, 0.2);
    padding: var(--spacing-md);
    border-radius: 10px;
    border: 2px solid var(--or);
    margin: var(--spacing-md) 0;
}

.section-4-jours .engagement {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--or);
}

/* ========================================
   SECTION TARIFS
   ======================================== */

.section-tarifs {
    background: var(--blanc-casse);
}

.comment-fonctionnent-tarifs {
    margin-top: var(--spacing-lg);
}

.facteurs-tarifs {
    background: var(--blanc-pur);
    padding: var(--spacing-md);
    border-radius: 15px;
    margin: var(--spacing-md) 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.facteurs-tarifs h4 {
    text-align: center;
    color: var(--bleu-royal);
    margin-bottom: var(--spacing-md);
}

.facteurs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.facteur {
    text-align: center;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(245, 158, 11, 0.05));
    border-radius: 10px;
    border: 2px solid var(--or);
}

.facteur-numero {
    display: block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bleu-royal), var(--bleu-royal-dark));
    color: var(--blanc-pur);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
}

.facteur strong {
    display: block;
    margin: var(--spacing-sm) 0;
    font-size: 1.05rem;
}

.facteur p {
    font-size: 0.95rem;
    color: var(--terre);
}

.promesse {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(245, 158, 11, 0.15));
    padding: var(--spacing-md);
    border-radius: 10px;
    border: 2px solid var(--or);
    margin-top: var(--spacing-md);
}

/* ========================================
   SECTION COMMENT ÇA MARCHE
   ======================================== */

.section-comment-ca-marche {
    background: linear-gradient(135deg, var(--blanc-pur) 0%, var(--blanc-casse) 100%);
}

.etapes-consultation {
    margin-top: var(--spacing-lg);
}

.etape {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--blanc-pur);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--or);
}

.etape-numero {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bleu-royal), var(--bleu-royal-dark));
    color: var(--blanc-pur);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(0, 71, 171, 0.3);
}

.etape-content h3 {
    margin-bottom: var(--spacing-sm);
}

.gratuit,
.respect {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(245, 158, 11, 0.1));
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    border-left: 3px solid var(--or);
    margin-top: var(--spacing-sm);
    font-style: italic;
}

.rituel-image {
    margin: var(--spacing-md) 0;
    border-radius: 10px;
    overflow: hidden;
}

.rituel-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================
   SECTION CONNEXION ÉMOTIONNELLE
   ======================================== */

.section-connexion {
    background: linear-gradient(135deg, var(--terre-light), var(--terre));
    color: var(--blanc-pur);
    position: relative;
    overflow: hidden;
}

.section-connexion::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.section-connexion h2 {
    color: var(--blanc-pur);
}

.section-connexion h2::after {
    background: linear-gradient(90deg, var(--or), var(--or-light));
}

.connexion-content {
    position: relative;
    z-index: 1;
}

.connexion-content p {
    color: var(--blanc-casse);
}

.situations-list {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: 10px;
    margin: var(--spacing-md) 0;
    border-left: 4px solid var(--or);
}

.situations-list li {
    color: var(--blanc-casse);
}

.comprehension,
.droit,
.appel,
.premier-pas {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    border: 2px solid var(--or);
    font-size: 1.15rem;
}

/* ========================================
   SECTION FAQ
   ======================================== */

.section-faq {
    background: var(--blanc-casse);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.faq-item {
    background: var(--blanc-pur);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--bleu-royal);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-left-color: var(--or);
}

.faq-item h3 {
    color: var(--bleu-royal);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--noir);
    line-height: 1.7;
}

/* ========================================
   SECTION CONTACT
   ======================================== */

.section-contact {
    background: linear-gradient(135deg, var(--blanc-pur) 0%, var(--blanc-casse) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-infos {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    background: var(--blanc-pur);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--or);
}

.contact-item h3 {
    color: var(--bleu-royal);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.contact-phone {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bleu-royal);
    margin: var(--spacing-sm) 0;
    transition: var(--transition);
}

.contact-phone:hover {
    color: var(--or);
    transform: scale(1.05);
}

.contact-item ul {
    list-style: none;
    margin-left: 0;
}

.contact-item li {
    padding: 0.25rem 0;
}

.villes-principales {
    font-size: 0.95rem;
    color: var(--terre);
    margin-top: var(--spacing-sm);
}

/* Carte Île-de-France */
.contact-carte {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carte-idf {
    width: 100%;
    max-width: 400px;
    padding: var(--spacing-md);
    background: var(--blanc-pur);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--or);
}

.carte-svg {
    width: 100%;
    height: auto;
}

.cta-final {
    margin-top: var(--spacing-xl);
    text-align: center;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, var(--noir-profond), var(--noir));
    color: var(--blanc-casse);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
    color: var(--or);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.footer-col p,
.footer-col a {
    color: var(--blanc-casse);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a:hover {
    color: var(--or);
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    color: var(--blanc-casse);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.footer-legal a {
    color: var(--or);
    font-size: 0.875rem;
}

/* ========================================
   RESPONSIVE - TABLET (768px)
   ======================================== */

@media (max-width: 768px) {
    /* Typographie */
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    p, li {
        font-size: 1rem;
    }
    
    /* Navigation */
    .nav-links {
        display: none; /* Masquer sur tablet/mobile */
    }
    
    .nav-fixe {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: var(--spacing-xs);
    }
    
    .nav-logo {
        flex: 1;
        min-width: 200px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
    
    .nav-cta {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        white-space: nowrap;
    }
/*     
    .nav-cta {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    } */
    
    /* Bouton flottant visible */
    .btn-flottant-mobile {
        display: flex;
    }
    
    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero {
        min-height: auto; /* Enlever min-height sur mobile */
        padding-top: 140px; /* Plus d'espace pour la nav */
        padding-bottom: var(--spacing-lg);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .hero-image {
        order: -1; /* Image en premier */
        max-width: 400px;
        margin: 0 auto var(--spacing-md);
    }
    
    .hero-content h1 {
        font-size: 2rem; /* Réduit pour mobile */
    }
    
    /* .hero-image {
        order: -1; 
        max-width: 400px;
        margin: 0 auto;
    } */
    
    .hero-links {
        align-items: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    /* Qui est */
    .qui-est-content {
        grid-template-columns: 1fr;
    }
    
    .timeline-5-generations {
        order: -1;
    }
    
    /* Retour amour */
    .retour-amour-grid {
        grid-template-columns: 1fr;
    }
    
    .retour-amour-image {
        order: -1;
    }
    
    /* Domaines */
    .domaines-grid {
        grid-template-columns: 1fr;
    }
    
    /* 4 jours */
    .jours-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .compteur-4-jours {
        margin: 0 auto var(--spacing-md);
    }
    
    /* Tarifs */
    .facteurs-grid {
        grid-template-columns: 1fr;
    }
    
    /* Comment ça marche */
    .etape {
        grid-template-columns: 60px 1fr;
        gap: var(--spacing-sm);
    }
    
    .etape-numero {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-carte {
        order: -1;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .footer-legal {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}

/* ========================================
   RESPONSIVE - MOBILE (480px et moins)
   ======================================== */

@media (max-width: 480px) {
    /* Typographie */
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    p, li {
        font-size: 0.95rem;
    }
    
    /* Espacements réduits */
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Navigation */
    .nav-fixe {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .nav-logo {
        min-width: auto;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .nav-cta {
        font-size: 0.8rem;
        padding: 0.5rem 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    .icon-phone {
        font-size: 0.9rem;
    }
    /* .nav-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
    
    .nav-cta {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .icon-phone {
        font-size: 1rem;
    } */
    
    /* Hero */
    .hero {
        padding-top: 200px; /* Encore plus d'espace pour nav mobile */
        padding-bottom: var(--spacing-md);
    }
    
    .hero-image {
        max-width: 100%; /* Utiliser toute la largeur */
        padding: 0 var(--spacing-sm);
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-xs);
    }
    
    .badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    /* .hero {
        padding-top: 120px;
        min-height: auto;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    } */
    
    /* Boutons */
    .btn-primary,
    .btn-secondary {
        font-size: 1rem;
        padding: 0.85rem 1.5rem;
        width: 100%;
        justify-content: center;
    }
    
    .btn-large {
        font-size: 1.1rem;
        padding: 1rem 1.75rem;
    }
    
    /* Timeline */
    .timeline {
        padding-left: var(--spacing-sm);
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-item {
        padding-left: var(--spacing-sm);
    }
    
    .timeline-title {
        font-size: 1.1rem;
    }

    /* Timeline item actif - mettre en valeur */
    .timeline-item.active .ancetre strong {
        color: var(--bleu-royal);
        font-size: 1.1rem;
    }

    .timeline-item.active .lieu {
        color: var(--bleu-royal);
        font-weight: 600;
        font-style: normal;
    }
    
    /* Compteur 4 jours */
    .compteur-4-jours {
        width: 200px;
        height: 200px;
    }
    
    .compteur-chiffre {
        font-size: 5rem;
    }
    
    .compteur-label {
        font-size: 1.5rem;
    }
    
    /* Domaines */
    .domaine-icon {
        height: 200px;
    }
    
    .icon-chance {
        font-size: 6rem;
    }
    
    /* Étapes */
    .etape {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .etape-numero {
        margin: 0 auto var(--spacing-sm);
    }
    
    /* FAQ */
    .faq-item {
        padding: var(--spacing-sm);
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    /* Contact */
    .contact-phone {
        font-size: 1.25rem;
    }
    
    .villes-principales {
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-nav {
        align-items: center;
    }
    
    .footer-nav a:hover {
        padding-left: 0;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (375px)
   ======================================== */

@media (max-width: 375px) {
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.35rem;
    }
    
    p, li {
        font-size: 0.9rem;
    }
    
    .nav-logo {
        text-align: center;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .hero {
        padding-top: 160px; /* Maximum d'espace pour très petits écrans */
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .compteur-4-jours {
        width: 180px;
        height: 180px;
    }
    
    .compteur-chiffre {
        font-size: 4rem;
    }
    
    .compteur-label {
        font-size: 1.25rem;
    }
    
    .btn-flottant-mobile {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

/* Fade in au scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll behavior */
html {
    scroll-padding-top: 100px; /* Espace pour nav fixe */
}

/* Focus states pour accessibilité */
a:focus,
button:focus {
    outline: 3px solid var(--or);
    outline-offset: 3px;
}

/* Selection de texte */
::selection {
    background: var(--or);
    color: var(--noir-profond);
}

/* ========================================
   PRINT STYLES (si impression nécessaire)
   ======================================== */

@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    
    body {
        font-family: Arial, Helvetica, sans-serif !important;
    }
    
    .nav-fixe,
    .btn-flottant-mobile,
    .hero-motif-africain {
        display: none !important;
    }
    
    section {
        page-break-inside: avoid;
    }
    
    h1, h2, h3 {
        color: #000000 !important;
    }
    
    a {
        color: #000000 !important;
        text-decoration: underline !important;
    }
}

/* ========================================
   AMÉLIORATION BONUS : ESPACEMENT SECTIONS
   ======================================== */

/* S'assurer que toutes les sections ont assez d'espace en haut pour la nav fixe */
section[id] {
    scroll-margin-top: 100px; /* Espace pour navigation fixe */
}

@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 120px;
    }
}

@media (max-width: 480px) {
    section[id] {
        scroll-margin-top: 140px;
    }
}

/* ========================================
   LISIBILITÉ TEXTES
   ======================================== */


/* Section 4 jours - Textes sur fond bleu */
.section-4-jours p,
.section-4-jours li,
.section-4-jours .etapes-rituel li {
    color: var(--blanc-casse) !important;
}

.section-4-jours strong, .section-link a {
    color: var(--blanc-pur) !important;
}

/* Étapes rituel - améliorer contraste */
.etapes-rituel {
    background: rgba(255, 255, 255, 0.15) !important; /* Plus opaque */
    border-left-color: var(--or);
}

/* Avertissement et engagement dans section bleue */
.section-4-jours .avertissement,
.section-4-jours .engagement {
    background: rgba(212, 175, 55, 0.25) !important; /* Plus opaque */
}

.section-4-jours .avertissement p,
.section-4-jours .engagement p {
    color: var(--blanc-pur) !important;
}

/* Section connexion - Textes sur fond terre */
.section-connexion p {
    color: var(--blanc-casse) !important;
}

.section-connexion strong {
    color: var(--blanc-pur) !important;
}

.section-connexion .situations-list {
    background: rgba(255, 255, 255, 0.15) !important;
}

.section-connexion .situations-list li {
    color: var(--blanc-casse) !important;
}

/* Blocs spéciaux dans section connexion */
.comprehension,
.droit,
.appel,
.premier-pas {
    background: rgba(212, 175, 55, 0.3) !important;
    border-color: var(--or);
}

.comprehension p,
.droit p,
.appel p,
.premier-pas p {
    color: var(--blanc-pur) !important;
}

.comprehension strong,
.droit strong,
.appel strong,
.premier-pas strong {
    color: var(--or-light) !important;
}



/* ========================================
   FIN DU CSS
   ======================================== */