@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700&display=swap');

/* ========== RESET & VARIABLES ========== */
:root {
    --blue: #3B82F6;
    --green: #10B981;
    --yellow: #EAB308;
    --orange: #EA580C;
    --gray-dark: #1F2937;
    --gray-light: #F3F4F6;
    --white: #ffffff;
    --text: #111827;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    letter-spacing: -0.01em;
    background: var(--gray-light);
    color: var(--text);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--blue);
    color: white;
    font-size: 1rem;
    padding: 0.8rem 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.top-left {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}
.top-left a, .top-left span {
    color: white;
    text-decoration: none;
}
.top-left a:hover {
    color: var(--yellow);
}
.top-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.social-icons a {
    color: white;
    margin: 0 0.4rem;
    font-size: 1rem;
    transition: 0.2s;
}
.social-icons a:hover {
    color: var(--yellow);
    transform: scale(1.1);
}
.lang-switcher a {
    color: white;
    text-decoration: none;
    margin: 0 0.2rem;
    font-weight: 500;
}
.lang-switcher a.active {
    border-bottom: 2px solid var(--yellow);
}

/* ========== HEADER & MENU ========== */
header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
}
.logo img {
    max-height: 90px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}
nav ul li {
    position: relative;
}
nav a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 600;
    padding: 0.5rem 0;
    display: inline-block;
    font-size: 1rem;
    transition: 0.2s;
}
nav a:hover {
    color: var(--yellow);
}
nav a.active {
    color: var(--yellow);
    border-bottom: 2px solid var(--yellow);
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gray-dark);
}

/* ========== DROPDOWN (DESKTOP) ========== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 0.5rem;
    min-width: 200px;
    padding: 0.5rem 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 200;
    list-style: none;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
}
.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--gray-dark);
    background: white;
    text-decoration: none;
    font-weight: 550;
    white-space: nowrap;
    transition: background 0.2s, padding 0.2s;
}
.dropdown-menu li a:hover {
    background: var(--gray-light);
    color: var(--yellow);
    padding-left: 1.2rem;
}
.dropdown > a::after {
    content: " ▼";
    font-size: 0.8rem;
    transition: transform 0.2s;
}
.dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, var(--blue), #1E40AF);
    color: white;
    padding: 4rem 0;
}
.hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}
.hero-content {
    flex: 1;
}
.hero h1 {
    font-size: clamp(2.5rem, 7vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
}
.btn {
    display: inline-block;
    background: var(--yellow);
    color: #1e1e1e;
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: 0.3s;
}
.btn:hover {
    background: #d97706;
    transform: translateY(-3px);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--yellow);
    color: white;
}
.btn-outline:hover {
    background: var(--yellow);
    color: #1e1e1e;
}
.hero-image {
    flex: 1;
    text-align: center;
}
.hero-image img {
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ========== SECTIONS GÉNÉRALES ========== */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: var(--blue);
}
.grid-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.service-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.service-card i {
    font-size: 2.5rem;
    background: var(--yellow);
    width: 70px;
    line-height: 70px;
    border-radius: 50%;
    color: #1e1e1e;
    margin-bottom: 1rem;
}
.service-card h3 {
    margin: 1rem 0;
    color: var(--blue);
}
.schools-highlight {
    background: #EFF6FF;
    padding: 3rem 0;
}
.school-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}
.school-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    flex: 1 1 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.school-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.school-card .content {
    padding: 1.5rem;
}
.school-card h3 {
    color: var(--blue);
    margin-bottom: 0.5rem;
}
.school-card .price {
    font-weight: bold;
    color: var(--green);
    margin: 0.5rem 0;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.news-item {
    background: white;
    border-radius: 0.8rem;
    overflow: hidden;
    padding: 0 0 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.news-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 0.8rem;
}
.news-img-placeholder {
    width: 100%;
    height: 180px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #94a3b8;
    margin-bottom: 0.8rem;
}
.news-item h4 {
    padding: 0 1rem;
    margin: 0.5rem 0 0.2rem;
}
.news-date {
    padding: 0 1rem;
    font-size: 0.8rem;
    color: #6b7280;
}
.news-item p {
    padding: 0 1rem;
}
.read-more {
    margin: 0 1rem;
    display: inline-block;
    color: var(--blue);
    font-weight: 500;
    text-decoration: none;
}
.read-more:hover {
    color: var(--yellow);
}
.stats {
    background: var(--green);
    color: white;
    padding: 3rem 0;
    text-align: center;
}
.stat-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}
.stat-item {
    font-size: 2rem;
    font-weight: bold;
}
.stat-item span {
    display: block;
    font-size: 1rem;
    font-weight: normal;
    margin-top: 0.5rem;
}
.cta-final {
    background: var(--blue);
    color: white;
    text-align: center;
    padding: 3rem 0;
}
.cta-final .btn {
    margin: 0.5rem;
}
.cta-final p {
    text-align: center;
}

/* ========== FOOTER ========== */
footer {
    background: #111827;
    color: #cbd5e1;
    font-size: 0.9rem;
    padding: 2rem 0 1rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 0 2rem;
}
.footer-col:first-child {
    text-align: center;
}
.footer-col h4 {
    color: var(--yellow);
    font-size: 1rem;
    margin-bottom: 1rem;
}
.footer-logo {
    max-height: 70px;
    margin-bottom: 1rem;
}
.slogan {
    font-size: 0.85rem;
    line-height: 1.4;
    font-style: italic;
}
.footer-contact, .footer-links, .schedule {
    list-style: none;
    padding: 0;
}
.footer-contact li, .footer-links li, .schedule li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}
.footer-contact i, .schedule i {
    width: 1.5rem;
}
.footer-links a, .footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
}
.footer-links a:hover, .footer-contact a:hover {
    color: var(--yellow);
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.newsletter-form input, .newsletter-form button {
    font-size: 0.85rem;
    padding: 0.6rem;
    border-radius: 0.3rem;
    border: none;
}
.newsletter-form button {
    background: var(--yellow);
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}
.newsletter-form button:hover {
    background: #d97706;
}
.footer-bottom {
    text-align: center;
    padding: 1.5rem 0 1rem;
    border-top: 1px solid #2d3748;
    font-size: 0.75rem;
}
.footer-bottom a {
    color: var(--yellow);
    text-decoration: none;
}
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== BANNIÈRE 50 ANS ========== */
.anniversary-banner {
    background: linear-gradient(90deg, #fef9e6 0%, #fff4e0 100%);
    color: #b8860b;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0e1b0;
    border-top: 1px solid #f0e1b0;
}
.anniversary-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;
}
.anniversary-content i {
    font-size: 1.3rem;
    color: var(--blue);
}
.anniversary-content span {
    background: rgba(184,134,11,0.1);
    padding: 0.2rem 1rem;
    border-radius: 2rem;
    color: var(--blue);
}
@media (max-width: 640px) {
    .anniversary-content {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    .anniversary-content i {
        font-size: 1rem;
    }
}

/* ========== BOUTONS FLOTTANTS ========== */
.float-whatsapp {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.2s;
    text-decoration: none;
}
.float-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: 0.2s;
}
.scroll-top:hover {
    background-color: var(--yellow);
    color: #1e1e1e;
}

/* ========== RESPONSIVE GLOBAL ========== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    /* Menu hamburger */
    .mobile-menu-toggle {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 1rem 0;
        z-index: 99;
    }
    nav ul.show {
        display: flex;
    }
    nav ul li {
        text-align: center;
        margin: 0;
        padding: 0.5rem 0;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f9f9f9;
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    .dropdown.open .dropdown-menu {
        display: block;
    }
    .dropdown > a::after {
        content: " ▼";
        font-size: 0.7rem;
    }
    /* Grilles */
    .grid-services, .school-grid, .news-grid, .partners-grid, .resources-grid, .careers-grid, .actualites-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    .features-grid, .info-grid, .ortho-grid, .physio-grid, .special-grid, .optics-grid, .ophthalmology-grid, .dentistry-grid, .braille-grid, .pillars-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    .footer-col {
        text-align: center;
    }
    .footer-contact i, .schedule i {
        width: auto;
        margin-right: 0.3rem;
    }
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .stat-grid {
        flex-direction: column;
        gap: 1rem;
    }
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
    body {
        font-size: 1rem;
    }
    .top-bar {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 0.9rem;
    }
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .service-card, .school-card, .news-item, .partner-card, .resource-card, .career-card {
        padding: 1rem;
    }
}

/* ========== TOUTES LES AUTRES RÈGLES (PAGES SPÉCIFIQUES) ========== */
/* À propos, École, Centre spécialisé, Kiné, Ortho, etc. */
.about-hero, .school-hero, .special-hero, .physio-hero, .ortho-hero, .optics-hero, .ophthalmology-hero, .dentistry-hero, .braille-hero, .projects-hero {
    background: linear-gradient(135deg, #1E3A8A, var(--blue));
    color: white;
    padding: 2rem 0;
}
.about-hero .container, .school-hero .container, .special-hero .container, .physio-hero .container, .ortho-hero .container, .optics-hero .container, .ophthalmology-hero .container, .dentistry-hero .container, .braille-hero .container, .projects-hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.about-hero-content, .school-hero-content, .special-hero-content, .physio-hero-content, .ortho-hero-content, .optics-hero-content, .ophthalmology-hero-content, .dentistry-hero-content, .braille-hero-content, .projects-hero-content {
    flex: 1;
}
.about-hero h1, .school-hero h1, .special-hero h1, .physio-hero h1, .ortho-hero h1, .optics-hero h1, .ophthalmology-hero h1, .dentistry-hero h1, .braille-hero h1, .projects-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.about-hero-image, .school-hero-image, .special-hero-image, .physio-hero-image, .ortho-hero-image, .optics-hero-image, .ophthalmology-hero-image, .dentistry-hero-image, .braille-hero-image, .projects-hero-image {
    flex: 1;
    text-align: center;
}
.about-hero-image img, .school-hero-image img, .special-hero-image img, .physio-hero-image img, .ortho-hero-image img, .optics-hero-image img, .ophthalmology-hero-image img, .dentistry-hero-image img, .braille-hero-image img, .projects-hero-image img {
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.about-intro, .school-description, .special-description, .physio-description, .ortho-description, .optics-description, .ophthalmology-description, .dentistry-description, .braille-description, .projects-description {
    background: white;
    padding: 2rem 0;
    font-size: 1.125rem;
    line-height: 1.6;
}
.about-intro .container {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}
.intro-text {
    flex: 1;
}
.intro-text h2 {
    color: var(--blue);
    margin-bottom: 1rem;
    text-align: center;
}
.intro-image {
    flex: 1;
}
.intro-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.about-timeline {
    background: var(--gray-light);
    padding: 4rem 0;
}
.timeline {
    position: relative;
    max-width: 900px;
    margin: 2rem auto 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 4px;
    height: 100%;
    background: var(--yellow);
}
.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 2rem;
}
.timeline-year {
    position: absolute;
    left: -10px;
    top: 0;
    background: var(--blue);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
}
.timeline-content {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.timeline-content h3 {
    color: var(--blue);
    margin-bottom: 0.5rem;
}
.timeline-content img {
    margin-top: 0.8rem;
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 0.5rem;
}
@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .timeline-item {
        width: 50%;
        padding-left: 0;
    }
    .timeline-item:nth-child(odd) {
        left: 0;
        padding-right: 30px;
    }
    .timeline-item:nth-child(even) {
        left: 50%;
        padding-left: 30px;
    }
    .timeline-year {
        left: auto;
        right: -40px;
        top: 0;
    }
    .timeline-item:nth-child(even) .timeline-year {
        left: -40px;
        right: auto;
    }
}
@media (max-width: 767px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        padding-left: 50px;
    }
    .timeline-year {
        left: -10px;
        top: 0;
    }
}
.about-values {
    padding: 4rem 0;
    background: white;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.value-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--gray-light);
    border-radius: 1rem;
    transition: 0.3s;
}
.value-card:hover {
    transform: translateY(-8px);
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.value-card i {
    font-size: 2.5rem;
    background: var(--yellow);
    width: 70px;
    line-height: 70px;
    border-radius: 50%;
    color: #1e1e1e;
    margin-bottom: 1rem;
}
.value-card h3 {
    color: var(--blue);
    margin: 1rem 0;
}
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.timeline-card {
    background: white;
    border-radius: 0.8rem;
    padding: 1rem 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.2s;
    border-left: 4px solid var(--yellow);
}
.timeline-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.timeline-year-badge {
    display: inline-block;
    background: var(--blue);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.timeline-card h3 {
    color: var(--blue);
    margin: 0.5rem 0;
    font-size: 1.1rem;
}
.timeline-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}
@media (max-width: 768px) {
    .timeline-grid {
        grid-template-columns: 1fr;
    }
}
.features-grid, .special-grid, .physio-grid, .ortho-grid, .optics-grid, .ophthalmology-grid, .dentistry-grid, .braille-grid, .projects-axis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.feature-card, .special-card, .physio-card, .ortho-card, .optics-card, .ophthalmology-card, .dentistry-card, .braille-card, .axis-card, .pillar-card {
    background: var(--gray-light);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: 0.3s;
}
.feature-card:hover, .special-card:hover, .physio-card:hover, .ortho-card:hover, .optics-card:hover, .ophthalmology-card:hover, .dentistry-card:hover, .braille-card:hover, .axis-card:hover, .pillar-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.feature-card i, .special-card i, .physio-card i, .ortho-card i, .optics-card i, .ophthalmology-card i, .dentistry-card i, .braille-card i, .axis-card i, .pillar-card i {
    font-size: 2rem;
    background: var(--yellow);
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #1e1e1e;
    margin-bottom: 1rem;
}
.info-grid, .physio-info .info-grid, .ortho-info .info-grid, .optics-info .info-grid, .ophthalmology-info .info-grid, .dentistry-info .info-grid, .braille-info .info-grid, .projects-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.info-card, .physio-info .info-card, .ortho-info .info-card, .optics-info .info-card, .ophthalmology-info .info-card, .dentistry-info .info-card, .braille-info .info-card, .projects-info .info-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.2s;
}
.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.info-card h3 {
    color: var(--blue);
    border-left: 4px solid var(--yellow);
    padding-left: 0.8rem;
    margin-bottom: 1rem;
}
.info-card ul {
    list-style: none;
    padding: 0;
}
.info-card li {
    margin-bottom: 0.8rem;
}
.whatsapp, .special-whatsapp, .physio-whatsapp, .ortho-whatsapp, .optics-whatsapp, .ophthalmology-whatsapp, .dentistry-whatsapp, .braille-whatsapp, .projects-whatsapp {
    margin-top: 1rem;
    font-weight: bold;
    color: var(--green);
}
@media (max-width: 768px) {
    .features-grid, .special-grid, .physio-grid, .ortho-grid, .optics-grid, .ophthalmology-grid, .dentistry-grid, .braille-grid, .projects-axis,
    .info-grid, .physio-info .info-grid, .ortho-info .info-grid, .optics-info .info-grid, .ophthalmology-info .info-grid, .dentistry-info .info-grid, .braille-info .info-grid, .projects-info .info-grid {
        grid-template-columns: 1fr;
    }
    .school-hero .container, .special-hero .container, .physio-hero .container, .ortho-hero .container, .optics-hero .container, .ophthalmology-hero .container, .dentistry-hero .container, .braille-hero .container, .projects-hero .container {
        flex-direction: column;
        text-align: center;
    }
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}
/* Inclusion network */
.inclusion-hero {
    background: linear-gradient(135deg, #1E3A8A, var(--blue));
    color: white;
    padding: 3rem 0;
    text-align: center;
}
.inclusion-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.inclusion-description {
    padding: 2rem 0;
    background: white;
}
.story-card {
    background: var(--gray-light);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    border-left: 4px solid var(--yellow);
    font-size: 1.1rem;
    line-height: 1.6;
}
.story-card i {
    font-size: 2rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.audience-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.audience-card i {
    font-size: 2rem;
    background: var(--yellow);
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #1e1e1e;
    margin-bottom: 1rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.feature-card {
    background: var(--gray-light);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.feature-card i {
    font-size: 2rem;
    background: var(--yellow);
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #1e1e1e;
    margin-bottom: 1rem;
}
.inclusion-forms {
    text-align: center;
    padding: 2rem 0;
}
.inclusion-forms .btn {
    margin: 0.5rem;
}
@media (max-width: 768px) {
    .audience-grid, .features-grid {
        grid-template-columns: 1fr;
    }
}
/* Partenaires */
.partners-header {
    text-align: center;
    padding: 2rem 0 1rem;
    background: white;
}
.partners-header h1 {
    font-size: 2.2rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
}
.partners-header p {
    font-size: 1.1rem;
    color: #4b5563;
    text-align: center;
}
.partners-section {
    padding: 3rem 0;
}
.partners-section.bg-light {
    background: var(--gray-light);
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.partner-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}
.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}
.partner-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border-radius: 1rem;
    padding: 0.5rem;
}
.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(10%);
    transition: filter 0.3s;
}
.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
}
.partner-card h3 {
    font-size: 1.1rem;
    margin: 0.8rem 0;
    color: var(--blue);
    font-weight: 600;
}
.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--gray-dark);
    text-decoration: none;
    transition: color 0.2s;
    margin-top: 0.5rem;
}
.partner-link i {
    font-size: 0.75rem;
}
.partner-link:hover {
    color: var(--yellow);
}
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    .partner-logo {
        width: 100px;
        height: 100px;
    }
}
/* Guide insertion */
.guide-header {
    text-align: center;
    padding: 2rem 0 1rem;
    background: white;
}
.guide-header h1 {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
}
.guide-header p {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
}
.guide-accordion {
    padding: 2rem 0;
    background: var(--gray-light);
}
.accordion-item {
    background: white;
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}
.accordion-item summary {
    padding: 1rem 1.5rem;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--blue);
    cursor: pointer;
    list-style: none;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.accordion-item summary::-webkit-details-marker {
    display: none;
}
.accordion-item summary::after {
    content: "▼";
    font-size: 0.8rem;
    color: var(--yellow);
    transition: transform 0.2s;
}
.accordion-item[open] summary::after {
    transform: rotate(180deg);
}
.accordion-item summary:hover {
    background: #f9fafb;
}
.accordion-content {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    background: white;
}
.accordion-content p, .accordion-content ul {
    margin-bottom: 0.8rem;
}
.accordion-content ul {
    padding-left: 1.5rem;
}
.accordion-content li {
    margin-bottom: 0.4rem;
}
@media (max-width: 768px) {
    .accordion-item summary {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
    .accordion-content {
        padding: 0.8rem 1rem;
    }
}
/* RSO */
.rso-header {
    text-align: center;
    padding: 2rem 0 1rem;
    background: white;
}
.rso-header h1 {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
}
.rso-header p {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.rso-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}
.rso-table th, .rso-table td {
    border: 1px solid #d1d5db;
    padding: 0.6rem;
    text-align: left;
    vertical-align: top;
}
.rso-table th {
    background: var(--blue);
    color: white;
    font-weight: bold;
}
.rso-table tr:nth-child(even) {
    background: #f9fafb;
}
@media (max-width: 768px) {
    .rso-table, .rso-table tbody, .rso-table tr, .rso-table td {
        display: block;
        width: 100%;
    }
    .rso-table tr {
        margin-bottom: 0.5rem;
        border: 1px solid #d1d5db;
    }
    .rso-table td {
        border: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 0.5rem;
    }
    .rso-table th {
        display: none;
    }
}
.btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dc3545;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}
.btn-pdf:hover {
    background: #b02a37;
    transform: translateY(-2px);
}
/* Soutenir */
.support-header {
    text-align: center;
    padding: 2rem 0 1rem;
    background: white;
}
.support-header h1 {
    font-size: 2.2rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
}
.support-header p {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}
.support-content {
    padding: 2rem 0;
    background: var(--gray-light);
}
.support-content .container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.support-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    flex: 1 1 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
}
.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}
.support-card i {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}
.support-card h2 {
    font-size: 1.5rem;
    color: var(--blue);
    margin-bottom: 1rem;
}
.support-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}
.support-card li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    word-break: break-word;
}
@media (max-width: 768px) {
    .support-card {
        flex: 1 1 100%;
    }
}
/* Contact */
.contact-header {
    text-align: center;
    padding: 2rem 0 1rem;
    background: white;
}
.contact-header h1 {
    font-size: 2.2rem;
    color: var(--blue);
}
.contact-content .container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 1.5rem;
}
.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.info-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.info-card:hover {
    transform: translateY(-5px);
}
.info-card i {
    font-size: 2rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}
.info-card h3 {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.4;
}
.info-card a {
    color: var(--gray-dark);
    text-decoration: none;
}
.info-card a:hover {
    color: var(--yellow);
}
.contact-form-wrapper {
    flex: 1;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.contact-form-wrapper h2 {
    color: var(--blue);
    margin-bottom: 1rem;
    text-align: center;
}
.contact-form .form-row {
    margin-bottom: 1rem;
}
.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.3rem;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
}
.contact-form button {
    width: 100%;
}
.contact-map {
    padding: 0 1.5rem 2rem;
}
.contact-map iframe {
    width: 100%;
    border-radius: 1rem;
}
@media (max-width: 768px) {
    .contact-content .container {
        flex-direction: column;
    }
}
/* Actualités (liste et détail) */
.actualites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.actu-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.actu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.actu-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.actu-image-placeholder {
    width: 100%;
    height: 180px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #94a3b8;
}
.actu-date {
    font-size: 0.8rem;
    color: #b8860b;
    padding: 0.8rem 1rem 0;
}
.actu-card h3 {
    font-size: 1.2rem;
    margin: 0 1rem 0.5rem;
    line-height: 1.4;
}
.actu-card p {
    font-size: 0.9rem;
    color: #4a5568;
    padding: 0 1rem;
    flex-grow: 1;
}
.btn-link-small {
    display: inline-block;
    margin: 0 1rem 1rem;
    color: #b8860b;
    font-weight: 600;
    text-decoration: none;
}
.btn-link-small:hover {
    text-decoration: underline;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}
.pagination a {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #1e293b;
}
.pagination a.active {
    background: #b8860b;
    color: white;
    border-color: #b8860b;
}
@media (max-width: 768px) {
    .actualites-grid {
        grid-template-columns: 1fr;
    }
}
/* Article détail */
.article-body {
    line-height: 1.8;
    font-size: 1.1rem;
}
.article-image img {
    max-width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 1rem;
    margin: 1rem 0;
}
.share-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
}
.share-btn:hover {
    transform: translateY(-2px);
}
.facebook {
    background: #1877f2;
}
.twitter {
    background: #1da1f2;
}
.whatsapp {
    /*background: #25d366;*/
}
.linkedin {
    background: #0077b5;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.gallery-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}
.gallery-item img:hover {
    transform: scale(1.05);
}
@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 0.5rem;
}
.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 2001;
}
.lightbox-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}
.lightbox-nav button {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: 0.2s;
}
.lightbox-nav button:hover {
    background: rgba(255,255,255,0.4);
}
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--blue);
    text-decoration: none;
}
/* Ressources */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.resource-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.resource-card i:first-child {
    font-size: 2rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}
.resource-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--blue);
}
.resource-card p {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.resource-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #718096;
    margin-bottom: 1rem;
}
.resource-lang-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}
.btn-resource {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    flex: 1;
    justify-content: center;
}
.btn-resource.fr {
    background: #2563eb;
    color: white;
}
.btn-resource.en {
    background: #16a34a;
    color: white;
}
.btn-resource:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}
.btn-resource .size {
    font-size: 0.7rem;
    opacity: 0.8;
}
@media (max-width: 640px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
}
/* Carrières */
.careers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.career-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    position: relative;
}
.career-card:hover {
    transform: translateY(-5px);
}
.career-card.unavailable {
    opacity: 0.8;
    background: #f9f9f9;
}
.career-card i:first-child {
    font-size: 2rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}
.career-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--blue);
}
.badge-unavailable {
    display: inline-block;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}
.btn-description {
    background: none;
    border: none;
    color: var(--blue);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}
.btn-description:hover {
    color: var(--yellow);
}
.career-lang-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.5rem;
}
.btn-career {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    flex: 1;
    justify-content: center;
}
.btn-career.fr {
    background: #2563eb;
    color: white;
}
.btn-career.en {
    background: #16a34a;
    color: white;
}
.btn-career:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}
.btn-career.disabled {
    background: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}
.btn-apply {
    background: #10b981;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    cursor: pointer;
    margin-top: 0.5rem;
    width: 100%;
}
.btn-apply:hover {
    background: #059669;
}
@media (max-width: 900px) {
    .careers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .careers-grid {
        grid-template-columns: 1fr;
    }
}
/* Modales */
.modal, .modal-description, .modal-apply {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.modal-content, .modal-apply-content {
    background: white;
    max-width: 600px;
    width: 90%;
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}
.close-modal, .close-apply {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 1.8rem;
    cursor: pointer;
}
.btn-submit-apply {
    background: #b8860b;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.3rem;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
}
.check-group, .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.3rem;
}
.check-group label, .radio-group label {
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.success-message {
    background: var(--green);
    color: white;
    text-align: center;
    padding: 0.8rem;
    margin: 1rem auto;
    max-width: 800px;
    border-radius: 0.5rem;
    font-weight: bold;
}
.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 0.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}
.alert-error {
    background: #f8d7da;
    color: #721c24;
    padding: 0.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}
/* Citation inspirante */
.inspiring-quote {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f0fa 100%);
    text-align: center;
    margin: 2rem 0;
}
.quote-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05), 0 5px 12px rgba(0,0,0,0.05);
    max-width: 850px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--yellow);
    border-right: 4px solid var(--yellow);
}
.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.1);
}
.quote-icon {
    font-size: 1.8rem;
    color: var(--yellow);
    opacity: 0.7;
    margin: 0 0.5rem;
    vertical-align: middle;
}
.quote-card p {
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 500;
    color: var(--blue);
    display: inline;
    margin: 0 0.5rem;
    line-height: 1.5;
    position: relative;
}
.quote-card p::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.4s ease;
}
.quote-card:hover p::after {
    width: 100%;
}
@media (max-width: 768px) {
    .quote-card {
        padding: 1.5rem 1rem;
    }
    .quote-card p {
        font-size: 1rem;
        display: block;
        margin: 0.5rem 0;
    }
    .quote-icon {
        font-size: 1.3rem;
    }
}
/* Rapports annuels */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.report-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    text-align: center;
}
.report-card:hover {
    transform: translateY(-5px);
}
.report-year {
    font-size: 2rem;
    font-weight: bold;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}
.report-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--blue);
}
.report-lang-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}
.btn-report {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}
.btn-report.fr {
    background: #2563eb;
    color: white;
}
.btn-report.en {
    background: #16a34a;
    color: white;
}
.btn-report:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}
.btn-report .size {
    font-size: 0.7rem;
    opacity: 0.8;
}

header, nav, nav ul {
    overflow: visible;
}
/* ========== CORRECTION DROPDOWN VERTICAUX ========== */
.dropdown-menu {
    display: block !important;
    flex-direction: column !important;
}
.dropdown-menu li {
    display: block !important;
    width: 100% !important;
}
.dropdown-menu li a {
    white-space: nowrap;
}

/* ========== CORRECTION RESPONSIVE MENU MOBILE ========== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 1rem 0;
        z-index: 99;
    }
    nav ul.show {
        display: flex;
    }
    nav ul li {
        text-align: center;
        margin: 0;
        padding: 0.5rem 0;
    }
    /* Dropdowns en mobile : affichage vertical empilé */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f9f9f9;
        margin-top: 0.5rem;
        display: none !important;
    }
    .dropdown.open .dropdown-menu {
        display: block !important;
    }
    .dropdown > a::after {
        content: " ▼";
        font-size: 0.7rem;
    }
}

/* ========== MAINTIEN DES DROPDOWNS VERTICAUX SUR DESKTOP ========== */
@media (min-width: 769px) {
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        border-radius: 0.5rem;
        min-width: 200px;
        padding: 0.5rem 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease;
    }
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }
    .dropdown-menu li {
        display: block;
    }
    .dropdown-menu li a {
        padding: 0.5rem 1rem;
        white-space: nowrap;
    }
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1e2a3e;
}
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    nav ul.show {
        display: flex;
    }
}

@media (max-width: 768px) {
    /* Supprime toute hauteur ou overflow limitant */
    .dropdown-menu {
        max-height: none !important;
        overflow-y: visible !important;
        position: static;
        background: #f9f9f9;
        box-shadow: none;
        width: 100%;
        margin-top: 0.5rem;
        display: none;
    }
    .dropdown.open .dropdown-menu {
        display: block !important;
    }
    /* Espacement réduit entre les éléments du menu principal */
    nav ul li {
        margin: 0;
        padding: 0.2rem 0;
    }
    /* Espacement réduit dans les sous‑menus */
    .dropdown-menu li a {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
        line-height: 1.3;
    }
    /* Supprime les gap inutiles */
    nav ul {
        gap: 0.2rem;
        padding: 0.5rem 0;
    }
    /* Force l’affichage complet */
    nav, nav ul, .dropdown, .dropdown-menu {
        overflow: visible !important;
    }
}
/* ========== LIENS "EN SAVOIR PLUS" ========== */
.read-more,
.btn-link-small {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

/* Sur la page d'accueil */
.read-more {
    color: var(--blue);
    background: transparent;
    padding: 0.2rem 0;
}

.read-more::after {
    content: "→";
    transition: transform 0.2s ease;
}

.read-more:hover {
    color: var(--yellow);
}

.read-more:hover::after {
    transform: translateX(4px);
}

/* Sur la page liste des actualités */
.btn-link-small {
    color: #b8860b;
    background: transparent;
    padding: 0.2rem 0;
}

.btn-link-small::after {
    /*content: "→";*/
    margin-left: 0.3rem;
    transition: transform 0.2s ease;
}

.btn-link-small:hover {
    color: #d4af37;
}

.btn-link-small:hover::after {
    transform: translateX(4px);
}

/* Version avec icône FontAwesome (si utilisée) */
.read-more i, 
.btn-link-small i {
    transition: transform 0.2s ease;
}

.read-more:hover i,
.btn-link-small:hover i {
    transform: translateX(4px);
}
.read-more {
    position: relative;
    padding-bottom: 0.1rem;
}

.read-more::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--yellow);
    transition: width 0.3s ease;
}

.read-more:hover::before {
    width: 100%;
}

/* ========== LIEN "EN SAVOIR PLUS" (page d'accueil) ========== */
.btn-small {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
    color: var(--blue);
    background: transparent;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.2rem 0;
}

.btn-small::after {
    /*content: "→";*/
    transition: transform 0.2s ease;
}

.btn-small:hover {
    color: var(--yellow);
}

.btn-small:hover::after {
    transform: translateX(4px);
}

.btn-small {
    position: relative;
    padding-bottom: 0.1rem;
}

.btn-small::before {
    /*content: '';*/
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--yellow);
    transition: width 0.3s ease;
}

.btn-small:hover::before {
    width: 100%;
}
/* Centrer la bannière 50 ans sur mobile */
@media (max-width: 768px) {
    .anniversary-banner .container {
        text-align: center;
    }
    .anniversary-banner p {
        text-align: center !important;
        margin: 0 auto;
    }
}
/* ========== PAGE DÉTAIL ACTUALITÉ - AMÉLIORATIONS ========== */

/* Style général du contenu */
.article-body {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #1f2937;
    text-align: justify;
}

/* Espacement entre les paragraphes */
.article-body p {
    margin-bottom: 1.2rem;
}

/* Titres dans l'article */
.article-body h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--blue);
    border-left: 4px solid var(--yellow);
    padding-left: 1rem;
}

.article-body h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--gray-dark);
}

/* Listes élégantes */
.article-body ul, .article-body ol {
    margin: 1rem 0 1.2rem 1.8rem;
    padding-left: 0;
}

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Puces personnalisées pour les listes non ordonnées */
.article-body ul li {
    list-style-type: none;
    position: relative;
    padding-left: 1.5rem;
}

.article-body ul li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: bold;
}

/* Numérotation élégante pour les listes ordonnées */
.article-body ol {
    counter-reset: item;
}

.article-body ol li {
    list-style-type: none;
    position: relative;
    padding-left: 1.8rem;
    counter-increment: item;
}

.article-body ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: bold;
}

/* Citations */
.article-body blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: #f3f4f6;
    border-left: 4px solid var(--yellow);
    font-style: italic;
    color: #374151;
    border-radius: 0.5rem;
}

.article-body blockquote p {
    margin-bottom: 0;
}

/* Images dans l'article */
.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Tableaux (si présents) */
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.article-body th, .article-body td {
    border: 1px solid #e5e7eb;
    padding: 0.6rem;
    text-align: left;
}

.article-body th {
    background: #f1f5f9;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .article-body {
        font-size: 1rem;
        line-height: 1.65;
    }
    .article-body ul, .article-body ol {
        margin-left: 1rem;
    }
    .article-body h2 {
        font-size: 1.3rem;
    }
}
/* Uniformisation des boutons de partage */
.share-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    align-items: center;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.2s;
    line-height: 1.2;
    min-width: 100px;
}
.share-btn i {
    font-size: 1rem;
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.share-btn:hover {
    transform: translateY(-2px);
    filter: brightness(0.95);
}
.facebook { background: #1877f2; }
.twitter { background: #1da1f2; }
.whatsapp { background: #25d366; }
.linkedin { background: #0077b5; }
.share-btn {
    flex: 1;
    max-width: 120px;
    text-align: center;
}
/* Uniformisation parfaite des boutons de partage */
.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none;
    min-height: 38px;      /* hauteur minimale identique */
    height: auto;
    transition: 0.2s;
}
.share-btn i {
    font-size: 1rem;
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
/* Correction spécifique pour l'icône WhatsApp */
.share-btn.whatsapp i {
    font-size: 0.95rem;    /* légèrement ajusté si besoin */
}
/* Pour éviter que le texte ne passe à la ligne */
.share-btn span {
    display: inline-block;
}
@media (max-width: 480px) {
    .share-buttons {
        justify-content: center;
    }
    .share-btn {
        white-space: normal;
        text-align: center;
        min-width: 100px;
    }
}
/* ========== BOUTONS DE PARTAGE - ALIGNEMENT PARFAIT ========== */
.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 90px;
    height: 36px;           /* hauteur fixe pour tous */
    box-sizing: border-box;
}
.share-btn i {
    font-size: 1rem;
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
/* Forcer le même rendu pour WhatsApp */
.share-btn.whatsapp i {
    font-size: 1rem;
}
/* Ajustement pour les écrans très petits */
@media (max-width: 480px) {
    .share-btn {
        height: auto;
        padding: 0.4rem 0.8rem;
    }
}
.share-btn.whatsapp {
    vertical-align: middle;
}
.share-btn.whatsapp i {
    position: relative;
    top: 0;
}