/* --- Nouveaux Titres de Section Modernes --- */
.section-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 3rem !important;
    margin-top: 1rem !important;
    padding: 1rem 1.5rem !important;
    background: white !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05) !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    position: relative !important;
    overflow: hidden !important;
    transition: transform 0.3s ease !important;
}

.section-header:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 30px -5px rgba(0,0,0,0.08) !important;
}

.section-header::after {
    content: '';
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 6px !important;
    background: var(--section-color, #9ca3af) !important;
}

.section-title-group {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    z-index: 2 !important;
}

.section-title-modern {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #1f2937 !important;
    letter-spacing: -0.5px !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

/* Variantes de couleurs */
.header-rose { --section-color: #e11d48; }
.header-pink { --section-color: #ec4899; }
.header-fuchsia { --section-color: #d946ef; }
.header-purple { --section-color: #9333ea; }
.header-violet { --section-color: #7c3aed; }
.header-indigo { --section-color: #4f46e5; }
.header-blue { --section-color: #2563eb; }
.header-sky { --section-color: #0284c7; }
.header-cyan { --section-color: #0891b2; }
.header-teal { --section-color: #0d9488; }
.header-emerald { --section-color: #059669; }
.header-green { --section-color: #16a34a; }
.header-lime { --section-color: #65a30d; }
.header-yellow { --section-color: #ca8a04; }
.header-amber { --section-color: #d97706; }
.header-orange { --section-color: #ea580c; }
.header-red { --section-color: #dc2626; }
.header-slate { --section-color: #475569; }