/* ===== VARIABLES CSS MODERNES - PALETTE DE VERTS ÉTENDUE ===== */
:root {
    /* Palette principale de verts */
    --green-50: #f0f9f0;
    --green-100: #daf5dc;
    --green-200: #b8e9bd;
    --green-300: #8cd89a;
    --green-400: #5cb85c; /* Vert standard */
    --green-500: #44a047; /* Vert principal raffiné */
    --green-600: #2e8b3a; /* Vert forêt */
    --green-700: #1e7e34; /* Vert émeraude */
    --green-800: #17682b; /* Vert sapin */
    --green-900: #0d4d1f; /* Vert profond */
    
    /* Verts spéciaux */
    --mint-green: #98ff98;
    --spring-green: #00ff7f;
    --lime-green: #32cd32;
    --sea-green: #2e8b57;
    --olive-green: #6b8e23;
    --forest-green: #228b22;
    --hunter-green: #355e3b;
    --jade-green: #00a86b;
    --emerald-green: #50c878;
    --sage-green: #9dc183;
    
    /* Application de la palette */
    --primary-color: var(--green-600); /* Vert forêt comme couleur principale */
    --primary-light: var(--green-400); /* Vert standard */
    --primary-dark: var(--green-800); /* Vert sapin */
    --secondary-color: var(--emerald-green); /* Vert émeraude */
    --secondary-light: var(--sage-green); /* Vert sauge */
    --accent-color: var(--jade-green); /* Vert jade */
    --accent-light: var(--mint-green); /* Vert menthe */
    --light-color: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-color: #212529;
    --success-color: var(--green-500); /* Vert principal */
    --warning-color: #ffc107;
    --info-color: var(--sea-green); /* Vert mer */
    
    /* Dégradés enrichis */
    --gradient-primary: linear-gradient(135deg, var(--green-400) 0%, var(--green-700) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--emerald-green) 0%, var(--jade-green) 100%);
    --gradient-accent: linear-gradient(135deg, var(--lime-green) 0%, var(--forest-green) 100%);
    --gradient-light: linear-gradient(135deg, var(--green-100) 0%, var(--green-300) 100%);
    --gradient-dark: linear-gradient(135deg, var(--green-700) 0%, var(--hunter-green) 100%);
    
    /* Variables restantes */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 6px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 12px 35px rgba(0,0,0,0.15);
    --border-radius-sm: 6px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== LAYOUT COMPONENTS ===== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.section-light {
    background-color: var(--light-color);
}

.section-white {
    background-color: white;
}

.section-gradient {
    background: var(--gradient-primary);
    color: white;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 700;
    color: var(--green-600);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 60px;
    font-size: 20px;
    color: var(--medium-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    font-size: 16px;
    border: none;
    position: relative;
    overflow: hidden;
    gap: 8px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: white;
    color: var(--green-600);
    border: 2px solid var(--green-600);
}

.btn-secondary:hover {
    background: var(--green-600);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--green-600);
}

/* ===== HEADER & NAVIGATION ===== */
.top-bar {
    background-color: var(--dark-color);
    padding: 10px 0;
    font-size: 14px;
    color: white;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-type {
    display: flex;
    gap: 20px;
    align-items: center;
}

.user-type span {
    font-weight: 600;
    color: var(--light-gray);
}

.user-type a {
    color: var(--light-gray);
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.user-type a.active,
.user-type a:hover {
    background-color: var(--green-600);
    color: white;
}

.top-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.language-selector {
    display: flex;
    gap: 12px;
    align-items: center;
}

.language-selector span {
    color: var(--light-gray);
    font-weight: 500;
}

.language-selector a {
    font-weight: 600;
    color: var(--light-gray);
}

.language-selector a.active {
    color: var(--green-400);
}

.main-header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    height: 70px;
    width: auto;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 600;
    position: relative;
    color: var(--dark-color);
    font-size: 16px;
    padding: 8px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green-600);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 15px;
}

/* ===== DROPDOWN MENU ===== */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 900px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    z-index: 1001;
    padding: 30px;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
}

.dropdown-categories {
    border-right: 1px solid var(--light-gray);
    padding-right: 30px;
}

.dropdown-categories h3 {
    color: var(--green-600);
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.dropdown-categories h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
}

.dropdown-categories ul li {
    margin-bottom: 12px;
}

.dropdown-categories a {
    color: var(--dark-color);
    transition: var(--transition);
    display: block;
    padding: 10px 0;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.dropdown-categories a:hover,
.dropdown-categories a.active {
    color: var(--green-600);
    border-left-color: var(--green-600);
    padding-left: 20px;
}

.dropdown-details {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.dropdown-details h3 {
    color: var(--green-600);
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.dropdown-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
}

.formation-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.formation-item {
    padding: 20px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.formation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.formation-item:hover {
    border-color: var(--green-600);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.formation-item:hover::before {
    width: 6px;
}

.formation-item h4 {
    color: var(--green-600);
    margin-bottom: 8px;
    font-size: 18px;
}

.formation-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.formation-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-open {
    background-color: rgba(46, 139, 58, 0.1);
    color: var(--green-600);
}

.status-coming {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--warning-color);
}

/* ===== HERO SECTION MODIFIÉE ===== */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px 0;
    background: var(--gradient-dark);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background-image: linear-gradient(rgba(46, 139, 58, 0.7), rgba(30, 126, 52, 0.8)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80');
}

.slide:nth-child(2) {
    background-image: linear-gradient(rgba(46, 139, 58, 0.7), rgba(30, 126, 52, 0.8)), url('https://images.unsplash.com/photo-1541336032412-2048a678540d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');
}

.slide:nth-child(3) {
    background-image: linear-gradient(rgba(46, 139, 58, 0.7), rgba(30, 126, 52, 0.8)), url('https://images.unsplash.com/photo-1574362848149-11496d93a7c7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1984&q=80');
}

.slide:nth-child(4) {
    background-image: linear-gradient(rgba(46, 139, 58, 0.7), rgba(30, 126, 52, 0.8)), url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: white !important;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    line-height: 1.5;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--green-600);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(46, 139, 58, 0.8);
}

/* ===== PROGRAMMES SECTION ===== */
.programs-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><polygon fill="var(--green-600)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.program-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.program-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.program-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.program-card:hover .program-image::after {
    opacity: 1;
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 139, 58, 0.9) 0%, rgba(30, 126, 52, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.program-card:hover .program-overlay {
    opacity: 1;
}

.program-content {
    padding: 30px;
}

.program-content h3 {
    color: var(--green-600);
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.program-content p {
    color: var(--medium-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ===== STATS SECTION - VERSION SIMPLE ET VISIBLE ===== */
.stats-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: white;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 15px;
    display: block;
    color: var(--green-600);
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.4;
}

/* ===== STUDENT SECTION ===== */
.student-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    position: relative;
}

.student-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><polygon fill="var(--green-600)" points="0,0 1000,1000 0,1000"/></svg>');
    background-size: cover;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border-top: 5px solid var(--green-600);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card:hover::before {
    transform: scaleX(1);
}

.card h3 {
    color: var(--green-600);
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card ul {
    margin-left: 0;
}

.card li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-600);
    font-weight: bold;
    background: rgba(46, 139, 58, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><circle fill="var(--green-600)" cx="500" cy="500" r="400"/></svg>');
    background-size: cover;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin: 15px;
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: """;
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--green-600);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--green-600);
    font-weight: 700;
}

.author-info p {
    color: var(--medium-gray);
    font-size: 15px;
}

/* ===== ACCREDITATIONS ===== */
.accreditations {
    padding: 80px 0;
    text-align: center;
    background-color: white;
    position: relative;
}

.accreditations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.02"><rect fill="var(--green-600)" x="200" y="200" width="600" height="600" rx="50"/></svg>');
    background-size: cover;
}

.accreditations-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.accreditation-logo {
    height: 70px;
    width: auto;
    background: white;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 600;
    color: var(--dark-color);
    min-width: 180px;
    border: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.accreditation-logo:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--green-600);
    color: var(--green-600);
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    padding: 80px 0;
    background-color: white;
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.02"><polygon fill="var(--green-600)" points="500,100 900,500 500,900 100,500"/></svg>');
    background-size: cover;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 20px;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-600);
    background: white;
}

/* ===== NEWS SECTION ===== */
.news-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    position: relative;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.02"><path fill="var(--green-600)" d="M100,500 Q250,300 500,500 T900,500 L900,1000 L100,1000 Z"/></svg>');
    background-size: cover;
}

.news-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.news-highlight {
    margin-bottom: 40px;
}

.news-highlight h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--green-600);
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.news-highlight h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.news-card {
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    background-color: white;
    position: relative;
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    border-color: var(--green-600);
}

.news-date {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    font-weight: 600;
    display: inline-block;
    font-size: 16px;
}

.news-content {
    padding: 25px;
}

.news-content h4 {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--green-600);
}

.news-location {
    color: var(--medium-gray);
    margin-bottom: 20px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sidebar h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--green-600);
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.sidebar h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
}

.sidebar-news {
    margin-bottom: 40px;
}

.sidebar-news-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
}

.sidebar-news-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: var(--transition);
}

.sidebar-news-item:hover {
    background-color: #f9f9f9;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
    border-radius: var(--border-radius-sm);
}

.sidebar-news-item:hover::before {
    transform: scaleY(1);
}

.sidebar-news-item:last-child {
    border-bottom: none;
}

.sidebar-news-date {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 8px;
    font-weight: 500;
}

.sidebar-news-title {
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 16px;
    color: var(--green-600);
}

.sidebar-news-location {
    font-size: 14px;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--green-400);
    border-radius: 50%;
    opacity: 0.1;
}

.about-stats {
    padding: 30px 0;
}

.stat-box {
    padding: 40px 25px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.stat-box:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--green-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.stat-box:hover .stat-icon {
    transform: scale(1.1);
    background: var(--gradient-primary);
}

.stat-icon i {
    font-size: 36px;
    color: var(--green-600);
    transition: var(--transition);
}

.stat-box:hover .stat-icon i {
    color: white;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--green-600);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    color: var(--medium-gray);
    font-weight: 500;
    font-size: 18px;
}

/* ===== FOOTER AMÉLIORÉ ===== */
.footer-links {
    background: linear-gradient(135deg, #1a2b4c 0%, #2d3e5f 100%);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><polygon fill="%23ffffff" points="0,0 1000,1000 0,1000"/></svg>');
    background-size: cover;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-column ul li {
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-column ul li:hover {
    transform: translateX(5px);
}

.footer-column a {
    color: #b0b7c3;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column a:hover {
    color: var(--green-600);
    padding-left: 5px;
}

.footer-column p {
    color: #b0b7c3;
    line-height: 1.6;
    margin-top: 20px;
    font-size: 14px;
}

.footer-column:last-child {
    grid-column: span 1;
}

.footer-column:last-child ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.accreditations-footer {
    text-align: center;
    margin: 40px 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.accreditations-footer h3 {
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
    font-size: 24px;
}

.accreditations-footer-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.accreditation-footer-logo {
    height: 60px;
    width: auto;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    min-width: 180px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.accreditation-footer-logo:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-color: var(--green-600);
    color: var(--green-600);
}

.footer-bottom {
    background-color: #151a28;
    color: #b0b7c3;
    padding: 30px 0;
    font-size: 14px;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-600), transparent);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom a {
    color: #b0b7c3;
    transition: var(--transition);
    position: relative;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green-600);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: white;
}

.footer-bottom a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background-color: var(--green-600);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(46, 139, 58, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes greenPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 139, 58, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 139, 58, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 139, 58, 0);
    }
}

.pulse-green {
    animation: greenPulse 2s infinite;
}

/* ===== NOUVELLES CLASSES UTILITAIRES POUR LES DIFFÉRENTS VERTS ===== */

/* Classes pour les backgrounds */
.bg-green-50 { background-color: var(--green-50); }
.bg-green-100 { background-color: var(--green-100); }
.bg-green-200 { background-color: var(--green-200); }
.bg-green-300 { background-color: var(--green-300); }
.bg-green-400 { background-color: var(--green-400); }
.bg-green-500 { background-color: var(--green-500); }
.bg-green-600 { background-color: var(--green-600); }
.bg-green-700 { background-color: var(--green-700); }
.bg-green-800 { background-color: var(--green-800); }
.bg-green-900 { background-color: var(--green-900); }

/* Classes pour le texte */
.text-green-50 { color: var(--green-50); }
.text-green-100 { color: var(--green-100); }
.text-green-200 { color: var(--green-200); }
.text-green-300 { color: var(--green-300); }
.text-green-400 { color: var(--green-400); }
.text-green-500 { color: var(--green-500); }
.text-green-600 { color: var(--green-600); }
.text-green-700 { color: var(--green-700); }
.text-green-800 { color: var(--green-800); }
.text-green-900 { color: var(--green-900); }

/* Classes pour les bordures */
.border-green-50 { border-color: var(--green-50); }
.border-green-100 { border-color: var(--green-100); }
.border-green-200 { border-color: var(--green-200); }
.border-green-300 { border-color: var(--green-300); }
.border-green-400 { border-color: var(--green-400); }
.border-green-500 { border-color: var(--green-500); }
.border-green-600 { border-color: var(--green-600); }
.border-green-700 { border-color: var(--green-700); }
.border-green-800 { border-color: var(--green-800); }
.border-green-900 { border-color: var(--green-900); }

/* Classes pour les gradients */
.gradient-green-light { background: var(--gradient-light); }
.gradient-green-primary { background: var(--gradient-primary); }
.gradient-green-dark { background: var(--gradient-dark); }
.gradient-green-accent { background: var(--gradient-accent); }

/* ===== EFFETS DE SURVOL AMÉLIORÉS ===== */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(46, 139, 58, 0.3) !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .dropdown-content {
        min-width: 800px;
    }
    
    .section-title {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .news-container {
        grid-template-columns: 1fr;
    }
    
    .main-nav ul {
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content p {
        font-size: 20px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .dropdown-content {
        min-width: 650px;
        grid-template-columns: 1fr;
    }
    
    .dropdown-categories {
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
        padding-right: 0;
        padding-bottom: 25px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 80px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dropdown-content {
        min-width: 320px;
        left: -100px;
    }
    
    .accreditations-logos {
        gap: 20px;
    }
    
    .accreditation-logo {
        min-width: 150px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .accreditations-footer-logos {
        gap: 15px;
    }
    
    .accreditation-footer-logo {
        min-width: 160px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .accreditations-logos, .accreditations-footer-logos {
        gap: 15px;
    }
    
    .accreditation-logo, .accreditation-footer-logo {
        min-width: 140px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dropdown-content {
        min-width: 280px;
        left: -120px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .accreditation-footer-logo {
        min-width: 140px;
        height: 50px;
        font-size: 14px;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--green-600);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-800);
}

/* ===== DROPDOWN MENU - CLICK VERSION ===== */
.dropdown.active .dropdown-content {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

/* ===== OVERRIDES GÉNÉRAUX POUR TOUT METTRE EN VERT ===== */


h1, h2, h3, h4, h5, h6 {
    color: var(--green-600) !important;
}

a:not(.btn):hover {
    color: var(--green-600) !important;
}

/* Toutes les icônes Font Awesome */
i.fas, i.far, i.fab, i.fa {
    color: var(--green-600) !important;
}

/* Toutes les bordures colorées */
.border-primary {
    border-color: var(--green-600) !important;
}

/* Tous les backgrounds colorés */
.bg-primary {
    background-color: var(--green-600) !important;
}

/* Tous les textes colorés */
.text-primary {
    color: var(--green-600) !important;
}

/* Tous les gradients */
.gradient-bg {
    background: var(--gradient-primary) !important;
}

/* Toutes les ombres colorées */
.shadow-primary {
    box-shadow: 0 4px 15px rgba(46, 139, 58, 0.2) !important;
}

/* Tous les hover states pour les éléments interactifs */
.hover-green:hover {
    color: var(--green-600) !important;
    border-color: var(--green-600) !important;
}

/* Tous les focus states */
.form-control:focus {
    border-color: var(--green-600) !important;
    box-shadow: 0 0 0 0.25rem rgba(46, 139, 58, 0.25) !important;
}

/* Toutes les cases à cocher cochées */
.form-check-input:checked {
    background-color: var(--green-600) !important;
    border-color: var(--green-600) !important;
}

/* Tous les éléments de liste avec des puces colorées */
ul li::before {
    color: var(--green-600) !important;
}

/* Toutes les barres de progression */
.progress-bar {
    background-color: var(--green-600) !important;
}

/* Tous les badges et labels */
.badge.bg-primary {
    background-color: var(--green-600) !important;
}

/* Toutes les alertes */
.alert-primary {
    background-color: rgba(46, 139, 58, 0.1) !important;
    border-color: rgba(46, 139, 58, 0.3) !important;
    color: var(--green-600) !important;
}

/* Tous les tableaux avec en-têtes colorés */
table thead th.bg-primary {
    background-color: var(--green-600) !important;
}

/* Tous les tooltips et popovers */
.tooltip-inner {
    background-color: var(--green-600) !important;
}

.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--green-600) !important;
}

/* Tous les carrousels avec indicateurs actifs */
.carousel-indicators .active {
    background-color: var(--green-600) !important;
}

/* Tous les paginations actives */
.page-item.active .page-link {
    background-color: var(--green-600) !important;
    border-color: var(--green-600) !important;
}

/* Tous les accordéons actifs */
.accordion-button:not(.collapsed) {
    color: var(--green-600) !important;
    background-color: rgba(46, 139, 58, 0.1) !important;
}

/* Tous les modales avec en-têtes colorés */
.modal-header.bg-primary {
    background-color: var(--green-600) !important;
}

/* Tous les spinners et loaders */
.spinner-border.text-primary {
    color: var(--green-600) !important;
}

/* Toutes les cartes avec en-têtes colorés */
.card-header.bg-primary {
    background-color: var(--green-600) !important;
}

/* Tous les breadcrumbs actifs */
.breadcrumb-item.active {
    color: var(--green-600) !important;
}

/* Tous les navs et tabs actifs */
.nav-link.active {
    color: var(--green-600) !important;
}

.nav-pills .nav-link.active {
    background-color: var(--green-600) !important;
}

/* Tous les list groups actifs */
.list-group-item.active {
    background-color: var(--green-600) !important;
    border-color: var(--green-600) !important;
}

/* Tous les toasts avec en-têtes colorés */
.toast-header.bg-primary {
    background-color: var(--green-600) !important;
}

/* Tous les badges de notification */
.badge-notification {
    background-color: var(--green-600) !important;
}