    font-size: 0.8rem;
    font-weight: 500;
}

.status-en_cours {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-primary);
}

.status-termine {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green-primary);
}

.status-planifie {
    background: rgba(245, 158, 11, 0.1);
    color: var(--orange-primary);
}

/* Cartes Formations */
.formation-card {
    border-left: 4px solid var(--indigo-primary);
}

.formation-card .card-overlay {
    background: rgba(99, 102, 241, 0.9);
}

.formation-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

/* ===== AMÉLIORATIONS POUR FONDS COLORÉS ===== */


.blue-section {
    background: rgba(123, 160, 255, 0.235);
    color: white;
}


.teal-section {
    background: rgba(229, 255, 252, 0.235);
    color: white;
}

.green-section {
    background: rgba(167, 243, 208, 0.235);
    color: white;

}

.blue-section .content-card,
.teal-section .content-card,
.purple-section .equipe-card,
.green-section .partner-item {
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.blue-section .content-card:hover,
.teal-section .content-card:hover,
.purple-section .equipe-card:hover,
.green-section .partner-item:hover {
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--cardes-dark);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--cardes-primary) 0%, var(--cardes-dark) 100%);
    color: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    margin: 0 0.5rem;
    opacity: 0.6;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    opacity: 0.9;
}

.page-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--cardes-primary);
    border: 1px solid var(--cardes-border);
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--cardes-primary);
    color: white;
    transform: translateY(-1px);
}

.pagination .current {
    background: var(--cardes-primary);
    color: white;
}

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

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

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

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

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .equipe-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid var(--cardes-border);
        box-shadow: var(--shadow-lg);
    }
    
    .main-navigation.is-open {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .main-navigation li {
        margin: 0;
        width: 100%;
    }
    
    .main-navigation a {
        padding: 1rem 2rem;
        border-radius: 0;
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .content-grid,
    .partners-grid,
    .mission-highlights,
    .equipe-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .page-hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .equipe-photo {
        width: 100px;
        height: 100px;
    }
    
    .default-avatar {
        font-size: 2.5rem;
    }
    
    /* Responsive pour les arrière-plans */
    .light-section::before,
    .blue-section::before,
    .purple-section::before {
        opacity: 0.5;
    }
    
    .green-section::after,
    .teal-section::before {
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .equipe-card {
        padding: 1.5rem;
    }
    
    .equipe-photo {
        width: 80px;
        height: 80px;
    }
    
    .default-avatar {
        font-size: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .partner-item {
        padding: 1.5rem 1rem;
    }
    
    .partner-logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
