@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;        /* augmente l’espacement entre les lignes */
    letter-spacing: -0.01em; /* très léger resserrage pour meilleure lisibilité */
    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 (avec dropdown vertical) ========== */
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;
}

/* ========== DROPDOWN VERTICAL (FORCÉ) ========== */
.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;
    display: block !important;
    grid-template-columns: none !important;
    flex-direction: column !important;
    width: auto !important;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li {
    display: block !important;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
}
.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;
}

/* ========== HERO (ACCUEIL) ========== */
.hero {
    background: linear-gradient(135deg, var(--blue), #1E40AF);
    color: white;
    padding: 3rem 0;
}
.hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}
.hero-content {
    flex: 1;
}
.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.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 (ACCUEIL) ========== */
.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);
}
@media (max-width: 768px) {
    .grid-services {
        grid-template-columns: 1fr;
    }
}

/* ========== ÉCOLES (ACCUEIL) ========== */
.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:hover {
    transform: scale(1.02);
}
.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;
}

/* ========== ACTUALITÉS ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.news-item {
    background: white;
    border-radius: 0.8rem;
    padding: 1.2rem;
    border-left: 4px solid var(--yellow);
}
.news-item h4 {
    margin-bottom: 0.5rem;
}
.news-date {
    font-size: 0.8rem;
    color: #6b7280;
}
.read-more {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--blue);
    font-weight: 500;
    text-decoration: none;
}
.read-more:hover {
    color: var(--yellow);
}

/* ========== STATISTIQUES ========== */
.stats {
    background: var(--green);
    color: white;
    padding: 3rem 0;
}
.stats .container {
    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 ========== */
.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;
    padding: 2rem 0 1rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 0 2rem;
}
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.footer-col h4 {
    color: var(--yellow);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.footer-logo {
    max-height: 70px;
    margin-bottom: 1rem;
}
.slogan {
    font-style: italic;
    color: #cbd5e1;
    line-height: 1.4;
}
.footer-contact, .footer-links, .schedule {
    list-style: none;
    padding: 0;
}
.footer-contact li, .footer-links li, .schedule li {
    margin-bottom: 0.6rem;
}
.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 {
    padding: 0.6rem;
    border-radius: 0.3rem;
    border: none;
}
.newsletter-form button {
    background: var(--yellow);
    border: none;
    padding: 0.6rem;
    border-radius: 0.3rem;
    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.85rem;
}
.footer-bottom a {
    color: var(--yellow);
    text-decoration: none;
}

/* ========== BANNIÈRE 50 ANS ========== */
.anniversary-banner {
    background: linear-gradient(135deg, #EAB308, #EA580C);
    color: #1e1e1e;
    text-align: center;
    padding: 0.8rem;
    font-weight: bold;
    font-size: 1.2rem;
}
.anniversary-banner p{
	text-align: center;
}
/* ========== 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;
    color: white;
}
.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 ========== */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    nav ul {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .top-left, .top-right {
        justify-content: center;
        width: 100%;
    }
    body {
        font-size: 1rem;
    }
    .top-bar {
        font-size: 0.9rem;
    }
}
header, nav, nav ul {
    overflow: visible;
}

/* ========== STYLES DES PAGES DE DÉTAIL (À PROPOS, ÉCOLE, CENTRE, KINÉ, ORTHO) ========== */
/* À propos */
.about-hero {
    background: linear-gradient(135deg, #1E3A8A, var(--blue));
    color: white;
    padding: 3rem 0;
}
.about-hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.about-hero-content { flex: 1; }
.about-hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.about-hero-image { flex: 1; text-align: center; }
.hero-img { max-width: 100%; border-radius: 1rem; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

.about-intro {
    padding: 4rem 0;
    background: white;
}
.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; } }

/* École inclusive */
.school-hero {
    background: linear-gradient(135deg, #1E3A8A, var(--blue));
    color: white;
    padding: 2rem 0;
}
.school-hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.school-hero-content { flex: 1; }
.school-hero h1 { font-size: 2rem; margin-bottom: 1rem; }
.school-hero-image { flex: 1; text-align: center; }
.school-hero-image img { max-width: 100%; border-radius: 1rem; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.school-description {
    background: white;
    padding: 2rem 0;
    font-size: 1.125rem;
    line-height: 1.6;
	text-align: justify;
}
.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;
    text-align: center;
    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;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.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 { margin-top: 1rem; font-weight: bold; color: var(--green); }
@media (max-width: 768px) {
    .features-grid, .info-grid { grid-template-columns: 1fr; }
    .school-hero .container { flex-direction: column; text-align: center; }
}

/* Centre d'éducation spécialisée */
.special-hero {
    background: linear-gradient(135deg, #1E3A8A, var(--blue));
    color: white;
    padding: 2rem 0;
}
.special-hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.special-hero-content { flex: 1; }
.special-hero h1 { font-size: 2rem; margin-bottom: 1rem; }
.special-hero-image { flex: 1; text-align: center; }
.special-hero-image img { max-width: 100%; border-radius: 1rem; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.special-description {
    background: white;
    padding: 2rem 0;
    font-size: 1.125rem;
    line-height: 1.6;
}
.special-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.special-card {
    background: var(--gray-light);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: 0.3s;
	text-align: center;
}
.special-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.special-card i {
    font-size: 2rem;
    background: var(--yellow);
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #1e1e1e;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .special-grid, .info-grid { grid-template-columns: 1fr; }
    .special-hero .container { flex-direction: column; text-align: center; }
}

/* Kinésithérapie */
.physio-hero {
    background: linear-gradient(135deg, #1E3A8A, var(--blue));
    color: white;
    padding: 2rem 0;
}
.physio-hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.physio-hero-content { flex: 1; }
.physio-hero h1 { font-size: 2rem; margin-bottom: 1rem; }
.physio-hero-image { flex: 1; text-align: center; }
.physio-hero-image img { max-width: 100%; border-radius: 1rem; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.physio-description {
    background: white;
    padding: 2rem 0;
    font-size: 1.125rem;
    line-height: 1.6;
}
.physio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.physio-card {
    background: var(--gray-light);
    border-radius: 1rem;
    padding: 1.5rem;
	text-align: center;
    transition: 0.3s;
}
.physio-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.physio-card i {
    font-size: 2rem;
    background: var(--yellow);
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #1e1e1e;
    margin-bottom: 1rem;
}
.physio-info .info-grid {
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
    .physio-grid, .physio-info .info-grid { grid-template-columns: 1fr; }
    .physio-hero .container { flex-direction: column; text-align: center; }
}

/* Appareillage orthopédique */
.ortho-hero {
    background: linear-gradient(135deg, #1E3A8A, var(--blue));
    color: white;
    padding: 2rem 0;
}
.ortho-hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.ortho-hero-content { flex: 1; }
.ortho-hero h1 { font-size: 2rem; margin-bottom: 1rem; }
.ortho-hero-image { flex: 1; text-align: center; }
.ortho-hero-image img { max-width: 100%; border-radius: 1rem; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.ortho-description {
    background: white;
    padding: 2rem 0;
    font-size: 1.125rem;
    line-height: 1.6;
}
.ortho-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.ortho-card {
    background: var(--gray-light);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: 0.3s;
	text-align: center;
}
.ortho-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.ortho-card i {
    font-size: 2rem;
    background: var(--yellow);
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #1e1e1e;
    margin-bottom: 1rem;
}
.ortho-info .info-grid {
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
    .ortho-grid, .ortho-info .info-grid { grid-template-columns: 1fr; }
    .ortho-hero .container { flex-direction: column; text-align: center; }
}

/* ========== PAGE LUNETTERIE ========== */
.optics-hero {
    background: linear-gradient(135deg, #1E3A8A, var(--blue));
    color: white;
    padding: 2rem 0;
}
.optics-hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.optics-hero-content {
    flex: 1;
}
.optics-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.optics-hero-image {
    flex: 1;
    text-align: center;
}
.optics-hero-image img {
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.optics-description {
    background: white;
    padding: 2rem 0;
    font-size: 1.125rem;
    line-height: 1.6;
}
.optics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.optics-card {
    background: var(--gray-light);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: 0.3s;
	text-align: center;
}
.optics-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.optics-card i {
    font-size: 2rem;
    background: var(--yellow);
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #1e1e1e;
    margin-bottom: 1rem;
}
.optics-info .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
@media (max-width: 768px) {
    .optics-grid, .optics-info .info-grid {
        grid-template-columns: 1fr;
    }
    .optics-hero .container {
        flex-direction: column;
        text-align: center;
    }
}
/* ========== PAGE OPHTALMOLOGIE ========== */
.ophthalmology-hero {
    background: linear-gradient(135deg, #1E3A8A, var(--blue));
    color: white;
    padding: 2rem 0;
}
.ophthalmology-hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.ophthalmology-hero-content {
    flex: 1;
}
.ophthalmology-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.ophthalmology-hero-image {
    flex: 1;
    text-align: center;
}
.ophthalmology-hero-image img {
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.ophthalmology-description {
    background: white;
    padding: 2rem 0;
    font-size: 1.125rem;
    line-height: 1.6;
}
.ophthalmology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.ophthalmology-card {
    background: var(--gray-light);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: 0.3s;
	text-align: center;
}
.ophthalmology-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.ophthalmology-card i {
    font-size: 2rem;
    background: var(--yellow);
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #1e1e1e;
    margin-bottom: 1rem;
}
.ophthalmology-info .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
@media (max-width: 768px) {
    .ophthalmology-grid, .ophthalmology-info .info-grid {
        grid-template-columns: 1fr;
    }
    .ophthalmology-hero .container {
        flex-direction: column;
        text-align: center;
    }
}

/* ========== PAGE CABINET DENTAIRE ========== */
.dentistry-hero {
    background: linear-gradient(135deg, #1E3A8A, var(--blue));
    color: white;
    padding: 2rem 0;
}
.dentistry-hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.dentistry-hero-content {
    flex: 1;
}
.dentistry-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.dentistry-hero-image {
    flex: 1;
    text-align: center;
}
.dentistry-hero-image img {
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.dentistry-description {
    background: white;
    padding: 2rem 0;
    font-size: 1.125rem;
    line-height: 1.6;
}
.dentistry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.dentistry-card {
    background: var(--gray-light);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: 0.3s;
	text-align: center;
}
.dentistry-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.dentistry-card i {
    font-size: 2rem;
    background: var(--yellow);
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #1e1e1e;
    margin-bottom: 1rem;
}
.dentistry-info .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.emergency {
    margin-top: 0.8rem;
    font-weight: bold;
    color: #dc3545;
}
@media (max-width: 768px) {
    .dentistry-grid, .dentistry-info .info-grid {
        grid-template-columns: 1fr;
    }
    .dentistry-hero .container {
        flex-direction: column;
        text-align: center;
    }
}

.braille-hero {
    background: linear-gradient(135deg, #1E3A8A, var(--blue));
    color: white;
    padding: 2rem 0;
}
.braille-hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.braille-hero-content { flex: 1; }
.braille-hero h1 { font-size: 2rem; margin-bottom: 1rem; }
.braille-hero-image { flex: 1; text-align: center; }
.braille-hero-image img { max-width: 100%; border-radius: 1rem; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.braille-description {
    background: white;
    padding: 2rem 0;
    font-size: 1.125rem;
    line-height: 1.6;
}
.braille-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.braille-card {
    background: var(--gray-light);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: 0.3s;
	text-align: center;
}
.braille-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.braille-card i {
    font-size: 2rem;
    background: var(--yellow);
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #1e1e1e;
    margin-bottom: 1rem;
}
.braille-info .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
@media (max-width: 768px) {
    .braille-grid, .braille-info .info-grid {
        grid-template-columns: 1fr;
    }
    .braille-hero .container {
        flex-direction: column;
        text-align: center;
    }
}

/* ========== PAGE SERVICE DES PROJETS ========== */
.projects-hero {
    background: linear-gradient(135deg, #1E3A8A, var(--blue));
    color: white;
    padding: 2rem 0;
}
.projects-hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.projects-hero-content {
    flex: 1;
}
.projects-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.projects-hero-image {
    flex: 1;
    text-align: center;
}
.projects-hero-image img {
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.projects-description {
    background: white;
    padding: 2rem 0;
    font-size: 1.125rem;
    line-height: 1.6;
}
.projects-axis {
    padding: 1rem 0 2rem;
}
.axis-card {
    background: var(--gray-light);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    border-left: 4px solid var(--yellow);
}
.axis-card i {
    font-size: 2rem;
    background: var(--yellow);
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #1e1e1e;
    margin-bottom: 1rem;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.pillar-card {
    background: var(--gray-light);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: 0.3s;
    text-align: center;
}
.pillar-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.pillar-card i {
    font-size: 2rem;
    background: var(--yellow);
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #1e1e1e;
    margin-bottom: 1rem;
}
.projects-info .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
@media (max-width: 768px) {
    .pillars-grid, .projects-info .info-grid {
        grid-template-columns: 1fr;
    }
    .projects-hero .container {
        flex-direction: column;
        text-align: center;
    }
}
/* ========== PAGE RÉSEAU INCLUSION ========== */
.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;
    }
}

/* ========== MODALES (POPUPS) ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: white;
    max-width: 520px;
    width: 90%;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.close-modal {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 1.8rem;
    cursor: pointer;
}
.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;
}
/* ========== PAGE 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;
    }
}
/* ========== PAGE GUIDE D'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; /* Supprime la flèche par défaut sur certains navigateurs */
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.accordion-item summary::-webkit-details-marker {
    display: none; /* Cache la flèche native sur Chrome/Safari */
}
.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-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;
}
/* Tableau RSO */
.rso-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
}
.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;
}
.rso-table td:first-child {
    width: 70%;
}
@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);
}
/* ========== PAGE 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%;
    }
}
/* ========== PAGE 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;
    }
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.2s;
}
.gallery-item img:hover {
    transform: scale(1.05);
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}
/* Style pour les images d’actualité sur l’accueil */
.news-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0.5rem 0.5rem 0 0;
    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;
    border-radius: 0.5rem 0.5rem 0 0;
    margin-bottom: 0.8rem;
}
.news-item {
    background: white;
    border-radius: 0.8rem;
    overflow: hidden;
    padding: 0 0 1rem 0;
    border-left: none; /* optionnel : supprime la bordure gauche */
    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-item h4 {
    padding: 0 1rem;
    margin: 0.5rem 0 0.2rem;
}
.news-date {
    padding: 0 1rem;
}
.news-item p {
    padding: 0 1rem;
}
.read-more {
    margin: 0 1rem;
    display: inline-block;
}
/* Grille des actualités */
.actualites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

/* Carte d'actualité */
.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;
    transition: gap 0.2s;
}
.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;
    }
}
.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;
}
.btn-resource {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}
.btn-resource:hover {
    background: #1E40AF;
    transform: translateY(-2px);
}
@media (max-width: 640px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
}
.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;
}
.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;
}
.careers-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.career-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.career-card h2 {
    font-size: 1.3rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
}
.career-description {
    margin-bottom: 1rem;
    line-height: 1.6;
}
.career-download {
    margin-top: 1rem;
}
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--yellow);
    color: #1e1e1e;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}
.btn-download:hover {
    background: #d97706;
    transform: translateY(-2px);
}
.download-count {
    font-size: 0.7rem;
    color: #6b7280;
    margin-left: 1rem;
}
.modal-apply {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}
.modal-apply-content {
    background: white;
    max-width: 500px;
    width: 90%;
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}
.close-apply {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 1.8rem;
    cursor: pointer;
}
.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;
}
.btn-submit-apply {
    background: #b8860b;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}
/* Espacement vertical général */
section {
    padding: 1rem 0;   /* augmente l’espacement entre les sections (était 3rem parfois) */
}

/* Paragraphes */
p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
	text-align: justify;
}

/* Titres */
h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Cartes (services, actualités, etc.) */
.service-card, .actu-card, .resource-card, .career-card, .partner-card {
    padding: 1.8rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Footer : espacer les colonnes */
.footer-grid {
    gap: 2.5rem;
}
.footer-col h4 {
    margin-bottom: 1.2rem;
}
.footer-col ul li {
    margin-bottom: 0.8rem;
}

/* Hero (page d’accueil) */
.hero {
    padding: 4rem 0;
}
.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;
}

/* Articles (news detail) */
.article-body {
    line-height: 1.8;
    font-size: 1.1rem;
}
.dropdown-menu li a {
    padding: 0.7rem 1rem;
    line-height: 1.4;
}
.accordion-content {
    line-height: 1.7;
}
.accordion-content p {
    margin-bottom: 1rem;
}
/* Footer : police plus petite et centrage du logo */
footer {
    font-size: 0.9rem;
}
.footer-col:first-child {
    text-align: center;
}
.footer-logo {
    max-height: 70px;
    margin-bottom: 1rem;
}
.slogan {
    font-size: 0.85rem;
    line-height: 1.4;
    font-style: italic;
}
.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.footer-contact li, .footer-links li, .schedule li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}
.newsletter-form input, .newsletter-form button {
    font-size: 0.85rem;
}
.footer-bottom {
    font-size: 0.75rem;
}
.legal-content {
    padding: 2rem 0;
    background: white;
}
.legal-content h3 {
    margin-top: 1.5rem;
    color: var(--blue);
}
.legal-content p {
    margin-bottom: 1rem;
}
.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;
}

@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;
    }
}

.quote-card p {
    position: relative;
    display: inline-block;
}
.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%;
}
.btn-small {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--blue);
    font-weight: 500;
    text-decoration: none;
}
.btn-small:hover {
    color: var(--yellow);
}
.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;
    }
}
/* ========== RESPONSIVE GLOBAL ========== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    /* Menu hamburger */
    .mobile-menu-toggle {
        display: block;
        font-size: 1.5rem;
        background: none;
        border: none;
        cursor: pointer;
    }
    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 {
        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 */
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1rem;
    }

    /* Titres */
    .section-title {
        font-size: 1.5rem;
    }

    /* Statistiques */
    .stat-grid {
        flex-direction: column;
        gap: 1rem;
    }

    /* CTA */
    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    /* Anniversaire */
    .anniversary-content {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
    .anniversary-content i {
        font-size: 1rem;
    }
}

@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;
    }
}
.rso-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}
@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}
@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;
    }
    nav ul li {
        text-align: center;
    }
}
/* Flèche pour les dropdowns (uniquement sur desktop) */
.dropdown > a::after {
    content: " ▼";
    font-size: 0.8rem;
    transition: transform 0.2s;
}
.dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* Sur mobile, on cache la pseudo‑flèche et on gère l'ouverture par JS */
@media (max-width: 768px) {
    .dropdown > a::after {
        content: "";
    }
    .dropdown > a {
        position: relative;
        padding-right: 1.5rem;
    }
    .dropdown > a::before {
        content: "▼";
        position: absolute;
        right: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.7rem;
        transition: transform 0.2s;
    }
    .dropdown.open > a::before {
        transform: translateY(-50%) rotate(180deg);
    }
    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        background: #f8f9fa;
        width: 100%;
    }
    .dropdown.open .dropdown-menu {
        display: block;
    }
}
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: #f8f9fa;
        width: 100%;
        margin-top: 0.5rem;
    }
    .dropdown.open .dropdown-menu {
        display: block;
    }
}