/* -------------------------------------------------------------
   VARIABLES DE COULEUR DU DESIGN ORIGINAL (CEDIAPSY)
   ------------------------------------------------------------- */
:root {
    --emerald: #006653;
    --emerald-hover: #004d3f;
    --emerald-light: rgba(0, 102, 83, 0.08);
    --gold: #d4af37;
    --bg-light: #ffffff;
    --bg-beige: #f4f1ea;
    --text-dark: #1c2421;
    --text-muted: #53645f;
    --border-color: #e2ded5;
    
    --font-serif: 'Times New Roman', Times, serif; /* Pour coller au style élégant des titres */
    --font-sans: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* -------------------------------------------------------------
   BOUTONS & STYLES COMMUNS
   ------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--emerald);
    color: #ffffff;
    border: 1px solid var(--emerald);
}
.btn-primary:hover {
    background-color: var(--emerald-hover);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.btn-outline:hover {
    background-color: #ffffff;
    color: var(--emerald);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--emerald);
    border: 1px solid var(--emerald);
    font-weight: 600;
}
.btn-outline-dark:hover {
    background-color: var(--emerald);
    color: #ffffff;
}

.btn-contact {
    background-color: #ffffff;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}
.btn-contact:hover {
    background-color: var(--emerald);
    color: #ffffff;
}

.btn-text {
    color: var(--emerald);
    font-weight: 600;
    gap: 8px;
}
.btn-text:hover {
    gap: 14px;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}
.section-title h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--emerald);
    margin-bottom: 12px;
}
.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.center-btn {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* -------------------------------------------------------------
   EN-TÊTE DE LA PAGE (HEADER)
   ------------------------------------------------------------- */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 9999 !important;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none; 
}
.logo img {
    height: 40px;        
    width: auto;        
    display: block;
    transition: transform 0.3s ease;
}
.logo:hover img {
    transform: scale(1.02); 
}

.nav-list {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-list a {
    text-decoration: none; /* Supprime le soulignement */
    color: var(--text-dark); /* Remplace par ta variable de couleur textuelle */
    font-weight: 500;
    transition: color 0.3s ease;
}

/* 3. Petit bonus : on rajoute un effet au survol (hover) pour faire pro */
.nav-list a:hover {
    color: var(--emerald); /* Le lien change de couleur quand on passe dessus */
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
        text-decoration: none;

}
.nav-link:hover, .nav-link.active {
    color: var(--emerald);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 10001 !important;
}

/* -------------------------------------------------------------
   SECTION HERO & COMPTEURS
   ------------------------------------------------------------- */
.hero-section {
    position: relative;
    background-image: url('images/Hero2_image.png');    background-size: cover;
    background-position: center;
    padding: 140px 0 100px 0;
    color: #ffffff;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0, 36, 29, 0.6), rgba(0, 56, 45, 0.9));
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-container h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
}

.text-gold {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.stat-item h3 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--gold);
    font-weight: 400;
}
.stat-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* -------------------------------------------------------------
   BARRE VERTE DE SPÉCIALITÉS
   ------------------------------------------------------------- */
.specialties-bar {
    background-color: var(--emerald);
    color: #ffffff;
    padding: 18px 0;
    overflow: hidden; /* Masque tout ce qui dépasse de l'écran */
    width: 100%;
    display: flex;
}

.ticker-wrapper {
    display: flex;
    width: max-content;
}

.ticker-group {
    display: flex;
    align-items: center;
    gap: 40px; /* Espace entre chaque spécialité */
    padding-right: 40px; /* Assure la continuité de l'espace en fin de boucle */
    animation: scrollInfinite 25s linear infinite; /* 25 secondes pour faire un tour complet */
}

.tags-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.tag {
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap; /* Empêche le texte de revenir à la ligne */
    cursor: pointer;
    opacity: 0.9;
    transition: var(--transition);
}
.tag:hover {
    opacity: 1;
    color: var(--gold);
}

@keyframes scrollInfinite {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0); /* Déplace exactement de la taille d'un groupe */
    }
}

/* -------------------------------------------------------------
   SECTION NOUVEAUTÉS
   ------------------------------------------------------------- */
.news-section {
    background-color: var(--bg-beige);
    padding: 50px 0;
}

.news-header {
    margin-bottom: 24px;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--emerald);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.news-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer; 
}


/* --- Effet Hover global (Élévation de la carte) --- */
.news-card:hover {
    transform: translateY(-6px); /* La carte monte de 6 pixels */
}

/* --- Hover spécifique pour la carte CLAIRE --- */
.news-card:not(.card-dark):hover {
    background-color: #ffffff;
    /* Ombre renforcée à 0.07 comme convenu pour ton design */
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.07); 
}

.card-dark {
    background-color: var(--emerald);
    color: #ffffff;
}

.news-icon {
    font-size: 1.8rem;
}
.text-emerald { color: var(--emerald); }

.news-body h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.news-body p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* -------------------------------------------------------------
   SECTION NOS PRISES EN CHARGE (GRILLE BLANCHE)
   ------------------------------------------------------------- */
.charges-section {
    padding: 100px 0;
    background-color: var(--bg-beige);
}

.charges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.charge-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    transition: var(--transition);
}
.charge-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.charge-icon {
    font-size: 1.5rem;
    color: var(--emerald);
    margin-bottom: 20px;
}

.charge-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.charge-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* -------------------------------------------------------------
   SECTION ÉVALUATIONS DIAGNOSTIQUES
   ------------------------------------------------------------- */
.evaluations-section {
    padding: 100px 0;
    background-color: var(--bg-beige);
    border-top: 1px solid var(--border-color);
}

.eval-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.eval-card {
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eval-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.eval-card-icon {
    width: 48px;
    height: 48px;
    background-color: var(--emerald-light);
    color: var(--emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.eval-card h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 600;
}

.eval-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.eval-list-items {
    list-style: none;
    margin-bottom: 32px;
}
.eval-list-items li {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}
.eval-list-items li::before {
    content: "•";
    color: var(--emerald);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.eval-link {
    color: var(--emerald);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* -------------------------------------------------------------
   SECTION NOTRE ÉQUIPE
   ------------------------------------------------------------- */
.team-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    background-color: var(--bg-beige);
    padding: 32px 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.avatar-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px auto;
}
.avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-card .specialty {
    display: block;
    font-size: 0.85rem;
    color: var(--emerald);
    font-weight: 500;
}

/* -------------------------------------------------------------
   SECTION TÉMOIGNAGES
   ------------------------------------------------------------- */
.testimonials-section {
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-slide blockquote {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-slide .author {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.slider-dots .dot {
    width: 8px;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
}
.slider-dots .dot.active {
    background-color: var(--emerald);
    width: 20px;
    border-radius: 10px;
}

/* -------------------------------------------------------------
   PIED DE PAGE (FOOTER)
   ------------------------------------------------------------- */
.main-footer {
    background-color: #121816;
    color: #9ab0a9;
    padding: 80px 0 30px 0;
    font-size: 0.95rem;
}

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

.logo.inverted {
    color: #ffffff;
    margin-bottom: 24px;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links h5 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #9ab0a9;
    text-decoration: none;
    transition: var(--transition);
}
.footer-links a:hover {
    color: #ffffff;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-contact-list i {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid #222d29;
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ==========================================================================
   ==========================================================================
   PAGE ÉQUIPE (EQUIPE.HTML) - AJOUTS SPÉCIFIQUES
   ==========================================================================
   ========================================================================== */

/* -------------------------------------------------------------
   FIL D'ARIANE ET INTRO DE LA PAGE
   ------------------------------------------------------------- */
.page-intro-section {
    background-color: #ffffff;
    text-align: center;
    padding: 40px 0 60px 0;
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}
.breadcrumb a:hover {
    color: var(--emerald);
}
.breadcrumb .current {
    color: var(--emerald);
    font-weight: 500;
}

.page-main-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* -------------------------------------------------------------
   SECTION LES PROFESSIONNELS (CARTES HORIZONTALES)
   ------------------------------------------------------------- */
.professionals-section {
    background-color: var(--bg-beige);
    padding: 60px 0 80px 0;
}

.sub-section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 48px;
}

.professionals-list {
    display: flex;
    flex-direction: column;
    gap: 32px; /* Espacement vertical entre les cartes */
}

.prof-horizontal-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    overflow: hidden;
    transition: var(--transition);
}
.prof-horizontal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Zone Image à gauche */
.prof-image-area {
    width: 260px;
    min-width: 260px;
    position: relative;
}
.prof-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Zone Informations à droite */
.prof-info-area {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.prof-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 16px;
}

.prof-card-header h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 600;
}

.prof-role {
    font-size: 0.9rem;
    color: var(--emerald);
    font-weight: 600;
    text-transform: capitalize;
}

.prof-quote {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-muted);
    font-size: 1rem;
    text-align: right;
    max-width: 300px;
}

.prof-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Grille interne Spécialités / Formation */
.prof-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 40px;
    border-top: 1px solid #f0ede6;
    padding-top: 24px;
    align-items: start;
}

.details-col h5 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.details-col h5 i {
    color: var(--emerald);
    font-size: 0.9rem;
}

.details-col ul {
    list-style: none;
}
.details-col li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}
.details-col li::before {
    content: "•";
    color: var(--emerald);
    position: absolute;
    left: 0;
}

/* Alignement de la formation et du QR Code côte à côte */
.formation-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Aligne verticalement le QR code au milieu de la liste */
    gap: 16px; /* Espace entre le texte et le QR code */
}

/* Optionnel : Ajustement si tu veux que la liste prenne le max de place à gauche */
.formation-content-wrapper ul {
    flex-grow: 1;
}

/* Style et dimensionnement du QR code */
.prof-qrcode-area {
    width: 85px; /* Taille idéale pour rester discret mais scannable */
    min-width: 80px;
    height: 80px;
    border: 1px solid #f0ede6; /* Léger encadrement pour le faire ressortir */
    padding: 4px;
    border-radius: 6px;
    background-color: #ffffff;
}

.prof-qrcode-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* -------------------------------------------------------------
   SECTION REJOIGNEZ NOTRE ÉQUIPE
   ------------------------------------------------------------- */
.join-team-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.join-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.join-image-box {
    border-radius: 12px;
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow);
}
.join-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.join-content-box h2 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 16px;
}

.join-lead {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1rem;
}

.join-bullets {
    list-style: none;
    margin-bottom: 36px;
}
.join-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 500;
}
.join-bullets i {
    color: var(--emerald);
    font-size: 1rem;
}

/* ==========================================================================
   ==========================================================================
   PAGE LES TROUBLES ÉVALUÉS (TROUBLES.HTML) - AJOUTS SPÉCIFIQUES
   ==========================================================================
   ========================================================================== */

/* Petits boutons d'ancrage sous l'intro */
.anchors-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.anchor-btn {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.anchor-btn:hover {
    border-color: var(--emerald);
    color: var(--emerald);
    transform: translateY(-2px);
}

/* Container global des blocs de pathologies */
.troubles-main-container {
    background-color: #fcfbfa;
    padding: 40px 0 80px 0;
}

.trouble-card-block {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    margin-bottom: 60px;
    border: 1px solid rgba(0,0,0,0.02);
}

/* Bannières avec filtres de couleur (Teinte verte Cédiapsy) */
.trouble-hero-banner {
    padding: 60px 40px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #ffffff;
}

.trouble-hero-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0, 56, 45, 0.85), rgba(0, 102, 83, 0.4));
    z-index: 1;
}

.trouble-hero-banner h2 {
    position: relative;
    z-index: 2;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Images de fond spécifiques pour chaque bannière */
.tsa-bg { background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&q=80&w=1200'); }
.bipolaire-bg { background-image: url('images/illustration_troubles.png'); }
.anxiete-bg { background-image: url('https://images.unsplash.com/photo-1470246973918-29a93221c455?auto=format&fit=crop&q=80&w=1200'); }
.schizo-bg { background-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&q=80&w=1200'); }

/* Grille interne : Texte à gauche, encadré à droite */
.trouble-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    padding: 40px;
    align-items: flex-start;
}

.trouble-text-area h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 600;
}

.trouble-text-area p {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 20px;
}

.trouble-text-area h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

/* Grille des petits carreaux/cases de signes */
.signs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.sign-item {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sign-item i {
    color: var(--emerald);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Bouton principal de l'action */
.btn-emerald-action {
    background-color: var(--emerald);
    color: #ffffff;
    font-weight: 500;
}
.btn-emerald-action:hover {
    background-color: var(--emerald-hover);
    color: #ffffff;
}

/* Encadré Sidebar à droite */
.trouble-sidebar-box {
    background-color: #faf9f6;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
}

.trouble-sidebar-box h5 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.trouble-sidebar-box ul {
    list-style: none;
    margin-bottom: 28px;
}

.trouble-sidebar-box li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
}

.trouble-sidebar-box li::before {
    content: "•";
    color: var(--emerald);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.btn-outline-sidebar {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    padding: 10px 20px;
    width: 100%;
}

.btn-outline-sidebar:hover {
    background-color: var(--emerald);
    color: #ffffff;
    border-color: var(--emerald);
}

/* ==========================================================================
   ==========================================================================
   PAGE PRISES EN CHARGE (PRISE-EN-CHARGE.HTML) - STYLE SPÉCIFIQUE
   ==========================================================================
   ========================================================================== */

.care-main-container {
    background-color: #f4f1ea; /* Couleur de fond beige douce globale */
    padding: 30px 0 60px 0;
}

/* Structure globale d'une carte de soin */
.care-card {
    background-color: #ffffff;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 300px;
    margin-bottom: 32px;
    overflow: hidden;
    /* Ombre intensifiée à 0.07 pour que les cartes ressortent parfaitement */
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    transition: var(--transition);
}

.care-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Système de bordures décoratives épaisses à gauche (Vu sur la maquette) */
.care-card.side-emerald { border-left: 32px solid var(--emerald); }
.care-card.side-light-green { border-left: 32px solid #4da684; }
.care-card.side-teal { border-left: 32px solid #008080; }
.care-card.side-sage { border-left: 32px solid #8fbc8f; }

/* Zone principale gauche (Infos) */
.care-main-info {
    padding: 40px;
}

.care-title-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.care-icon-box {
    font-size: 2rem;
    color: var(--emerald);
}

.care-title-block h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.care-tag-sub {
    font-size: 0.85rem;
    color: var(--emerald);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.care-description {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.care-benefits-block h4 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 14px;
    font-weight: 600;
}

.care-benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    list-style: none;
}

.care-benefits-list li {
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.care-benefits-list li i {
    color: var(--emerald);
    font-size: 1.05rem;
}

/* Zone latérale droite (Méta & Action) */
.care-meta-sidebar {
    background-color: #faf9f6;
    border-left: 1px solid #e3ded5;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.meta-item {
    margin-bottom: 20px;
}

.meta-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.meta-value {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

.btn-care-action {
    background-color: var(--emerald);
    color: #ffffff;
    font-size: 0.9rem;
    width: 100%;
    gap: 8px;
}

.btn-care-action:hover {
    background-color: var(--emerald-hover);
    color: #ffffff;
}

/* -------------------------------------------------------------
   SECTION BAS DE PAGE : NOTRE APPROCHE THÉRAPEUTIQUE
   ------------------------------------------------------------- */
.approach-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.approach-main-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 48px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.approach-card {
    background-color: #faf9f6;
    border: 1px solid var(--border-color);
    padding: 40px 24px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.approach-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--emerald);
    margin-bottom: 16px;
    font-weight: bold;
}

.approach-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

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

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    float: right;
    font-size: 28px;
    cursor: pointer;
}

.btn-more {
    margin-top:20px;
    padding:12px 24px;
    border:none;
    border-radius:30px;
    background:#0d6efd;
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

/* petit effet hover moderne */
.btn-more::after {
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
}

.btn-more:hover {
    transform:translateY(-2px);
    background:#0b5ed7;
}

.btn-more:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* clic */
.btn-more:active {
    transform: translateY(0px);
    box-shadow: none;
}

/* ==========================================================================
   ==========================================================================
   PAGE PRENDRE RENDEZ-VOUS (RENDEZ-VOUS.HTML) - STYLE SPÉCIFIQUE
   ==========================================================================
   ========================================================================== */

.booking-main-container {
    background-color: #f4f1ea; /* Fond beige uniforme global */
    padding: 20px 0 60px 0;
}

/* On force un container un peu plus serré/élégant pour les étapes centrales */
.small-container {
    max-width: 900px !important;
}

/* Zone Doctolib supérieure */
.doctolib-showcase-box {
    background-color: #eaf2ef; /* Teinte verte très claire et médicale */
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 48px;
    border: 1px solid rgba(0, 56, 45, 0.08);
}

.doctolib-alert-header {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.doctolib-alert-header .alert-icon {
    font-size: 1.5rem;
    color: var(--emerald);
    background-color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.doctolib-alert-header h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.doctolib-alert-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Grille interne Doctolib */
.praticiens-booking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.praticien-mini-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.praticien-mini-card h4 {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2px;
}

.praticien-specialty {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.btn-doctolib-sub {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 0.8rem;
    padding: 8px 12px;
    width: 100%;
    justify-content: center;
    gap: 6px;
}
.btn-doctolib-sub:hover {
    border-color: var(--emerald);
    color: var(--emerald);
    background-color: rgba(0, 56, 45, 0.02);
}

/* -------------------------------------------------------------
   BOÎTE DES ÉTAPES DE PRISE DE RDV
   ------------------------------------------------------------- */
.steps-section-box {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.steps-box-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-row-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-icon-wrapper {
    font-size: 1.8rem;
    color: var(--emerald);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.step-content-text h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 6px;
}

.step-content-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* -------------------------------------------------------------
   SECTION REPRÉSENTATIVE DES CABINETS (MAPS)
   ------------------------------------------------------------- */
.cabinets-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.cabinets-main-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 48px;
    font-weight: 400;
}

.cabinets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.cabinet-card {
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); /* Ombre portée prononcée */
    border: 1px solid var(--border-color);
}

/* Simulation de fond de carte stylisé épuré */
.map-mock-bg {
    height: 24px;
    min-height: 240px;
    background-color: #e5e3df;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Différenciation subtile ou images de cartes si tu en as */
.mac-map-8 { background-image: radial-gradient(#d5d2cd 15%, transparent 16%), linear-gradient(45deg, #dfdcd7 25%, transparent 25%); background-size: 30px 30px; }
.mac-map-11 { background-image: radial-gradient(#ccc9c2 10%, transparent 11%), linear-gradient(135deg, #dfdcd7 25%, transparent 25%); background-size: 24px 24px; }

.map-marker-pin {
    font-size: 2.5rem;
    color: #c94c4c; /* Épingles de carte rouges emblématiques */
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.map-badge-top {
    position: absolute;
    top: 16px; left: 16px;
    background-color: rgba(255,255,255,0.9);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cabinet-card-body {
    padding: 32px;
}

.cabinet-card-body h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.cabinet-intro-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
}

.cabinet-address-line {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.cabinet-address-line i {
    color: var(--emerald);
    font-size: 1.1rem;
    margin-top: 3px;
}
.cabinet-address-line p {
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.cabinet-access-block h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.metro-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.metro-tag {
    background-color: #faf9f6;
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}
.metro-tag i {
    color: #7a756b;
}

.btn-outline-map {
    background-color: #f7f5f0;
    border: 1px solid transparent;
    color: var(--text-dark);
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    gap: 8px;
}
.btn-outline-map:hover {
    background-color: #ebdcd0;
    border-color: transparent;
    color: var(--text-dark);
}

/* ==========================================================================
   ==========================================================================
   PAGE CONTACT (CONTACT.HTML) - STYLE SPÉCIFIQUE
   ==========================================================================
   ========================================================================== */

.contact-main-container {
    background-color: #f4f1ea; /* Fond beige uniforme global */
    padding: 30px 0 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: flex-start;
}

/* Formulaire (Boîte Blanche de gauche) */
.contact-form-box {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 50px 45px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
}

.contact-form-box h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 12px;
}

.form-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 36px;
}

/* Alignements internes des champs */
.form-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(0, 56, 45, 0.05);
}

/* Choix de case à cocher RGPD */
.form-checkbox-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.form-checkbox-group input {
    margin-top: 3px;
    accent-color: var(--emerald);
}

.form-checkbox-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.form-checkbox-group a {
    color: var(--text-dark);
    text-decoration: underline;
}

.btn-submit-form {
    background-color: #2b6151; /* Vert canard foncé de la maquette originale */
    color: #ffffff;
    padding: 14px 28px;
    font-weight: 500;
    gap: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}
.btn-submit-form:hover {
    background-color: var(--emerald-hover);
    color: #ffffff;
}

/* Colonne d'informations pratiques à droite */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-mini-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 28px;
    display: flex;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.01);
}

.info-card-icon {
    width: 44px;
    height: 44px;
    background-color: #3d7d6a; /* Couleur d'icône coordonnée */
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-card-content h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 6px;
}

.info-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}

.info-card-link {
    font-size: 0.85rem;
    color: #3d7d6a;
    text-decoration: underline;
    font-weight: 500;
}
.info-card-link:hover {
    color: var(--text-dark);
}

/* -------------------------------------------------------------
   SECTION CARTE PLEINE LARGEUR
   ------------------------------------------------------------- */
.large-map-section {
    background-color: #ffffff;
    position: relative;
    width: 100%;
    padding: 0;
}

.large-map-real {
    width: 100%;
    height: 100%;
}

.large-map-real iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-container-wrapper {
    height: 550px;
    position: relative;
    width: 100%;
}

/* Encadré flottant de l'adresse sur la carte */
.map-overlay-sub {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.map-overlay-addr {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn-overlay-route {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--emerald, #2d7a5f);
    color: var(--emerald, #2d7a5f);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.btn-overlay-route:hover {
    background-color: var(--emerald);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Rendu de fond de carte simulé */
.large-map-mock {
    width: 100%;
    height: 100%;
    background-color: #e5e3df;
    background-image: linear-gradient(rgba(220,217,211,0.8) 1px, transparent 1px), linear-gradient(90deg, rgba(220,217,211,0.8) 1px, transparent 1px);
    background-size: 50px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-map-pin {
    font-size: 3.5rem;
    color: #c94c4c;
    text-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* =========================
   BURGER MENU (DISCRET)
   ========================= */

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10002;
}

.burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Animation quand actif */
.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger-menu.active span:nth-child(2) {
    opacity: 0;
}
.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================================================
   MEDIA QUERIES (CONCEPTION RESPONSIVE CENTRALISÉE)
   ========================================================================== */

/* -------------------------------------------------------------
   1. TABLETTES LARGES & LAPTOPS (max-width: 1024px)
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
    /* Accueil */
    .hero-container h1 { font-size: 3.2rem; }
    .charges-grid, .eval-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: repeat(3, 1fr); }

    /* Équipe */
    .prof-horizontal-card { flex-direction: column; }
    .prof-image-area { width: 100%; height: 280px; }
    .join-grid { gap: 40px; }

    /* Troubles */
    .trouble-content-grid { grid-template-columns: 1fr; gap: 40px; }
    .trouble-sidebar-box { width: 100%; }
}
@media (max-width: 1020px) {

.burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 90px;
        right: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-color);

        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
        text-align: center;
    }

    .header-actions {
        display: none; /* optionnel pour alléger mobile */
    }

}
/* -------------------------------------------------------------
   2. TABLETTES INTERMÉDIAIRES (max-width: 992px)
   ------------------------------------------------------------- */
@media (max-width: 992px) {
    /* Prises en charge */
    .care-card { grid-template-columns: 1fr; }
    .care-meta-sidebar { border-left: none; border-top: 1px solid #e3ded5; padding: 30px 40px; }
    .approach-grid { grid-template-columns: 1fr; gap: 24px; }

    /* Rendez-vous */
    .praticiens-booking-grid { grid-template-columns: 1fr 1fr; }
    .cabinets-grid { grid-template-columns: 1fr; gap: 40px; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }
    .map-floating-overlay { left: 20px; top: 20px; }
}

/* -------------------------------------------------------------
   3. SMARTPHONES LARGE / PORTRAIT TABLETTE (max-width: 768px)
   ------------------------------------------------------------- */
@media (max-width: 768px) {
    /* Menu & Communs */
    .tags-wrapper { justify-content: center; }
    .section-title h2 { font-size: 2rem; }
    .page-main-title { font-size: 2.4rem; }
    

    /* Hero Accueil */
    .hero-container h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 300px; }
    .hero-stats { flex-direction: column; gap: 24px; }

    /* Grilles globales */
    .news-grid, .charges-grid, .eval-grid, .team-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Équipe */
    .prof-card-header { flex-direction: column; gap: 8px; }
    .prof-quote { text-align: left; max-width: 100%; font-size: 0.95rem; }
    .prof-details-grid { grid-template-columns: 1fr; gap: 24px; }
    .join-grid { grid-template-columns: 1fr; }
    .join-image-box { height: 260px; }
    .join-content-box h2 { font-size: 1.8rem; }

    /* Troubles */
    .trouble-hero-banner { padding: 40px 24px; }
    .trouble-hero-banner h2 { font-size: 1.7rem; }
    .trouble-content-grid { padding: 24px; }
    .signs-grid { grid-template-columns: 1fr; gap: 12px; }

    /* Rendez-vous */
    .doctolib-showcase-box { padding: 20px; }
    .doctolib-alert-header { flex-direction: column; gap: 12px; }
    .praticiens-booking-grid { grid-template-columns: 1fr; }
    .steps-section-box { padding: 30px 20px; }
    .step-row-item { flex-direction: column; gap: 8px; }
    .step-icon-wrapper { text-align: left; width: auto; }
    .cabinet-card-body { padding: 20px; }

    /* Contact */
    .contact-form-box { padding: 35px 24px; }
    .form-row-dual { grid-template-columns: 1fr; gap: 0; }
    .map-container-wrapper { height: 350px; display: flex; flex-direction: column; }
    .map-floating-overlay { position: relative; top: 0; left: 0; max-width: 100%; border-radius: 0; box-shadow: none; border-bottom: 1px solid var(--border-color); }
    .large-map-mock { height: 250px; }
}

/* -------------------------------------------------------------
   4. PETITS SMARTPHONES (max-width: 576px)
   ------------------------------------------------------------- */
@media (max-width: 576px) {
    /* Prises en charge */
    .care-card { border-left: none !important; border-top: 16px solid var(--emerald); }
    .care-card.side-light-green { border-top-color: #4da684; }
    .care-card.side-teal { border-top-color: #008080; }
    .care-card.side-sage { border-top-color: #8fbc8f; }
    .care-main-info, .care-meta-sidebar { padding: 24px; }
}