:root {
    --primary: #003366; /* Bleu transport */
    --secondary: #f39c12; /* Orange action */
    --light: #f4f4f4;
    --dark: #333;
}
html {
    /* Active le défilement fluide pour tout le site */
    scroll-behavior: smooth;
    
    /* Empêche la Navbar de cacher le titre de la section */
    /* Ajustez les 80px selon la hauteur de votre navbar */
    scroll-padding-top: 80px; 
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }

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

/* NAVBAR */
.navbar {
    background: #fff;
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo { font-size: 24px; font-weight: bold; color: var(--primary); text-decoration: none; }
.logo span { color: var(--secondary); }
/* Style du logo image */
.logo img {
    height: 50px; /* Ajustez la hauteur selon vos besoins */
    width: auto;  /* Garde les proportions de l'image */
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05); /* Petit effet de zoom au survol */
}

/* On s'assure que le conteneur du logo ne crée pas d'espacements inutiles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-menu { display: flex; list-style: none; }
.nav-menu li a { padding: 0 15px; text-decoration: none; color: var(--dark); font-weight: 500; }

.contact-num { color: var(--primary); font-weight: bold; margin-right: 20px; text-decoration: none; }

.btn-login {
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-login:hover { background: var(--secondary); }

/* Cache le burger par défaut sur ordinateur */
.menu-burger {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    margin-left: 0px;
}

/* --- COMPORTEMENT PAR DÉFAUT (ORDINATEUR) --- */
.mobile-only {
    display: none; /* Cache le lien de connexion du menu burger sur PC */
}

/* --- COMPORTEMENT MOBILE (MAX 768px) --- */
@media (max-width: 768px) {
    /* Cache le bouton de connexion original et le numéro */
    .desktop-only, .contact-num {
        display: none !important;
    }

	.nav-menu {
        display: flex !important; /* Force l'affichage en flexbox */
        flex-direction: column;
        position: fixed;
        top: 80px; /* Aligné sous la navbar */
        left: -100%; /* Caché à gauche */
        width: 100%;
        height: calc(100vh - 80px); /* Prend toute la hauteur restante */
        background-color: #ffffff;
        z-index: 9999; /* Passe au-dessus de TOUT (slider inclus) */
        transition: 0.4s ease-in-out;
        padding-top: 30px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    /* Cette classe est ajoutée par le JavaScript */
    .nav-menu.active {
        left: 0; /* Fait glisser le menu vers l'intérieur */
    }
    /* Affiche le lien de connexion dans le menu burger */
    .mobile-only {
        display: block;
        width: 100%;
        padding: 0 20px;
    }

    .btn-login-mobile {
        display: block;
        background: var(--secondary);
        color: #fff !important;
        padding: 12px;
        border-radius: 8px;
        font-weight: bold;
        text-decoration: none;
        margin-top: 10px;
    }

    /* Ajustement de la position du burger pour qu'il soit bien aligné à droite */
    .menu-burger {
        display: block;
        margin-left: auto; /* Pousse le burger vers la droite */
        padding: 10px;
    }
}


/* SLIDER */
.hero-slider .swiper { width: 100%; height: 70vh; }
.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.slide-content { background: rgba(0,0,0,0.5); padding: 40px; border-radius: 10px; }
.slide-content h1 { font-size: 3rem; margin-bottom: 10px; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-menu, .contact-num { display: none; } /* On simplifie pour mobile */
	.logo img {
    height: 30px; /* Ajustez la hauteur selon vos besoins */
    width: auto;  /* Garde les proportions de l'image */
    display: block;
    transition: transform 0.3s ease;
}
}

/* SECTION À PROPOS */
/* SECTION À PROPOS */
/* SECTION À PROPOS */
/* SECTION À PROPOS */
.about-section {
    padding: 80px 20px;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap; /* Pour le responsive */
}

.about-img, .about-text {
    flex: 1;
    min-width: 300px;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 20px 20px 0px var(--primary); /* Décalage bleu moderne */
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.about-text .subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    margin: 25px 0;
}

.features-list li {
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dark);
}

.features-list i {
    color: var(--secondary);
    margin-right: 10px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
}

/* Ajustement Mobile */
@media (max-width: 992px) {
    .about-wrapper { flex-direction: column; text-align: center; }
    .about-img img { box-shadow: none; }
    .experience-badge { position: static; margin-top: 20px; display: inline-block; }
    .features-list { text-align: left; display: inline-block; }
}

/* SECTION SERVICES */
/* SECTION SERVICES */
/* SECTION SERVICES */
/* SECTION SERVICES */
.services-section {
    padding: 100px 0;
    background-color: #f9f9f9; /* Fond légèrement gris pour détacher de la section à propos */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin: 10px 0;
}

.header-line {
    width: 70px;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border-bottom: 5px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-15px);
    border-bottom: 5px solid var(--secondary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(0, 51, 102, 0.05); /* Couleur primaire très claire */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: 0.3s;
}

.icon-box i {
    font-size: 35px;
    color: var(--primary);
}

.service-card:hover .icon-box {
    background: var(--primary);
}

.service-card:hover .icon-box i {
    color: #fff;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 1.4rem;
}

.service-card p {
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    text-decoration: none;
    color: var(--primary);
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--secondary);
}


/* FOOTER */
/* FOOTER */
/* FOOTER */
/* FOOTER */
.main-footer {
    background: #1a1a1a; /* Noir très profond */
    color: #ffffff;
    padding: 80px 0 0 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--secondary);
}

.about-col p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 5px;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.contact-info p {
    color: #b0b0b0;
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--secondary);
    margin-right: 12px;
    width: 20px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    background: #111;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    color: #777;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .contact-info p {
        justify-content: center;
    }
}



/* --- SECTION ACTUALITÉS --- */
/* --- SECTION ACTUALITÉS --- */
/* --- SECTION ACTUALITÉS --- */
/* --- SECTION ACTUALITÉS --- */
/* --- SECTION ACTUALITÉS --- */
.news-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin: 10px 0;
}

.header-line {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto;
}

/* --- GRILLE --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

/* --- IMAGE & DATE --- */
.news-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-img-wrapper img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.news-date .day { display: block; font-size: 1.4rem; font-weight: bold; }
.news-date .month { font-size: 0.7rem; text-transform: uppercase; }

/* --- CONTENU --- */
.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.2rem;
}

.news-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--secondary);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 15px;
}

.view-all-wrapper {
    text-align: center;
    margin-top: 50px;
}


/* --- PAGE ARTICLE UNIQUE --- */
/* --- PAGE ARTICLE UNIQUE --- */
/* --- PAGE ARTICLE UNIQUE --- */
/* --- PAGE ARTICLE UNIQUE --- */
.article-hero {
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.article-hero h1 {
    font-size: 3rem;
    margin-top: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.article-meta .category { color: var(--secondary); }

/* --- LAYOUT --- */
.article-body-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: -60px; /* Chevauchement sur l'image hero */
    padding-bottom: 80px;
}

.article-main-content {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.content-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-top: 30px;
}

.btn-back-news {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.btn-back-news:hover { color: var(--secondary); }

/* --- SIDEBAR --- */
.article-sidebar .sidebar-card {
    background: var(--primary);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    position: sticky;
    top: 100px;
}

.btn-primary-small {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: bold;
}

/* --- MOBILE --- */
@media (max-width: 992px) {
    .article-body-wrapper { grid-template-columns: 1fr; margin-top: 20px; }
    .article-hero h1 { font-size: 2rem; }
    .article-main-content { padding: 30px; }
}
/* SECTION CONTACT */
/* SECTION CONTACT */
/* SECTION CONTACT */
/* SECTION CONTACT */
.contact-section { padding: 80px 0; background: #fff; }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-card {
    background: var(--primary);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
}

.contact-info-card h3 { margin-bottom: 20px; font-size: 1.8rem; }
.info-item { display: flex; align-items: center; margin-bottom: 20px; }
.info-item i { 
    width: 40px; height: 40px; background: rgba(255,255,255,0.1); 
    border-radius: 50%; display: flex; align-items: center; 
    justify-content: center; margin-right: 15px; color: var(--secondary);
}

.contact-form-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem;
}

.form-group input:focus { border-color: var(--primary); outline: none; }

.btn-submit {
    width: 100%; padding: 15px; background: var(--secondary); color: #fff;
    border: none; border-radius: 8px; font-size: 1.1rem; font-weight: bold;
    cursor: pointer; transition: 0.3s;
}
.btn-submit:hover { background: var(--primary); transform: translateY(-3px); }

@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; }
}

/* STYLES DES ALERTES */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.5s ease-out;
}

.alert i {
    font-size: 1.2rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Animation d'apparition */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* --- STYLE GÉNÉRAL DES PAGES DE CONTENU --- */

/* Bannière d'en-tête pour les pages (FAQ, CGV, etc.) */
.page-header {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), 
                url('https://images.unsplash.com/photo-1580674285054-bed31e145f59?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Conteneur de texte optimisé pour la lecture */
.legal-container {
    max-width: 900px; /* Plus étroit que le reste pour ne pas fatiguer les yeux */
    margin: 0 auto 80px;
    padding: 0 20px;
    line-height: 1.8;
    color: #444;
}

.legal-container h2 {
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.6rem;
    border-left: 5px solid var(--secondary);
    padding-left: 15px;
}

.legal-container p {
    margin-bottom: 20px;
    text-align: justify;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-container ul li {
    margin-bottom: 10px;
}

/* --- STYLE SPÉCIFIQUE FAQ --- */

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto 80px;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.faq-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--secondary);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.faq-question i {
    transition: 0.3s;
    color: var(--secondary);
}

.faq-answer {
    padding: 0 25px 25px;
    color: #666;
    display: none; /* Caché par défaut */
    border-top: 1px inset #f9f9f9;
    padding-top: 15px;
}

/* État actif géré par JS */
.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.4s ease;
}

.faq-item.active .faq-question {
    color: var(--secondary);
}

.faq-item.active i {
    transform: rotate(180deg);
}

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


/* GRILLE DE STATISTIQUES */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-details .stat-label {
    display: block;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.stat-details .stat-number {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
}

/* Couleurs des icônes */
.icon-blue { background: #e3f2fd; color: #2196f3; }
.icon-orange { background: #fff3e0; color: #ff9800; }
.icon-green { background: #e8f5e9; color: #4caf50; }
.icon-purple { background: #f3e5f5; color: #9c27b0; }

/* --- LOGIN PAGE STYLES --- */
/* --- LOGIN PAGE STYLES --- */
/* --- LOGIN PAGE STYLES --- */
/* --- LOGIN PAGE STYLES --- */
/* --- LOGIN PAGE STYLES --- */
.login-page {
    background-color: #f4f7f6;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 40px 20px;
}

.login-card {
    background: #fff;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.login-header h1 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.login-header p {
    color: #777;
    font-size: 0.9rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.input-with-icon input {
    padding-left: 45px !important;
}

.btn-login-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-login-submit:hover {
    background: var(--secondary);
}

.login-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 0.9rem;
}

.login-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.login-footer p {
    margin-top: 10px;
    color: #888;
}

/* --- PAGES D'AUTHENTIFICATION (Login, Forgot, Reset) --- */
/* --- PAGES D'AUTHENTIFICATION (Login, Forgot, Reset) --- */
/* --- PAGES D'AUTHENTIFICATION (Login, Forgot, Reset) --- */

.auth-body {
    background-color: #f4f7f6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.auth-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.auth-form h2 {
    color: var(--primary); /* Bleu Samassi */
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.auth-form p {
    color: #636e72;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* --- CHAMPS DE SAISIE --- */
.auth-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3436;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box; /* Important pour ne pas déborder */
}

.auth-form input:focus {
    outline: none;
    border-color: var(--secondary); /* Orange Samassi */
}

/* --- BOUTONS --- */
.btn-primary {
    width: 100%;
    background-color: var(--primary);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s;
}

.btn-primary:hover {
    background-color: #002244;
    transform: translateY(-2px);
}

.back-link {
    display: inline-block;
    margin-top: 25px;
    color: #636e72;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--secondary);
}

/* --- ALERTES ET MESSAGES --- */
.alert-success {
    background-color: #d1edda;
    color: #155724;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid #f5c6cb;
}

/* --- FAQ STYLES --- */
/* --- FAQ STYLES --- */
/* --- FAQ STYLES --- */
/* --- FAQ STYLES --- */
.faq-hero {
    background: var(--primary);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.faq-content { padding: 50px 0; max-width: 800px !important; }

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden;
}

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

.faq-question:hover { background: #f9f9f9; }

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-question.active { color: var(--secondary); }
.faq-question.active i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;           /* Caché par défaut */
    overflow: hidden;        /* Empêche le texte de dépasser */
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Animation fluide */
    background: #ffffff;
}

.faq-answer p {
    padding: 20px;           /* Espace interne pour le texte */
    margin: 0;
    color: #555;
	line-height: 1.6;
}

.faq-footer {
    margin-top: 50px;
    text-align: center;
    padding: 40px !important;
    border-top: 4px solid var(--secondary);
}
