/* --- STYLE V3 : SITE PRO COMPLET --- */

/* --- 1. Variables et Configuration Globale --- */
:root {
    --primary-color: #005a9c; /* Un bleu pro, tu peux changer (ex: #007bff) */
    --secondary-color: #1a1a1a; /* Gris foncé/Noir pour les textes */
    --light-gray: #f8f9fa; /* Fond gris clair pour les sections */
    --white: #ffffff;
    --text-color: #333;
    --text-light: #6c757d;
    --shadow: 0 6px 20px rgba(0,0,0,0.08);
    --border-radius: 12px;
}

/* Réinitialisation de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* C'est ça qui fait le défilement doux ! */
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. Styles Généraux (Titres, Boutons) --- */
.section-title {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 1.1em;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: -20px auto 40px auto;
}

/* Styles des boutons */
.btn {
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px; /* Boutons arrondis */
    padding: 12px 28px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #004a80; /* Version plus foncée du bleu */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-large {
    font-size: 1.2em;
    padding: 15px 35px;
}

/* --- 3. Header (Menu de navigation) --- */
.header {
    background: transparent; /* TRANSPARENT PAR DÉFAUT */
    box-shadow: none; /* PAS D'OMBRE PAR DÉFAUT */
    position: fixed; /* Fixé en haut (au lieu de sticky) */
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    text-decoration: none; /* On garde juste ça */
}

/* Style pour l'image à l'intérieur du lien logo */
.logo img {
    max-height: 50px; /* Le header fait 80px, 50px est une bonne taille */
    width: auto; /* La largeur s'adapte toute seule */
    /* On ajoute un petit effet de transition si besoin */
    transition: all 0.3s ease; 
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--white); /* CHANGÉ EN BLANC (pour le fond hero) */
    font-weight: 600;
    position: relative;
}

/* On applique le padding 5px 0 UNIQUEMENT aux liens normaux */
.main-nav a:not(.btn) {
    padding: 5px 0;
}

.main-nav a:not(.btn)::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
    position: absolute;
    bottom: 0;
    left: 0;
}

.main-nav a:not(.btn):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none; /* Caché sur ordinateur */
    cursor: pointer;
    background: transparent; /* Enlève tout fond */
    border: none; /* Enlève toute bordure */
    padding: 0; /* Enlève tout espace interne */
}

/* --- Style du Header AU DÉFILEMENT (via JS) --- */
.header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header.scrolled .main-nav a:not(.btn) {
    color: var(--secondary-color); /* Devient noir au défilement */
}

.header.scrolled .menu-toggle span {
    background: var(--secondary-color); /* Devient noir au défilement */
}

/* --- 4. Section Hero (Accueil) --- */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    
    /* REMPLACE CA PAR UNE VRAIE PHOTO DE TA VOITURE OU UN PAYSAGE */
    background: url('hero-desktop.webp') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Assombrit l'image pour que le texte soit lisible */
}

.hero-content {
    position: relative; /* Pour être au-dessus de l'overlay */
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content .subtitle {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content .regions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-content .regions span {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
}

/* --- 5. Section À Propos (avec le RAV4) --- */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 15px;
}

.about-text ul {
    list-style: none;
    margin: 20px 0;
}

.about-text li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.about-text .fa-check-circle {
    color: var(--primary-color);
    margin-right: 10px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* --- 6. Section Chiffres Clés (10 ans, 24h/24...) --- */
.key-features-section {
    background: var(--light-gray);
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    /* text-align: center; <-- On remplace ça */
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);

    /* --- LIGNES AJOUTÉES --- */
    display: flex; /* Active le mode "flexible" */
    flex-direction: column; /* Aligne les éléments verticalement */
    align-items: center; /* Centre l'icône, le titre et le texte */
    text-align: center; /* Garde le texte centré */
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px); /* On fait un décollement subtil */
    box-shadow: 0 8px 20px rgba(0,0,0,0.1); /* On utilise la même ombre subtile */
    z-index: 10; /* S'assure qu'il passe au-dessus */
}

/* Cette règle va pousser le paragraphe en bas de la boîte */
.feature-item p {
    margin-top: auto;
}

.feature-item i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* --- 7. Section Liste des Services (Dialyses, etc.) --- */
.services-list-section {
    padding: 80px 0;
    background: var(--white);
}

.service-points ul {
    list-style: none;
    column-count: 2;
    column-gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-points li {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.service-points .fa-check-circle {
    color: var(--primary-color);
    margin-right: 10px;
}

/* --- 8. Section Prestations (Carrousel) - VERSION CORRIGÉE --- */
.prestations-section {
    padding: 80px 0;
    background: var(--light-gray);
}

/* La carte (le "slide") n'a plus de style, elle est juste un conteneur */
.prestation-card {
    /* On ajoute de l'espace en haut pour que l'ombre ait la place de s'animer */
    padding-top: 10px; 
    padding-bottom: 10px;
}

/* C'EST LA NOUVELLE BOÎTE QUI A LE DESIGN */
.prestation-card-inner {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden; /* Pour que l'image ne dépasse pas */
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

/* C'EST CETTE BOÎTE QU'ON ANIME ! (Pas de conflit !) */
.prestation-card:hover .prestation-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* On change les sélecteurs pour pointer vers la boîte intérieure */
.prestation-card-inner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block; /* Corrige un micro-espace sous l'image */
}

.prestation-card-inner h3 {
    font-size: 1.4em;
    padding: 20px 20px 10px 20px;
    color: var(--secondary-color);
}

.prestation-card-inner p {
    padding: 0 20px 20px 20px;
    color: var(--text-light);
}

/* Styles pour le carrousel (Swiper) */
.swiper-container {
    width: 100%;
    padding: 0 0 50px 0; /* Plus besoin de padding en haut ici */
    overflow: hidden; 
}

.swiper-pagination {
    bottom: 0;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color);
}

/* --- 9. Section Avis Clients --- */
.reviews-section {
    padding: 80px 0;
    position: relative;
    /* Mets une belle image de fond ici (ex: intérieur voiture flouté) */
    background: url('avis-fond.webp') no-repeat center center/cover;
    color: var(--white);
}

.reviews-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.85); /* Fond sombre très opaque */
    z-index: 1;
}

.reviews-content {
    position: relative;
    z-index: 2;
}

.reviews-section .section-title {
    color: var(--white);
}

.review-card {
    text-align: center;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.review-card .quote-icon {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.review-card .review-text {
    font-size: 1.3em;
    font-style: italic;
    margin-bottom: 20px;
}

.review-card .reviewer-name {
    font-weight: 700;
    font-size: 1.1em;
}

.reviews-slider .swiper-pagination-bullet {
    background: var(--white);
}

/* --- CORRECTION POUR LE CARROUSEL DES AVIS --- */
.reviews-slider.swiper-container {
    width: 100%;
    
    /* LA LIGNE QUI RÈGLE TOUT : */
    max-width: 700px; /* On force le carrousel à la taille d'une seule carte */
    
    margin: 0 auto;    /* On centre le carrousel lui-même */
    padding: 0 0 50px 0; 
    overflow: hidden;
}

/* --- 11. Section FAQ (Accordéon) --- */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    padding: 20px 0;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0; /* CACHÉ PAR DÉFAUT */
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p, .faq-answer ul {
    padding: 0 10px 20px 10px;
    color: var(--text-light);
}

.faq-answer ul {
    padding-left: 30px;
}

/* Style pour l'item OUVERT */
.faq-item.active .faq-answer {
    max-height: 300px; /* Se déploie */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg); /* La flèche tourne */
}


/* --- 12. Footer (Pied de page) - NOUVEAU DESIGN --- */
.footer {
    background: var(--secondary-color); /* On garde le fond sombre */
    color: #aaa; /* On garde la couleur de texte claire */
    padding: 60px 0 0 0; /* Plus d'espace en haut, 0 en bas */
    margin-top: 60px; /* Espace avant le footer */
    border-top: 1px solid #333;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes */
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Colonne 1: Logo & Desc */
.footer-logo img {
    max-height: 40px; /* Un peu plus petit que dans le header */
    width: auto;
    margin-bottom: 15px;
}
.footer-desc {
    font-size: 0.9em;
    line-height: 1.6;
}

/* Colonnes 2 & 3: Listes */
.footer-links-list, .footer-contact {
    list-style: none;
}
.footer-links-list li, .footer-contact li {
    margin-bottom: 10px;
}
.footer-links-list a, .footer-contact a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links-list a:hover, .footer-contact a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Style pour la 3ème colonne (icônes) */
.footer-contact i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary-color); /* On utilise la couleur du site ! */
}
.footer-contact span { /* Pour le texte "Île-de-France" */
    color: #aaa;
}

/* Copyright bar */
.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

/* Responsive pour le footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* 1 colonne sur mobile */
    }
    .footer-col {
        text-align: center; /* Centrer sur mobile */
    }
    .footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-contact li {
        display: flex;
        align-items: center;
        justify-content: center; /* Centrer les icônes et le texte */
    }
}

/* --- 13. Responsive (Adaptation Mobile) --- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1; /* Remonte l'image en haut sur mobile */
    }

    .service-points ul {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2em;
    }
    
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-section {
        /* Vos styles de hauteur que vous avez déjà */
        height: auto; 
        min-height: 50vh; 
        padding: 100px 0 60px 0; 

        /* --- AJOUTEZ CETTE LIGNE --- */
        /* On remplace l'image par la version mobile */
        background-image: url('hero-mobile.webp');
        
        /* (Optionnel, si le centrage n'est pas bon) */
        /* background-position: center top; */ 
    }
    
    /* --- MENU HAMBURGER --- */
    .main-nav {
        position: absolute;
        top: 80px; /* Sous le header */
        left: 0;
        background: var(--white);
        width: 100%;
        
        /* Caché par défaut */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }

    .main-nav.active {
        max-height: 500px; /* Se déploie */
        box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    }

    /* ... (après le .main-nav.active { ... } ) ... */

    /* * CORRECTION N°1:
    * Force les liens du menu à être NOIRS quand le menu est ouvert
    */
    .main-nav.active a:not(.btn) {
        color: var(--secondary-color);
    }

    /* * CORRECTION N°2:
    * Force l'icône "X" (le burger actif) à être NOIRE
    * (Sinon elle est blanche sur fond blanc)
    */
    .menu-toggle.is-active span {
        background: var(--secondary-color);
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav li {
        margin: 10px 0;
        text-align: center;
    }
    
    .main-nav .btn {
        display: block;
        margin-top: 15px;
    }
    
    .menu-toggle {
        display: block; /* S'affiche sur mobile */
    }

    /* ... (CSS pour l'animation du burger - voir script.js) ... */
    /* C'EST CE CODE QUI MANQUAIT : */
    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background: var(--white); /* Blanc*/
        transition: all 0.3s ease-in-out;
    }
    
    /* Animation 'X' quand on clique */
    .menu-toggle.is-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    /* ... (CSS pour l'animation du burger - voir script.js) ... */
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 14. Bouton Retour en Haut --- */
.scroll-top-btn {
    position: fixed; /* Il reste collé à l'écran */
    bottom: 30px;
    right: 30px;
    
    background: var(--primary-color);
    color: var(--white);
    
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Pour faire un cercle */
    
    display: flex; /* Pour centrer l'icône */
    align-items: center;
    justify-content: center;
    
    font-size: 1.2em;
    text-decoration: none;
    
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    
    /* Géré par le JS */
    opacity: 0; /* Caché par défaut */
    visibility: hidden; /* Complètement caché */
    transform: translateY(20px); /* Petit effet d'apparition */
    
    transition: all 0.3s ease;
    z-index: 999; /* Pour être au-dessus de tout */
}

/* L'état quand il est visible */
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #004a80; /* Bleu plus foncé */
    transform: translateY(-3px); /* Effet au survol */
}

/* --- 15. Style du Formulaire de Réservation --- */

/* --- NOUVEAU : Centre le texte d'intro de la section réservation --- */
.booking-section > .container > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 20px auto;
    color: var(--text-light); /* On le met en gris clair, c'est plus joli */
}

.booking-form {
    max-width: 800px;
    margin: 40px auto 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 90, 156, 0.3);
}

textarea.form-input {
    resize: vertical;
}

/* Grille pour mettre les champs côte à côte */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Responsive pour la grille sur mobile */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr; /* Une seule colonne */
        gap: 0; /* Pas d'espace (le form-group s'en charge) */
    }
}

/* --- 15. Styles pour le Statut du Formulaire --- */
#form-status {
    /* Par défaut, il est vide et ne prend pas de place */
    margin-bottom: 20px;
    padding: 0;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: none; /* Important : caché par défaut */
}

/* Classe qu'on ajoutera en JS si l'envoi RÉUSSIT */
.form-success {
    display: block;
    background: #e0f8e9; /* Fond vert clair */
    border: 1px solid #4CAF50; /* Bordure verte */
    color: #2e7d32; /* Texte vert foncé */
    padding: 15px;
}

/* Classe qu'on ajoutera en JS si l'envoi ÉCHOUE */
.form-error {
    display: block;
    background: #fdebee; /* Fond rouge clair */
    border: 1px solid #f44336; /* Bordure rouge */
    color: #c62828; /* Texte rouge foncé */
    padding: 15px;
}

/* --- 16. Animations au Défilement --- */

/* Par défaut, cache tous les éléments qu'on veut animer */
.reveal-on-scroll {
    opacity: 0; /* Invisible */
    transform: translateY(30px); /* Légèrement décalé vers le bas */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Classe que le JS va ajouter quand l'élément est visible */
.reveal-on-scroll.is-visible {
    opacity: 1; /* Visible */
    transform: translateY(0); /* Retour à la position normale */
}

/* --- 17. Styles pour les pages internes (Actualités, etc.) --- */

/* Force le header à être blanc sur les pages internes */
.page-interne .header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-interne .header .main-nav a:not(.btn) {
    color: var(--secondary-color); /* Texte en noir */
}

.page-interne .header .menu-toggle span {
    background: var(--secondary-color); /* Icône mobile en noir */
}

/* Style pour le titre de la page (ex: "Nos Actualités") */
.page-title-hero {
    background: var(--light-gray);
    padding: 140px 0 40px 0; /* 140px en haut pour laisser la place au menu fixé */
    border-bottom: 1px solid #eee;
}
.page-title-hero h1 {
    font-size: 3em;
    color: var(--secondary-color);
}
.page-title-hero p {
    font-size: 1.2em;
    color: var(--text-light);
}

/* Style pour le contenu de la page (texte, listes) */
.page-content {
    padding: 60px 20px;
    line-height: 1.8;
    background: var(--light-gray);
}
.page-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
}
.page-content ul {
    margin: 20px 0 20px 30px;
}
.page-content li {
    margin-bottom: 10px;
}

/* --- 18. Styles pour le Blog (Actualités) --- */

.article-list {
    display: grid;
    grid-template-columns: 1fr; /* Une colonne par défaut (pour mobile) */
    gap: 30px;
}

/* On passe à 2 colonnes sur les écrans plus larges */
@media (min-width: 768px) {
    .article-list {
        grid-template-columns: 1fr 1fr;
    }
}

.article-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease; /* <-- AJOUTE ÇA */
}

/* AJOUTE ÇA JUSTE EN DESSOUS */
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.article-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.article-content {
    padding: 30px;
}

.article-content h2 {
    font-size: 1.6em;
    margin-bottom: 15px;
}

.article-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* --- 19. Styles pour les Articles (pages internes) --- */

.article-body {
    max-width: 800px; /* On garde la largeur de lecture confortable */
    margin: 0 auto;
}

.article-featured-image {
    width: 100%;
    height: auto;
    max-height: 400px; /* On la limite pour ne pas qu'elle soit trop grande */
    object-fit: cover;
    border-radius: var(--border-radius);
    margin: 20px 0 30px 0; /* Espace avant/après l'image */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* On affine la typographie de l'article */
.article-body h2 {
    font-size: 1.8em; /* Un peu plus petit que le h2 global */
    margin-top: 40px; /* Plus d'espace avant un sous-titre */
    margin-bottom: 15px;
}

.article-body h3 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 10px;
}

.article-body p {
    line-height: 1.7; /* Plus d'espace entre les lignes pour la lecture */
    margin-bottom: 20px;
}

.article-body ul, .article-body ol {
    margin-left: 20px;
    margin-bottom: 20px;
}
.article-body li {
    line-height: 1.7;
    margin-bottom: 10px;
}

/* --- BARRE FIXE MOBILE (Action Rapide) --- */
.mobile-sticky-bar {
    display: none; /* Caché sur PC */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px; /* Un peu plus haut pour le confort */
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15); /* Ombre pour bien la détacher */
    z-index: 9999;
    padding: 10px 15px;
    box-sizing: border-box; /* Important pour les marges */
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex; /* Visible sur mobile */
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    /* On remonte le footer et le bouton haut de page pour ne pas être cachés */
    .footer { padding-bottom: 90px; }
    .scroll-top-btn { bottom: 90px; }
}

.sticky-btn {
    flex: 1; /* Les deux boutons prennent la même largeur */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s;
}

.sticky-btn i { margin-right: 8px; font-size: 1.2rem; }

/* Couleurs psychologiques */
.btn-call-sticky {
    background: #25D366; /* Vert "WhatsApp/Appel" très visible */
    color: white;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-book-sticky {
    background: var(--primary-color); /* Ton bleu pro */
    color: white;
    box-shadow: 0 4px 10px rgba(0, 90, 156, 0.3);
}

.sticky-btn:active { transform: scale(0.95); }