/* ===========================================
   SITE DE FORMATION EN PHYSICO-CHIMIE
   Feuille de style principale
   =========================================== */

/* --- Import des icônes Google Material Symbols --- */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

/* --- Variables CSS (personnalisation facile) --- */
:root {
    /* Palette de couleurs */
    --couleur-primaire: #1a5276;
    --couleur-primaire-claire: #2980b9;
    --couleur-primaire-foncee: #0e2f44;
    --couleur-secondaire: #27ae60;
    --couleur-accent: #e74c3c;
    --couleur-fond: #f8f9fa;
    --couleur-fond-carte: #ffffff;
    --couleur-texte: #2c3e50;
    --couleur-texte-clair: #7f8c8d;
    --couleur-bordure: #e0e0e0;
    
    /* Typographie */
    --police-titre: 'Merriweather', Georgia, serif;
    --police-corps: 'Source Sans Pro', 'Segoe UI', sans-serif;
    
    /* Espacements */
    --espacement-xs: 0.5rem;
    --espacement-sm: 1rem;
    --espacement-md: 2rem;
    --espacement-lg: 3rem;
    --espacement-xl: 4rem;
    
    /* Dimensions */
    --largeur-max: 1200px;
    --rayon-bordure: 8px;
    
    /* Ombres */
    --ombre-legere: 0 2px 8px rgba(0, 0, 0, 0.08);
    --ombre-moyenne: 0 4px 16px rgba(0, 0, 0, 0.12);
    --ombre-forte: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Transitions */
    --transition-rapide: 0.2s ease;
    --transition-normale: 0.3s ease;
}

/* --- Reset et styles de base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--police-corps);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--couleur-texte);
    background-color: var(--couleur-fond);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Typographie --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--police-titre);
    font-weight: 700;
    line-height: 1.3;
    color: var(--couleur-primaire-foncee);
    margin-bottom: var(--espacement-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--espacement-sm);
}

a {
    color: var(--couleur-primaire);
    text-decoration: none;
    transition: color var(--transition-rapide);
}

a:hover {
    color: var(--couleur-primaire-claire);
}

/* --- En-tête et navigation --- */
.header {
    background: linear-gradient(135deg, var(--couleur-primaire-foncee) 0%, var(--couleur-primaire) 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--ombre-moyenne);
}

.header-container {
    max-width: var(--largeur-max);
    margin: 0 auto;
    padding: var(--espacement-sm) var(--espacement-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--espacement-sm);
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 4px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-text {
    font-family: var(--police-titre);
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.logo-text span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 0.9rem;
    display: block;
}

.nav-principale {
    display: flex;
    gap: var(--espacement-xs);
}

.nav-principale a {
    color: rgba(255, 255, 255, 0.9);
    padding: var(--espacement-xs) var(--espacement-sm);
    border-radius: var(--rayon-bordure);
    font-weight: 500;
    transition: all var(--transition-rapide);
}

.nav-principale a:hover,
.nav-principale a.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* Menu mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--espacement-xs);
}

/* --- Héro (bannière d'accueil) --- */
.hero {
    background: linear-gradient(135deg, var(--couleur-primaire) 0%, var(--couleur-primaire-foncee) 100%);
    color: white;
    padding: var(--espacement-xl) var(--espacement-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: var(--espacement-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: var(--espacement-md);
}

.hero-actions {
    display: flex;
    gap: var(--espacement-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Boutons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--espacement-xs);
    padding: 0.75rem 1.5rem;
    border-radius: var(--rayon-bordure);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normale);
}

.btn-primaire {
    background: var(--couleur-secondaire);
    color: white;
}

.btn-primaire:hover {
    background: #219a52;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--ombre-moyenne);
}

.btn-secondaire {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondaire:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--couleur-primaire);
    border: 2px solid var(--couleur-primaire);
}

.btn-outline:hover {
    background: var(--couleur-primaire);
    color: white;
}

/* --- Contenu principal --- */
main {
    flex: 1;
}

.container {
    max-width: var(--largeur-max);
    margin: 0 auto;
    padding: var(--espacement-lg) var(--espacement-md);
}

/* --- Sections --- */
.section {
    margin-bottom: var(--espacement-xl);
}

.section-header {
    text-align: center;
    margin-bottom: var(--espacement-lg);
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--couleur-secondaire);
    border-radius: 2px;
}

.section-header p {
    color: var(--couleur-texte-clair);
    font-size: 1.1rem;
    max-width: 600px;
    margin: var(--espacement-md) auto 0;
}

/* --- Grille de cartes --- */
.grille-cartes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--espacement-md);
}

/* --- Carte de formation --- */
.carte-formation {
    background: var(--couleur-fond-carte);
    border-radius: var(--rayon-bordure);
    box-shadow: var(--ombre-legere);
    overflow: hidden;
    transition: all var(--transition-normale);
    display: flex;
    flex-direction: column;
}

.carte-formation:hover {
    transform: translateY(-4px);
    box-shadow: var(--ombre-forte);
}

.carte-formation-header {
    background: linear-gradient(135deg, var(--couleur-primaire) 0%, var(--couleur-primaire-claire) 100%);
    color: white;
    padding: var(--espacement-md);
    position: relative;
}

.carte-formation-categorie {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: var(--espacement-xs);
}

.carte-formation-header h3 {
    color: white;
    margin-bottom: 0;
    font-size: 1.3rem;
}

.carte-formation-body {
    padding: var(--espacement-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.carte-formation-description {
    color: var(--couleur-texte);
    margin-bottom: var(--espacement-sm);
    flex: 1;
}

.carte-formation-infos {
    display: flex;
    flex-wrap: wrap;
    gap: var(--espacement-sm);
    margin-bottom: var(--espacement-md);
    padding-top: var(--espacement-sm);
    border-top: 1px solid var(--couleur-bordure);
}

.carte-formation-info {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--couleur-texte-clair);
}

.carte-formation-info strong {
    color: var(--couleur-texte);
}

.carte-formation-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carte-formation-prix {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--couleur-primaire);
}

/* --- Page de détail formation --- */
.page-header {
    background: linear-gradient(135deg, var(--couleur-primaire) 0%, var(--couleur-primaire-foncee) 100%);
    color: white;
    padding: var(--espacement-lg) var(--espacement-md);
}

.page-header-content {
    max-width: var(--largeur-max);
    margin: 0 auto;
}

.fil-ariane {
    display: flex;
    gap: var(--espacement-xs);
    margin-bottom: var(--espacement-md);
    font-size: 0.9rem;
}

.fil-ariane a {
    color: rgba(255, 255, 255, 0.8);
}

.fil-ariane a:hover {
    color: white;
}

.fil-ariane span {
    color: rgba(255, 255, 255, 0.5);
}

.page-header h1 {
    color: white;
    margin-bottom: var(--espacement-sm);
}

.page-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--espacement-md);
    opacity: 0.9;
}

/* --- Contenu formation détaillée --- */
.formation-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--espacement-lg);
    align-items: start;
}

.formation-contenu section {
    margin-bottom: var(--espacement-lg);
}

.formation-contenu h2 {
    font-size: 1.5rem;
    margin-bottom: var(--espacement-md);
    padding-bottom: var(--espacement-xs);
    border-bottom: 2px solid var(--couleur-bordure);
}

.formation-contenu ul {
    list-style: none;
    padding-left: 0;
}

.formation-contenu li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--espacement-xs);
}

.formation-contenu li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--couleur-secondaire);
    font-weight: bold;
}

/* Encart latéral */
.formation-sidebar {
    position: sticky;
    top: 100px;
}

.encart-inscription {
    background: var(--couleur-fond-carte);
    border-radius: var(--rayon-bordure);
    box-shadow: var(--ombre-moyenne);
    padding: var(--espacement-md);
}

.encart-inscription h3 {
    font-size: 1.25rem;
    margin-bottom: var(--espacement-md);
    text-align: center;
}

.encart-prix {
    text-align: center;
    margin-bottom: var(--espacement-md);
    padding-bottom: var(--espacement-md);
    border-bottom: 1px solid var(--couleur-bordure);
}

.encart-prix .prix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--couleur-primaire);
}

.encart-prix .prix-detail {
    font-size: 0.9rem;
    color: var(--couleur-texte-clair);
}

.encart-details {
    margin-bottom: var(--espacement-md);
}

.encart-detail-item {
    display: flex;
    justify-content: space-between;
    padding: var(--espacement-xs) 0;
    border-bottom: 1px solid var(--couleur-bordure);
}

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

.encart-inscription .btn {
    width: 100%;
    justify-content: center;
}

/* --- Cartes de service (conseil) --- */
.carte-service {
    background: var(--couleur-fond-carte);
    border-radius: var(--rayon-bordure);
    box-shadow: var(--ombre-legere);
    padding: var(--espacement-md);
    text-align: center;
    transition: all var(--transition-normale);
}

.carte-service:hover {
    transform: translateY(-4px);
    box-shadow: var(--ombre-forte);
}

.carte-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--couleur-primaire) 0%, var(--couleur-primaire-claire) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--espacement-md);
    font-size: 2rem;
}

.carte-service h3 {
    margin-bottom: var(--espacement-sm);
}

/* --- Espace client --- */
.espace-client-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--espacement-lg);
}

.grille-fonctionnalites {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--espacement-md);
    margin-bottom: var(--espacement-lg);
}

.fonctionnalite {
    background: var(--couleur-fond-carte);
    border-radius: var(--rayon-bordure);
    padding: var(--espacement-md);
    display: flex;
    gap: var(--espacement-sm);
    align-items: flex-start;
    box-shadow: var(--ombre-legere);
}

.fonctionnalite-icon {
    width: 50px;
    height: 50px;
    background: var(--couleur-primaire);
    border-radius: var(--rayon-bordure);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.fonctionnalite-content h4 {
    margin-bottom: var(--espacement-xs);
}

.fonctionnalite-content p {
    color: var(--couleur-texte-clair);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Formulaire de connexion */
.connexion-box {
    max-width: 450px;
    margin: 0 auto;
    background: var(--couleur-fond-carte);
    border-radius: var(--rayon-bordure);
    box-shadow: var(--ombre-moyenne);
    padding: var(--espacement-lg);
}

.connexion-box h3 {
    text-align: center;
    margin-bottom: var(--espacement-md);
}

/* --- Formulaires --- */
.formulaire {
    display: flex;
    flex-direction: column;
    gap: var(--espacement-sm);
}

.form-groupe {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-groupe label {
    font-weight: 600;
    color: var(--couleur-texte);
}

.form-groupe label .requis {
    color: var(--couleur-accent);
}

.form-groupe input,
.form-groupe textarea,
.form-groupe select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--couleur-bordure);
    border-radius: var(--rayon-bordure);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-rapide);
}

.form-groupe input:focus,
.form-groupe textarea:focus,
.form-groupe select:focus {
    outline: none;
    border-color: var(--couleur-primaire);
}

.form-groupe textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espacement-sm);
}

.form-actions {
    margin-top: var(--espacement-sm);
}

.form-actions .btn {
    width: 100%;
    justify-content: center;
}

.form-note {
    font-size: 0.85rem;
    color: var(--couleur-texte-clair);
    text-align: center;
}

/* --- Page contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espacement-lg);
}

.contact-infos {
    background: var(--couleur-fond-carte);
    border-radius: var(--rayon-bordure);
    padding: var(--espacement-md);
    box-shadow: var(--ombre-legere);
}

.contact-info-item {
    display: flex;
    gap: var(--espacement-sm);
    margin-bottom: var(--espacement-md);
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--couleur-primaire);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-content h4 {
    margin-bottom: 0.25rem;
}

.contact-info-content p {
    color: var(--couleur-texte-clair);
    margin-bottom: 0;
}

.contact-formulaire {
    background: var(--couleur-fond-carte);
    border-radius: var(--rayon-bordure);
    padding: var(--espacement-md);
    box-shadow: var(--ombre-legere);
}

/* --- Pied de page --- */
.footer {
    background: var(--couleur-primaire-foncee);
    color: white;
    padding: var(--espacement-lg) var(--espacement-md) var(--espacement-md);
    margin-top: auto;
}

.footer-container {
    max-width: var(--largeur-max);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--espacement-lg);
    margin-bottom: var(--espacement-lg);
    padding-bottom: var(--espacement-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    color: white;
    margin-bottom: var(--espacement-sm);
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-section li {
    margin-bottom: var(--espacement-xs);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    margin-left: var(--espacement-sm);
}

.footer-legal a:hover {
    color: white;
}

/* --- Utilitaires --- */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-md {
    margin-top: var(--espacement-md);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .formation-detail {
        grid-template-columns: 1fr;
    }
    
    .formation-sidebar {
        position: static;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-principale {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-top: var(--espacement-sm);
    }
    
    .nav-principale.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--espacement-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .grille-cartes {
        grid-template-columns: 1fr;
    }
    
    .carte-formation-footer {
        flex-direction: column;
        gap: var(--espacement-sm);
        align-items: flex-start;
    }
}

/* ===========================================
   VALIDATION DE FORMULAIRE
   =========================================== */

/* --- États des champs --- */
.form-groupe input.field-error,
.form-groupe textarea.field-error,
.form-groupe select.field-error {
    border-color: var(--couleur-accent);
    background-color: rgba(231, 76, 60, 0.05);
}

.form-groupe input.field-success,
.form-groupe textarea.field-success,
.form-groupe select.field-success {
    border-color: var(--couleur-secondaire);
    background-color: rgba(39, 174, 96, 0.05);
}

/* --- Messages d'erreur --- */
.error-message {
    color: var(--couleur-accent);
    font-size: 0.85rem;
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    animation: slideDown 0.2s ease;
}

.error-message::before {
    content: '⚠';
    font-size: 0.9rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Infobulles --- */
.tooltip-container {
    position: relative;
    display: inline-flex;
    margin-left: 0.4rem;
    vertical-align: middle;
}

.tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--couleur-primaire);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: help;
    transition: all var(--transition-rapide);
}

.tooltip-icon:hover,
.tooltip-icon:focus {
    background: var(--couleur-primaire-claire);
    transform: scale(1.1);
    outline: none;
}

.tooltip-text {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--couleur-primaire-foncee);
    color: white;
    padding: 0.6rem 0.8rem;
    border-radius: var(--rayon-bordure);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
    width: 250px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-rapide);
    z-index: 100;
    box-shadow: var(--ombre-moyenne);
}

.tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--couleur-primaire-foncee);
}

.tooltip-icon:hover + .tooltip-text,
.tooltip-icon:focus + .tooltip-text {
    opacity: 1;
    visibility: visible;
}

/* Positionnement adaptatif des infobulles */
@media (max-width: 768px) {
    .tooltip-text {
        width: 200px;
        left: auto;
        right: -10px;
        transform: none;
    }
    
    .tooltip-text::after {
        left: auto;
        right: 15px;
        transform: none;
    }
}

/* --- Compteur de caractères --- */
.char-counter {
    font-size: 0.8rem;
    color: var(--couleur-texte-clair);
    text-align: right;
    margin-top: 0.3rem;
}

.char-counter.counter-valid {
    color: var(--couleur-secondaire);
}

/* --- Notifications --- */
.form-notification {
    display: flex;
    align-items: center;
    gap: var(--espacement-sm);
    padding: var(--espacement-sm) var(--espacement-md);
    border-radius: var(--rayon-bordure);
    margin-bottom: var(--espacement-md);
    animation: slideDown 0.3s ease;
}

.notification-success {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid var(--couleur-secondaire);
    color: #1e7e34;
}

.notification-error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid var(--couleur-accent);
    color: #c0392b;
}

.notification-warning {
    background: rgba(241, 196, 15, 0.1);
    border: 1px solid #f1c40f;
    color: #856404;
}

.notification-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition-rapide);
    padding: 0 0.3rem;
}

.notification-close:hover {
    opacity: 1;
}

.notification-fade {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* --- Checkbox RGPD avec erreur --- */
.form-groupe input[type="checkbox"].field-error {
    outline: 2px solid var(--couleur-accent);
    outline-offset: 2px;
}

/* ===========================================
   BLOG
   =========================================== */

/* --- Filtres du blog --- */
.blog-filtres {
    display: flex;
    align-items: center;
    gap: var(--espacement-sm);
    flex-wrap: wrap;
    margin-bottom: var(--espacement-lg);
    padding-bottom: var(--espacement-md);
    border-bottom: 1px solid var(--couleur-bordure);
}

.filtre-label {
    font-weight: 600;
    color: var(--couleur-texte);
}

.filtres-liste {
    display: flex;
    gap: var(--espacement-xs);
    flex-wrap: wrap;
}

.filtre-btn {
    padding: 0.4rem 1rem;
    border: 2px solid var(--couleur-bordure);
    border-radius: 20px;
    background: transparent;
    color: var(--couleur-texte);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-rapide);
}

.filtre-btn:hover {
    border-color: var(--couleur-primaire);
    color: var(--couleur-primaire);
}

.filtre-btn.active {
    background: var(--couleur-primaire);
    border-color: var(--couleur-primaire);
    color: white;
}

/* --- Liste des articles (blog) --- */
.blog-liste {
    display: flex;
    flex-direction: column;
    gap: var(--espacement-md);
}

/* --- Carte article --- */
.carte-article {
    display: flex;
    background: var(--couleur-fond-carte);
    border-radius: var(--rayon-bordure);
    box-shadow: var(--ombre-legere);
    overflow: hidden;
    transition: all var(--transition-normale);
}

.carte-article:hover {
    box-shadow: var(--ombre-moyenne);
    transform: translateY(-2px);
}

.carte-article-image {
    flex: 0 0 280px;
    position: relative;
    background: linear-gradient(135deg, var(--couleur-primaire) 0%, var(--couleur-primaire-claire) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.carte-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carte-article-image.no-image::after {
    content: '📝';
    font-size: 4rem;
    opacity: 0.5;
}

.carte-article-categorie {
    position: absolute;
    top: var(--espacement-sm);
    left: var(--espacement-sm);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.carte-article-contenu {
    flex: 1;
    padding: var(--espacement-md);
    display: flex;
    flex-direction: column;
}

.carte-article-meta {
    display: flex;
    gap: var(--espacement-md);
    font-size: 0.85rem;
    color: var(--couleur-texte-clair);
    margin-bottom: var(--espacement-xs);
}

.lecture-temps {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.lecture-temps::before {
    content: '•';
    margin-right: 0.3rem;
}

.carte-article-contenu h2 {
    font-size: 1.3rem;
    margin-bottom: var(--espacement-xs);
    line-height: 1.4;
}

.carte-article-contenu h2 a {
    color: var(--couleur-primaire-foncee);
    text-decoration: none;
}

.carte-article-contenu h2 a:hover {
    color: var(--couleur-primaire);
}

.carte-article-resume {
    color: var(--couleur-texte);
    flex: 1;
    margin-bottom: var(--espacement-sm);
    line-height: 1.6;
}

.carte-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--espacement-sm);
    border-top: 1px solid var(--couleur-bordure);
}

.article-auteur {
    font-size: 0.85rem;
    color: var(--couleur-texte-clair);
}

.lire-suite {
    font-weight: 600;
    color: var(--couleur-primaire);
}

.lire-suite:hover {
    color: var(--couleur-primaire-claire);
}

/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--espacement-sm);
    margin: var(--espacement-xl) 0;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--couleur-bordure);
    border-radius: var(--rayon-bordure);
    color: var(--couleur-texte);
    font-weight: 600;
    transition: all var(--transition-rapide);
}

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

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

.pagination-numeros {
    display: flex;
    gap: 0.3rem;
}

.pagination-numero {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--couleur-bordure);
    border-radius: var(--rayon-bordure);
    font-weight: 600;
    transition: all var(--transition-rapide);
}

.pagination-numero:hover,
.pagination-numero.active {
    background: var(--couleur-primaire);
    border-color: var(--couleur-primaire);
    color: white;
}

/* --- Newsletter --- */
.blog-newsletter {
    background: linear-gradient(135deg, var(--couleur-primaire) 0%, var(--couleur-primaire-foncee) 100%);
    border-radius: var(--rayon-bordure);
    padding: var(--espacement-lg);
    margin-top: var(--espacement-lg);
    color: white;
    text-align: center;
}

.newsletter-contenu h2 {
    color: white;
    margin-bottom: var(--espacement-xs);
}

.newsletter-contenu p {
    opacity: 0.9;
    margin-bottom: var(--espacement-md);
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: var(--espacement-xs);
}

.newsletter-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--rayon-bordure);
    font-size: 1rem;
}

.newsletter-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: var(--espacement-sm);
    margin-bottom: 0;
}

/* ===========================================
   PAGE ARTICLE
   =========================================== */

/* --- En-tête article --- */
.article-header {
    background: linear-gradient(135deg, var(--couleur-primaire) 0%, var(--couleur-primaire-foncee) 100%);
    color: white;
    padding: var(--espacement-lg) var(--espacement-md) var(--espacement-xl);
}

.article-header-content {
    max-width: var(--largeur-max);
    margin: 0 auto;
}

.article-categorie-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--espacement-sm);
}

.article-header h1 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: var(--espacement-md);
    max-width: 900px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--espacement-md);
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.9;
}

.meta-icon {
    font-size: 1rem;
}

/* --- Layout article --- */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--espacement-lg);
    align-items: start;
}

/* --- Contenu article --- */
.article-contenu {
    background: var(--couleur-fond-carte);
    border-radius: var(--rayon-bordure);
    box-shadow: var(--ombre-legere);
    padding: var(--espacement-lg);
    margin-top: calc(-1 * var(--espacement-lg));
}

.article-image-principale {
    margin: 0 calc(-1 * var(--espacement-lg)) var(--espacement-lg);
    margin-top: calc(-1 * var(--espacement-lg));
}

.article-image-principale img {
    width: 100%;
    height: auto;
    border-radius: var(--rayon-bordure) var(--rayon-bordure) 0 0;
}

.article-image-principale figcaption {
    padding: var(--espacement-sm) var(--espacement-lg);
    background: var(--couleur-fond);
    font-size: 0.85rem;
    color: var(--couleur-texte-clair);
    font-style: italic;
}

.article-introduction {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--couleur-texte);
    border-left: 4px solid var(--couleur-primaire);
    padding-left: var(--espacement-md);
    margin-bottom: var(--espacement-lg);
}

.article-section {
    margin-bottom: var(--espacement-lg);
}

.article-section h2 {
    font-size: 1.6rem;
    color: var(--couleur-primaire-foncee);
    margin-bottom: var(--espacement-md);
    padding-bottom: var(--espacement-xs);
    border-bottom: 2px solid var(--couleur-bordure);
}

.article-section h3 {
    font-size: 1.25rem;
    color: var(--couleur-primaire);
    margin-top: var(--espacement-md);
    margin-bottom: var(--espacement-sm);
}

.article-section p {
    margin-bottom: var(--espacement-sm);
    line-height: 1.8;
}

.article-section ul,
.article-section ol {
    margin-bottom: var(--espacement-md);
    padding-left: 1.5rem;
}

.article-section li {
    margin-bottom: var(--espacement-xs);
    line-height: 1.7;
}

/* --- Éléments spéciaux article --- */
.article-equation {
    background: var(--couleur-fond);
    padding: var(--espacement-md);
    border-radius: var(--rayon-bordure);
    text-align: center;
    font-family: 'Times New Roman', serif;
    font-size: 1.2rem;
    margin: var(--espacement-md) 0;
}

.article-figure {
    margin: var(--espacement-md) 0;
    text-align: center;
}

.article-figure img {
    max-width: 100%;
    border-radius: var(--rayon-bordure);
}

.article-figure figcaption {
    font-size: 0.85rem;
    color: var(--couleur-texte-clair);
    font-style: italic;
    margin-top: var(--espacement-xs);
}

.article-encart {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(39, 174, 96, 0.05) 100%);
    border-left: 4px solid var(--couleur-secondaire);
    padding: var(--espacement-md);
    border-radius: 0 var(--rayon-bordure) var(--rayon-bordure) 0;
    margin: var(--espacement-md) 0;
}

.article-encart h4 {
    color: var(--couleur-secondaire);
    margin-bottom: var(--espacement-xs);
}

.article-encart p {
    margin-bottom: 0;
}

/* --- Bibliographie --- */
.article-bibliographie {
    background: var(--couleur-fond);
    padding: var(--espacement-md);
    border-radius: var(--rayon-bordure);
    margin-top: var(--espacement-lg);
}

.article-bibliographie h2 {
    font-size: 1.3rem;
    margin-bottom: var(--espacement-md);
    padding-bottom: var(--espacement-xs);
    border-bottom: 2px solid var(--couleur-bordure);
}

.references-liste {
    list-style: none;
    padding-left: 0;
    counter-reset: ref-counter;
}

.references-liste li {
    counter-increment: ref-counter;
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: var(--espacement-sm);
    font-size: 0.9rem;
    line-height: 1.6;
}

.references-liste li::before {
    content: "[" counter(ref-counter) "]";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: var(--couleur-primaire);
}

.ref-auteurs {
    font-weight: 600;
}

.ref-titre {
    font-style: italic;
}

.ref-titre::before,
.ref-titre::after {
    content: '"';
    font-style: normal;
}

.ref-journal {
    color: var(--couleur-texte-clair);
}

.ref-doi {
    display: block;
    font-size: 0.8rem;
    color: var(--couleur-primaire);
}

/* --- Tags article --- */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--espacement-xs);
    align-items: center;
    margin-top: var(--espacement-lg);
    padding-top: var(--espacement-md);
    border-top: 1px solid var(--couleur-bordure);
}

.tags-label {
    font-weight: 600;
    margin-right: var(--espacement-xs);
}

.tag {
    background: var(--couleur-fond);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--couleur-texte);
    transition: all var(--transition-rapide);
}

.tag:hover {
    background: var(--couleur-primaire);
    color: white;
}

/* --- Partage social --- */
.article-partage {
    display: flex;
    align-items: center;
    gap: var(--espacement-sm);
    margin-top: var(--espacement-md);
}

.partage-label {
    font-weight: 600;
}

.partage-boutons {
    display: flex;
    gap: var(--espacement-xs);
}

.partage-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition-rapide);
}

.partage-linkedin {
    background: #0077B5;
}

.partage-twitter {
    background: #000;
}

.partage-email {
    background: var(--couleur-texte);
}

.partage-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* --- Navigation articles --- */
.article-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espacement-md);
    margin-top: var(--espacement-lg);
    padding-top: var(--espacement-md);
    border-top: 1px solid var(--couleur-bordure);
}

.article-nav-link {
    display: flex;
    flex-direction: column;
    padding: var(--espacement-sm);
    border-radius: var(--rayon-bordure);
    background: var(--couleur-fond);
    transition: all var(--transition-rapide);
}

.article-nav-link:hover {
    background: var(--couleur-primaire);
    color: white;
}

.article-nav-link:hover .nav-direction,
.article-nav-link:hover .nav-titre {
    color: white;
}

.article-nav-next {
    text-align: right;
}

.nav-direction {
    font-size: 0.85rem;
    color: var(--couleur-texte-clair);
    margin-bottom: 0.3rem;
}

.nav-titre {
    font-weight: 600;
    color: var(--couleur-primaire-foncee);
}

/* --- Sidebar article --- */
.article-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: var(--espacement-md);
    margin-top: calc(-1 * var(--espacement-lg));
}

.sidebar-bloc {
    background: var(--couleur-fond-carte);
    border-radius: var(--rayon-bordure);
    box-shadow: var(--ombre-legere);
    padding: var(--espacement-md);
}

.sidebar-bloc h3 {
    font-size: 1.1rem;
    margin-bottom: var(--espacement-sm);
    padding-bottom: var(--espacement-xs);
    border-bottom: 2px solid var(--couleur-bordure);
}

.table-des-matieres ol {
    list-style: none;
    padding-left: 0;
    counter-reset: toc-counter;
}

.table-des-matieres li {
    counter-increment: toc-counter;
    margin-bottom: var(--espacement-xs);
}

.table-des-matieres a {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    color: var(--couleur-texte);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    transition: color var(--transition-rapide);
}

.table-des-matieres a::before {
    content: counter(toc-counter) ".";
    color: var(--couleur-primaire);
    font-weight: 600;
    min-width: 1.5rem;
}

.table-des-matieres a:hover {
    color: var(--couleur-primaire);
}

.formation-mini-carte h4 {
    font-size: 1rem;
    margin-bottom: var(--espacement-xs);
}

.formation-mini-carte p {
    font-size: 0.9rem;
    color: var(--couleur-texte-clair);
    margin-bottom: var(--espacement-sm);
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

.articles-similaires {
    list-style: none;
    padding-left: 0;
}

.articles-similaires li {
    margin-bottom: var(--espacement-sm);
    padding-bottom: var(--espacement-sm);
    border-bottom: 1px solid var(--couleur-bordure);
}

.articles-similaires li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.articles-similaires a {
    display: block;
}

.similaire-titre {
    display: block;
    color: var(--couleur-texte);
    font-weight: 500;
    margin-bottom: 0.2rem;
    transition: color var(--transition-rapide);
}

.articles-similaires a:hover .similaire-titre {
    color: var(--couleur-primaire);
}

.similaire-date {
    font-size: 0.8rem;
    color: var(--couleur-texte-clair);
}

/* ===========================================
   COMMENTAIRES
   =========================================== */

.commentaires-section {
    margin-top: var(--espacement-xl);
    background: var(--couleur-fond-carte);
    border-radius: var(--rayon-bordure);
    box-shadow: var(--ombre-legere);
    padding: var(--espacement-lg);
}

.commentaires-section h2 {
    font-size: 1.5rem;
    margin-bottom: var(--espacement-lg);
}

.commentaires-count {
    color: var(--couleur-texte-clair);
    font-weight: 400;
}

.commentaires-liste {
    margin-bottom: var(--espacement-xl);
}

.commentaire {
    padding: var(--espacement-md);
    background: var(--couleur-fond);
    border-radius: var(--rayon-bordure);
    margin-bottom: var(--espacement-md);
}

.commentaire-reponse {
    margin-left: var(--espacement-lg);
    margin-top: var(--espacement-md);
    border-left: 3px solid var(--couleur-primaire);
}

.commentaire-header {
    display: flex;
    align-items: center;
    gap: var(--espacement-sm);
    margin-bottom: var(--espacement-sm);
}

.commentaire-avatar {
    width: 45px;
    height: 45px;
    background: var(--couleur-primaire);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.commentaire-avatar-equipe {
    background: var(--couleur-secondaire);
}

.commentaire-auteur {
    font-weight: 600;
    color: var(--couleur-primaire-foncee);
}

.badge-equipe {
    background: var(--couleur-secondaire);
    color: white;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    margin-left: 0.5rem;
    font-weight: 600;
}

.commentaire-date {
    display: block;
    font-size: 0.8rem;
    color: var(--couleur-texte-clair);
}

.commentaire-contenu {
    margin-bottom: var(--espacement-sm);
}

.commentaire-contenu p {
    margin-bottom: 0;
    line-height: 1.7;
}

.commentaire-actions {
    display: flex;
    gap: var(--espacement-sm);
}

.commentaire-repondre {
    background: none;
    border: none;
    color: var(--couleur-primaire);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
}

.commentaire-repondre:hover {
    text-decoration: underline;
}

.commentaire-formulaire h3 {
    font-size: 1.25rem;
    margin-bottom: var(--espacement-xs);
}

.commentaire-info {
    font-size: 0.9rem;
    color: var(--couleur-texte-clair);
    margin-bottom: var(--espacement-md);
}

/* --- Responsive blog --- */
@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        position: static;
        margin-top: var(--espacement-lg);
    }
    
    .toc-bloc {
        display: none;
    }
}

@media (max-width: 768px) {
    .carte-article {
        flex-direction: column;
    }
    
    .carte-article-image {
        flex: 0 0 180px;
    }
    
    .blog-filtres {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-header h1 {
        font-size: 1.6rem;
    }
    
    .article-navigation {
        grid-template-columns: 1fr;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .commentaire-reponse {
        margin-left: var(--espacement-sm);
    }
}

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

/* ===========================================
   UTILITAIRES D'IMPRESSION
   =========================================== */

/* Masquer à l'écran, afficher à l'impression */
.print-only {
    display: none !important;
}

/* La classe no-print est gérée dans print.css */
.print-actions {
    margin-bottom: var(--espacement-md);
}

/* ===========================================
   SECTIONS SPÉCIFIQUES ATELLANE
   =========================================== */

/* --- Chiffres clés --- */
.chiffres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--espacement-lg);
    text-align: center;
}

.chiffre-item {
    padding: var(--espacement-md);
}

.chiffre-nombre {
    font-family: var(--police-titre);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--couleur-primaire);
    line-height: 1;
    margin-bottom: var(--espacement-xs);
}

.chiffre-label {
    font-size: 0.95rem;
    color: var(--couleur-texte-clair);
    line-height: 1.4;
}

/* --- Références clients --- */
.references-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--espacement-md);
}

.reference-item {
    background: var(--couleur-fond);
    padding: var(--espacement-md) var(--espacement-sm);
    border-radius: var(--rayon-bordure);
    text-align: center;
    font-weight: 600;
    color: var(--couleur-texte);
    border: 1px solid var(--couleur-bordure);
    transition: all var(--transition-rapide);
}

.reference-item:hover {
    border-color: var(--couleur-primaire);
    color: var(--couleur-primaire);
    transform: translateY(-2px);
    box-shadow: var(--ombre-legere);
}

/* --- Présentation formateur --- */
.formateur-presentation {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.formateur-info h2 {
    color: var(--couleur-primaire-foncee);
    margin-bottom: var(--espacement-xs);
}

.formateur-titre {
    font-size: 1.1rem;
    color: var(--couleur-primaire);
    font-weight: 600;
    margin-bottom: var(--espacement-md);
}

.formateur-info p {
    text-align: left;
    margin-bottom: var(--espacement-sm);
    line-height: 1.8;
}

/* --- Section CTA améliorée --- */
.cta-section {
    background: linear-gradient(135deg, var(--couleur-primaire) 0%, var(--couleur-primaire-foncee) 100%);
    color: white;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: var(--espacement-sm);
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: var(--espacement-md);
    font-size: 1.1rem;
}

.cta-content .btn-primaire {
    background: white;
    color: var(--couleur-primaire-foncee);
}

.cta-content .btn-primaire:hover {
    background: var(--couleur-fond);
}

/* --- Responsive pour nouvelles sections --- */
@media (max-width: 992px) {
    .chiffres-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .references-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .chiffres-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--espacement-md);
    }
    
    .chiffre-nombre {
        font-size: 2.5rem;
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .chiffres-grid {
        grid-template-columns: 1fr;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   ICÔNES GOOGLE MATERIAL SYMBOLS
   =========================================== */

/* Style de base pour les icônes Material */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    vertical-align: middle;
}

/* Icône dans le footer (fond sombre = icône blanche) */
.footer .material-symbols-outlined {
    color: white;
    font-size: 18px;
    margin-right: 6px;
}

/* Icône dans les cartes de contact (fond bleu = icône blanche) */
.contact-info-icon .material-symbols-outlined {
    color: white;
    font-size: 32px;
}

/* Icône dans les méta-informations des formations */
.formation-meta .material-symbols-outlined {
    font-size: 18px;
    vertical-align: text-bottom;
    margin-right: 4px;
    color: var(--couleur-primaire);
}

/* Icône dans les badges et labels */
.badge .material-symbols-outlined,
.tag .material-symbols-outlined {
    font-size: 16px;
    margin-right: 4px;
}

/* Icône de grande taille pour les sections */
.icon-large .material-symbols-outlined {
    font-size: 48px;
}

/* Icône blanche (pour fonds colorés) */
.icon-white .material-symbols-outlined,
.material-symbols-outlined.icon-white {
    color: white;
}

/* Icône colorée (couleur primaire) */
.icon-primary .material-symbols-outlined,
.material-symbols-outlined.icon-primary {
    color: var(--couleur-primaire);
}

/* Icône dans la bannière de page (fond bleu) */
.page-header .material-symbols-outlined {
    color: white;
}

/* Icône dans les boutons */
.btn .material-symbols-outlined {
    font-size: 20px;
    margin-right: 6px;
    vertical-align: middle;
}

/* Icône dans les listes du footer */
.footer-section li .material-symbols-outlined {
    font-size: 16px;
    margin-right: 8px;
    vertical-align: middle;
    opacity: 0.9;
}

/* Icône dans les cartes de domaine (page accueil) */
.domaine-icon .material-symbols-outlined {
    font-size: 40px;
    color: var(--couleur-primaire);
}

/* Icône dans les articles de blog */
.meta-icon .material-symbols-outlined {
    font-size: 16px;
    margin-right: 4px;
    color: var(--couleur-texte-clair);
}

/* Icône du captcha */
.captcha-container .material-symbols-outlined {
    font-size: 20px;
    vertical-align: middle;
}

/* Variantes de taille */
.material-symbols-outlined.icon-sm { font-size: 16px; }
.material-symbols-outlined.icon-md { font-size: 24px; }
.material-symbols-outlined.icon-lg { font-size: 32px; }
.material-symbols-outlined.icon-xl { font-size: 48px; }
