/* --- 1. CONFIGURATION (Palette GTL Potato Officielle) --- */
:root {
    /* --- NOUVELLE PALETTE PLUS SOMBRE --- */
    --gtl-blue: #344498;      /* Bleu Nuit Profond (Plus classe) */
    --gtl-brown: #A67C52;     /* Marron Pomme de terre (Inchangé) */
    --gtl-gold: #C9A96E;      /* Or/Sable (Ressort mieux sur le bleu foncé) */
    
    --text-dark: #2A2A2A;     /* Noir doux */
    --light-bg: #F4F7F6;      /* Gris très clair */
    --white: #FFFFFF;
    
    --font-title: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

section, #savoir-faire, #valeurs, #contact {
    scroll-margin-top: 100px; 
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--light-bg);
    color: var(--text-dark);
    font-family: var(--font-body);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%; /* Padding réduit pour le logo image */
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 70px; /* Taille idéale pour la barre */
    width: auto;
    display: block;
}

.nav-links a {
    margin-left: 25px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}
.nav-links a:hover { color: var(--gtl-blue); }

.btn-pro {
    background-color: var(--gtl-blue);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
}
.btn-pro:hover {
    background-color: var(--gtl-gold); /* Devient or au survol */
    transform: translateY(-2px);
}

/* =======================================================
   NOUVEAU DESIGN HERO (MODE CLAIR / LIGHT MODE)
   ======================================================= */

.hero {
    min-height: 95vh;
    background-color: #ffffff; /* Fond blanc pur et éclatant */
    /* background-image retirée pour un style plus "Apple/Tesla" très épuré */
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden; 
}

/* On change l'overlay : au lieu d'un gros bloc bleu, on fait un reflet subtil */
.overlay {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.03) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-split {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px; /* On limite la largeur pour les très grands écrans */
    margin: 0 auto;
    gap: 50px;
    padding: 120px 5% 50px 5%; /* Espace pour la navbar */
}

/* --- COLONNE GAUCHE (TEXTE) --- */
.hero-left {
    flex: 1;
    text-align: left; 
    color: #1b2a4e; /* Le texte devient Bleu Nuit (Inversion) */
}

.hero-logo-img {
    max-width: 300px; /* Taille élégante */
    margin-bottom: 25px;
    filter: drop-shadow(0 15px 25px rgba(27, 42, 78, 0.1)); /* Ombre douce pour détacher le logo */
}

.hero-slogan {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem; /* Plus grand, plus impactant */
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1b2a4e;
    letter-spacing: -1px;
}

.hero-slogan span {
    color: #c5a059; /* "Partenaire" en Or GTL */
}

.hero-left p {
    font-size: 1.25rem;
    color: #64748b; /* Gris-bleu doux pour la lecture */
    margin-bottom: 45px;
    max-width: 500px;
    line-height: 1.6;
}

/* --- BOUTONS --- */
.hero-buttons {
    display: flex; 
    gap: 20px; 
}

.btn-primary {
    background-color: #c5a059; /* Fond Or */
    color: #ffffff;
    padding: 15px 40px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px; 
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3); /* Ombre dorée */
    border: none;
}

.btn-primary:hover {
    background-color: #1b2a4e; /* Devient bleu nuit au survol */
    color: #ffffff;
    transform: translateY(-4px); /* S'envole un peu plus haut */
    box-shadow: 0 15px 30px rgba(27, 42, 78, 0.25); /* L'ombre devient bleue */
}

/* --- COLONNE DROITE (VIDEO SMARTPHONE) --- */
.hero-right {
    flex: 1.2;
    display: flex;
    justify-content: center;
    position: relative;
}

.video-frame {
    width: 320px; /* Largeur d'un smartphone moderne */
    height: 600px;
    border-radius: 40px; /* Coins ultra-arrondis type iPhone */
    overflow: hidden;
    border: 12px solid #1b2a4e; /* La "coque" du téléphone en bleu GTL */
    box-shadow: 0 30px 60px rgba(27, 42, 78, 0.2); /* Ombre réaliste sur le sol */
    position: relative;
    z-index: 2;
    background: #000;
    transform: rotate(3deg); /* Petite rotation de 3 degrés (beaucoup plus naturel que -90 !) */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-frame:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.02); /* Se redresse au survol */
    border-color: #c5a059; /* La coque s'illumine en or */
    box-shadow: 0 40px 80px rgba(197, 160, 89, 0.3);
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* Petite décoration flottante derrière la vidéo */
.blob-deco {
    position: absolute;
    width: 300px; height: 300px;
    background: #c5a059;
    border-radius: 50%;
    filter: blur(80px); /* Tache de couleur floutée */
    opacity: 0.15;
    z-index: 1;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 992px) {
    .hero-split {
        flex-direction: column; 
        text-align: center;
        padding-top: 140px; /* Plus d'espace sous la navbar mobile */
    }
    
    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
    }
    
    .hero-slogan { font-size: 3rem; }
    .hero-logo-img { max-width: 220px; }
    
    .video-frame {
        width: 280px;
        height: 520px;
        transform: rotate(0deg); /* Droit sur mobile */
    }
}
/* --- 4. SERVICES --- */
.services { padding: 80px 0; background: var(--white); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { 
    font-family: var(--font-title); 
    font-size: 2.5rem; 
    color:#344498; 
    margin-bottom: 10px; 
    text-transform: uppercase; 
}
.separator { width: 80px; height: 5px; background: var(--gtl-gold); margin: 0 auto 20px auto; }

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

.card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--gtl-gold);
}

.icon-box {
    font-size: 3rem;
    color: var(--gtl-gold); /* Icônes en Or */
    margin-bottom: 20px;
}

.card h3 { font-family: var(--font-title); font-size: 1.5rem; margin-bottom: 15px; color: #344498; }
.card p { color: #666; line-height: 1.6; }

footer {
    background: var(--gtl-blue); /* Footer en Bleu GTL */
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-top: auto;
    border-top: 5px solid var(--gtl-gold);
}
footer a { color: var(--gtl-gold); }

.modal {
    display: none;
    position: fixed; 
    z-index: 2000;
    left: 0; top: 0; width: 100%; height: 100%; 
    background-color: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    width: 90%; max-width: 500px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    position: relative;
    animation: slideDown 0.3s ease-out;
    border-top: 5px solid var(--gtl-blue);
}

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

.close-btn {
    position: absolute; top: 15px; right: 20px;
    color: #aaa; font-size: 28px; font-weight: bold; cursor: pointer; transition: 0.2s;
}
.close-btn:hover { color: var(--gtl-blue); }

.modal-header h2 {
    color: var(--gtl-blue);
    font-family: var(--font-title);
    margin-top: 0;
}
.modal-header p { color: #666; font-size: 0.9em; margin-bottom: 20px; }

.quote-form input, .quote-form select, .quote-form textarea {
    width: 100%; padding: 12px; margin-bottom: 15px;
    border: 1px solid #ddd; border-radius: 4px;
    font-family: var(--font-body); box-sizing: border-box;
}
.quote-form textarea { resize: vertical; }
.input-group { display: flex; gap: 10px; }

.btn-submit {
    background-color: var(--gtl-gold);
    color: white; width: 100%; padding: 15px; border: none;
    font-size: 1rem; margin-top: 10px; font-weight: bold; border-radius: 4px; cursor: pointer;
}
.btn-submit:hover { background-color: var(--gtl-blue); box-shadow: 0 5px 15px rgba(56, 64, 143, 0.3); }

/* --- PAGE DE CONNEXION (Style Premium) --- */
.auth-page {
    /* Fond dégradé Bleu Nuit au lieu du plat */
    background: linear-gradient(135deg, var(--gtl-blue) 0%, #111b33 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column; /* Permet de mettre le lien "Retour" sous la carte */
    justify-content: center;
    align-items: center;
    margin: 0;
    position: relative;
}

/* Effet d'image de fond subtile (Optionnel) */
.auth-page::before {
    content: "";
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../img/transport.jpg'); /* Vérifie si tu as une image ici */
    background-size: cover; background-position: center;
    opacity: 0.1; z-index: 0;
}

.auth-form {
    background: white;
    padding: 40px;
    border-radius: 12px; /* Coins un peu plus ronds */
    width: 100%;
    max-width: 420px;
    /* Ombre plus douce et diffuse */
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
    z-index: 1;
    border-top: 5px solid var(--gtl-gold); /* La touche Or GTL en haut */
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-form h2 {
    color: var(--gtl-blue);
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* NOUVEAU : Wrapper pour mettre les icônes dans les champs */
.input-group {
    position: relative;
    margin-bottom: 20px;
    text-align: left;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gtl-gold);
    font-size: 1.1rem;
    z-index: 10;
}

.auth-form input {
    width: 100%;
    /* On laisse de la place à gauche pour l'icône */
    padding: 14px 15px 14px 45px;
    border: 2px solid #eee;
    border-radius: 50px; /* Champs arrondis modernes */
    font-size: 1rem;
    font-family: var(--font-body);
    box-sizing: border-box;
    transition: all 0.3s;
    background: #f9fbfd;
    outline: none;
}

.auth-form input:focus {
    border-color: var(--gtl-gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.15);
}

.auth-form button {
    width: 100%;
    background-color: var(--gtl-blue);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 50px; /* Bouton arrondi */
    font-weight: bold;
    cursor: pointer;
    font-family: var(--font-title);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(27, 42, 78, 0.3);
    margin-top: 10px;
}

.auth-form button:hover {
    background-color: var(--gtl-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* Style pour le Captcha */
.captcha-box {
    background: #f4f6f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #eef2f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Lien retour en bas */
.back-link {
    margin-top: 25px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    z-index: 1;
    transition: 0.3s;
}
.back-link:hover { color: white; }
/* Mobile */
@media (max-width: 768px) {
    .navbar { flex-direction: column; gap: 15px; padding: 15px; }
    .nav-links { display: flex; flex-direction: column; gap: 10px; text-align: center; }
    .nav-links a { margin: 0; }
    .hero h1 { font-size: 2.5rem; }
    .input-group { flex-direction: column; gap: 0; }
}

/* --- 8. TABLEAU DE BORD ADMIN --- */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden; /* Pour que les coins arrondis marchent */
}

.admin-table thead {
    background-color:  #344498;
    color: white;
}

.admin-table th, .admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.admin-table th {
    font-family: var(--font-title);
    font-weight: normal;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.admin-table tbody tr:hover {
    background-color: #f9f9f9;
}  

/* Petits badges pour le type de client */
.tag {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}
.tag-agri { background: #e8f5e9; color: #2e7d32; } /* Vert */
.tag-indus { background: #e3f2fd; color: #1565c0; } /* Bleu */
.tag-other { background: #fff3e0; color: #ef6c00; } /* Orange */

.empty-message {
    text-align: center;
    padding: 40px;
    color: #888;
    font-style: italic;
}
/* =======================================================
   ADMIN PANEL V2 (SIDEBAR LIGHT PREMIUM)
   ======================================================= */
.admin-container {
    display: flex;
    min-height: 100vh;
    background-color: #f4f6f9; /* Gardé, parfait pour le contraste */
}

/* Barre latérale gauche - Version CLAIRE */
.sidebar {
    width: 270px;
    background-color: #ffffff; /* Fond blanc pur */
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100%;
    left: 0; top: 0;
    box-shadow: 4px 0 25px rgba(52, 68, 152, 0.06); /* Ombre douce teintée Bleu GTL */
    z-index: 100;
}

.sidebar-header {
    padding: 35px 20px 25px 20px;
    text-align: center;
    background: #ffffff;
    border-bottom: 2px solid #f8fafc; /* Séparation ultra douce */
}

/* LOGO SIDEBAR - Intégré naturellement au fond blanc */
.sidebar-logo-img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}
.sidebar-logo-img:hover {
    transform: scale(1.05);
}

.sidebar-menu {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Design des liens au repos */
.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 14px 25px;
    color: #64748b; /* Gris texte élégant */
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-left: 4px solid transparent;
}

.sidebar-menu li a i {
    width: 35px;
    font-size: 1.2rem;
    color: #94a3b8; /* Icône légèrement plus claire */
    transition: all 0.3s ease;
}

/* Effet au survol : Touche GTL Or et Bleu */
.sidebar-menu li a:hover {
    background: rgba(197, 160, 89, 0.05); /* Fond très léger or */
    color: #344498; /* Texte Bleu GTL */
    border-left-color: #c5a059; /* Trait Or */
}
.sidebar-menu li a:hover i {
    color: #c5a059; /* Icône Or */
    transform: scale(1.1); /* Petit zoom sur l'icône */
}

/* Lien Actif (La page où l'on se trouve) */
.sidebar-menu li a.active {
    background: linear-gradient(90deg, rgba(52, 68, 152, 0.05) 0%, transparent 100%);
    color: #344498;
    border-left-color: #344498; /* Trait Bleu GTL pour la page active */
    font-weight: 700;
}
.sidebar-menu li a.active i {
    color: #344498;
}

/* --- BOUTON DÉCONNEXION SPÉCIFIQUE --- */
.sidebar-menu li a.logout-btn {
    color: #ef4444; /* Rouge doux */
}
.sidebar-menu li a.logout-btn i {
    color: #ef4444;
}
.sidebar-menu li a.logout-btn:hover {
    background: rgba(239, 68, 68, 0.05);
    color: #dc2626;
    border-left-color: #ef4444;
}

/* Petite ligne pour séparer le menu principal des actions de sortie */
.sidebar-divider {
    margin: 15px 25px;
    border-top: 1px solid #f1f5f9;
}

/* Zone principale droite */
.main-content {
    margin-left: 260px; /* Pour ne pas passer sous la sidebar */
    padding: 40px;
    width: 100%;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.page-header h1 {
    color:  #344498;
    font-family: var(--font-title);
}

/* Boutons d'action dans le header */
.header-actions .btn-logout {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Adaptation de ton tableau existant */
.admin-table-wrapper {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* =======================================================
       SECTION CHIFFRES CLÉS (LIGHT MODE PREMIUM)
       ======================================================= */
    .stats-section {
        background-color: #ffffff; /* Fond blanc pur */
        padding: 100px 0;
        text-align: center;
        position: relative;
    }

    .stats-header h2 {
        color: #344498; /* Bleu GTL */
        font-family: 'Oswald', sans-serif;
        font-size: 2.8rem;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .stats-header .separator {
        width: 80px;
        height: 3px;
        background: #c5a059; /* Or GTL */
        margin: 0 auto 60px auto;
    }

    .stats-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .stat-item {
        background: #ffffff;
        padding: 45px 20px;
        border-radius: 4px;
        box-shadow: 0 10px 40px rgba(52, 68, 152, 0.08); /* Ombre douce teintée Bleu GTL */
        border-bottom: 4px solid #c5a059; /* Barre Or GTL en bas */
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Effet de soulèvement au survol de la carte */
    .stat-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(52, 68, 152, 0.15);
    }

    .stat-item i {
        color: #c5a059; /* Or GTL */
        font-size: 3.5rem;
        margin-bottom: 25px;
    }

    .stat-item .counter {
        color: #344498; /* Bleu GTL */
        font-family: 'Oswald', sans-serif;
        font-size: 4rem;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 20px;
    }

    /* Le petit trait fin sous le nombre */
    .stat-item .stat-line {
        width: 70%;
        height: 1px;
        background-color: #c5a059; 
        margin: 0 auto 20px auto;
    }

    .stat-item p {
        color: #64748b; /* Gris texte élégant */
        font-family: 'Roboto', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0;
    }

/* --- 10. SECTION CONTACT & MAP --- */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap; /* Pour que ça passe à la ligne sur mobile */
    gap: 40px;
    align-items: center;
}

/* Colonne Gauche : Infos */
.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--gtl-gold); /* Icône Marron */
    margin-right: 20px;
    margin-top: 5px;
    width: 30px; /* Pour bien aligner */
    text-align: center;
}

.info-item h4 {
    margin: 0 0 5px 0;
    font-family: var(--font-title);
    color: #344498;
    font-size: 1.2rem;
}

.info-item p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

.info-item small {
    color: #888;
    font-style: italic;
}

/* Colonne Droite : Carte */
.contact-map {
    flex: 1;
    min-width: 300px;
    background: #eee;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-map iframe {
    border-radius: 4px;
    display: block; /* Enlève les petits espaces blancs fantômes */
}

/* --- 12. PIED DE PAGE (FOOTER) --- */
.main-footer {
    background-color: var(--gtl-blue); 
    color: #b0c4de; /* Texte gris-bleuté clair (moins agressif que le blanc pur) */
    padding-top: 60px;
    font-size: 0.95rem;
}

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

.footer-logo {
    height: 60px; /* Ajuste selon ton logo */
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Rend le logo blanc automatiquement ! */
    opacity: 0.8;
}

.footer-col h3 {
    color: var(--white);
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

/* Petite ligne dorée sous les titres */
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gtl-gold);
}

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

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

.footer-col ul li a {
    color: #b0c4de;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gtl-gold);
    padding-left: 5px; /* Petit effet de mouvement au survol */
}

/* Réseaux sociaux */
.social-links {
    margin-top: 20px;
}
.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: 0.3s;
}
.social-links a:hover { color: var(--gtl-gold); transform: translateY(-3px); display: inline-block; }

/* Barre de copyright en bas */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-logo {
    height: 130px; /* La taille */
    margin-bottom: 20px; /* L'espace en dessous */
    
    /* ON SUPPRIME TOUS LES FILTRES QUI POURRAIENT GÊNER */
    filter: none !important; 
    opacity: 1 !important; /* On le rend 100% visible */
    
    /* Optionnel : pour faire joli, on arrondit les coins du carré blanc */
    border-radius: 8px; 
}
/* --- MESSAGE DE SUCCÈS (MODALE) --- */
.success-message {
    text-align: center;
    padding: 30px 20px;
    animation: fadeIn 0.5s ease;
}

.success-message i {
    font-size: 4rem;
    color: #27ae60; /* Un beau vert émeraude */
    margin-bottom: 20px;
}

.success-message h3 {
    font-family: var(--font-title);
    color: var(--gtl-blue);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.success-message p {
    color: #666;
    margin-bottom: 25px;
}

/* Petite animation d'apparition */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- FORMULAIRES ADMIN MODERNES --- */

/* Pour centrer le formulaire verticalement et horizontalement dans la zone principale */
.main-content.center-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px); /* Hauteur totale moins un peu de marge */
}

/* La carte du formulaire */
.form-card-modern {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08); /* Ombre douce et large */
    width: 100%;
    max-width: 600px; /* Largeur max confortable */
    border-top: 4px solid var(--gtl-gold); /* Petite touche de couleur GTL en haut */
}

/* Le titre */
.form-title {
    text-align: center;
    color: var(--gtl-blue);
    font-family: var(--font-title);
    text-transform: uppercase;
    margin-bottom: 35px;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

/* Les champs */
.form-group {
    margin-bottom: 25px;
}

/* Pour mettre 2 champs côte à côte si besoin */
.form-row {
    display: flex;
    gap: 20px;
}
.form-group.half {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--gtl-blue);
}

.form-group label i {
    color: var(--gtl-gold); /* Icônes en doré */
    margin-right: 8px;
}

.required { color: #e74c3c; } /* Astérisque rouge */

/* Inputs et Selects modernes */
.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee; /* Bordure gris clair par défaut */
    border-radius: 8px;
    box-sizing: border-box;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Effet quand on clique dans un champ */
.form-group input:focus, .form-group select:focus {
    border-color: var(--gtl-gold); /* Devient doré */
    outline: none;
    box-shadow: 0 0 0 4px rgba(198, 166, 100, 0.15); /* Petit halo doré */
}

/* Zone des boutons */
.form-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* Bouton Valider (Gros et doré/marron) */
.btn-submit {
    flex: 2; /* Prend 2 fois plus de place */
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: var(--gtl-gold);
    color: white;
    font-weight: bold;
    font-family: var(--font-title);
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}
.btn-submit:hover { background: var(--gtl-blue); }

/* Bouton Annuler (Plus discret) */
.btn-cancel {
    flex: 1; /* Prend moins de place */
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: #777;
    border: 2px solid #eee;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}
.btn-cancel:hover { background: #f5f5f5; color: #333; border-color: #ddd; }

/* Alertes */
.alert { padding: 15px; border-radius: 8px; margin-bottom: 30px; font-weight: 500; }
.alert.error { background: #ffebee; color: #c62828; border-left: 5px solid #c62828; }

/* --- DASHBOARD CLIENT --- */

/* Grille des cartes */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

/* Design d'une carte */
.stat-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px); /* Petit effet de saut au survol */
}

/* Les icônes rondes */
.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-right: 20px;
    color: white;
}

/* Couleurs des icônes */
.stat-icon.green { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.stat-icon.gold { background: linear-gradient(135deg, #f1c40f, #f39c12); }
.stat-icon.blue { background: linear-gradient(135deg, #3498db, #2980b9); }

.stat-info h3 {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 500;
}

.stat-info p {
    margin: 5px 0 0 0;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--gtl-blue);
    font-family: var(--font-title);
}

/* Bouton téléchargement (tableau) */
.btn-download {
    color: var(--gtl-gold);
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #eee;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.2s;
}
.btn-download:hover {
    background: var(--gtl-gold);
    color: white;
}

/* Badge date header */
.date-badge {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    color: #666;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* --- HEADER SPECIFIQUE PAGE MATERIEL --- */
.page-header-hero {
    height: 40vh; /* Moins haut que l'accueil */
    background: linear-gradient(rgba(30, 39, 46, 0.8), rgba(30, 39, 46, 0.8)), url('../img/transport.jpg'); /* Mets une image de fond si tu veux */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px; /* Pour passer sous la navbar fixe */
}

/* =========================================
   PAGE MATÉRIEL & INNOVATION
   ========================================= */

/* --- BANDEAU HAUT DE PAGE (HERO) --- */
.page-header-hero {
    height: 40vh;
    background: linear-gradient(rgba(30, 39, 46, 0.7), rgba(30, 39, 46, 0.7)), url('../img/transport.jpg'); /* Image de fond par défaut */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0px; /* Compensation navbar fixe */
}

/* --- SECTION INNOVATION (TRIEUR OPTIQUE) --- */
.innovation-section {
    background-color: #ffffff;
    padding: 80px 0;
    overflow: hidden;
}

.innovation-wrapper {
    display: flex;
    align-items: center; /* Centre le texte par rapport à la hauteur totale */
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* --- PARTIE GAUCHE (TEXTE) --- */
.innovation-content {
    flex: 1;
    min-width: 300px;
}

.badge-tech {
    display: inline-block;
    background-color: var(--gtl-blue);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.innovation-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--gtl-blue);
}

.text-gold { color: var(--gtl-gold); }

.innovation-desc {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    border-left: 4px solid var(--gtl-gold);
    padding-left: 20px;
}

.innovation-features { list-style: none; padding: 0; }

.innovation-features li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feat-icon {
    background-color: #f4f4f4;
    color: var(--gtl-blue);
    min-width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: 0.3s;
}

.innovation-features li:hover .feat-icon {
    background-color: var(--gtl-gold);
    color: white;
}

.feat-text strong { display: block; font-size: 1.05rem; color: var(--gtl-blue); }
.feat-text span { font-size: 0.9rem; color: #777; }

/* --- PARTIE DROITE (NOUVELLE PILE : IMG + VIDEO) --- */
.innovation-media-stack {
    flex: 1.2; /* Un peu plus large pour bien voir la vidéo */
    min-width: 300px;
    display: flex;
    flex-direction: column; /* Empile l'image et la vidéo l'une sous l'autre */
    gap: 30px; /* Espace entre l'image et la vidéo */
}

/* Style commun pour les boites (Img et Vidéo) */
.media-box {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background-color: #000;
    position: relative;
    transition: transform 0.3s ease;
}

.media-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* --- Modifie ce bloc pour la Vidéo du Bas --- */
.bottom-box {
    width: 90%; /* On réduit à 85% de la largeur (au lieu de 100%) */
    margin: 0 auto; /* MAGIQUE : Ça centre la vidéo alignée au milieu */
}

/* Assure-toi que ce bloc existe toujours en dessous */
.bottom-box video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 15px; /* Petit rappel des arrondis sur la vidéo elle-même */
}

/* L'image du haut */
.top-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* La vidéo du bas */
.bottom-box video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9; /* Force le format cinéma */
    object-fit: cover;
}

/* RESPONSIVE : Sur mobile, on empile tout proprement */
@media (max-width: 768px) {
    .innovation-wrapper {
        flex-direction: column;
    }
    .innovation-media-stack {
        width: 100%;
    }
}
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.equip-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.equip-card:hover { transform: translateY(-10px); }

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

.equip-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.equip-card:hover .equip-image img { transform: scale(1.1); }

.equip-image .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(44, 62, 80, 0.6);
    display: flex; justify-content: center; align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.equip-image .overlay i {
    color: var(--gtl-gold);
    font-size: 3rem;
}

.equip-card:hover .equip-image .overlay { opacity: 1; }

.equip-content { padding: 25px; }

.equip-content h3 {
    color: var(--gtl-blue);
    font-family: var(--font-title);
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.swal2-popup.custom-pdf-modal {
    background: transparent !important;
    box-shadow: none !important; /* ❌ On retire l'ombre fantôme ici */
    border: none !important;
    padding: 0 !important;
}

.pdf-global-container {
    background-color: transparent;
    border-radius: 15px;         /* Les beaux arrondis */
    overflow: hidden;            /* Coupe tout ce qui dépasse */
    position: relative;
}

.pdf-header-bar {
    background-color: #1b2a4e;
    color: white;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid #c5a059;
}

.pdf-header-bar h3 {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pdf-iframe-wrapper {
    background-color: #f4f6f9;
    padding: 25px;
    height: 70vh;
    min-height: 500px;
}

.pdf-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: white;
}

.custom-pdf-modal .swal2-close {
    position: absolute !important;
    top: 10px !important;
    right: 15px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 2rem !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    z-index: 100; 
    transition: all 0.3s ease;
}

.custom-pdf-modal .swal2-close:hover {
    color: #c5a059 !important;
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50%;
}
/* --- STYLE MODERNE POUR LA POPUP D'ENVOI DE DOCUMENT --- */

/* On donne un style de "carte" à la popup elle-même */
.custom-upload-popup {
    border-radius: 15px !important;
    padding: 0 !important; /* On gère le padding nous-mêmes */
    box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
    overflow: hidden; /* Pour que l'en-tête ne dépasse pas */
}

/* L'en-tête stylisé avec l'icône */
.upload-card-header {
    background: linear-gradient(135deg, #1b2a4e 0%, #2c3e50 100%);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    color: white;
}

/* Le conteneur rond pour l'icône */
.upload-icon-wrapper {
    background: rgba(255, 255, 255, 0.15);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.8rem;
    color: #c5a059; /* Or GTL */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Le titre et le sous-titre */
.upload-title-wrapper h3 {
    margin: 0;
    font-size: 1.4rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}

.upload-title-wrapper p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Le corps du formulaire */
.upload-card-body {
    padding: 30px;
    background: #fff;
}

/* Style des labels */
.upload-label {
    display: block;
    text-align: left;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1b2a4e;
    font-size: 0.95rem;
}
.upload-label i { margin-right: 8px; color: #c5a059; }

/* Style des champs (select et file) */
.upload-input-field {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    color: #555;
    transition: all 0.3s;
    outline: none;
    background: #f9f9f9;
}
.upload-input-field:focus {
    border-color: #c5a059;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

/* Style spécifique pour le champ fichier */
input[type="file"].upload-input-field {
    padding: 10px;
    cursor: pointer;
}
/* Customisation du bouton "Choisir un fichier" (marche sur Chrome/Edge) */
input[type="file"].upload-input-field::file-selector-button {
    background: #1b2a4e;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    margin-right: 15px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 500;
}
input[type="file"].upload-input-field::file-selector-button:hover {
    background: #2c3e50;
}

/* Style des boutons d'action en bas */
.swal2-actions {
    padding-bottom: 25px !important;
    border-top: 1px solid #eee;
    padding-top: 20px !important;
}
.swal2-confirm, .swal2-cancel {
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    padding: 12px 30px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
}
/* --- STYLE MODERNE POUR LA LECTURE DE MESSAGE (ADMIN) --- */

/* L'en-tête (similaire à l'envoi de document) */
.message-card-header {
    background: linear-gradient(135deg, #1b2a4e 0%, #34495e 100%);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Pour écarter le titre de la date */
    color: white;
    border-bottom: 4px solid #c5a059; /* Liseré Or */
}

.message-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.message-icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #c5a059;
}

.message-title h3 {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #fff;
}

.message-date {
    background: rgba(0,0,0,0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #ccc;
    font-weight: 500;
}

/* Le corps du message */
.message-body-content {
    padding: 25px 30px;
    text-align: left;
    color: #333;
}

/* --- CORRECTION DEFINITIVE POPUP --- */

/* 1. On supprime TOUTES les marges internes de la popup pour que le header colle aux bords */
.custom-upload-popup .swal2-html-container {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden; /* Évite les débordements */
}

/* 2. La grille d'infos restructurée (Plus solide) */
.info-grid {
    display: flex; /* On passe en Flexbox, plus souple que Grid ici */
    justify-content: space-between; /* Ecarte les éléments (Gauche / Droite) */
    align-items: center; /* Aligne verticalement */
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    text-align: left; /* Force l'alignement à gauche */
}

/* Partie Gauche : Nom + Profil */
.info-left {
    display: flex;
    flex-direction: column; /* L'un sous l'autre */
    gap: 5px;
    max-width: 55%; /* Limite la largeur pour laisser place à l'email */
}

/* Partie Droite : Email */
.info-right {
    text-align: right;
    max-width: 45%;
}

.info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #999;
    font-weight: bold;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 3px;
}

.info-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1b2a4e;
    line-height: 1.2;
}

/* Badge Profil amélioré */
.profil-badge {
    background: #f0f2f5;
    color: #555;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    width: fit-content; /* S'adapte au texte */
    margin-top: 4px;
}

.email-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    word-break: break-all; /* Coupe l'email s'il est vraiment trop long */
}

/* La bulle de message */
.message-bubble {
    background: #f8f9fa;
    border-left: 4px solid #1b2a4e;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    position: relative;
}

.message-bubble::before {
    content: '\f10d'; /* Icone guillemet FontAwesome */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -10px;
    left: 10px;
    background: #1b2a4e;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}
/* --- STYLE FORMULAIRE CONTACT PREMIUM --- */

/* On réutilise les bases de tes popups précédentes pour la cohérence */
.contact-card-header {
    background: linear-gradient(135deg, #2f3d87 0%, #2f3d87 100%);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    color: white;
    border-bottom: 4px solid #c5a059;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #c5a059;
    margin-right: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-title h3 {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
}
.contact-title p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Le corps du formulaire */
.contact-body {
    padding: 30px;
    text-align: left;
}

/* Style des champs (Inputs) */
.contact-group {
    margin-bottom: 18px;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1b2a4e;
    margin-bottom: 8px;
}
.contact-label i { color: #c5a059; margin-right: 6px; width: 16px; text-align: center;}

.contact-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    background: #f9f9f9;
    transition: all 0.3s;
    outline: none;
    box-sizing: border-box; /* Important pour ne pas dépasser */
}

.contact-input:focus {
    border-color: #c5a059;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

/* Mise en page en colonne pour Nom/Email */
.contact-row {
    display: flex;
    gap: 20px;
}
.contact-col {
    flex: 1; /* Chaque colonne prend 50% */
}
/* --- WIDGET MÉTÉO PREMIUM (Version Blanche) --- */
.weather-banner {
    background: #ffffff; /* Fond blanc */
    color: #1b2a4e; /* Texte Bleu Nuit GTL */
    border-radius: 12px;
    padding: 20px 30px;
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Ombre légère pour le détacher du fond */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #c5a059; /* On garde la touche Or GTL */
    animation: fadeIn 0.5s ease-in-out;
}

.weather-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.weather-icon-box {
    font-size: 2.5rem;
    color: #c5a059; /* L'icône principale reste Dorée */
}

.weather-main-text h3 {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 600; /* Un peu plus gras pour le contraste */
}
.weather-main-text p {
    margin: 0;
    opacity: 0.7; /* Un gris foncé pour le sous-texte */
    font-size: 1rem;
    text-transform: capitalize;
    font-weight: 500;
}

.weather-details {
    display: flex;
    gap: 25px;
    align-items: center;
}

.weather-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1b2a4e; /* Texte des détails en bleu foncé */
}

/* Les petites icônes (vent, humidité) passent en bleu foncé */
.weather-item i {
    color: #1b2a4e;
    opacity: 0.8;
}

/* Le badge de localisation s'adapte au fond blanc */
.location-badge {
    background: #f0f2f5; /* Fond gris très clair */
    color: #1b2a4e; /* Texte foncé */
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* =======================================================
       DESIGN DE LA FENÊTRE DE VALIDATION PREMIUM (ADMIN GTL)
       ======================================================= */
    
    
    div:where(.swal2-container) .premium-popup {
        border-radius: 20px !important;
        border: 2px solid #c5a059 !important; /* Bordure Bronze/Or GTL */
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
        padding: 20px 20px 30px 20px !important;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%) !important;
    }
    
    /* Variante Bordure Verte pour la popup de succès */
    div:where(.swal2-container) .premium-popup-success {
        border-radius: 20px !important;
        border: 2px solid #2ecc71 !important; /* Bordure Verte Succès */
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
        padding: 20px 20px 30px 20px !important;
        background: #ffffff !important;
    }

    .validation-icon-box {
        position: relative;
        margin: 20px auto 25px auto;
        height: 90px;
        width: 90px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .icon-animation-container {
        font-size: 3.5rem;
        animation: float 3s ease-in-out infinite;
        z-index: 2;
    }
    .pulse-gtl-gold {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: 100%; height: 100%;
        background: rgba(197, 160, 89, 0.15); /* GTL Gold clair */
        border-radius: 50%;
        animation: pulseGold 2s ease-out infinite;
        z-index: 1;
    }
    
    .premium-title {
        font-family: 'Oswald', sans-serif !important;
        text-transform: uppercase;
        font-size: 2rem !important;
        margin-bottom: 15px !important;
        letter-spacing: 0.5px;
    }
    .premium-text {
        color: #64748b !important; 
        font-family: 'Roboto', sans-serif !important;
        font-size: 1.05rem !important;
        line-height: 1.6 !important;
        padding: 0 20px;
    }
    
    /* BOUTONS GTL PILL (Ronds) */
    
    /* Bouton Supprimer (Bronze GTL) */
    .premium-delete-btn-gtl {
        background-color: #c5a059 !important; /* Bronze/Or GTL */
        color: #ffffff !important;
        border-radius: 50px !important; /* Rond */
        padding: 12px 30px !important;
        font-family: 'Oswald', sans-serif !important;
        font-size: 1.1rem !important;
        text-transform: uppercase;
        font-weight: 700 !important;
        letter-spacing: 1px;
        transition: all 0.3s ease !important;
        border: none !important;
        margin: 10px !important;
    }
    .premium-delete-btn-gtl:hover {
        background-color: #344498 !important; /* Change en Bleu GTL au survol */
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(52, 68, 152, 0.3) !important;
    }

    /* Bouton Annuler (Bleu Profond GTL) */
    .premium-cancel-btn-gtl {
        background-color: #344498 !important; /* Bleu Profond GTL */
        color: #ffffff !important;
        border-radius: 50px !important; /* Rond */
        padding: 12px 30px !important;
        font-family: 'Oswald', sans-serif !important;
        font-size: 1.1rem !important;
        text-transform: uppercase;
        font-weight: 700 !important;
        letter-spacing: 1px;
        transition: all 0.3s ease !important;
        border: none !important;
        margin: 10px !important;
    }
    .premium-cancel-btn-gtl:hover {
        background-color: #c5a059 !important; /* Change en Or GTL au survol */
        color: #ffffff !important;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3) !important;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    @keyframes pulseGold {
        0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.5); }
        70% { box-shadow: 0 0 0 25px rgba(197, 160, 89, 0); }
        100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
    }