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

:root {
    --primary-color: #182757;
    --gold: #C89E50;
    --gold-light: #F9E4AC;
    --pink: #e91e8c;
    --text-dark: #182757;
    --text-medium: #5a6c7d;
    --text-light: #8995a5;
    --bg-white: #ffffff;
    --bg-offwhite: #fafbfc;
    --border-light: #e8eaed;
}

body {
    font-family: 'Ropa Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
}

/* HEADER */
header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

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

.logo-acronym {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-medium);
    letter-spacing: 0.5px;
    margin-top: -2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

nav a:hover::after {
    width: 100%;
}

nav a.active,
nav .current-menu-item a,
nav .current_page_item a {
    color: var(--primary-color);
    font-weight: 600;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* PAGE HEADER */
.page-header {
    background: var(--bg-white);
    padding: 80px 20px 40px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.logo-art51 {
    max-width: 150px;
    margin: 20px auto 0;
    opacity: 0.8;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TIMELINE SECTION */
.timeline-section {
    background: var(--bg-white);
    padding: 60px 0 80px;
    border-bottom: 1px solid var(--border-light);
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* DATES SUR LA TIMELINE */
.timeline-dates {
    position: relative;
    height: 50px;
    margin-bottom: 20px;
}

.date-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.date-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #d0d0d0;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #b0b0b0;
}

.date-dot.active {
    background: var(--pink);
    box-shadow: 0 0 0 2px var(--pink);
}

.date-dot.completed {
    background: var(--pink);
    box-shadow: 0 0 0 2px var(--pink);
}

.date-label {
    margin-top: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-medium);
    white-space: nowrap;
    text-align: center;
}

/* BARRE DE PROGRESSION */
.progress-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin: 60px 0;
}

.progress-bar {
    flex: 1;
    height: 24px;
    background: #e0e0e0;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    border: 2px solid #b0b0b0;
}

.progress-segment {
    height: 100%;
    position: relative;
    background: #e0e0e0;
}

.segment-separator {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: white;
    z-index: 5;
}

.progress-fill {
    height: 100%;
    background: var(--pink);
    width: 0%;
    transition: width 1.5s ease-out;
}

.progress-arrow {
    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 30px solid #b0b0b0;
    margin-left: 5px;
}

/* MARQUEUR AUJOURD'HUI */
.today-marker {
    position: absolute;
    bottom: -80px;
    transform: translateX(-50%);
    z-index: 10;
}

.today-line {
    width: 2px;
    height: 60px;
    background: var(--primary-color);
    margin: 0 auto;
}

.today-label {
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    padding: 6px 12px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
}

/* CARTES DES PHASES */
.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.phase-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.phase-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.phase-card.active {
    border-color: var(--pink);
    background: linear-gradient(135deg, #fff 0%, #fff5f9 100%);
}

.phase-card.completed {
    border-color: var(--pink);
    background: #fff;
    opacity: 0.8;
}

.phase-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.phase-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.phase-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* CONTENT SECTIONS */
.content-section {
    padding: 80px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.content-section:last-of-type {
    border-bottom: none;
}

.content-section.alt {
    background: var(--bg-offwhite);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.section-text {
    text-align: left;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* REGULATORY BOX */
.regulatory-box {
    background: white;
    border: 2px solid var(--gold-light);
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.regulatory-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.regulatory-box p {
    color: var(--text-medium);
    line-height: 1.8;
}

.regulatory-box a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
}

.regulatory-box a:hover {
    text-decoration: underline;
}

/* FORMULAIRE */
.contact-form {
    max-width: 700px;
    margin: 60px auto;
    background: var(--bg-white);
    padding: 50px;
    border: 1px solid var(--border-light);
}

.contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-light);
    font-family: 'Ropa Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 16px 50px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid var(--primary-color);
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    font-family: 'Ropa Sans', sans-serif;
}

.btn:hover {
    background: transparent;
    color: var(--primary-color);
}

.form-note {
    text-align: center;
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-top: 20px;
    font-style: italic;
}

/* FOOTER */
footer {
    background: var(--bg-offwhite);
    border-top: 1px solid var(--border-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 80px;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    color: var(--text-medium);
    text-decoration: none;
    line-height: 2;
    display: block;
    transition: color 0.3s;
    font-size: 0.9rem;
}

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

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    color: var(--text-light);
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        border-top: 1px solid var(--border-light);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 500px;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .phases-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .date-label {
        font-size: 0.65rem;
    }

    .progress-wrapper {
        margin: 40px 0;
    }

    .today-marker {
        bottom: -70px;
    }

    .today-label {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}

/* ===================================
   CARTOGRAPHIE STYLES
   =================================== */

.page-separator {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto;
}

/* ===================================
   HOMEPAGE STYLES
   =================================== */

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #243a6f 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary {
    background: var(--pink);
    border-color: var(--pink);
}

.btn-primary:hover {
    background: #d11a7a;
    border-color: #d11a7a;
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-secondary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

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

.btn-gold:hover {
    background: #b38a42;
    border-color: #b38a42;
    color: white;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--bg-offwhite);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border: 2px solid var(--gold-light);
    border-radius: 8px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-medium);
    font-size: 1.1rem;
}

/* Missions Grid */
.missions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-card {
    background: white;
    padding: 35px 25px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, #fff5f9 0%, #f9f3ff 100%);
    border-top: 3px solid var(--pink);
    border-bottom: 3px solid var(--pink);
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===================================
   AIDANTS & CHIRURGIENS STYLES
   =================================== */

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.advantage-card:hover {
    border-color: var(--pink);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.advantage-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.advantage-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Info Box */
.info-box {
    background: var(--bg-offwhite);
    border-left: 4px solid var(--gold);
    padding: 30px;
    margin: 30px 0;
}

.info-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-offwhite);
    padding: 35px 30px;
    border-left: 4px solid var(--pink);
    border-radius: 4px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.testimonial-author {
    color: var(--text-medium);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form-wrapper {
    padding: 0;
}

.contact-form-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    background: var(--bg-offwhite);
    padding: 40px;
    border-radius: 8px;
}

.contact-form-inline .full-width {
    grid-column: 1 / -1;
}

.contact-form-inline .form-submit {
    grid-column: 1 / -1;
}

.contact-form-inline .form-note {
    grid-column: 1 / -1;
}

.contact-info-card {
    background: var(--bg-offwhite);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--gold);
}

.contact-info-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.contact-info-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 5px 0;
}

.contact-info-card a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.info-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.social-links-inline {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links-inline a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s;
}

.social-links-inline a:hover {
    color: var(--gold);
}

/* ===================================
   RESPONSIVE - NEW SECTIONS
   =================================== */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .missions-grid,
    .advantages-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-inline {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}

/* =================================== */
/* CARTOGRAPHIE */
/* =================================== */

.carte-section {
    padding: 80px 0;
    background: var(--bg-offwhite);
}

.carte-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    background: white;
    padding: 40px;
    border: 1px solid var(--border-light);
    min-height: 800px;
}

#carte-france {
    height: 100%;
    min-height: 700px;
    border: 1px solid var(--border-light);
    background: #f5f5f5;
    position: relative;
}

/* Cacher le logo Leaflet */
.leaflet-control-attribution {
    display: none !important;
}

/* S'assurer que la carte prend tout l'espace */
#carte-france .leaflet-container {
    height: 100%;
    width: 100%;
    background: #f5f5f5;
}

#loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-medium);
    z-index: 1000;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sidebar {
    position: sticky;
    top: 120px;
}

.info-panel {
    background: var(--bg-offwhite);
    padding: 25px;
    border: 1px solid var(--border-light);
    margin-bottom: 20px;
}

.info-panel h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.info-dept-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-line {
    margin: 8px 0;
    color: var(--text-medium);
}

.praticien-count {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pink);
    font-family: 'Playfair Display', serif;
}

.legende {
    background: var(--bg-offwhite);
    padding: 25px;
    border: 1px solid var(--border-light);
    margin-bottom: 20px;
}

.legende h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.legende-item {
    display: flex;
    align-items: center;
    margin: 12px 0;
    font-size: 0.95rem;
}

.legende-color {
    width: 35px;
    height: 25px;
    margin-right: 12px;
    border: 1px solid #ccc;
}

.color-gris {
    background: #e8eaed;
}

.color-rose {
    background: var(--pink);
}

.stats-total {
    background: white;
    padding: 25px;
    border: 2px solid var(--gold);
    text-align: center;
}

.stats-total .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.stats-total .label {
    color: var(--text-medium);
    margin-top: 5px;
}

/* Responsive cartographie */
@media (max-width: 1024px) {
    .carte-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }

    #carte-france {
        height: 500px;
    }
}


/* =================================== */
/* LIENS DE TÉLÉCHARGEMENT */
/* =================================== */

.download-link:hover {
    background: white !important;
    border-color: var(--gold) !important;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.download-link:active {
    transform: translateX(3px);
}

/* =================================== */
/* MOTS EN ROSE (HIGHLIGHT) */
/* =================================== */

.highlight-pink {
    color: var(--pink);
    font-weight: 600;
}

/* =================================== */
/* CARROUSEL ACTUALITÉS - DESIGN SOBRE */
/* =================================== */

.actualites-carousel-section {
    padding: 80px 0;
    background: white;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 80px;
}

.carousel-wrapper {
    overflow: hidden;
}

.carousel-slides {
    position: relative;
}

.carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.actualite-card-carousel {
    background: transparent;
    padding: 60px 30px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.actualite-date {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.actualite-card-carousel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.actualite-card-carousel p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.actualite-card-carousel .read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.actualite-card-carousel .read-more:hover {
    color: var(--primary-color);
    border-bottom-color: var(--gold);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

.carousel-dot:hover {
    background: var(--gold);
    opacity: 0.7;
}

/* =================================== */
/* MISSIONS LIST (NUMÉROTÉE) */
/* =================================== */

.missions-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mission-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.mission-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.mission-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.mission-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Responsive carrousel */
@media (max-width: 768px) {
    .carousel-container {
        padding: 0 50px;
    }
    
    .actualite-card-carousel {
        padding: 40px 20px;
        min-height: 250px;
    }
    
    .actualite-card-carousel h3 {
        font-size: 1.5rem;
    }
    
    .actualite-card-carousel p {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    .mission-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .mission-number {
        margin: 0 auto;
    }
    
    .mission-content {
        text-align: center;
    }
}

/* =================================== */
/* PAGES AIDANTS & CHIRURGIENS */
/* =================================== */

.content-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.content-intro p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* BENEFITS GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 35px 30px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    text-align: center;
}

.benefit-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* VALEURS GRID */
.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.valeur-card {
    background: white;
    padding: 35px 25px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s;
}

.valeur-card:hover {
    border-color: var(--pink);
    transform: translateY(-5px);
}

.valeur-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.valeur-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.valeur-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ADHESION BOX */
.adhesion-box {
    background: var(--bg-offwhite);
    padding: 50px 40px;
    border: 1px solid var(--border-light);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.adhesion-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.adhesion-box > p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.adhesion-box h3 {
    font-family: 'Playfair Display', serif;
}

.adhesion-box ul {
    text-align: left;
}

.adhesion-box ul li {
    padding: 8px 0;
}

/* CONTENT GRID (Image + Texte) */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-img {
    background: var(--bg-offwhite);
    min-height: 350px;
    border: 1px solid var(--border-light);
}

.content-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.content-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-img {
        min-height: 250px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .valeurs-grid {
        grid-template-columns: 1fr;
    }
    
    .adhesion-box {
        padding: 35px 25px;
    }
}
