/* ========================================
   INSTITUT SUPÉRIEUR - STYLES PROFESSIONNELS
   Couleurs : Blanc, Bleu Pro, Rouge, Jaune
   ======================================== */

/* ============================
   VARIABLES CSS
   ============================ */
:root {
    /* Couleurs principales */
    --blanc: #ffffff;
    --bleu-pro: #1e3a8a;
    --bleu-clair: #2563eb;
    --bleu-fonce: #172554;
    --rouge: #dc2626;
    --rouge-fonce: #b91c1c;
    --jaune: #f59e0b;
    --jaune-clair: #fbbf24;
    
    /* Couleurs neutres */
    --noir: #111827;
    --gris-900: #1f2937;
    --gris-700: #374151;
    --gris-500: #6b7280;
    --gris-300: #d1d5db;
    --gris-200: #e5e7eb;
    --gris-100: #f3f4f6;
    --gris-50: #f9fafb;
    
    /* Ombres */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Autres */
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.3s ease;
}

/* ============================
   SWEETALERT Z-INDEX FIX
   ============================ */
.swal2-container {
    z-index: 10000 !important;
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gris-700);
    background-color: var(--blanc);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    color: var(--noir);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Amélioration responsive de base */
* {
    -webkit-tap-highlight-color: transparent;
}

input, button, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

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

/* ============================
   TOP BAR
   ============================ */
.top-bar {
    background: var(--bleu-fonce);
    color: var(--blanc);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}

.top-bar-item:hover {
    color: var(--blanc);
}

.top-bar-item i {
    color: var(--jaune);
    font-size: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--blanc);
    font-size: 13px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--jaune);
    color: var(--bleu-fonce);
    transform: translateY(-2px);
}

/* ============================
   NAVIGATION
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--blanc);
    padding: 15px 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-symbol {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bleu-pro), var(--bleu-clair));
    color: var(--blanc);
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-family: 'Playfair Display', serif;
}

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

.logo-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--bleu-pro);
}

.logo-tagline {
    font-size: 11px;
    color: var(--gris-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 10px 18px;
    font-weight: 500;
    color: var(--gris-700);
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--bleu-pro);
    background: var(--gris-100);
}

.nav-link.active {
    color: var(--bleu-pro);
    background: rgba(30, 58, 138, 0.1);
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    cursor: pointer;
    z-index: 1003;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--bleu-pro);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}



.nav-overlay {
    display: none;
}

/* Cacher les éléments mobiles sur desktop */
.nav-menu-header,
.nav-menu-footer {
    display: none;
}

.nav-menu-links {
    display: contents;
}

.nav-menu .nav-link i {
    display: none;
}

.nav-menu .nav-link span {
    display: inline;
}

.nav-cta-btn {
    margin-left: 10px;
}

.nav-cta-btn i {
    display: none;
}

/* ============================
   BOUTONS
   ============================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--bleu-pro), var(--bleu-clair));
    color: var(--blanc);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--bleu-fonce), var(--bleu-pro));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--blanc);
    color: var(--bleu-pro);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius);
    border: 2px solid var(--bleu-pro);
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--bleu-pro);
    color: var(--blanc);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    background: transparent;
    color: var(--bleu-pro);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--bleu-pro);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--bleu-pro);
    color: var(--blanc);
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--jaune), var(--jaune-clair));
    color: var(--bleu-fonce);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-cookie {
    padding: 10px 20px;
    font-size: 14px;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bleu-fonce) 0%, var(--bleu-pro) 50%, var(--bleu-clair) 100%);
    z-index: -2;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--blanc), transparent);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-content {
    color: var(--blanc);
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--jaune);
    color: var(--bleu-fonce);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--blanc);
}

.hero-title .highlight {
    color: var(--jaune);
}

.hero-description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.8;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-cta .btn-primary {
    background: var(--jaune);
    color: var(--bleu-fonce);
}

.hero-cta .btn-primary:hover {
    background: var(--jaune-clair);
}

.hero-cta .btn-secondary {
    background: var(--bleu-fonce);
    color: var(--blanc);
    border-color: var(--blanc);
}

.hero-cta .btn-secondary:hover {
    background: var(--blanc);
    color: var(--bleu-pro);
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--jaune);
}

.stat-label {
    font-size: 14px;
    opacity: 0.85;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 0.4s ease;
}

.visual-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 20px 40px rgba(0, 0, 0, 0.2);
}

.visual-card:hover::before {
    opacity: 0.7;
}

.visual-card.card-1 {
    width: 280px;
    height: 340px;
    top: 0;
    right: 20px;

    animation: floatCard1 6s ease-in-out infinite;
}

.visual-card.card-1::before {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.75), rgba(30, 58, 138, 0.85));
}

.visual-card.card-2 {
    width: 200px;
    height: 250px;
    bottom: 80px;
    left: 0;

    animation: floatCard2 5s ease-in-out infinite;
}

.visual-card.card-2::before {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.75), rgba(185, 28, 28, 0.85));
}

.visual-card.card-3 {
    width: 180px;
    height: 200px;
    bottom: 20px;
    right: 100px;

    animation: floatCard3 7s ease-in-out infinite;
}

.visual-card.card-3::before {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.75), rgba(251, 191, 36, 0.85));
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--blanc);
    font-size: 13px;
    opacity: 0.7;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--blanc), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* ============================
   SECTIONS COMMUNES
   ============================ */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    color: var(--bleu-pro);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-label.light {
    color: var(--jaune);
}

.section-title {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--noir);
}

.section-title.light {
    color: var(--blanc);
}

.section-description {
    color: var(--gris-500);
    font-size: 17px;
    line-height: 1.7;
}

/* ============================
   SECTION À PROPOS
   ============================ */
.about {
    background: var(--gris-50);
}

.about-grid {
    display: grid;
    gap: 40px;
}

.about-text {
    font-size: 18px;
    color: var(--gris-700);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

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

.value-card {
    background: var(--blanc);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gris-200);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--bleu-pro);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bleu-pro), var(--bleu-clair));
    color: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    margin: 0 auto 20px;
}

.value-card:nth-child(2) .value-icon {
    background: linear-gradient(135deg, var(--jaune), var(--jaune-clair));
    color: var(--bleu-fonce);
}

.value-card:nth-child(3) .value-icon {
    background: linear-gradient(135deg, var(--rouge), var(--rouge-fonce));
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--noir);
}

.value-card p {
    color: var(--gris-500);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================
   SECTION MOT DU PROMOTEUR
   ============================ */
.promoteur-section {
    background: linear-gradient(135deg, var(--bleu-fonce) 0%, var(--bleu-pro) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.promoteur-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>') repeat;
    background-size: 100px;
    pointer-events: none;
}

.promoteur-section .section-header {
    margin-bottom: 60px;
}

.promoteur-section .section-label {
    color: var(--jaune);
    border-color: rgba(245, 158, 11, 0.3);
}

.promoteur-section .section-title {
    color: var(--blanc);
}

.promoteur-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.promoteur-image-wrapper {
    display: flex;
    justify-content: center;
}

.promoteur-image-container {
    position: relative;
    width: 300px;
    height: 380px;
}

.promoteur-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.promoteur-image-decoration {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--jaune);
    border-radius: var(--radius-xl);
    z-index: 1;
}

.promoteur-content {
    color: var(--blanc);
}

.promoteur-quote {
    position: relative;
    margin-bottom: 40px;
}

.quote-icon {
    font-size: 48px;
    color: var(--jaune);
    opacity: 0.6;
    margin-bottom: 20px;
    display: block;
}

.promoteur-message {
    font-size: 20px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
    text-align: justify;
}

.promoteur-info {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
}

.promoteur-signature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.signature-line {
    width: 40px;
    height: 2px;
    background: var(--jaune);
}

.signature-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--blanc);
}

.promoteur-title {
    color: var(--jaune);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 55px;
}

@media (max-width: 992px) {
    .promoteur-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .promoteur-image-container {
        width: 260px;
        height: 340px;
        margin: 0 auto;
    }
    
    .promoteur-message {
        font-size: 18px;
        text-align: center;
    }
    
    .promoteur-signature {
        justify-content: center;
    }
    
    .promoteur-title {
        margin-left: 0;
    }
    
    .quote-icon {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .promoteur-section {
        padding: 60px 0;
    }
    
    .promoteur-image-container {
        width: 220px;
        height: 290px;
    }
    
    .promoteur-message {
        font-size: 16px;
    }
    
    .quote-icon {
        font-size: 36px;
    }
    
    .signature-name {
        font-size: 18px;
    }
}

/* ============================
   SECTION PROGRAMMES
   ============================ */
.programs {
    background: var(--blanc);
}

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

.program-card {
    background: var(--blanc);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 2px solid var(--gris-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--bleu-pro);
}

.program-card.featured {
    border-color: var(--bleu-pro);
    background: linear-gradient(to bottom, rgba(30, 58, 138, 0.03), var(--blanc));
    position: relative;
}

.program-card.featured::before {
    content: '★ Populaire';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--rouge);
    color: var(--blanc);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.program-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gris-100);
    color: var(--bleu-pro);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
    width: fit-content;
}

.program-badge.highlight {
    background: var(--bleu-pro);
    color: var(--blanc);
}

.program-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--noir);
}

.program-description {
    color: var(--gris-500);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.program-features {
    margin-bottom: 25px;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gris-700);
    font-size: 14px;
    border-bottom: 1px solid var(--gris-100);
}

.program-features li:last-child {
    border-bottom: none;
}

.program-features li::before {
    content: '✓';
    color: var(--bleu-pro);
    font-weight: 700;
    font-size: 16px;
}

.program-card .btn-outline,
.program-card .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Pagination des programmes */
.programs-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.pagination-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--bleu-pro);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.pagination-dot:hover {
    background: rgba(30, 58, 138, 0.3);
    transform: scale(1.2);
}

.pagination-dot.active {
    background: var(--bleu-pro);
    transform: scale(1.2);
}

.pagination-dot .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================
   SECTION ADMISSION
   ============================ */
.admission {
    background: linear-gradient(135deg, var(--bleu-pro) 0%, var(--bleu-fonce) 100%);
    color: var(--blanc);
    position: relative;
}

.admission-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: repeat;
    opacity: 0.05;
    pointer-events: none;
}

.admission-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.admission-info .section-title {
    color: var(--blanc);
}

.admission-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.admission-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--jaune);
    color: var(--bleu-fonce);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--blanc);
    font-size: 18px;
    margin-bottom: 5px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.admission-requirements {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.admission-requirements h4 {
    color: var(--jaune);
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admission-requirements ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admission-requirements li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.admission-requirements li i {
    color: var(--jaune);
    font-size: 12px;
}

.admission-dates {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.admission-dates h4 {
    color: var(--jaune);
}

.date-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.date-item:last-child {
    border-bottom: none;
}

.date-label {
    color: rgba(255, 255, 255, 0.8);
}

.date-value {
    color: var(--jaune);
    font-weight: 600;
}

.admission-fees {
    margin-top: 25px;
    padding: 20px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: var(--radius);
    border-left: 4px solid var(--jaune);
}

.admission-fees h4 {
    color: var(--jaune);
    font-size: 15px;
    margin-bottom: 10px;
}

.admission-fees p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
}

.admission-form-preview {
    position: sticky;
    top: 100px;
}

.form-card {
    background: var(--blanc);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.form-card h3 {
    color: var(--bleu-pro);
    font-size: 24px;
    margin-bottom: 15px;
}

.form-card > p {
    color: var(--gris-500);
    margin-bottom: 25px;
    font-size: 15px;
}

.form-card .btn-accent {
    width: 100%;
    margin-bottom: 25px;
}

.form-card .contact-info {
    padding-top: 20px;
    border-top: 1px solid var(--gris-200);
}

.form-card .contact-info p {
    color: var(--gris-500);
    font-size: 14px;
    margin-bottom: 8px;
}

.form-card .contact-info i {
    color: var(--bleu-pro);
    margin-right: 8px;
}

/* ============================
   SECTION ACTUALITÉS
   ============================ */
.news {
    background: var(--gris-50);
}

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

.news-card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.news-link {
    display: block;
    color: inherit;
}

.news-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.news-date {
    background: var(--blanc);
    color: var(--bleu-pro);
    padding: 8px 15px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
}

.news-content {
    padding: 25px;
}

.news-category {
    display: inline-block;
    background: var(--gris-100);
    color: var(--bleu-pro);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--noir);
    transition: var(--transition);
}

.news-card:hover .news-content h3 {
    color: var(--bleu-pro);
}

.news-content p {
    color: var(--gris-500);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--bleu-pro);
    font-weight: 600;
    font-size: 14px;
}

.news-read-more i {
    transition: var(--transition);
}

.news-card:hover .news-read-more i {
    transform: translateX(5px);
}

/* ============================
   SECTION CONTACT
   ============================ */
.contact {
    background: var(--blanc);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--noir);
}

.contact-info-section > p {
    color: var(--gris-500);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--bleu-pro), var(--bleu-clair));
    color: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--noir);
}

.contact-item p {
    color: var(--gris-500);
    font-size: 14px;
    line-height: 1.6;
}

.contact-item a {
    color: var(--bleu-pro);
}

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

.contact-form {
    background: var(--gris-50);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gris-200);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--noir);
}

/* ============================
   FORMULAIRES
   ============================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--noir);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gris-200);
    border-radius: var(--radius);
    background: var(--blanc);
    color: var(--noir);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--bleu-pro);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gris-200);
}

.form-section-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bleu-pro);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    border: 2px solid var(--gris-500);
    border-radius: 4px;
    background: var(--blanc);
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--bleu-pro);
    border-color: var(--bleu-pro);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--blanc);
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.2);
}

.checkbox-label a {
    color: var(--bleu-pro);
    text-decoration: underline;
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: var(--bleu-fonce);
    color: var(--blanc);
}

.footer-main {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-about .logo-symbol {
    background: var(--jaune);
    color: var(--bleu-fonce);
}

.footer-about .logo-name {
    color: var(--blanc);
}

.footer-about .logo-tagline {
    color: rgba(255, 255, 255, 0.6);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--jaune);
    color: var(--bleu-fonce);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: var(--blanc);
    font-size: 18px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h4 i {
    color: var(--jaune);
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-section ul a:hover {
    color: var(--jaune);
    padding-left: 5px;
}

.footer-section ul a i {
    font-size: 10px;
    color: var(--jaune);
}

.footer-contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px !important;
}

.footer-contact-info li i {
    color: var(--jaune);
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact-info li span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-info li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info li a:hover {
    color: var(--jaune);
}

/* Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-text > i {
    font-size: 40px;
    color: var(--jaune);
}

.newsletter-text h4 {
    color: var(--blanc);
    font-size: 20px;
    margin-bottom: 5px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    width: 300px;
    padding: 14px 20px;
    border-radius: var(--radius);
    background: var(--blanc);
    color: var(--noir);
    font-size: 14px;
}

.newsletter-form .btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--jaune);
}

.footer-links a i {
    font-size: 12px;
}

/* ============================
   MODAL
   ============================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 0;
}

.modal-content {
    position: relative;
    background: var(--blanc);
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 40px;
    z-index: 1;
    transform: translateY(30px);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gris-200);
}

.modal-header h2 {
    font-size: 26px;
    color: var(--bleu-pro);
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header p {
    color: var(--gris-500);
    margin-top: 10px;
    font-size: 15px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gris-500);
    background: var(--gris-100);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--rouge);
    color: var(--blanc);
}

.modal-cookies {
    max-width: 550px;
}

/* ============================
   COOKIE BANNER
   ============================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--blanc);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    padding: 25px;
    z-index: 1500;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-banner.show,
.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.cookie-banner-text > i {
    font-size: 35px;
    color: var(--jaune);
}

.cookie-banner-text h4 {
    font-size: 16px;
    color: var(--noir);
    margin-bottom: 5px;
}

.cookie-banner-text p {
    font-size: 14px;
    color: var(--gris-500);
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--bleu-pro);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* Cookie Preferences */
.cookie-preferences-content {
    margin-bottom: 25px;
}

.cookie-category {
    padding: 20px 0;
    border-bottom: 1px solid var(--gris-200);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-category-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cookie-category-info > i {
    color: var(--bleu-pro);
    font-size: 22px;
    margin-top: 2px;
}

.cookie-category-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--noir);
}

.cookie-category-info p {
    font-size: 13px;
    color: var(--gris-500);
}

.cookie-preferences-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding-top: 15px;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gris-300);
    border-radius: 28px;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    bottom: 3px;
    background: var(--blanc);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--bleu-pro);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.toggle-switch.disabled .toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 1200px) {
    .values-grid,
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--blanc);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid var(--gris-200);
        font-size: 16px;
    }

    .nav-menu .btn-primary {
        margin-top: 20px;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .admission-content {
        grid-template-columns: 1fr;
    }

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

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-text {
        flex-direction: column;
    }

    .newsletter-form {
        width: 100%;
        max-width: 400px;
    }

    .newsletter-form input {
        flex: 1;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .top-bar-container {
        flex-direction: column;
        text-align: center;
    }

    .top-bar-left {
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-title {
        font-size: 32px;
    }

    .values-grid,
    .programs-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: left;
    }

    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 10px;
    }

    .footer-about .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-section h4 {
        justify-content: flex-start;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-section ul a {
        justify-content: flex-start;
    }

    .footer-contact-info li {
        justify-content: flex-start;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 10px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-links a {
        justify-content: center;
    }

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

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-text {
        flex-direction: column;
        align-items: center;
    }

    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-banner-actions button {
        width: 100%;
    }

    .modal-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

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

    .hero-cta button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-about {
        grid-column: 1;
    }

    .footer-section h4 {
        justify-content: center;
    }

    .footer-section ul a {
        justify-content: center;
    }

    .footer-contact-info li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ========================================
   PAGE ARTICLE / ACTUALITÉ DÉTAIL
   ======================================== */

/* Article Header */
.article-header {
    padding-top: 80px;
}

.article-header-image {
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding: 60px 0;
    background-size: cover;
    background-position: center;
}

.article-header-content {
    color: var(--blanc);
    max-width: 800px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.article-meta i {
    color: var(--jaune);
}

.article-category {
    background: var(--jaune);
    color: var(--bleu-fonce);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.article-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--blanc);
}

.article-excerpt {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.7;
}

/* Article Content Section */
.article-content-section {
    padding: 80px 0;
    background: var(--gris-50);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

.article-main {
    background: var(--blanc);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.article-body {
    line-height: 1.8;
}

.article-body h2 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: var(--bleu-pro);
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body h2 i {
    color: var(--jaune);
}

.article-body h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--noir);
}

.article-body p {
    margin-bottom: 20px;
    color: var(--gris-700);
}

.article-body .lead-paragraph {
    font-size: 18px;
    color: var(--gris-700);
    border-left: 4px solid var(--bleu-pro);
    padding-left: 20px;
    margin-bottom: 30px;
}

/* Schedule Block */
.schedule-block {
    margin: 30px 0;
}

.schedule-item {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid var(--gris-200);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-time {
    min-width: 120px;
    font-weight: 700;
    color: var(--bleu-pro);
    font-size: 15px;
}

.schedule-details h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--noir);
}

.schedule-details p {
    margin-bottom: 0;
    font-size: 14px;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.highlight-card {
    background: var(--gris-50);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gris-200);
    transition: var(--transition);
}

.highlight-card:hover {
    border-color: var(--bleu-pro);
    transform: translateY(-3px);
}

.highlight-card i {
    font-size: 36px;
    color: var(--bleu-pro);
    margin-bottom: 15px;
}

.highlight-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 13px;
    margin-bottom: 0;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.info-box {
    background: linear-gradient(135deg, var(--bleu-pro), var(--bleu-clair));
    color: var(--blanc);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.info-box i {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--jaune);
}

.info-box h4 {
    color: var(--blanc);
    font-size: 16px;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--gris-300);
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, var(--bleu-pro), var(--bleu-fonce));
    color: var(--blanc);
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    margin-top: 40px;
}

.article-cta h3 {
    color: var(--blanc);
    font-size: 26px;
    margin-bottom: 15px;
}

.article-cta > p {
    color: var(--gris-300);
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--jaune);
    color: var(--bleu-fonce);
}

.cta-buttons .btn-primary:hover {
    background: var(--jaune-clair);
}

.cta-buttons .btn-secondary {
    background: var(--bleu-fonce);
    color: var(--blanc);
    border-color: var(--blanc);
}

.cta-buttons .btn-secondary:hover {
    background: var(--blanc);
    color: var(--bleu-pro);
}

/* Article Share */
.article-share {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--gris-200);
}

.article-share h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--noir);
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius);
    color: var(--blanc);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

/* Article Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--blanc);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bleu-pro);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget h3 i {
    color: var(--jaune);
}

/* Related Articles */
.related-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-article {
    display: flex;
    gap: 15px;
    padding: 10px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.related-article:hover {
    background: var(--gris-50);
}

.related-image {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.related-content h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--noir);
    line-height: 1.4;
}

.related-date {
    font-size: 12px;
    color: var(--gris-500);
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-date i {
    color: var(--jaune);
    font-size: 10px;
}

/* Categories List */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--gris-50);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--gris-700);
    transition: var(--transition);
}

.category-tag:hover {
    background: var(--bleu-pro);
    color: var(--blanc);
}

.category-tag i {
    color: var(--bleu-pro);
}

.category-tag:hover i {
    color: var(--jaune);
}

.category-count {
    margin-left: auto;
    background: var(--blanc);
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bleu-pro);
}

/* Widget CTA */
.widget-cta {
    background: linear-gradient(135deg, var(--bleu-pro), var(--bleu-fonce));
    color: var(--blanc);
    text-align: center;
}

.widget-cta > i {
    font-size: 50px;
    color: var(--jaune);
    margin-bottom: 15px;
}

.widget-cta h3 {
    color: var(--blanc);
    font-size: 20px;
    margin-bottom: 10px;
}

.widget-cta p {
    opacity: 0.9;
    font-size: 14px;
    margin-bottom: 20px;
}

.widget-cta .btn-accent {
    width: 100%;
}

/* ========================================
   PAGES LÉGALES (CGU, Confidentialité)
   ======================================== */

.legal-page {
    padding: 120px 0 80px;
    background: var(--gris-50);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1 {
    font-size: 36px;
    color: var(--bleu-pro);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.legal-header h1 i {
    color: var(--jaune);
}

.legal-date {
    color: var(--gris-500);
    font-size: 14px;
}

.legal-content {
    background: var(--blanc);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gris-700);
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--gris-200);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 22px;
    color: var(--bleu-pro);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--jaune);
}

.legal-section h3 {
    font-size: 17px;
    color: var(--noir);
    margin: 25px 0 15px;
}

.legal-section p {
    color: var(--gris-700);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 20px 20px;
}

.legal-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--gris-700);
    line-height: 1.6;
}

.legal-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--bleu-pro);
    font-weight: bold;
    font-size: 18px;
}

.legal-section ul li i {
    color: var(--bleu-pro);
    margin-right: 8px;
}

.legal-section a {
    color: var(--bleu-pro);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--bleu-clair);
}

.legal-footer {
    margin-top: 50px;
    padding: 25px;
    background: var(--gris-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--jaune);
}

.legal-footer p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
    font-size: 15px;
}

.legal-footer i {
    color: var(--jaune);
    font-size: 20px;
    margin-top: 2px;
}

/* ========================================
   RESPONSIVE - PAGES ARTICLE & LÉGALES
   ======================================== */

@media (max-width: 991px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        order: 2;
    }

    .article-title {
        font-size: 32px;
    }

    .info-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .article-header-image {
        min-height: 300px;
        padding: 40px 0;
    }

    .article-title {
        font-size: 26px;
    }

    .article-main {
        padding: 25px;
    }

    .article-body h2 {
        font-size: 22px;
    }

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

    .info-boxes {
        grid-template-columns: 1fr;
    }

    .article-cta {
        padding: 30px 20px;
    }

    .schedule-item {
        flex-direction: column;
        gap: 10px;
    }

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

    .share-btn {
        justify-content: center;
    }

    .legal-header h1 {
        font-size: 26px;
        flex-direction: column;
        gap: 10px;
    }

    .legal-content {
        padding: 25px;
    }

    .legal-section h2 {
        font-size: 20px;
    }
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bleu-pro), var(--bleu-clair));
    color: var(--blanc);
    font-weight: 800;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-family: 'Playfair Display', serif;
    margin: 0 auto 25px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    position: relative;
}

.preloader-spinner::before,
.preloader-spinner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
}

.preloader-spinner::before {
    border-top-color: var(--bleu-pro);
    border-right-color: var(--bleu-pro);
    animation: spin 1s linear infinite;
}

.preloader-spinner::after {
    border-bottom-color: var(--jaune);
    border-left-color: var(--jaune);
    animation: spin 1s linear infinite reverse;
}

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

.preloader-text {
    font-size: 14px;
    color: var(--gris-500);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.preloader-bar {
    width: 200px;
    height: 4px;
    background: var(--gris-200);
    border-radius: 2px;
    margin: 15px auto 0;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, var(--bleu-pro), var(--jaune));
    border-radius: 2px;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; margin-left: 0; }
    50% { width: 70%; margin-left: 15%; }
    100% { width: 0%; margin-left: 100%; }
}

/* Preloader Responsive - Tablette */
@media (max-width: 768px) {
    .preloader-logo {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .preloader-spinner {
        width: 45px;
        height: 45px;
        margin-bottom: 18px;
    }
    
    .preloader-text {
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .preloader-bar {
        width: 180px;
    }
}

/* Preloader Responsive - Mobile */
@media (max-width: 480px) {
    .preloader-logo {
        width: 60px;
        height: 60px;
        font-size: 24px;
        border-radius: 12px;
        margin-bottom: 18px;
    }
    
    .preloader-spinner {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }
    
    .preloader-spinner::before,
    .preloader-spinner::after {
        border-width: 3px;
    }
    
    .preloader-text {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .preloader-bar {
        width: 150px;
        height: 3px;
        margin-top: 12px;
    }
}

/* Preloader Responsive - Très petit écran */
@media (max-width: 320px) {
    .preloader-logo {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .preloader-spinner {
        width: 35px;
        height: 35px;
    }
    
    .preloader-text {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .preloader-bar {
        width: 120px;
    }
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rouge), var(--rouge-fonce));
    color: var(--blanc);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--rouge-fonce), var(--rouge));
}

.back-to-top::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--blanc);
    opacity: 0.3;
    animation: ripple 1.5s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Alternative jaune/blanc */
.back-to-top.yellow {
    background: linear-gradient(135deg, var(--jaune), var(--jaune-clair));
    color: var(--bleu-fonce);
}

.back-to-top.yellow:hover {
    background: linear-gradient(135deg, var(--jaune-clair), var(--jaune));
}

.back-to-top.yellow::before {
    border-color: var(--bleu-fonce);
}

/* Responsive back-to-top */
@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}
/* ========================================
   RESPONSIVE IMPROVEMENTS - COMPLÉMENTS
   ======================================== */

/* ============================
   RESPONSIVE COMPLET - TOUS BREAKPOINTS
   ============================ */

/* === TRÈS GRANDS ÉCRANS (1400px+) === */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 42px;
    }
}

/* === ÉCRANS LARGES (1200px - 1399px) === */
@media (max-width: 1399px) {
    .hero-title {
        font-size: 48px;
    }
}

/* === TABLETTES PAYSAGE (992px - 1199px) === */
@media (max-width: 1199px) {
    .hero-container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .admission-content {
        gap: 40px;
    }
}

/* === TABLETTES PORTRAIT (768px - 991px) === */
@media (max-width: 991px) {
    /* Overlay */
    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        backdrop-filter: blur(4px);
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        height: 100dvh;
        background: var(--blanc);
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1001;
        display: flex;
    }

    .nav-menu.active {
        right: 0;
    }
    
    /* Header du menu mobile */
    .nav-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        background: linear-gradient(135deg, var(--bleu-pro), var(--bleu-clair));
        color: var(--blanc);
    }
    
    .nav-menu-logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .nav-menu-logo .logo-symbol {
        width: 42px;
        height: 42px;
        background: var(--blanc);
        color: var(--bleu-pro);
        font-size: 16px;
    }
    
    .nav-menu-logo span {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 18px;
    }
    
    .nav-menu-close {
        width: 40px;
        height: 40px;
        min-width: 40px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        border-radius: 50%;
        color: var(--blanc);
        font-size: 22px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .nav-menu-close i {
        color: var(--blanc);
        line-height: 1;
    }
    
    .nav-menu-close:hover {
        background: rgba(255, 255, 255, 0.35);
        transform: rotate(90deg);
    }
    
    /* Liens du menu */
    .nav-menu-links {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 15px 0;
        overflow-y: auto;
    }

    .nav-link {
        padding: 16px 24px;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 15px;
        color: var(--gris-700);
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link i {
        display: block;
        width: 20px;
        text-align: center;
        font-size: 18px;
        color: var(--gris-500);
        transition: color 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: var(--gris-50);
        color: var(--bleu-pro);
        border-left-color: var(--bleu-pro);
    }
    
    .nav-link:hover i,
    .nav-link.active i {
        color: var(--bleu-pro);
    }
    
    .nav-link.active {
        background: linear-gradient(90deg, rgba(30, 58, 138, 0.08), transparent);
        font-weight: 600;
    }
    
    /* Bouton CTA mobile */
    .nav-cta-btn {
        margin: 15px 24px;
        width: calc(100% - 48px);
        justify-content: center;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .nav-cta-btn i {
        display: inline-block;
    }
    
    /* Footer du menu */
    .nav-menu-footer {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 24px;
        background: var(--gris-50);
        border-top: 1px solid var(--gris-200);
    }

    .nav-menu .btn-primary,
    .nav-menu-footer .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .nav-menu-contact {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .nav-menu-contact a {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        color: var(--gris-600);
        transition: color 0.3s ease;
    }
    
    .nav-menu-contact a i {
        width: 18px;
        color: var(--bleu-pro);
    }
    
    .nav-menu-contact a:hover {
        color: var(--bleu-pro);
    }

    .mobile-toggle {
        display: flex;
        z-index: 1002;
    }
    
    .mobile-toggle.hidden {
        opacity: 0;
        pointer-events: none;
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }
    
    .hero-badge {
        margin: 0 auto 20px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero-cta button {
        min-width: 200px;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-divider {
        display: none;
    }
    
    /* Sections */
    section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }

    /* Grilles */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Admission */
    .admission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .admission-info {
        order: 2;
    }
    
    .admission-steps {
        order: 1;
    }

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

    /* Newsletter */
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .newsletter-text {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-text h3 {
        font-size: 22px;
    }

    .newsletter-form {
        width: 100%;
        max-width: 450px;
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-form input {
        width: 100%;
        text-align: center;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        max-width: 600px;
        max-height: 90vh;
        margin: 20px auto;
    }
    
    .modal-cookies {
        max-width: 550px;
    }
}

/* === MOBILES PAYSAGE / PETITES TABLETTES (576px - 767px) === */
@media (max-width: 767px) {
    /* Top Bar */
    .top-bar {
        padding: 12px 0;
    }
    
    .top-bar-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 8px;
        justify-content: center;
    }
    
    .top-bar-item {
        font-size: 12px;
    }
    
    .top-bar-right {
        gap: 8px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    /* Navbar */
    .navbar {
        padding: 12px 0;
    }
    
    .logo-symbol {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .logo-name {
        font-size: 16px;
    }
    
    .logo-tagline {
        font-size: 10px;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 26px;
    }
    
    .section-label {
        font-size: 12px;
    }
    
    .section-description {
        font-size: 15px;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 30px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta button {
        width: 100%;
        padding: 14px 24px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .scroll-indicator {
        display: none;
    }

    /* Cards et Grilles */
    .values-grid,
    .programs-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 25px 20px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 24px;
    }
    
    .program-card {
        padding: 30px 25px;
    }
    
    .program-title {
        font-size: 20px;
    }
    
    .news-card {
        max-width: 100%;
    }
    
    /* Admission */
    .admission {
        padding: 50px 0;
    }
    
    .admission-step {
        padding: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .doc-item {
        padding: 15px;
    }
    
    /* Contact */
    .contact-item {
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 20px;
    }
    
    .contact-text h3 {
        font-size: 16px;
    }
    
    /* Form */
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .form-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .form-actions button {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-about .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-section ul a {
        justify-content: center;
    }

    .footer-contact-info li {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 25px 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .footer-links a {
        justify-content: center;
    }

    /* Cookie Banner */
    .cookie-banner {
        padding: 20px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookie-banner-text {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cookie-banner-text > i {
        font-size: 32px;
    }
    
    .cookie-banner-text h4 {
        font-size: 16px;
    }
    
    .cookie-banner-text p {
        font-size: 13px;
    }

    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .cookie-banner-actions button {
        width: 100%;
        padding: 12px 20px;
    }
    
    /* Cookie Modal */
    .modal-cookies {
        padding: 25px 20px;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cookie-category-info {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .toggle-switch {
        align-self: center;
    }
    
    .cookie-preferences-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-preferences-actions button {
        width: 100%;
    }

    /* Modal */
    .modal-content {
        padding: 25px 20px;
        margin: 15px;
        max-height: 95vh;
        border-radius: var(--radius-lg);
    }
    
    .modal-header h2 {
        font-size: 22px;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
    
    .form-section-title {
        font-size: 16px;
    }
}

/* === PETITS MOBILES (320px - 575px) === */
@media (max-width: 575px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 26px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-cta button {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    /* Sections */
    .section-title {
        font-size: 24px;
    }
    
    /* Cards */
    .value-card,
    .program-card {
        padding: 20px 15px;
    }
    
    .program-features li {
        font-size: 13px;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-accent {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* About */
    .about-text {
        font-size: 15px;
    }
}

/* === TRÈS PETITS MOBILES (< 360px) === */
@media (max-width: 359px) {
    html {
        font-size: 14px;
    }

    .hero-title {
        font-size: 24px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .section-title {
        font-size: 22px;
    }

    .container {
        padding: 0 12px;
    }
    
    .logo-text {
        display: none;
    }
    
    .logo-symbol {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .modal-content {
        padding: 20px 15px;
        margin: 10px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ============================
   PAGES ARTICLE - RESPONSIVE
   ============================ */
@media (max-width: 991px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-sidebar {
        position: static;
        order: 2;
    }

    .article-title {
        font-size: 32px;
    }

    .info-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .article-header {
        padding-top: 70px;
    }
    
    .article-header-image {
        min-height: 280px;
        padding: 40px 0;
    }

    .article-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .article-excerpt {
        font-size: 15px;
    }
    
    .article-meta {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .article-meta span {
        font-size: 12px;
    }
    
    .article-category {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .article-content-section {
        padding: 50px 0;
    }

    .article-main {
        padding: 25px 20px;
    }
    
    .article-body h2 {
        font-size: 20px;
    }
    
    .article-body h3 {
        font-size: 18px;
    }
    
    .article-body .lead-paragraph {
        font-size: 16px;
        padding-left: 15px;
    }

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

    .info-boxes {
        grid-template-columns: 1fr;
    }
    
    .info-box {
        padding: 20px;
    }
    
    .info-box i {
        font-size: 28px;
    }

    .article-cta {
        padding: 30px 20px;
    }
    
    .article-cta h3 {
        font-size: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons button {
        width: 100%;
    }

    .schedule-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .schedule-time {
        min-width: auto;
    }

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

    .share-btn {
        justify-content: center;
        width: 100%;
    }
    
    /* Sidebar */
    .sidebar-widget {
        padding: 20px;
    }
    
    .sidebar-widget h3 {
        font-size: 16px;
    }
    
    .related-article {
        flex-direction: column;
        gap: 10px;
    }
    
    .related-image {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }
}

/* ============================
   PAGES LÉGALES - RESPONSIVE
   ============================ */
@media (max-width: 767px) {
    .legal-page {
        padding: 100px 0 60px;
    }
    
    .legal-header {
        margin-bottom: 30px;
    }
    
    .legal-header h1 {
        font-size: 24px;
        flex-direction: column;
        gap: 10px;
    }
    
    .legal-header h1 i {
        font-size: 28px;
    }

    .legal-content {
        padding: 25px 20px;
    }
    
    .legal-intro {
        font-size: 15px;
    }

    .legal-section h2 {
        font-size: 18px;
    }
    
    .legal-section h3 {
        font-size: 16px;
    }
    
    .legal-section p {
        font-size: 14px;
    }
    
    .legal-section ul li {
        font-size: 14px;
        padding-left: 20px;
    }
    
    .legal-footer {
        padding: 20px 15px;
    }
    
    .legal-footer p {
        font-size: 14px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .legal-header h1 {
        font-size: 22px;
    }
    
    .legal-content {
        padding: 20px 15px;
    }
    
    .legal-section {
        margin-bottom: 30px;
    }
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Stagger animations */
.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }

/* ============================
   LOADING STATES
   ============================ */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================
   ACCESSIBILITY
   ============================ */
*:focus-visible {
    outline: 3px solid var(--bleu-pro, #1e3a8a);
    outline-offset: 2px;
    border-radius: 4px;
}

.skip-to-main {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 15px 25px;
    background: var(--bleu-pro, #1e3a8a);
    color: white;
    font-weight: 600;
    border-radius: 0 0 8px 0;
}

.skip-to-main:focus {
    left: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================
   TOUCH DEVICES
   ============================ */
@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-accent,
    .nav-link {
        min-height: 48px;
    }

    .value-card:hover,
    .program-card:hover,
    .news-card:hover {
        transform: none;
    }

    input, textarea, select {
        font-size: 16px !important;
    }
}

/* ============================
   PRINT STYLES
   ============================ */
@media print {
    .top-bar,
    .navbar,
    .mobile-toggle,
    .cookie-banner,
    .modal,
    .hero-cta,
    .footer-newsletter,
    .footer-social,
    .btn-primary,
    .btn-secondary,
    .btn-accent {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
        background: none !important;
    }

    .hero-background {
        display: none;
    }

    .hero-content {
        color: #000;
    }

    section {
        padding: 30px 0;
        page-break-inside: avoid;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }

    a {
        text-decoration: underline;
    }
}

/* ============================
   HIGH CONTRAST MODE
   ============================ */
@media (prefers-contrast: high) {
    :root {
        --bleu-pro: #000080;
        --rouge: #cc0000;
        --jaune: #cc9900;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-accent {
        border: 2px solid currentColor;
    }

    .value-card,
    .program-card,
    .news-card {
        border: 2px solid #000;
    }
}

/* ============================
   LANDSCAPE MODE MOBILE
   ============================ */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-stats {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .modal-content {
        max-height: 95vh;
    }
}

/* ============================
   VERY SMALL SCREENS
   ============================ */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }

    .hero-title {
        font-size: 26px !important;
    }

    .section-title {
        font-size: 24px !important;
    }

    .container {
        padding: 0 12px;
    }

    .modal-content {
        padding: 20px 15px;
    }
}

/* ============================
   UTILITY CLASSES
   ============================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* ============================
   FIELD VALIDATION STYLES
   ============================ */
.field-error {
    color: var(--rouge, #dc2626);
    font-size: 13px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: var(--rouge, #dc2626) !important;
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #10b981 !important;
}

.form-group input.invalid:focus,
.form-group select.invalid:focus,
.form-group textarea.invalid:focus {
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1) !important;
}

.form-group input.valid:focus,
.form-group select.valid:focus,
.form-group textarea.valid:focus {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1) !important;
}

/* ============================
   SMOOTH SCROLLBAR
   ============================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--bleu-pro, #1e3a8a);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bleu-fonce, #172554);
}

/* Modal scrollbar */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

/* ============================
   SELECTION STYLE
   ============================ */
::selection {
    background: var(--bleu-pro, #1e3a8a);
    color: white;
}

::-moz-selection {
    background: var(--bleu-pro, #1e3a8a);
    color: white;
}

/* ========================================
   PAGE À PROPOS - STYLES
   ======================================== */

/* About Hero */
.about-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.about-hero-content {
    color: var(--blanc);
    max-width: 800px;
}

.about-hero-content .section-label {
    color: var(--jaune);
}

.about-hero-content h1 {
    font-size: 48px;
    color: var(--blanc);
    margin-bottom: 20px;
}

.about-hero-content > p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
}

.about-hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.hero-stat i {
    font-size: 28px;
    color: var(--jaune);
}

.hero-stat .stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.hero-stat .stat-text {
    font-size: 13px;
    opacity: 0.8;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: var(--gris-50);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    background: var(--blanc);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
}

.mv-card.mission::before {
    background: linear-gradient(to bottom, var(--bleu-pro), var(--bleu-clair));
}

.mv-card.vision::before {
    background: linear-gradient(to bottom, var(--jaune), var(--jaune-clair));
}

.mv-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-card.mission .mv-icon {
    background: linear-gradient(135deg, var(--bleu-pro), var(--bleu-clair));
    color: var(--blanc);
}

.mv-card.vision .mv-icon {
    background: linear-gradient(135deg, var(--jaune), var(--jaune-clair));
    color: var(--bleu-fonce);
}

.mv-icon i {
    font-size: 28px;
}

.mv-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--bleu-pro);
}

.mv-card > p {
    color: var(--gris-700);
    line-height: 1.8;
    margin-bottom: 25px;
}

.mv-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gris-700);
}

.mv-list li i {
    color: var(--bleu-pro);
    font-size: 14px;
}

.mv-card.vision .mv-list li i {
    color: var(--jaune);
}

/* Our Values */
.our-values {
    padding: 100px 0;
}

.values-showcase {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    border-bottom: 1px solid var(--gris-200);
    transition: var(--transition);
}

.value-item:hover {
    background: var(--gris-50);
    padding-left: 50px;
}

.value-number {
    font-size: 60px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: var(--gris-200);
    min-width: 120px;
    transition: var(--transition);
}

.value-item:hover .value-number {
    color: var(--bleu-pro);
}

.value-content h3 {
    font-size: 24px;
    color: var(--bleu-pro);
    margin-bottom: 10px;
}

.value-content p {
    color: var(--gris-700);
    line-height: 1.7;
}

/* History Section */
.history {
    padding: 100px 0;
    background: var(--gris-50);
}

.history-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.history-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.history-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.history-intro .section-title {
    margin-bottom: 20px;
}

.history-intro p {
    color: var(--gris-700);
    line-height: 1.8;
    font-size: 17px;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--bleu-pro), var(--jaune));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-bottom: 50px;
    padding-left: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--bleu-pro);
    border-radius: 50%;
    border: 4px solid var(--blanc);
    box-shadow: var(--shadow);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--bleu-pro), var(--bleu-clair));
    color: var(--blanc);
    padding: 8px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

.timeline-content {
    background: var(--blanc);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    font-size: 20px;
    color: var(--bleu-pro);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--gris-700);
    line-height: 1.7;
}

/* Leadership Section */
.leadership {
    padding: 100px 0;
}

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

.leader-card {
    background: var(--blanc);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.leader-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.leader-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transition: var(--transition);
}

.leader-card:hover .leader-social {
    bottom: 0;
}

.leader-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blanc);
    color: var(--bleu-pro);
    border-radius: 50%;
    transition: var(--transition);
}

.leader-social a:hover {
    background: var(--jaune);
    color: var(--bleu-fonce);
}

.leader-info {
    padding: 25px;
    text-align: center;
}

.leader-info h3 {
    font-size: 18px;
    color: var(--noir);
    margin-bottom: 5px;
}

.leader-title {
    display: block;
    color: var(--bleu-pro);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-info p {
    color: var(--gris-500);
    font-size: 13px;
    line-height: 1.6;
}

/* Campus Section */
.campus {
    padding: 100px 0;
    background: var(--gris-50);
}

.campus-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    margin-bottom: 50px;
}

.campus-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
}

.campus-item.large {
    grid-row: span 2;
}

.campus-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.campus-item:not(.large) img {
    height: 200px;
}

.campus-item.large img {
    height: 100%;
    min-height: 420px;
}

.campus-item:hover img {
    transform: scale(1.05);
}

.campus-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(30, 58, 138, 0.9));
    color: var(--blanc);
    transform: translateY(100%);
    transition: var(--transition);
}

.campus-item:hover .campus-overlay {
    transform: translateY(0);
}

.campus-overlay h3 {
    color: var(--blanc);
    font-size: 20px;
    margin-bottom: 5px;
}

.campus-overlay p {
    opacity: 0.9;
    font-size: 14px;
}

.campus-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.campus-feature {
    text-align: center;
    padding: 30px 20px;
    background: var(--blanc);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.campus-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.campus-feature i {
    font-size: 36px;
    color: var(--bleu-pro);
    margin-bottom: 15px;
}

.campus-feature h4 {
    font-size: 16px;
    color: var(--noir);
    margin-bottom: 8px;
}

.campus-feature p {
    color: var(--gris-500);
    font-size: 14px;
}

/* Key Figures */
.key-figures {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bleu-pro), var(--bleu-fonce));
}

.figures-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.figure-item {
    text-align: center;
    color: var(--blanc);
}

.figure-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.figure-icon i {
    font-size: 28px;
    color: var(--jaune);
}

.figure-number {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.figure-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About CTA */
.about-cta {
    padding: 100px 0;
    background: var(--gris-50);
}

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

.cta-content h2 {
    font-size: 36px;
    color: var(--bleu-pro);
    margin-bottom: 15px;
}

.cta-content > p {
    color: var(--gris-700);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   PAGE À PROPOS - RESPONSIVE
   ======================================== */
@media (max-width: 1199px) {
    .leaders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .figures-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .campus-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .about-hero-content h1 {
        font-size: 36px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .history-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .history-image img {
        height: 280px;
    }
    
    .leaders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .campus-gallery {
        grid-template-columns: 1fr;
    }
    
    .campus-item.large {
        grid-row: span 1;
    }
    
    .campus-item.large img {
        min-height: 250px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .about-hero-content h1 {
        font-size: 28px;
    }
    
    .about-hero-content > p {
        font-size: 16px;
    }
    
    .about-hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-stat {
        width: 100%;
    }
    
    .mv-card {
        padding: 30px 25px;
    }
    
    .mv-card h2 {
        font-size: 24px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .value-number {
        font-size: 48px;
        min-width: auto;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-item {
        padding-left: 25px;
    }
    
    .timeline-item::before {
        left: -28px;
        width: 12px;
        height: 12px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .leaders-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .leader-image {
        height: 250px;
    }
    
    .figures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .figure-number {
        font-size: 36px;
    }
    
    .campus-features {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a,
    .cta-buttons button {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .figures-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-content h1 {
        font-size: 24px;
    }
}

/* ========================================
   PAGE ACTUALITÉS - STYLES
   ======================================== */

/* News Hero */
.news-hero {
    background: linear-gradient(135deg, var(--bleu-pro), var(--bleu-fonce));
    padding: 140px 0 60px;
    color: var(--blanc);
}

.news-hero-content {
    text-align: center;
    margin-bottom: 50px;
}

.news-hero-content .section-label {
    color: var(--jaune);
}

.news-hero-content h1 {
    font-size: 42px;
    color: var(--blanc);
    margin-bottom: 15px;
}

.news-hero-content > p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* News Search Section */
.news-search-section {
    max-width: 900px;
    margin: 0 auto;
}

.news-search-form {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper > i {
    position: absolute;
    left: 20px;
    color: var(--gris-500);
    font-size: 18px;
}

.search-input-wrapper input {
    width: 100%;
    padding: 18px 50px 18px 55px;
    border-radius: var(--radius-lg);
    font-size: 16px;
    background: var(--blanc);
    color: var(--noir);
    border: none;
}

.search-input-wrapper input::placeholder {
    color: var(--gris-500);
}

.clear-search {
    position: absolute;
    right: 15px;
    width: 30px;
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--gris-200);
    border-radius: 50%;
    color: var(--gris-700);
    cursor: pointer;
    transition: var(--transition);
}

.clear-search:hover {
    background: var(--rouge);
    color: var(--blanc);
}

.news-search-form .btn-primary {
    padding: 18px 30px;
    white-space: nowrap;
}

/* News Filters */
.news-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--blanc);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
    background: var(--jaune);
    color: var(--bleu-fonce);
}

.filter-btn i {
    font-size: 14px;
}

/* News Page Section */
.news-page-section {
    padding: 80px 0;
    background: var(--gris-50);
}

/* Results Info */
.news-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gris-200);
}

.news-results-info span {
    color: var(--gris-700);
    font-size: 15px;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blanc);
    border: 1px solid var(--gris-200);
    border-radius: var(--radius);
    color: var(--gris-500);
    cursor: pointer;
    transition: var(--transition);
}

.view-btn:hover,
.view-btn.active {
    background: var(--bleu-pro);
    border-color: var(--bleu-pro);
    color: var(--blanc);
}

/* News Grid */
.news-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-page-grid.list-view {
    grid-template-columns: 1fr;
}

.news-page-grid.list-view .news-article-card {
    display: grid;
    grid-template-columns: 300px 1fr;
}

.news-page-grid.list-view .article-image {
    height: 100%;
    min-height: 200px;
}

.news-page-grid.list-view .article-image img {
    height: 100%;
}

/* News Article Card */
.news-article-card {
    background: var(--blanc);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.article-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-category.evenement {
    background: var(--bleu-pro);
    color: var(--blanc);
}

.article-category.academique {
    background: var(--rouge);
    color: var(--blanc);
}

.article-category.succes {
    background: var(--jaune);
    color: var(--bleu-fonce);
}

.article-category.partenariat {
    background: #10b981;
    color: var(--blanc);
}

.article-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--blanc);
    padding: 10px 15px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.article-date .day {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--bleu-pro);
    line-height: 1;
}

.article-date .month {
    display: block;
    font-size: 12px;
    color: var(--gris-500);
    text-transform: uppercase;
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-content h3 a {
    color: var(--noir);
    transition: var(--transition);
}

.article-content h3 a:hover {
    color: var(--bleu-pro);
}

.article-content > p {
    color: var(--gris-700);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gris-200);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gris-500);
}

.article-meta i {
    font-size: 12px;
    color: var(--bleu-pro);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bleu-pro);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--bleu-clair);
    gap: 12px;
}

.read-more i {
    font-size: 12px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    background: var(--blanc);
    border-radius: var(--radius-xl);
}

.no-results i {
    font-size: 60px;
    color: var(--gris-300);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    color: var(--noir);
    margin-bottom: 10px;
}

.no-results p {
    color: var(--gris-500);
    margin-bottom: 25px;
}

/* Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blanc);
    border: 2px solid var(--gris-200);
    border-radius: var(--radius);
    color: var(--gris-700);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--bleu-pro);
    color: var(--bleu-pro);
}

.pagination-btn.active {
    background: var(--bleu-pro);
    border-color: var(--bleu-pro);
    color: var(--blanc);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* News Newsletter CTA */
.news-newsletter {
    padding: 80px 0;
    background: var(--blanc);
}

.newsletter-cta {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, var(--bleu-pro), var(--bleu-fonce));
    padding: 50px;
    border-radius: var(--radius-xl);
    color: var(--blanc);
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.newsletter-icon i {
    font-size: 32px;
    color: var(--jaune);
}

.newsletter-cta .newsletter-text {
    flex: 1;
}

.newsletter-cta .newsletter-text h3 {
    font-size: 24px;
    color: var(--blanc);
    margin-bottom: 8px;
}

.newsletter-cta .newsletter-text p {
    opacity: 0.9;
    font-size: 15px;
}

.newsletter-cta-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.newsletter-cta-form input {
    width: 280px;
    padding: 15px 20px;
    border-radius: var(--radius);
    font-size: 15px;
    background: var(--blanc);
    color: var(--noir);
}

.newsletter-cta-form .btn-primary {
    background: var(--jaune);
    color: var(--bleu-fonce);
}

.newsletter-cta-form .btn-primary:hover {
    background: var(--jaune-clair);
}

/* ========================================
   PAGE ACTUALITÉS - RESPONSIVE
   ======================================== */
@media (max-width: 1199px) {
    .news-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .news-hero-content h1 {
        font-size: 36px;
    }
    
    .newsletter-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-cta-form {
        width: 100%;
        max-width: 400px;
        flex-direction: column;
    }
    
    .newsletter-cta-form input {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .news-hero {
        padding: 120px 0 50px;
    }
    
    .news-hero-content h1 {
        font-size: 28px;
    }
    
    .news-hero-content > p {
        font-size: 16px;
    }
    
    .news-search-form {
        flex-direction: column;
    }
    
    .news-search-form .btn-primary {
        width: 100%;
    }
    
    .news-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .filter-btn span {
        display: none;
    }
    
    .news-page-section {
        padding: 50px 0;
    }
    
    .news-results-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .news-page-grid {
        grid-template-columns: 1fr;
    }
    
    .news-page-grid.list-view .news-article-card {
        grid-template-columns: 1fr;
    }
    
    .article-content h3 {
        font-size: 18px;
    }
    
    .newsletter-cta {
        padding: 30px 20px;
    }
    
    .newsletter-icon {
        width: 60px;
        height: 60px;
    }
    
    .newsletter-icon i {
        font-size: 24px;
    }
    
    .newsletter-cta .newsletter-text h3 {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .news-hero-content h1 {
        font-size: 24px;
    }
    
    .filter-btn {
        padding: 10px 12px;
    }
    
    .filter-btn i {
        margin: 0;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .pagination-btn {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   ADMISSION SECTION - ENHANCED STYLES
   ======================================== */

/* Section Header Centered */
.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header.centered .section-label {
    display: inline-block;
}

/* Admission Section Override */
.admission .section-title {
    color: var(--blanc);
}

.admission .section-description {
    color: rgba(255, 255, 255, 0.85);
}

.admission .section-label {
    background: rgba(255, 255, 255, 0.15);
    color: var(--jaune);
}

/* Timeline Steps */
.admission-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 55px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--jaune) 0%, rgba(255, 255, 255, 0.3) 100%);
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--jaune);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    transition: var(--transition);
}

.step-icon i {
    font-size: 24px;
    color: var(--bleu-fonce);
}

.step-icon .step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: var(--blanc);
    color: var(--bleu-pro);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.timeline-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 25px 20px;
    width: 100%;
    transition: var(--transition);
}

.timeline-step:hover .step-card {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.step-card h4 {
    color: var(--blanc);
    font-size: 17px;
    margin-bottom: 10px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
}

.step-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, 0.2);
    color: var(--jaune);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.step-duration i {
    font-size: 11px;
}

/* Info Cards Grid */
.admission-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.admission-info-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.admission-info-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.admission-info-card.highlight {
    background: linear-gradient(135deg, var(--jaune) 0%, var(--jaune-clair) 100%);
    border: none;
}

.admission-info-card.highlight .info-card-icon {
    background: var(--blanc);
    color: var(--jaune);
}

.admission-info-card.highlight h4,
.admission-info-card.highlight .help-text,
.admission-info-card.highlight .help-hours {
    color: var(--bleu-fonce);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(245, 158, 11, 0.2);
    color: var(--jaune);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-card-header h4 {
    color: var(--blanc);
    font-size: 18px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    margin: 0;
}

.info-card-body {
    flex: 1;
}

/* Info List Styles */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.info-value {
    color: var(--jaune);
    font-weight: 600;
    font-size: 14px;
}

.info-card-badge {
    margin-top: 15px;
    padding: 8px 15px;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Checklist Styles */
.info-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.info-checklist li i {
    color: var(--jaune);
    font-size: 11px;
    width: 16px;
}

.info-card-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card-footer small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Fee Styles */
.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fee-item.main {
    background: rgba(245, 158, 11, 0.15);
    margin: 0 -15px;
    padding: 12px 15px;
    border-radius: var(--radius);
    border-bottom: none;
}

.fee-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.fee-amount {
    color: var(--jaune);
    font-weight: 700;
    font-size: 15px;
}

.fee-item.main .fee-amount {
    font-size: 16px;
}

.fee-options {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fee-option {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
}

.fee-option i {
    color: #22c55e;
    font-size: 11px;
}

/* Help Card Styles */
.help-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.help-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.help-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    color: var(--bleu-fonce);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.help-contact:hover {
    background: var(--blanc);
}

.help-contact i {
    font-size: 14px;
}

.help-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
}

/* Admission CTA */
.admission-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.admission-cta .cta-content h3 {
    color: var(--blanc);
    font-size: 26px;
    margin-bottom: 8px;
}

.admission-cta .cta-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
}

.admission-cta .cta-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.admission-cta .btn-primary {
    background: var(--jaune);
    color: var(--bleu-fonce);
}

.admission-cta .btn-primary:hover {
    background: var(--jaune-clair);
    transform: translateY(-2px);
}

.admission-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--blanc);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.admission-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Responsive Admission Timeline */
@media (max-width: 1200px) {
    .admission-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .admission-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .admission-cta {
        flex-direction: column;
        text-align: center;
        padding: 35px;
    }
    
    .admission-cta .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .admission-cta .cta-buttons .btn-large {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .admission-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline-step {
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    
    .step-icon i {
        font-size: 20px;
    }
    
    .step-card {
        padding: 20px;
    }
    
    .admission-info-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header.centered {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .admission-cta {
        padding: 25px 20px;
    }
    
    .admission-cta .cta-content h3 {
        font-size: 22px;
    }
    
    .step-card h4 {
        font-size: 15px;
    }
    
    .step-card p {
        font-size: 13px;
    }
    
    .info-card-header h4 {
        font-size: 16px;
    }
}

/* ========================================
   NEWS SECTION - ENHANCED CARDS
   ======================================== */

/* News Card with Image */
.news .news-card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.news .news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.news .news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--gris-200);
}

.news .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news .news-card:hover .news-image img {
    transform: scale(1.08);
}

.news .news-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.news .news-category-badge.evenement {
    background: var(--bleu-pro);
    color: var(--blanc);
}

.news .news-category-badge.academique {
    background: var(--rouge);
    color: var(--blanc);
}

.news .news-category-badge.succes {
    background: var(--jaune);
    color: var(--bleu-fonce);
}

.news .news-category-badge.partenariat {
    background: #22c55e;
    color: var(--blanc);
}

.news .news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--blanc);
    padding: 10px 12px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    z-index: 2;
}

.news .news-date .day {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--bleu-pro);
    line-height: 1;
}

.news .news-date .month {
    display: block;
    font-size: 12px;
    color: var(--gris-500);
    text-transform: uppercase;
    font-weight: 500;
}

.news .news-content {
    padding: 25px;
}

.news .news-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--noir);
    line-height: 1.4;
    transition: var(--transition);
}

.news .news-card:hover .news-content h3 {
    color: var(--bleu-pro);
}

.news .news-content p {
    color: var(--gris-500);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.news .news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gris-200);
}

.news .news-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gris-500);
}

.news .news-meta span i {
    color: var(--bleu-clair);
    font-size: 12px;
}

.news .news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bleu-pro);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.news .news-read-more i {
    transition: transform 0.3s ease;
}

.news .news-card:hover .news-read-more {
    color: var(--bleu-clair);
}

.news .news-card:hover .news-read-more i {
    transform: translateX(5px);
}

/* View All Button */
.news-view-all {
    text-align: center;
    margin-top: 50px;
}

.news-view-all .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ========================================
   ARTICLE BREADCRUMB & BACK BUTTON
   ======================================== */

.article-breadcrumb {
    background: var(--gris-50);
    padding: 20px 0;
    border-bottom: 1px solid var(--gris-200);
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--blanc);
    color: var(--bleu-pro);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.back-btn:hover {
    background: var(--bleu-pro);
    color: var(--blanc);
    transform: translateX(-5px);
}

.back-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.back-btn:hover i {
    transform: translateX(-3px);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: var(--gris-500);
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--bleu-pro);
}

.breadcrumb-nav i {
    color: var(--gris-300);
    font-size: 10px;
}

.breadcrumb-nav span {
    color: var(--bleu-pro);
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumb-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .breadcrumb-nav {
        display: none;
    }
    
    .back-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .news .news-image {
        height: 180px;
    }
    
    .news .news-content {
        padding: 20px;
    }
    
    .news .news-content h3 {
        font-size: 18px;
    }
}

/* ========================================
   SECTION DIRIGEANTS (LEADERSHIP)
======================================== */
.leadership {
    padding: 100px 0;
    background: var(--gris-100);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.leader-card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.leader-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(30, 58, 138, 0.9));
    transition: bottom 0.3s ease;
}

.leader-card:hover .leader-social {
    bottom: 0;
}

.leader-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blanc);
    color: var(--bleu-pro);
    border-radius: 50%;
    transition: var(--transition);
}

.leader-social a:hover {
    background: var(--bleu-clair);
    color: var(--blanc);
    transform: translateY(-3px);
}

.leader-info {
    padding: 25px;
    text-align: center;
}

.leader-info h3 {
    font-size: 20px;
    color: var(--bleu-pro);
    margin-bottom: 5px;
}

.leader-role {
    display: block;
    font-size: 14px;
    color: var(--bleu-clair);
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-info p {
    font-size: 14px;
    color: var(--gris-500);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .leader-image {
        height: 300px;
    }
}

/* ========================================
   SECTION PARTENAIRES
======================================== */
.partners {
    padding: 100px 0;
    background: var(--blanc);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.partner-card {
    position: relative;
    background: var(--gris-100);
    border-radius: var(--radius);
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.partner-card:hover {
    border-color: var(--bleu-clair);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, var(--bleu-pro));
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-overlay {
    transform: translateY(0);
}

.partner-overlay h4 {
    color: var(--blanc);
    font-size: 14px;
    margin-bottom: 3px;
}

.partner-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.partners-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: var(--gris-100);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.partners-cta p {
    font-size: 18px;
    color: var(--gris-600);
}

@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-cta {
        padding: 25px;
    }
    
    .partners-cta p {
        font-size: 16px;
    }
}

/* ========================================
   ARTICLE DETAIL PAGE
   ======================================== */

/* Article Hero */
.article-hero {
    position: relative;
    padding: 140px 0 80px;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.article-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.article-hero-content {
    color: var(--blanc);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--blanc);
}

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

.breadcrumb-nav .current {
    color: var(--jaune);
}

.article-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--jaune);
    color: var(--noir);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.article-category-badge.evenement { background: var(--bleu-clair); color: var(--blanc); }
.article-category-badge.academique { background: var(--jaune); color: var(--noir); }
.article-category-badge.succes { background: #10b981; color: var(--blanc); }
.article-category-badge.partenariat { background: #8b5cf6; color: var(--blanc); }

.article-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--blanc);
}

.article-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.article-hero-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.article-hero-meta .meta-item i {
    color: var(--jaune);
}

/* Article Content Section */
.article-content-section {
    padding: 80px 0;
    background: var(--gris-50);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

/* Main Article */
.article-main {
    background: var(--blanc);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.article-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    padding: 40px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--gris-700);
}

.article-body p {
    margin-bottom: 20px;
}

/* Article Tags */
.article-tags {
    padding: 0 40px 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-label {
    font-weight: 600;
    color: var(--gris-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag {
    background: var(--gris-100);
    color: var(--gris-700);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
}

.tag:hover {
    background: var(--bleu-pro);
    color: var(--blanc);
}

/* Share Section */
.article-share-section {
    padding: 30px 40px;
    border-top: 1px solid var(--gris-200);
    border-bottom: 1px solid var(--gris-200);
}

.article-share-section h4 {
    font-size: 16px;
    color: var(--gris-700);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--blanc);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.copy { background: var(--gris-700); }

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Author Box */
.author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px;
    background: var(--gris-50);
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bleu-pro);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 40px;
    color: var(--blanc);
}

.author-info .author-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gris-500);
}

.author-info h4 {
    font-size: 18px;
    color: var(--bleu-pro);
    margin: 5px 0;
}

.author-info p {
    font-size: 14px;
    color: var(--gris-500);
}

/* Article Navigation */
.article-navigation {
    padding: 30px 40px;
    display: flex;
    justify-content: flex-start;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--bleu-pro);
    color: var(--blanc);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--bleu-fonce);
    transform: translateX(-5px);
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    font-size: 18px;
    color: var(--bleu-pro);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gris-100);
}

.sidebar-widget h3 i {
    color: var(--jaune);
}

/* Newsletter Widget */
.newsletter-widget p {
    font-size: 14px;
    color: var(--gris-500);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--gris-300);
    border-radius: var(--radius);
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--bleu-pro);
}

.newsletter-form button {
    padding: 12px 15px;
    border-radius: var(--radius);
}

/* Categories Widget */
.category-list {
    list-style: none;
}

.category-list li {
    border-bottom: 1px solid var(--gris-100);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--gris-700);
    text-decoration: none;
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--bleu-pro);
    padding-left: 10px;
}

.category-list a i {
    width: 20px;
    color: var(--bleu-clair);
}

/* Contact Widget */
.contact-widget p {
    font-size: 14px;
    color: var(--gris-500);
    margin-bottom: 15px;
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Not Found State */
.article-not-found {
    text-align: center;
    padding: 80px 20px;
    background: var(--blanc);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.not-found-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: var(--gris-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.not-found-icon i {
    font-size: 50px;
    color: var(--gris-400);
}

.article-not-found h2 {
    font-size: 28px;
    color: var(--bleu-pro);
    margin-bottom: 15px;
}

.article-not-found p {
    font-size: 16px;
    color: var(--gris-500);
    margin-bottom: 30px;
}

.not-found-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Article CTA */
.article-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bleu-pro) 0%, var(--bleu-fonce) 100%);
}

.article-cta .cta-content {
    text-align: center;
    color: var(--blanc);
}

.article-cta .cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--blanc);
}

.article-cta .cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    color: var(--blanc);
}

.article-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .article-hero {
        padding: 120px 0 60px;
    }
    
    .article-hero h1 {
        font-size: 32px;
    }
    
    .article-hero-meta {
        gap: 15px;
    }
    
    .article-featured-image {
        height: 250px;
    }
    
    .article-body {
        padding: 25px;
        font-size: 16px;
    }
    
    .article-tags,
    .article-share-section,
    .author-box,
    .article-navigation {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .article-sidebar {
        grid-template-columns: 1fr;
    }
    
    .share-btn span {
        display: none;
    }
    
    .share-btn {
        padding: 12px;
    }
}

@media (max-width: 575px) {
    .article-hero h1 {
        font-size: 26px;
    }
    
    .breadcrumb-nav {
        font-size: 12px;
        gap: 6px;
    }
    
    .article-hero-meta .meta-item {
        font-size: 12px;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .article-cta h2 {
        font-size: 26px;
    }
}

/* ========================================
   PAGES LÉGALES - DESIGN PROFESSIONNEL
   ======================================== */

.legal-page {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, var(--gris-50) 0%, var(--blanc) 100%);
    min-height: 60vh;
}

.legal-page .legal-content {
    background: var(--blanc);
    padding: 50px 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.legal-page .legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--bleu-pro), var(--bleu-clair), var(--jaune));
}

.legal-page .legal-intro {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--gris-700);
    margin-bottom: 45px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(37, 99, 235, 0.03));
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--bleu-pro);
}

.legal-page .legal-intro i {
    color: var(--bleu-pro);
    font-size: 24px;
    margin-top: 3px;
    flex-shrink: 0;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gris-200);
}

.legal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.legal-section h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 22px;
    color: var(--bleu-pro);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.legal-section h2 .section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--bleu-pro), var(--bleu-clair));
    color: var(--blanc);
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.legal-section p {
    color: var(--gris-700);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

.legal-list {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 15px;
    background: var(--gris-50);
    border-radius: var(--radius);
    color: var(--gris-700);
    line-height: 1.6;
    transition: var(--transition);
}

.legal-list li:hover {
    background: rgba(30, 58, 138, 0.05);
    transform: translateX(5px);
}

.legal-list li i {
    color: var(--bleu-pro);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Grille des données */
.legal-data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.legal-data-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--gris-50);
    border-radius: var(--radius);
    border: 1px solid var(--gris-200);
    transition: var(--transition);
}

.legal-data-item:hover {
    border-color: var(--bleu-pro);
    box-shadow: var(--shadow);
}

.legal-data-item i {
    color: var(--bleu-pro);
    font-size: 18px;
}

.legal-data-item span {
    font-size: 14px;
    color: var(--gris-700);
}

/* Boîte highlight */
.legal-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.legal-highlight-box > i {
    color: var(--jaune);
    font-size: 32px;
    flex-shrink: 0;
}

.legal-highlight-box p {
    margin: 0;
    font-size: 15px;
}

/* Grille des droits */
.legal-rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.legal-right-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: var(--blanc);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gris-200);
    text-align: center;
    transition: var(--transition);
}

.legal-right-item:hover {
    border-color: var(--bleu-pro);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.legal-right-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bleu-pro), var(--bleu-clair));
    border-radius: 50%;
    color: var(--blanc);
    font-size: 18px;
}

.legal-right-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gris-700);
}

/* Types de cookies */
.legal-cookie-types {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.cookie-type {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px 20px;
    background: var(--gris-50);
    border-radius: var(--radius);
    border-left: 3px solid var(--bleu-pro);
}

.cookie-type strong {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--noir);
    font-size: 14px;
}

.cookie-type strong i {
    color: var(--bleu-pro);
}

.cookie-type span {
    font-size: 13px;
    color: var(--gris-500);
    padding-left: 24px;
}

/* Boîte contact */
.legal-contact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.legal-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--bleu-pro), var(--bleu-clair));
    color: var(--blanc);
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: var(--transition);
}

.legal-contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.legal-contact-item i {
    font-size: 16px;
}

/* Footer légal */
.legal-page .legal-footer {
    margin-top: 40px;
    padding: 20px 25px;
    background: var(--gris-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--jaune);
}

.legal-page .legal-footer p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 14px;
    color: var(--gris-600);
}

.legal-page .legal-footer i {
    color: var(--jaune);
    font-size: 18px;
}

/* ========================================
   RESPONSIVE - PAGES LÉGALES
   ======================================== */

@media (max-width: 991px) {
    .legal-page .legal-content {
        padding: 40px 35px;
        margin: 0 15px;
    }
    
    .legal-data-grid,
    .legal-rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .legal-section h2 .section-number {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .legal-page {
        padding: 40px 0 70px;
    }
    
    .legal-page .legal-content {
        padding: 30px 20px;
        margin: 0 10px;
        border-radius: var(--radius-lg);
    }
    
    .legal-page .legal-intro {
        flex-direction: column;
        padding: 20px;
        font-size: 15px;
    }
    
    .legal-page .legal-intro i {
        font-size: 28px;
    }
    
    .legal-section h2 {
        font-size: 18px;
        gap: 12px;
    }
    
    .legal-section h2 .section-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .legal-section p {
        font-size: 14px;
    }
    
    .legal-list li {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .legal-data-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .legal-data-item {
        padding: 12px;
    }
    
    .legal-rights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .legal-right-item {
        padding: 15px 10px;
    }
    
    .legal-right-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .legal-right-item span {
        font-size: 12px;
    }
    
    .legal-highlight-box {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    .legal-highlight-box > i {
        font-size: 40px;
    }
    
    .legal-contact-box {
        flex-direction: column;
    }
    
    .legal-contact-item {
        justify-content: center;
        padding: 12px 20px;
    }
    
    .cookie-type {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .legal-page .legal-content {
        padding: 25px 15px;
    }
    
    .legal-rights-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .legal-right-item {
        padding: 12px 8px;
    }
    
    .legal-right-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .legal-right-item span {
        font-size: 11px;
    }
    
    .legal-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
}
