:root {
    --primary-blue: #1F1955;
    --primary-green: #2EB872;
    --black: #000000;
    --white: #FFFFFF;
     --border-light: #e9ecef;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --text-dark: #212529;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
    
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) var(--light-gray);
}


/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-green) 0%, #259a5f 100%);
    border-radius: 10px;
    border: 2px solid var(--light-gray);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #259a5f 0%, var(--primary-green) 100%);
}

::-webkit-scrollbar-thumb:active {
    background: var(--primary-blue);
}
    
    /* Global Utilities */
    .text-primary { color: var(--primary-blue) !important; }
    .text-success { color: var(--primary-green) !important; }
    .bg-primary { background-color: var(--primary-blue) !important; }
    .bg-success { background-color: var(--primary-green) !important; }
    .bg-light { background-color: var(--light-gray) !important; }
    
    /* Loading Spinner */
    .spinner {
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--primary-green);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    }
    
    @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
    }
    
    /* Alert Messages */
    .alert {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    position: relative;
    }
    
    .alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    }
    
    .alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    }
    
    .alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeaa7;
    }
    
    .alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
    }
    
    .alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 1.25rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    }
    
    /* Form Styles */
    .form-group {
    margin-bottom: 1.5rem;
    }
    
    .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    }
    
    .form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--white);
    background-image: none;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }
    
    .form-control:focus {
    border-color: var(--primary-green);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(46, 184, 114, 0.25);
    }
    
    .form-control.is-invalid {
    border-color: var(--danger);
    }
    
    .invalid-feedback {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--danger);
    }
    
    /* Button Styles */
    .btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    }

    .btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

    
    .btn-primary {
    color: var(--white);
    background-color: var(--primary-blue);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-color: 2px solid var(--primary-blue);
    }
    
    .btn-primary:hover {
    background-color: #171442;
    border-color: #171442;
    transform: translateY(-1px);
    }
    
    .btn-success {
    color: var(--white);
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    }
    
    .btn-success:hover {
    background-color: #259a5f;
    border-color: #259a5f;
    transform: translateY(-1px);
    }

    /* Loader */
/* Loader Simplifié */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a2180 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Animation du logo principal */
.loader-logo {
    width: 200px;
    height: 200px;
    animation: logoFloat 2s ease-in-out infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Rend le logo blanc */
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-footer img {
    width: 100%;
    height: 100%;
    height: 70px;
    width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Rend le logo blanc */
}

/* Points décoratifs */
.loader-dots {
    display: flex;
    gap: 12px;
}

.loader-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.loader-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* Animations */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes dotBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    40% {
        transform: translateY(-12px);
        opacity: 1;
    }
    60% {
        transform: translateY(-6px);
        opacity: 0.8;
    }
}

/* Effet de fadeout */
.page-loader.fade-out {
    opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .loader-logo {
        width: 200px;
        height: 200px;
    }
    
    .loader-dots {
        gap: 10px;
    }
    
    .loader-dot {
        width: 8px;
        height: 8px;
    }
}

.logo-footer {
    color: var(--primary-blue);
    text-decoration: none;
    transition: transform 0.3s ease;
    
}

.logo-footer:hover {
    transform: scale(1.05);
    color: var(--primary-blue);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(31, 25, 85, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 30px rgba(31, 25, 85, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 15px 6px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    color: var(--primary-blue);
    text-decoration: none;
    transition: transform 0.3s ease;
    height: 70px;
    width: 120px;
}

.logo:hover {
    transform: scale(1.05);
    color: var(--primary-blue);
}



.nav-menu {
    display: flex;
    font-size: 14px;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}


/* ========================================
   MOBILE - DROPDOWN MON ESPACE
======================================== */

/* Styling spécifique pour le dropdown Mon Espace */
.mobile-nav-menu .mobile-dropdown.dashboard-section > a {
    background: linear-gradient(135deg, rgba(46, 184, 114, 0.1), rgba(31, 25, 85, 0.1));
    font-weight: 600;
}

.mobile-nav-menu .mobile-dropdown.dashboard-section.active > a {
    background: linear-gradient(135deg, rgba(46, 184, 114, 0.15), rgba(31, 25, 85, 0.15));
    color: var(--primary-green);
}

/* Items du dropdown Mon Espace */
.mobile-nav-menu .mobile-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 4px 8px;
}

.stat-number {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
    text-shadow: 0 0 20px rgba(46, 184, 114, 0.3);
    transition: all 0.3s ease;
}

.mobile-nav-menu .mobile-dropdown-menu li a i {
    width: 16px;
    color: var(--primary-green);
    opacity: 0.7;
}

.mobile-nav-menu .mobile-dropdown-menu li a:hover {
    background: rgba(46, 184, 114, 0.1);
    color: var(--primary-green);
    transform: translateX(5px);
}

.mobile-nav-menu .mobile-dropdown-menu li.active a {
    background: rgba(46, 184, 114, 0.15);
    color: var(--primary-green);
    font-weight: 500;
}

/* Lien de déconnexion spécial */
.mobile-nav-menu .logout-link {
    color: #e74c3c !important;
}

.mobile-nav-menu .logout-link:hover {
    background: rgba(231, 76, 60, 0.1) !important;
    color: #c0392b !important;
}

.mobile-nav-menu .logout-link i {
    color: #e74c3c !important;
}

/* CTA mobile pour invités */
.mobile-cta-link {
    background: linear-gradient(135deg, var(--primary-green), #27a058);
    color: white !important;
    border-radius: 25px;
    padding: 12px 20px !important;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(46, 184, 114, 0.3);
    margin: 10px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.mobile-cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 184, 114, 0.4);
}

.mobile-cta-link i {
    font-size: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/* Animation pour l'icône dropdown */
.mobile-dropdown.active .mobile-dropdown-icon {
    transform: rotate(180deg);
    color: var(--primary-green);
}

.mobile-dropdown .mobile-dropdown-icon {
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Badge utilisateur connecté */
.mobile-nav-menu .dashboard-section > a::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Séparateur visuel avant Mon Espace */
.mobile-nav-menu .dashboard-section {
    border-top: 1px solid rgba(46, 184, 114, 0.2);
    margin-top: 10px;
    padding-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-nav-menu .mobile-dropdown-menu li a {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .mobile-cta-link {
        padding: 10px 15px !important;
        font-size: 14px;
    }
}

/* États de focus pour accessibilité */
.mobile-nav-menu .mobile-dropdown-menu li a:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
    background: rgba(46, 184, 114, 0.1);
}

/* Animation d'ouverture du dropdown */
.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 200px;
    opacity: 1;
}

/* Ajout d'un indicateur visuel pour les notifications */
.dashboard-section.has-notifications > a::after {
    content: '!';
    position: absolute;
    top: 8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: #e74c3c;
    color: white;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1.5s infinite;
}


/* Liens simples actifs (non-dropdown) */
.nav-menu li.active:not(.dropdown) > a {
    color: var(--primary-green);
    font-weight: 600;
}

/* Liens dropdown actifs */
.nav-menu li.dropdown.active > a {
    color: var(--primary-green);
    font-weight: 600;
}

/* Icône dropdown active */
.nav-menu li.dropdown.active > a .dropdown-icon {
    color: var(--primary-green);
    transform: rotate(180deg);
}

/* Hover states pour liens simples */
.nav-menu li:not(.dropdown) > a:hover {
    color: var(--primary-green);
    transition: color 0.3s ease;
}

/* Hover states pour liens dropdown */
.nav-menu li.dropdown > a:hover {
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.nav-menu .active a {
    width: 100%;
}


.cta-button {
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #259a5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 184, 114, 0.4);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Hero Section */

.hero {
    background: linear-gradient(135deg, rgba(31, 25, 85, 0.85) 0%, rgba(42, 33, 128, 0.85) 100%), 
                url('../images/home/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 140px 2rem 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero::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 1000 1000"><polygon fill="%23ffffff05" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--white), var(--primary-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Stats Section avec animation */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hero-stats.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
}

.stat-item.animate {
    transform: translateY(0);
    opacity: 1;
}

.stat-item:nth-child(1) { transition-delay: 0.1s; }
.stat-item:nth-child(2) { transition-delay: 0.2s; }
.stat-item:nth-child(3) { transition-delay: 0.3s; }
.stat-item:nth-child(4) { transition-delay: 0.4s; }



.stat-number.counting {
    color: #1ea157;
    transform: scale(1.05);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Animation de pulsation pour les nombres */
@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stat-number.pulse {
    animation: numberPulse 0.6s ease-in-out;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(369px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(31, 25, 85, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(31, 25, 85, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), #259a5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Programs Section */
.programs {
    background: var(--white);
    padding: 100px 0;
}

.programs-section {
    margin-bottom: 100px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.program-card.popular {
    border-color: var(--primary-green);
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

.program-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary-green), #27a065);
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 2;
}

.popular-badge i {
    margin-right: 5px;
}

.program-header {
    padding: 40px 30px 30px;
}

.program-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.program-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
    color: var(--text-light);
}

.program-original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.savings-badge {
    background: #dc3545;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.program-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.program-description {
    color: var(--text-light);
    font-size: 1rem;
}

.program-features {
    padding: 30px;
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    text-align: left;
}

.feature-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-dark);
    line-height: 1.5;
}

.program-footer {
    padding: 0 30px 30px;
}

.program-footer {
    padding: 0 30px 30px;
}

.cta-button-program {
    background: var(--primary-green);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.cta-button-program:hover {
    background: #2d2670;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}
/* Testimonials Section */
.testimonials {
    padding: 100px 2rem;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(31, 25, 85, 0.08);
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary-green);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    opacity: 0.3;
}

.testimonial-content {
    margin: 2rem 0 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.author-info h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* CTA Section */
.final-cta {
    padding: 100px 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a2180 100%);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button-large {
    background: var(--primary-green);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button-large:hover {
    background: #259a5f;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 184, 114, 0.4);
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.footer-section ul {
    font-size: 14px;
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 14px;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .program-card.popular {
        transform: none;
    }

    .final-cta h2 {
        font-size: 2rem;
    }
}

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

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}
@media (max-width: 428px) {
    .hero-stats {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
   
}

/* Mobile Responsive */
@media (max-width: 1274px) {
    
    #cta-button {
        display: none;
    }
}

/* Comment ça marche Section */
.marche {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}



/* Timeline Steps */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% - 100px);
    background: linear-gradient(180deg, var(--primary-green), var(--primary-blue));
    z-index: 0;
}

.process-step {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(odd) .step-content {
    margin-right: 60%;
    text-align: right;
}

.process-step:nth-child(even) .step-content {
    margin-left: 60%;
    text-align: left;
}

.step-icon {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), #259a5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(46, 184, 114, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(46, 184, 114, 0.4);
}

.step-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(31, 25, 85, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(31, 25, 85, 0.15);
}

.step-content::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--white);
    transform: rotate(45deg);
    box-shadow: 0 10px 40px rgba(31, 25, 85, 0.08);
}

.process-step:nth-child(odd) .step-content::before {
    right: -10px;
}

.process-step:nth-child(even) .step-content::before {
    left: -10px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-highlight {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Mobile Version */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 40px;
        width: 3px;
    }

    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
        margin-left: 100px;
        margin-right: 0;
        text-align: left;
    }

    .step-icon {
        left: 40px;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .step-content::before {
        left: -10px;
        top: 20px;
    }

    .process-step:nth-child(even) .step-content::before {
        left: -10px;
    }
   
}

/* Animation delays */
.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.2s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.4s; }
.process-step:nth-child(5) { transition-delay: 0.5s; }

/* ====================================
   SECTION ENSEIGNANTS
==================================== */
.teachers {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
}



.teachers-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-gray), rgba(46, 184, 114, 0.05));
    border-radius: 20px;
    /* border-left: 5px solid var(--primary-green); */
}

.teachers-intro h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.teachers-intro p {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.diaspora-highlight {
    background: linear-gradient(135deg, var(--primary-blue), #2a2180);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.diaspora-highlight h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.diaspora-highlight p {
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.teacher-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(31, 25, 85, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.teacher-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(31, 25, 85, 0.15);
}

.teacher-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.teacher-type.local {
    background: rgba(46, 184, 114, 0.1);
    color: var(--primary-green);
}

.teacher-type.diaspora {
    background: rgba(31, 25, 85, 0.1);
    color: var(--primary-blue);
}

.teacher-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), #259a5f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.teacher-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.teacher-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.teacher-location {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.teacher-bio {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.teacher-subjects {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.subject-tag {
    background: rgba(46, 184, 114, 0.1);
    color: var(--primary-green);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ====================================
   SECTION PARTENAIRES
==================================== */
.partners {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.partners-impact {
    background: linear-gradient(135deg, var(--primary-blue), #2a2180);
    color: var(--white);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}



.partners-impact h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.partners-impact p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.partners-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.partner-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(31, 25, 85, 0.08);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.partner-category.animate {
    opacity: 1;
    transform: translateY(0);
}

.partner-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(31, 25, 85, 0.15);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), #259a5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.category-description {
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(31, 25, 85, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
}

.partner-card.animate {
    opacity: 1;
    transform: scale(1);
}

.partner-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(31, 25, 85, 0.1);
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 10px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.partner-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.partner-type {
    font-size: 0.8rem;
    color: var(--medium-gray);
    text-transform: capitalize;
}

/* Responsive */
@media (max-width: 768px) {
    .teachers-grid {
        grid-template-columns: 1fr;
    }

    .partners-categories {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .diaspora-highlight h4 {
        font-size: 1.1rem;
    }

    .partners-impact h3 {
        font-size: 1.3rem;
    }

    .partners-impact {
        padding: 2rem;
    }
}

/* Animation delays */
.teacher-card:nth-child(1) { transition-delay: 0.1s; }
.teacher-card:nth-child(2) { transition-delay: 0.2s; }
.teacher-card:nth-child(3) { transition-delay: 0.3s; }
.teacher-card:nth-child(4) { transition-delay: 0.4s; }
.teacher-card:nth-child(5) { transition-delay: 0.5s; }
.teacher-card:nth-child(6) { transition-delay: 0.6s; }
.teacher-card:nth-child(7) { transition-delay: 0.7s; }
.teacher-card:nth-child(8) { transition-delay: 0.8s; }

.partner-card:nth-child(1) { transition-delay: 0.1s; }
.partner-card:nth-child(2) { transition-delay: 0.2s; }
.partner-card:nth-child(3) { transition-delay: 0.3s; }
.partner-card:nth-child(4) { transition-delay: 0.4s; }
.partner-card:nth-child(5) { transition-delay: 0.5s; }
.partner-card:nth-child(6) { transition-delay: 0.6s; }
.partner-card:nth-child(7) { transition-delay: 0.7s; }
.partner-card:nth-child(8) { transition-delay: 0.8s; }

/* ====================================
   MOBILE NAVBAR MODERNE - 80% WIDTH
==================================== */

/* Overlay pour les 20% restants */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(31, 25, 85, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Container principal de la navbar mobile */
.mobile-nav-container {
    position: fixed;
    top: 0;
    /* left: -80%; */
    width: 80%;
    height: 100vh;
    background: var(--primary-blue);
    transform: translateX(-100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav-container.active {
    transform: translateX(0);
}

/* Header mobile avec logo et croix */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 1.5rem 2rem; */
    border-bottom: 1px solid rgb(241 37 37);
    background: linear-gradient(135deg, var(--primary-blue), #2a2180);
}

.mobile-logo {
    height: 45px;
    width: 90px;
}

.mobile-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.mobile-close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Menu mobile */
.mobile-nav-menu {
    flex: 1;
    padding: 3rem 0 0;
    list-style: none;
}

.mobile-nav-menu li {
    margin: 0;
}

.mobile-nav-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-nav-menu > li > a:hover,
.mobile-nav-menu > li.active > a {
    background: rgba(46, 184, 114, 0.15);
    /* border-left-color: var(--primary-green); */
    color: var(--primary-green);
}

/* Mobile Dropdown amélioré */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-icon {
    font-size: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-dropdown.active .mobile-dropdown-icon {
    transform: rotate(180deg);
    color: var(--primary-green);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 10px 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-dropdown-menu a:hover {
    background: rgba(46, 184, 114, 0.1);
    color: var(--primary-green);
}

/* Footer mobile avec réseaux sociaux */
.mobile-nav-footer {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #1a1448, var(--primary-blue));
}

.mobile-contact {
    margin-bottom: 1rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 13px;
}

.mobile-contact-item i {
    width: 20px;
    color: var(--primary-green);
    font-size: 1rem;
}

.mobile-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 184, 114, 0.4);
}

/* Dropdown Desktop amélioré */
.dropdown-icon {
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg) scale(1.1);
    color: var(--primary-green);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 20px 60px rgba(31, 25, 85, 0.15);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
    border: 1px solid rgba(31, 25, 85, 0.08);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu a {
    padding: 8px 1rem;
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    font-weight: 500;
    position: relative;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(46, 184, 114, 0.1), transparent);
    color: var(--primary-green);
    transform: translateX(5px);
}

.dropdown-menu a::after {
    display: none;
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 1070px) {
    .mobile-menu-toggle {
        display: block;
    }


    .nav-menu {
        display: none;
    }
}

.dropdown {
    position: relative;
}



/* ====================================
   BREADCRUMB COMPONENT
==================================== */
.breadcrumb-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 120px 2rem 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 71px; /* Compenser le header fixe */
}

.breadcrumb-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 1000 1000"><polygon fill="%23ffffff08" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.breadcrumb-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.breadcrumb-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--white), var(--primary-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-nav a:hover {
    color: var(--primary-green);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.5rem;
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: var(--primary-green);
    font-weight: 600;
}

/* Responsive breadcrumb */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 100px 1rem 40px;
        background-attachment: scroll;
    }

    .breadcrumb-title {
        font-size: 2rem;
    }

    .breadcrumb-nav {
        font-size: 0.9rem;
    }
}
    
/* ====================================
           SECTION BLOG
        ==================================== */
        .blog {
            padding: 100px 0;
            background: var(--light-gray);
            position: relative;
            overflow: hidden;
        }

        .blog-intro {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.938));
            border-radius: 20px;
        }

        .blog-intro h3 {
            color: var(--primary-blue);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .blog-intro p {
            color: var(--medium-gray);
            font-size: 1.1rem;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        .blog-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(31, 25, 85, 0.08);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }

        .blog-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(31, 25, 85, 0.15);
        }

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

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

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

        .blog-category {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--primary-green);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .blog-card-content {
            padding: 2rem;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--medium-gray);
        }

        .blog-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .blog-meta i {
            color: var(--primary-green);
            font-size: 0.8rem;
        }

        .blog-title a {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-green);
            text-decoration: none;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .blog-title a:hover {
            color: var(--primary-green);
            text-decoration: underline;
            text-decoration-color: var(--primary-green);
            text-decoration-thickness: 2px;
            text-underline-offset: 4px;
        }

        .blog-title  {
            margin-bottom: 1.2rem;
        }

        .blog-card:hover .blog-title {
            color: var(--primary-green);
        }

        .blog-excerpt {
            color: var(--medium-gray);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--light-gray);
        }

        .author-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-green), #259a5f);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .author-info h4 {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 0.25rem;
            font-size: 1rem;
        }

        .author-info p {
            color: var(--medium-gray);
            font-size: 0.85rem;
        }

        .read-more {
            position: absolute;
            bottom: 2rem;
            right: 2rem;
            background: var(--primary-green);
            color: var(--white);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            opacity: 0;
            transform: scale(0.8);
        }

        .blog-card:hover .read-more {
            opacity: 1;
            transform: scale(1);
        }

        .read-more:hover {
            background: #259a5f;
            transform: scale(1.1);
        }

        /* CTA Section */
        .blog-cta {
            text-align: center;
            padding: 3rem;
            background: linear-gradient(135deg, var(--primary-blue), #2a2180);
            border-radius: 25px;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .blog-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200px;
            height: 200px;
            background: rgba(46, 184, 114, 0.1);
            border-radius: 50%;
        }

        .blog-cta h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .blog-cta p {
            font-size: 14px;
            margin-bottom: 2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .blog-cta-button {
            background: var(--primary-green);
            color: var(--white);
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            z-index: 2;
            border: 2px solid var(--primary-green);
        }

        .blog-cta-button:hover {
            background: transparent;
            color: var(--primary-green);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(46, 184, 114, 0.3);
        }

        /* Empty State */
        .blog-empty {
            text-align: center;
            padding: 4rem 2rem;
            background: var(--light-gray);
            border-radius: 20px;
            margin: 2rem 0;
        }

        .blog-empty i {
            font-size: 3rem;
            color: var(--medium-gray);
            margin-bottom: 1rem;
        }

        .blog-empty h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .blog-empty p {
            color: var(--medium-gray);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .blog-card-content {
                padding: 1.5rem;
            }

            .blog-cta h3 {
                font-size: 1.5rem;
            }

            .blog-cta {
                padding: 2rem;
            }
        }

        /* Animation delays */
        .blog-card:nth-child(1) { transition-delay: 0.1s; }
        .blog-card:nth-child(2) { transition-delay: 0.2s; }
        .blog-card:nth-child(3) { transition-delay: 0.3s; }
.faq-content {
    /* padding: 100px 0; */
    padding: 80px 1rem;
    background: var(--light-gray);
}

.faq-intro {
    text-align: center;
    /* max-width: 800px; */
    margin: 0 0 2.4rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), #2a2180);
    border-radius: 9px;
    box-shadow: 0 10px 40px rgba(31, 25, 85, 0.08);
}

.faq-intro h2 {
    color: var(--white);
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-intro p {
    color: var(--white);
    font-size: 14px;
    line-height: 1.6;
}

/* Search Bar */
.faq-search {
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-search input:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(46, 184, 114, 0.25);
}

.faq-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
    font-size: 1rem;
}

/* Category Navigation */
.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 50px;
    color: var(--medium-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 184, 114, 0.3);
}

/* FAQ Container */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category-section {
    margin-bottom: 3rem;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), #2a2180);
    border-radius: 6px;
    color: var(--white);
}

.faq-category-icon {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-category-title {
    font-size: 1rem;
    font-weight: 600;
}

/* FAQ Items */
.faq-items {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(31, 25, 85, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(31, 25, 85, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.4rem;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-question.active {
    color: var(--primary-green);
    gap: 2px;
    background: rgba(46, 184, 114, 0.05);
}

.faq-toggle {
    min-width: 30px;
    height: 30px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary-blue);
}

.faq-question.active .faq-toggle {
    background: var(--primary-green);
    max-height: 30px;
    min-width: 30px;
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 14px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: var(--light-gray);
}

.faq-answer.active {
    max-height: 300px;
}

.faq-answer-content {
    padding: 1.5rem;
    color: var(--text-dark);
    line-height: 1.6;
    border-top: 1px solid #e9ecef;
}

/* CTA Section */
.faq-cta {
    background: linear-gradient(135deg, var(--primary-green), #259a5f);
    color: var(--white);
    padding: 3rem;
    border-radius: 9px;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.faq-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.faq-cta p {
    font-size: 14px;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid #25D366;
    position: relative;
    z-index: 2;
}

.whatsapp-btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    margin-top: 2rem;
}

.no-results i {
    font-size: 3rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.no-results h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.no-results p {
    color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-content {
        padding: 80px 1rem;
    }

    .faq-intro h2 {
        font-size: 21px;
    }

    .faq-categories {
        flex-direction: column;
        align-items: center;
    }

    .category-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .faq-category-header {
        padding: 1rem;
    }

    .faq-category-title {
        font-size: 1rem;
    }

    .faq-question {
        padding: 12px;
        font-size: 0.95rem;
    }

    .faq-answer-content {
        padding: 1rem;
    }

    .faq-cta h3 {
        font-size: 1.4rem;
    }

    .faq-cta {
        padding: 1rem;
    }
}

/* Hidden state for categories */
.faq-category-section.hidden {
    display: none;
}

/* Highlight search results */
.highlight {
    background: rgba(46, 184, 114, 0.2);
    padding: 0 2px;
    border-radius: 2px;
}

/* Contact Page Styles */
.contact-content {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-intro {
    text-align: center;
    /* max-width: 800px; */
    margin: 0 auto 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), #2a2180);
    border-radius: 9px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(46, 184, 114, 0.15);
    border-radius: 50%;
}

.contact-intro h2 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.contact-intro p {
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Main Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 9px;
    box-shadow: 0 15px 50px rgba(31, 25, 85, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--medium-gray);
    font-size: 14px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-label i {
    color: var(--primary-green);
    width: 16px;
    text-align: center;
}

.form-control {
    width: 100%;
    padding: 0.60rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(46, 184, 114, 0.25);
    transform: translateY(-2px);
}

.form-control.error {
    border-color: var(--danger);
}

.error-message {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-green), #259a5f);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 184, 114, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn .spinner {
    display: none;
}

.submit-btn.loading .spinner {
    display: inline-block;
}

.submit-btn.loading .btn-text {
    display: none;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 9px;
    box-shadow: 0 10px 40px rgba(31, 25, 85, 0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(31, 25, 85, 0.15);
}

.contact-card h4 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-card i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* Direct Contact Buttons */
.direct-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.whatsapp-btn-contact {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.whatsapp-btn-contact:hover {
    background: transparent;
    color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.phone-btn {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.phone-btn:hover {
    background: transparent;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 25, 85, 0.3);
}

.contact-btn i {
    font-size: 1.3rem;
}

/* Office Info */
.office-info {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 9px;
    box-shadow: 0 10px 40px rgba(31, 25, 85, 0.08);
}

.office-info h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
}

.info-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
    width: 20px;
    margin-top: 0.2rem;
}

.info-item div h5 {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.info-item div p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, var(--primary-green), #259a5f);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    display: none;
    margin-top: 1rem;
}

.success-message.show {
    display: block;
    animation: slideIn 0.5s ease;
}

.success-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-message h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* FAQ Quick */
.faq-quick {
    background: var(--white);
    padding: 2rem;
    border-radius: 9px;
    box-shadow: 0 10px 40px rgba(31, 25, 85, 0.08);
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-quick h4 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

/* CTA Section */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-blue), #2a2180);
    color: var(--white);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(46, 184, 114, 0.15);
    border-radius: 50%;
}

.contact-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}


 .progress-bar {
        position: absolute;
        top: calc(1.8rem + 22px);
        left: calc(12.5% + 22px);
        right: calc(12.5% + 22px);
        height: 3px;
        background: #e9ecef;
        z-index: 1;
    }


/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-content {
        padding: 80px 1rem;
    }

    .progress-bar {
            top: calc(1.8rem + 12px)
    }

    .contact-intro {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .contact-intro h2 {
        font-size: 21px;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .faq-items {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        padding: 2rem;
    }

    .contact-cta h3 {
        font-size: 1.5rem;
    }
}

/* CSS pour les messages flash d'inscription - Option 1 */
.alert.enrollment-success {
    background: linear-gradient(135deg, #2EB872 0%, #20a464 100%);
    color: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(46, 184, 114, 0.3);
    animation: slideInBounce 0.6s ease-out;
    padding: 20px;
}

.alert.enrollment-success .alert-header {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.alert.enrollment-success .alert-header i {
    font-size: 1.3rem;
    margin-right: 10px;
}

.alert.enrollment-success .alert-body {
    line-height: 1.5;
}

.enrollment-details {
    margin-top: 15px;
}

.enrollment-details .detail-item {
    margin: 8px 0;
    font-size: 0.95rem;
}

.enrollment-details .detail-item strong {
    color: rgba(255, 255, 255, 0.9);
}

.enrollment-code {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enrollment-code:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.alert .btn-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    position: absolute;
    top: 10px;
    right: 10px;
}

.alert .btn-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes slideInBounce {
    0% {
        transform: translateX(100%) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateX(-5%) scale(1.05);
        opacity: 1;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

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