/* ===== VARIABLES ===== */
:root {
    --primary-color: #1a2a6c;
    --primary-dark: #0f1a3e;
    --secondary-color: #f9f9f8;
    --secondary-light: #f5e904;
    --text-light: #ffffff;
    --text-dark: #1a1a2e;
    --bg-light: #f8f9fa;
    --shadow-header: 0 2px 20px rgba(26, 42, 108, 0.12);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --menu-bg: #021e45;
    --menu-hover: #0a3a6e;
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f5f6fa;
    color: var(--text-dark);
    padding-top: 130px;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== HEADER PRINCIPAL ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-header);
    border-bottom: 3px solid var(--secondary-color);
    padding: 0;
}

/* ===== LIGNE 1 : LOGO + NOM ===== */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5% 8px 5%;
    background: linear-gradient(135deg, #028327 0%, #2d4373 50%, #3a5a8c 100%);
    border-bottom: 2px solid var(--secondary-color);
    flex-wrap: wrap;
    gap: 10px;
}

/* ============================================
   LOGO - OPTIMISÉ
   ============================================ */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    height: 75px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    border-radius: 8px;
    background: transparent;
    padding: 0;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.25));
}

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

.logo-text strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-light, #ffffff);
    letter-spacing: -0.3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.logo-text strong span {
    color: #ecf007;
    font-weight: 700;
}

.logo-text small {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 800;
    letter-spacing: 0.3px;
    margin-top: 3px;
}

/* ============================================
   DESCRIPTIONS À DROITE DU LOGO
   ============================================ */
.logo-descriptions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    padding-left: 18px;
    border-left: 2px solid rgba(255, 255, 255, 0.12);
    margin-left: 8px;
}

.logo-descriptions span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.logo-descriptions span:first-child {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color, #ec9e02);
}

.logo-descriptions span:last-child {
    font-size: 0.6rem;
    opacity: 0.6;
    letter-spacing: 0.8px;
}

/* ============================================
   RESPONSIVE - LOGO
   ============================================ */
@media (max-width: 1200px) {
    .logo-img {
        height: 60px;
        max-width: 65px;
    }
    .logo-text strong {
        font-size: 1.4rem;
    }
    .logo-text small {
        font-size: 0.65rem;
    }
}

@media (max-width: 992px) {
    .logo-img {
        height: 50px;
        max-width: 55px;
    }
    .logo-text strong {
        font-size: 1.2rem;
    }
    .logo-text small {
        font-size: 0.55rem;
    }
    .logo-descriptions {
        display: none;
    }
}

@media (max-width: 768px) {
    .logo {
        gap: 8px;
    }
    .logo-img {
        height: 42px;
        max-width: 48px;
    }
    .logo-text strong {
        font-size: 1rem;
    }
    .logo-text small {
        font-size: 0.5rem;
    }
}

@media (max-width: 576px) {
    .logo {
        gap: 6px;
    }
    .logo-img {
        height: 35px;
        max-width: 40px;
    }
    .logo-text strong {
        font-size: 0.85rem;
    }
    .logo-text small {
        font-size: 0.45rem;
    }
}

@media (max-width: 400px) {
    .logo-img {
        height: 30px;
        max-width: 35px;
    }
    .logo-text strong {
        font-size: 0.7rem;
    }
    .logo-text small {
        display: none;
    }
}

/* ===== HEADER TOP RIGHT ===== */
.header-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* ===== LANGUE SWITCH ===== */
.lang-switch {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.lang-btn {
    padding: 4px 10px;
    border: #000000;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    font-weight: 800;
    cursor: pointer;
    border-radius: 10px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.lang-btn:hover {
    color: #FF0000;
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: #FFFF33;
    color: #000000;
    box-shadow: 0 2px 10px rgba(201, 168, 76, 0.4);
}

/* ===== BURGER ===== */
.burger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--text-light);
    transition: var(--transition-smooth);
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
}

.burger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* ========================================
   LIGNE 2 : MENU - FOND BLEU TEXTE BLANC
   ======================================== */
.header-bottom {
    background: var(--menu-bg);
    padding: 0 5%;
    border-top: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-item {
    position: relative;
}

/* ===== STYLE DES LIENS DU MENU ===== */
.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    position: relative;
    letter-spacing: 0.3px;
    background: transparent;
}

.nav-link i {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    background: var(--menu-hover);
    color: var(--secondary-light);
    transform: translateY(-1px);
}

.nav-link:hover i {
    color: var(--secondary-light);
    transform: scale(1.15);
}

/* ===== SURBRILLANCE JAUNE/ORANGE ===== */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 35px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 4px 4px 0 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    box-shadow: 0 0 20px rgba(236, 158, 2, 0.4);
}

.nav-link:hover::before {
    transform: translateX(-50%) scale(1);
    opacity: 0.6;
}

/* Ã‰tat actif - surbrillance jaune bien visible */
.nav-link.active::before {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    background: var(--secondary-color);
    height: 5px;
    box-shadow: 0 0 30px rgba(236, 158, 2, 0.6), 0 0 60px rgba(236, 158, 2, 0.3);
    animation: pulse-highlight 2s ease-in-out infinite;
}

@keyframes pulse-highlight {
    0%, 100% { 
        transform: translateX(-50%) scale(1); 
        opacity: 1;
        box-shadow: 0 0 30px rgba(236, 158, 2, 0.6);
    }
    50% { 
        transform: translateX(-50%) scale(1.2); 
        opacity: 0.9;
        box-shadow: 0 0 50px rgba(236, 158, 2, 0.8);
    }
}

.nav-link.active {
    color: var(--secondary-light);
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.active i {
    color: var(--secondary-light);
}

/* ===== FLÃˆCHE ANIMÃ‰E ===== */
.arrow-icon {
    transition: var(--transition-smooth);
    font-size: 0.65rem;
    margin-left: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.menu-item-has-children:hover .arrow-icon,
.menu-item-has-children.open .arrow-icon {
    transform: rotate(180deg);
    color: var(--secondary-light);
}

/* ===== DROPDOWN ===== */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.95);
    min-width: 250px;
    background: var(--menu-bg);
    border-radius: var(--border-radius);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(236, 158, 2, 0.3);
    border-top: 3px solid var(--secondary-color);
    z-index: 100;
}

.menu-item-has-children:hover .dropdown-menu,
.menu-item-has-children.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--secondary-color);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: var(--transition-smooth);
    position: relative;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--secondary-light);
    padding-left: 30px;
}

.dropdown-menu a:hover::before {
    content: 'â€º';
    position: absolute;
    left: 14px;
    color: var(--secondary-color);
    font-weight: bold;
    animation: slide-arrow 0.3s ease;
}

@keyframes slide-arrow {
    0% { transform: translateX(-5px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.dropdown-menu a.active {
    background: rgba(236, 158, 2, 0.15);
    color: var(--secondary-light);
    font-weight: 600;
}

.dropdown-header {
    padding: 8px 20px 4px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: transparent !important;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(236, 158, 2, 0.3), transparent);
    margin: 5px 15px;
}

/* ===== NOUVEAUX MENUS : INTERNATIONAL, ACTUALITÃ‰S ===== */
.menu-item-highlight .nav-link {
    color: var(--secondary-light);
    font-weight: 600;
}

.menu-item-highlight .nav-link i {
    color: var(--secondary-color);
}

.menu-item-highlight .nav-link::before {
    background: var(--secondary-color);
}

/* Badge "NEW" pour les nouveaux menus */
.menu-badge {
    font-size: 0.35rem;
    background: #e74c3c;
    color: white;
    padding: 1px 8px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s ease-in-out infinite;
    margin-left: 4px;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.95); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .logo-descriptions span:last-child {
        display: none;
    }
}

@media (max-width: 992px) {
    .burger {
        display: flex !important;
    }

    .header-top {
        padding: 10px 4% 8px 4%;
        flex-wrap: nowrap;
    }

    .logo-text strong {
        font-size: 1.4rem;
    }

    .logo-text small {
        font-size: 0.7rem;
    }

    .logo-descriptions {
        display: none;
    }

    .logo-img {
        height: 48px;
    }

    .header-bottom {
        padding: 0;
        position: relative;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--menu-bg);
        flex-direction: column;
        padding: 75px 10px;
        gap: 1px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border-radius: 0 0 20px 20px;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        max-height: 70vh;
        overflow-y: auto;
        border-top: 3px solid var(--secondary-color);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu-item {
        width: 100%;
        
    }

    .nav-link {
        padding: 8px 12px;
        width: 100%;
        justify-content: flex-start;
        font-size: 0.50rem;
        color: rgba(255, 255, 255, 0.9);
        
    }

    .nav-link::before {
        display: none;
    }

    .nav-link.active {
        background: rgba(236, 158, 2, 0.15);
        border-left: 4px solid var(--secondary-color);
        border-radius: 8px;
        color: var(--secondary-light);
    }

    .nav-link.active i {
        color: var(--secondary-light);
    }

    .nav-link.active::before {
        display: none;
    }

    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: none;
        border-radius: 0;
        border-top: none;
        transform: none !important;
        left: auto;
        right: auto;
        min-width: auto;
    }

    .dropdown-menu::before {
        display: none;
    }

    .menu-item-has-children.open .dropdown-menu {
        max-height: 500px;
        padding: 8px 0;
        border-top: 1px solid rgba(236, 158, 2, 0.2);
        margin-top: 4px;
    }

    .dropdown-menu a {
        padding: 10px 20px 10px 35px;
        color: rgba(255, 255, 255, 0.8);
    }

    .dropdown-menu a:hover {
        padding-left: 45px;
        color: var(--secondary-light);
    }

    .menu-badge {
        font-size: 0.3rem;
        padding: 1px 6px;
    }
}

@media (max-width: 576px) {
    body { padding-top: 110px; }
    
    .logo-img {
        height: 28px;
    }
    
    .logo-text small {
        font-size: 0.55rem;
    }
    
    .logo-text strong {
        font-size: 1.1rem;
    }

    .header-top {
        padding: 6px 3% 5px 3%;
    }

    .burger {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }

    .lang-btn {
        padding: 4px 10px;
        font-size: 0.65rem;
    }

    .nav-link {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
}

/* ===== BOUTON WHATSAPP ===== */
.whatsapp-menu-item {
    margin-left: 8px;
    position: relative;
}

.whatsapp-link {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 8px 18px 8px 14px !important;
    gap: 10px !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.whatsapp-link::before {
    display: none !important;
}

.whatsapp-link i {
    color: white !important;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.whatsapp-link:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #2ecc71 0%, #1a9c7e 100%) !important;
}

.whatsapp-link:hover i {
    transform: scale(1.2) rotate(-5deg);
}

.whatsapp-text {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.whatsapp-badge {
    font-size: 0.55rem;
    background: rgba(255, 255, 255, 0.25);
    padding: 2px 10px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: pulse-badge 2s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-link::after {
    content: 'ðŸŽ§';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.7rem;
    animation: float-headphone 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

@keyframes float-headphone {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-4px) rotate(5deg); }
}

/* ===== RESPONSIVE WHATSAPP ===== */
@media (max-width: 992px) {
    .whatsapp-menu-item {
        margin-left: 0;
        margin-top: 8px;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 8px;
    }

    .whatsapp-link {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
        border-radius: 12px !important;
        padding: 12px 18px !important;
        justify-content: center;
        width: 100%;
    }

    .whatsapp-link::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .whatsapp-link {
        padding: 10px 14px !important;
        font-size: 0.8rem;
    }

    .whatsapp-text {
        font-size: 0.75rem;
    }

    .whatsapp-badge {
        font-size: 0.5rem;
        padding: 1px 8px;
    }

    .whatsapp-link i {
        font-size: 1rem;
    }
}

.whatsapp-menu-item {
    animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px) scale(0.9); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

/* ===== RESTE DES STYLES ===== */
/* (Tous les autres styles restent inchangÃ©s) */

    /* ===== RESTE DES STYLES (pages) ===== */
    .hero-landing {
        margin-top: 0;
        padding: 60px 40px;
        background: linear-gradient(135deg, #028327 0%, #2d4373 50%, #3a5a8c 100%);
        border-bottom: 1px solid #e0e0e0;
    }
    .hero-landing-wrapper {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 60px;
    }
    .hero-landing-text { flex: 1; }
    .hero-landing-text .badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(26,35,126,0.08);
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 600;
       color: #f5e904;
        margin-bottom: 20px;
    }
    .hero-landing-text h1 {
        font-size: clamp(28px, 4.5vw, 42px);
        font-weight: 800;
        color: #f9f8f8;
        line-height: 1.1;
        margin-bottom: 14px;
        letter-spacing: -1px;
    }
    .hero-landing-text h1 span { color: var(--primary-color); }
    .hero-landing-text p {
        font-size: clamp(14px, 1.2vw, 18px);
        color: #f9f8f8;
        max-width: 540px;
        margin-bottom: 28px;
        line-height: 1.3;
    }
    .hero-landing-text .cta-group {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }
    .btn {
        padding: 14px 36px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 15px;
        border: none;
        cursor: pointer;
        transition: var(--transition-smooth);
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    .btn-primary {
        background: var(--primary-color);
        color: white;
    }
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(26,35,126,0.3);
        background: var(--secondary-color);
    }
    .btn-secondary {
        background: white;
        color: var(--text-dark);
        border: 1px solid #e0e0e0;
    }
    .btn-secondary:hover {
        background: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    .btn-accent {
        background: #e65100;
        color: white;
    }
    .btn-accent:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(230,81,0,0.3);
    }
    .btn-outline {
        background: transparent;
        color: white;
        border: 1px solid rgba(255,255,255,0.2);
    }
    .btn-outline:hover {
        background: rgba(255,255,255,0.1);
    }

    .hero-landing-slider {
        flex: 1;
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        background: white;
        min-height: 400px;
    }
    .hero-landing-slider .slider-track {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .hero-landing-slider .slider-track img {
        min-width: 100%;
        height: 400px;
        object-fit: cover;
    }
    .hero-landing-slider .slider-controls {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 2;
    }
    .hero-landing-slider .slider-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255,255,255,0.4);
        cursor: pointer;
        transition: var(--transition-smooth);
        border: none;
    }
    .hero-landing-slider .slider-dot.active {
        background: white;
        transform: scale(1.2);
    }
    .hero-landing-slider .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.3);
        backdrop-filter: blur(6px);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 16px;
        cursor: pointer;
        z-index: 2;
        transition: var(--transition-smooth);
    }
    .hero-landing-slider .slider-arrow:hover {
        background: rgba(0,0,0,0.5);
    }
    .hero-landing-slider .slider-arrow.prev { left: 12px; }
    .hero-landing-slider .slider-arrow.next { right: 12px; }

    /* ===== STATS ===== */
    .stats-section {
        background: white;
        padding: 60px 40px;
        border-bottom: 1px solid #e0e0e0;
    }
    .stats-grid {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }
    .stat-item h3 {
        font-size: 42px;
        font-weight: 800;
        color: var(--primary-color);
        letter-spacing: -1px;
    }
    .stat-item p {
        font-size: 15px;
        color: #777;
        font-weight: 500;
        margin-top: 4px;
    }

    /* ===== DIRECTOR SECTION ===== */
    .director-section {
        padding: 80px 40px;
        background: white;
        border-bottom: 1px solid #e0e0e0;
    }
    .director-wrapper {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 60px;
    }
    .director-text { flex: 1; }
    .director-text .badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(230,81,0,0.08);
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        color: #e65100;
        margin-bottom: 16px;
    }
    .director-text h2 {
        font-size: clamp(28px, 3.5vw, 40px);
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }
    .director-text .message-content {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 20px;
        max-width: 620px;
    }
    .director-text .message-content p { margin-bottom: 12px; }
    .director-text .signature {
        margin-top: 24px;
        padding-top: 20px;
        border-top: 2px solid #e0e0e0;
    }
    .director-text .signature .name {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-dark);
    }
    .director-text .signature .position {
        font-size: 14px;
        color: #777;
    }
    .director-photo { flex: 1; display: flex; justify-content: center; align-items: center; }
    .director-photo .photo-frame {
        position: relative;
        width: 100%;
        max-width: 480px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        border: 4px solid white;
        background: #f0f0f0;
    }
    .director-photo .photo-frame img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }
    .director-photo .photo-frame .photo-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px 24px;
        background: linear-gradient(transparent, rgba(0,0,0,0.7));
        color: white;
    }
    .director-photo .photo-frame .photo-caption h4 {
        font-size: 20px;
        font-weight: 700;
    }
    .director-photo .photo-frame .photo-caption p {
        font-size: 14px;
        opacity: 0.8;
    }
    .director-photo .photo-frame .quote-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 48px;
        color: rgba(255,255,255,0.15);
    }

    /* ===== LANDING SECTION ===== */
    .landing-section {
        max-width: 1400px;
        margin: 60px auto;
        padding: 0 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: stretch;
    }
    .messages-panel {
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        padding: 40px;
        border: 1px solid #e0e0e0;
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 500px;
    }
    .messages-panel h2 {
        font-size: 28px;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 8px;
    }
    .messages-panel > p {
        color: #777;
        margin-bottom: 28px;
        font-size: 15px;
    }
    .message-item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 14px 0;
        border-bottom: 1px solid #e0e0e0;
        transition: var(--transition-smooth);
    }
    .message-item:last-child { border-bottom: none; }
    .message-item:hover {
        background: rgba(26,35,126,0.02);
        margin: 0 -12px;
        padding-left: 12px;
        padding-right: 12px;
        border-radius: 10px;
    }
    .news-avatar-circle {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background-size: cover;
        background-position: center;
        flex-shrink: 0;
        border: 3px solid #e0e0e0;
        transition: var(--transition-smooth);
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .news-avatar-circle:hover {
        transform: scale(1.05);
        border-color: var(--primary-color);
        box-shadow: 0 4px 16px rgba(26,35,126,0.15);
    }
    .message-content {
        flex: 1;
        min-width: 0;
    }
    .message-content h4 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 4px;
        color: var(--text-dark);
        line-height: 1.3;
        transition: var(--transition-smooth);
    }
    .message-content h4:hover { color: var(--primary-color); }
    .message-content p {
        font-size: 13px;
        color: #777;
        line-height: 1.4;
        margin-bottom: 4px;
    }
    .message-content .news-meta-mini {
        display: flex;
        gap: 14px;
        font-size: 11px;
        color: #aaa;
    }
    .message-content .news-meta-mini span {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }
    .message-actions {
        margin-top: auto;
        padding-top: 24px;
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        border-top: 1px solid #e0e0e0;
    }
    .message-actions .btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .slider-panel {
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        overflow: hidden;
        border: 1px solid #e0e0e0;
        position: relative;
        height: 100%;
        min-height: 500px;
    }
    .slider-panel .slider-container {
        position: relative;
        height: 100%;
        min-height: 500px;
        overflow: hidden;
    }
    .slider-panel .slider-track {
        display: flex;
        height: 100%;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .slider-panel .slider-track img {
        min-width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .slider-panel .slider-controls {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 2;
    }
    .slider-panel .slider-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255,255,255,0.4);
        cursor: pointer;
        transition: var(--transition-smooth);
        border: none;
    }
    .slider-panel .slider-dot.active {
        background: white;
        transform: scale(1.2);
    }
    .slider-panel .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.3);
        backdrop-filter: blur(6px);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 16px;
        cursor: pointer;
        z-index: 2;
        transition: var(--transition-smooth);
    }
    .slider-panel .slider-arrow:hover {
        background: rgba(0,0,0,0.5);
    }
    .slider-panel .slider-arrow.prev { left: 12px; }
    .slider-panel .slider-arrow.next { right: 12px; }

    /* ===== FILIERES ===== */
    .section-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 50px;
    }
    .section-header h2 {
        font-size: 36px;
        font-weight: 700;
        color: var(--primary-color);
        letter-spacing: -0.5px;
    }
    .section-header p {
        color: #777;
        font-size: 17px;
        margin-top: 8px;
    }
    .filiere-grid {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .filiere-card {
        background: white;
        border-radius: 12px;
        padding: 30px 24px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        border: 1px solid #e0e0e0;
        transition: var(--transition-smooth);
        display: flex;
        flex-direction: column;
    }
    .filiere-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }
    .filiere-icon {
        width: 54px;
        height: 54px;
        border-radius: 14px;
        background: rgba(26,35,126,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: var(--primary-color);
        margin-bottom: 16px;
    }
    .filiere-card h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
    }
    .filiere-card p {
        color: #777;
        font-size: 14px;
        line-height: 1.6;
        flex: 1;
    }
    .filiere-link {
        margin-top: 16px;
        font-weight: 600;
        font-size: 14px;
        color: var(--primary-color);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: var(--transition-smooth);
    }
    .filiere-link:hover { gap: 14px; color: #e65100; }

    /* ===== GALLERY ===== */
    .gallery-section {
        padding: 60px 40px;
        background: white;
    }
    .gallery-grid {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
    .gallery-item {
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        aspect-ratio: 1/1;
    }
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition-smooth);
    }
    .gallery-item:hover img { transform: scale(1.05); }
    .gallery-item .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.3);
        opacity: 0;
        transition: var(--transition-smooth);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 28px;
    }
    .gallery-item:hover .overlay { opacity: 1; }

    /* ===== TEAM ===== */
    .team-section {
        padding: 60px 40px;
        background: #f8f9fa;
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
    }
    .team-grid {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    .team-card {
        background: white;
        border-radius: 12px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        border: 1px solid #e0e0e0;
    }
    .team-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        margin: 0 auto 16px;
        overflow: hidden;
        border: 4px solid rgba(26,35,126,0.1);
    }
    .team-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .team-card h3 { font-size: 18px; font-weight: 600; }
    .team-card p { color: #777; font-size: 14px; }

    /* ===== NEWS ===== */
    .news-section {
        padding: 60px 40px;
        background: #f8f9fa;
    }
    .news-grid {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    .news-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        border: 1px solid #e0e0e0;
        transition: var(--transition-smooth);
        cursor: pointer;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .news-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        border-color: var(--primary-color);
    }
    .news-media-wrapper {
        position: relative;
        height: 220px;
        overflow: hidden;
        background: var(--text-dark);
        flex-shrink: 0;
    }
    .news-image {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: var(--transition-smooth);
        position: relative;
    }
    .news-card:hover .news-image { transform: scale(1.05); }
    .image-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.1);
        transition: var(--transition-smooth);
    }
    .news-card:hover .image-overlay { background: rgba(0,0,0,0); }
    .news-body {
        padding: 20px 24px 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .news-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 16px;
        font-size: 12px;
        color: #777;
        margin-bottom: 10px;
    }
    .news-meta span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }
    .news-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
        line-height: 1.3;
        color: var(--text-dark);
        transition: var(--transition-smooth);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .news-card:hover .news-title { color: var(--primary-color); }
    .news-excerpt {
        color: #777;
        font-size: 14px;
        line-height: 1.6;
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 12px;
    }
    .news-footer {
        display: flex;
        justify-content: flex-end;
        padding-top: 12px;
        border-top: 1px solid #e0e0e0;
        margin-top: auto;
    }
    .news-readmore {
        font-weight: 600;
        font-size: 14px;
        color: var(--primary-color);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: var(--transition-smooth);
    }
    .news-readmore:hover {
        gap: 14px;
        color: #e65100;
    }

    /* ===== INSCRIPTION ===== */
    .inscription-section {
        padding: 60px 40px;
        background: linear-gradient(135deg, var(--primary-color), #2d4373);
        color: white;
    }
    .inscription-wrapper {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }
    .inscription-photo {
        border-radius: 12px;
        overflow: hidden;
        height: 400px;
        background: url('images/photo5.jpg') center/cover;
        position: relative;
    }
    .inscription-photo .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 30px;
        background: linear-gradient(transparent, rgba(0,0,0,0.7));
    }
    .inscription-photo .overlay h4 { font-size: 20px; font-weight: 600; }
    .inscription-photo .overlay p { opacity: 0.8; font-size: 14px; }
    .inscription-form {
        background: rgba(255,255,255,0.08);
        backdrop-filter: blur(12px);
        padding: 40px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.15);
    }
    .inscription-form h3 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
    .inscription-form p { opacity: 0.8; margin-bottom: 24px; }
    .form-group { margin-bottom: 16px; }
    .form-control {
        width: 100%;
        padding: 14px 18px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.2);
        background: rgba(255,255,255,0.1);
        color: white;
        font-size: 15px;
        transition: var(--transition-smooth);
    }
    .form-control::placeholder { color: rgba(255,255,255,0.6); }
    .form-control:focus {
        outline: none;
        border-color: white;
        background: rgba(255,255,255,0.15);
    }
    .form-control option { color: var(--text-dark); }
    .inscription-form .btn {
        width: 100%;
        justify-content: center;
        background: white;
        color: var(--primary-color);
        padding: 16px;
    }
    .inscription-form .btn:hover { background: rgba(255,255,255,0.9); }
    .inscription-form .btn-outline {
        background: transparent;
        color: white;
        border: 1px solid rgba(255,255,255,0.2);
    }
    .inscription-form .btn-outline:hover {
        background: rgba(255,255,255,0.1);
    }

    /* ===== FOOTER ===== */
    footer {
        background: #1a1a2e;
        color: rgba(255,255,255,0.7);
        text-align: center;
        padding: 30px 40px;
        font-size: 14px;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    /* ===== MODAL ===== */
    .modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(8px);
        z-index: 2000;
        display: none;
        align-items: center;
        justify-content: center;
    }
    .modal-overlay.active { display: flex; }
    .modal-content {
        background: white;
        padding: 40px 48px;
        border-radius: 12px;
        max-width: 440px;
        width: 90%;
        text-align: center;
        box-shadow: 0 30px 80px rgba(0,0,0,0.3);
        animation: modalIn 0.3s ease;
    }
    @keyframes modalIn {
        from { transform: scale(0.9); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
    }
    .modal-icon { font-size: 52px; margin-bottom: 16px; }
    .modal-content h3 { font-size: 22px; margin-bottom: 8px; }
    .modal-content p { color: #777; margin-bottom: 24px; }
    .modal-content .btn { width: 100%; justify-content: center; }

    /* ===== LIGHTBOX ===== */
    #fullscreenLightbox {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.9);
        z-index: 3000;
        align-items: center;
        justify-content: center;
    }
    #fullscreenLightbox.active { display: flex; }
    .lightbox-close {
        position: absolute;
        top: 20px;
        right: 30px;
        color: white;
        font-size: 40px;
        cursor: pointer;
        transition: var(--transition-smooth);
    }
    .lightbox-close:hover { transform: rotate(90deg); }
    .lightbox-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: white;
        font-size: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        transition: var(--transition-smooth);
        padding: 20px;
    }
    .lightbox-arrow:hover { opacity: 0.7; }
    .lightbox-arrow.prev { left: 10px; }
    .lightbox-arrow.next { right: 10px; }
    #lightboxImage {
        max-width: 90%;
        max-height: 80vh;
        object-fit: contain;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1200px) {
        .hero-landing-wrapper { gap: 40px; }
        .landing-section { grid-template-columns: 1fr; }
        .slider-panel .slider-container { height: 400px; }
        .filiere-grid { grid-template-columns: repeat(2, 1fr); }
        .team-grid { grid-template-columns: repeat(2, 1fr); }
        .news-grid { grid-template-columns: repeat(2, 1fr); }
        .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 992px) {
        body { padding-top: 120px; }
        .hero-landing-wrapper {
            flex-direction: column;
            text-align: center;
        }
        .hero-landing-text p { margin: 0 auto 28px; }
        .hero-landing-text .cta-group { justify-content: center; }
        .hero-landing-slider { width: 100%; }
        .hero-landing-slider .slider-track img { height: 300px; }
        .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
        .inscription-wrapper { grid-template-columns: 1fr; }
        .director-wrapper { flex-direction: column; text-align: center; }
        .director-text .message-content { max-width: 100%; }
        .director-photo .photo-frame { max-width: 100%; }
    }
    @media (max-width: 768px) {
        body { padding-top: 110px; }
        .filiere-grid { grid-template-columns: 1fr; }
        .team-grid { grid-template-columns: 1fr; }
        .news-grid { grid-template-columns: 1fr; }
        .gallery-grid { grid-template-columns: repeat(2, 1fr); }
        .landing-section { padding: 0 20px; }
        .messages-panel { padding: 24px; }
        .stat-item h3 { font-size: 30px; }
        .hero-landing { padding: 40px 20px; }
        .director-section { padding: 40px 20px; }
    }
    @media (max-width: 480px) {
        body { padding-top: 100px; }
        .gallery-grid { grid-template-columns: 1fr; }
        .hero-landing-text h1 { font-size: 28px; }
        .cta-group .btn { width: 100%; justify-content: center; }
        .inscription-form { padding: 24px; }
        .news-section { padding: 40px 16px; }
        .stats-section { padding: 40px 16px; }
    }
