/* Fichier: css/style.css */
/* Annuaire97 - style.css - Version Complète & Unifiée */
/* MODIFIÉ: Ajout des styles .badge-en-ligne et .app-footer */

/* ==========================================================================
   1. Configuration Globale, Variables & Animations
   ========================================================================== */

/* Animation pour le fond dégradé */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes spin { 
    from { transform: rotate(0deg); } 
    to { transform: rotate(360deg); } 
}

/* Nouvelle animation pour le nom de l'entreprise */
@keyframes pulseGlow {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.4), 0 0 10px rgba(var(--accent-rgb), 0.6);
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(var(--accent-rgb), 0.8);
    }
    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.4), 0 0 10px rgba(var(--accent-rgb), 0.6);
    }
}


/* Variables pour un design cohérent */
:root {
    --primary-color: #005a87; /* Bleu principal (Annuaire) */
    --secondary-color: #00a896; /* Cyan/Vert (Accent) */
    --accent-color: #f0c808; /* Jaune/Or (Détails, Focus) */
    --accent-rgb: 240, 200, 8; /* Version RGB pour les ombres */
    --light-bg: rgba(255, 255, 255, 0.95); /* Fond clair légèrement opaque */
    --text-dark: #2c3e50;
    --text-light: #576574;
    --border-color: #e0e0e0;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 25px; /* Plus arrondi pour l'effet "doux" */
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.1); /* Ombre plus douce */
    --shadow-lifted: 0 10px 30px rgba(0, 0, 0, 0.15); /* Ombre plus marquée pour le 'lift' */
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Couleurs pour les options / boutons spécifiques */
    --success-color: #28a745;
    --danger-color: #dc3545;
    --vcard-color: #0d6efd;
    --request-color: #6f42c1;
    --share-color: #576574;
    
    /* AJOUTÉ: Variables pour la page de connexion (pourraient être fusionnées plus tard) */
    --light-gray: #f8f9fa;
    --white: #fff;
    --box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

body {
    font-family: var(--font-sans);
    margin: 0;
    padding: 15px 10px 80px 10px; /* Padding bas pour le footer et la bulle */
    color: var(--text-dark);
    line-height: 1.6;
    background: linear-gradient(-45deg, #005a87, #e73c7e, #23a6d5, #00a896, #f0c808);
    background-size: 400% 400%;
    animation: gradientAnimation 18s ease infinite;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   2. Structure & Layout de Base
   ========================================================================== */
.container {
    max-width: 95%;
    margin: 25px auto;
    padding: 30px;
    background-color: var(--light-bg);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius-lg); 
    box-shadow: var(--shadow-lifted);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

header { text-align: center; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid var(--border-color); }
header img { max-width: 160px; height: auto; margin-bottom: 15px; }
header h1, h1 { color: var(--primary-color); font-size: clamp(1.8em, 4vw, 2.4em); font-weight: 800; }
.intro-text { font-size: 1.1em; color: var(--text-light); max-width: 700px; margin: 10px auto 25px auto; }
.back-to-portal-link { display: inline-block; position: absolute; top: 45px; left: 45px; color: var(--text-light); text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
.back-to-portal-link:hover { color: var(--primary-color); }
.back-to-portal-link i { margin-right: 8px; }

/* Styles du Pied de Page (PUBLIC) */
.app-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 10px auto; 
    padding: 10px 20px;
    border-top: 1px solid var(--border-color); 
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    background-color: var(--light-bg); 
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
}
.footer-col {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.footer-col a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-col a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}
.footer-copyright {
    margin: 0;
    padding: 5px 0;
    flex-basis: 100%; 
    text-align: center;
}
/* Règle responsive pour le pied de page (PUBLIC) */
@media (max-width: 768px) {
    .app-footer {
        flex-direction: column;
        text-align: center;
    }
    .footer-col {
        margin: 5px 0;
        justify-content: center;
        width: 100%;
    }
}


/* ==========================================================================
   3. Composants Communs (Boutons, Formulaires, Messages)
   ========================================================================== */

/* --- Boutons --- */
.cta-button, .action-button, .contact-btn, .btn-small {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; padding: 12px 25px; 
    color: white !important;
    text-decoration: none; font-weight: 600; border-radius: 50px; 
    font-size: 0.95em; border: none; cursor: pointer;
    transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.cta-button:hover, .action-button:hover, .contact-btn:hover, .btn-small:hover {
    transform: translateY(-4px) scale(1.01); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    filter: brightness(1.1);
}
.cta-button { background: linear-gradient(45deg, var(--success-color), #20c997); }
.cta-button:disabled { background: #aaa; cursor: not-allowed; transform: none; box-shadow: none; }
.cta-button .fa-spinner { animation: spin 1s linear infinite; }

/* Définition des couleurs de boutons basées sur profil.php */
.btn-tel { background: linear-gradient(45deg, #f0c808, #f7b733); color: var(--text-dark) !important; } 
.btn-whatsapp { background: linear-gradient(45deg, #25D366, #128C7E); } 
.btn-sms { background: linear-gradient(45deg, #343a40, #212529); } 
.btn-email { background: linear-gradient(45deg, var(--danger-color), #c82333); } 
.btn-vcard, .btn-view-profile { background: linear-gradient(45deg, var(--vcard-color), #0a58ca); } 
.btn-share-whatsapp { background: linear-gradient(45deg, var(--share-color), #2c3e50); } 
.btn-request, .action-button { background: linear-gradient(45deg, var(--request-color), #5a2b9d); } 


/* --- Formulaires --- */
.form-section { background-color: rgba(255,255,255,0.7); border: 1px solid #dee2e6; padding: 25px; border-radius: var(--border-radius-md); margin-bottom: 25px; }
.form-group { margin-bottom: 15px; }
label { font-weight: 600; display: block; margin-bottom: 8px; }
input, textarea, select { 
    width: 100%; padding: 12px; border: 1px solid var(--border-color); 
    border-radius: var(--border-radius-sm); font-size: 16px; box-sizing: border-box; 
    transition: all 0.3s ease; background-color: white; 
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(0, 90, 135, 0.15); }
.checkbox-item { display: flex; align-items: center; gap: 10px; }
.checkbox-item input { width: auto; }
.checkbox-item label { margin-bottom: 0; }

/* --- Messages --- */
.error-message, .success-message, .info-message { padding: 15px; border-radius: var(--border-radius-sm); margin: 20px 0; text-align: center; font-weight: 600; }
.error-message { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.success-message { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.info-message { background-color: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }


/* ==========================================================================
   4. Styles Spécifiques aux Pages
   ========================================================================== */

/* --- Page Portail (index.php) --- */
.region-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 25px; }
.region-card { 
    display: flex; align-items: center; padding: 25px; 
    border-radius: var(--border-radius-md); background-color: #fff; 
    text-decoration: none; color: var(--text-dark); 
    box-shadow: var(--shadow-soft); transition: all 0.3s ease; 
    border-left: 10px solid var(--region-color, var(--primary-color));
}
.region-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lifted); }
.region-icon { font-size: 2.8em; color: var(--region-color, var(--primary-color)); margin-right: 20px; }
.region-name { font-size: 1.4em; font-weight: 700; }
.pro-section { text-align: center; margin-top: 50px; padding: 30px; background-color: rgba(255, 255, 255, 0.5); border-radius: var(--border-radius-md); }

/* --- Page de Recherche (search.php) --- */

.search-container { max-width: 1000px; margin: 2rem auto; padding: 2rem; background-color: var(--light-bg); border-radius: var(--border-radius-lg); box-shadow: var(--shadow-lifted); }
.search-header .region-name { font-size: 1.8rem; font-weight: 700; color: var(--primary-color); }

/* STYLE DU TITRE DESCRIPTIF ACCROCHEUR */
.search-title-intro {
    text-align: center;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--text-dark);
    font-weight: 700; 
    margin: 20px 0 10px 0;
    padding-bottom: 5px;
    line-height: 1.4;
}
.search-title-intro strong {
    color: var(--primary-color);
}
.search-title-sub {
    text-align: center;
    font-size: 1.1em;
    color: var(--text-light);
    margin: 0 0 25px 0;
}
/* FIN STYLE TITRE */

.professionnels-list { 
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 20px;
    list-style: none; 
    padding: 0; 
    margin: 0; 
}
.pro-card {
    /* Centrage */
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    
    background-color: #fff; 
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md); 
    padding: 1rem; 
    margin-bottom: 0; 
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-left: 5px solid var(--primary-color); 
}
.pro-card:hover { 
    box-shadow: 0 8px 25px rgba(0, 90, 135, 0.3); 
    transform: translateY(-5px); 
    border-color: var(--accent-color); 
}
.pro-logo { 
    flex-shrink: 0; 
    margin-bottom: 10px; 
    width: 100%;
}
.pro-logo img {
    max-width: 250px; 
    max-height: 250px; 
    width: 100%; 
    height: auto; 
    object-fit: contain; 
    
    border-radius: var(--border-radius-sm); 
    border: 5px solid var(--accent-color); 
    background-color: white; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); 
    /* Centrage */
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.pro-logo .placeholder { 
    width: 250px; 
    height: 250px; 
    background-color: #e9ecef; 
    border-radius: var(--border-radius-sm); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--text-light);
    font-size: 3rem; 
    border: 5px solid var(--accent-color);
    /* Centrage */
    margin-left: auto;
    margin-right: auto;
}
.pro-details { 
    flex-grow: 1; 
    width: 100%; 
    display: flex; 
    flex-direction: column;
    align-items: center;
} 
.pro-details h3 { 
    margin: 0 0 0.3rem 0; 
    color: var(--primary-color); 
    font-size: 1.8rem; 
    line-height: 1.3; 
    font-weight: 800; 
}

/* Nouveau style pour le nom de l'entreprise avec animation */
.pro-name-animated {
    font-size: 1.8rem; 
    font-weight: 900; 
    color: var(--primary-color);
    margin: 0 0 0.5rem 0; 
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4), 0 0 10px rgba(var(--accent-rgb), 0.6);
    animation: pulseGlow 3s infinite alternate; 
}


.pro-metiers { 
    font-weight: 600; 
    color: var(--secondary-color); 
    margin-bottom: 0.5rem; 
    display: block; 
    font-size: 0.9em; 
    line-height: 1.3; 
}

/* Styles des badges (Options) */
.pro-options { 
    margin-top: 5px; 
    margin-bottom: 8px; 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    width: 100%;
}
.pro-option-badge { 
    display: inline-block; 
    padding: 4px 10px; 
    border-radius: 20px; 
    font-size: 0.75em; 
    font-weight: 700; 
    margin-right: 8px; 
    margin-bottom: 4px; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.badge-urgence { background-color: var(--danger-color); color: white; }
.badge-fixe { background-color: var(--primary-color); color: white; }
.badge-mobile { background-color: var(--accent-color); color: var(--text-dark); } 

/* *** CORRECTION: Ajout du style pour le badge 'En Ligne' *** */
.badge-en-ligne {
    background-color: var(--request-color); /* Violet */
    color: white;
}


/* Styles des boutons d'action rapide (CORRECTION APPLIQUÉE ICI) */
.pro-actions { 
    display: grid; /* Utilisation de Grid pour les colonnes */
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); /* 2 colonnes minimum de 130px */
    gap: 6px; 
    margin-top: 10px; 
    margin-bottom: 0; 
    padding-top: 10px; 
    border-top: 1px dashed var(--border-color); 
    width: 100%;
}
.pro-actions .btn-small { 
    flex-grow: 1; 
    padding: 6px 8px; 
    font-size: 0.75em; /* Légèrement augmenté pour la lisibilité */
    border-radius: 50px; 
    min-width: 0; /* Important pour Grid */
} 

.pro-description {
    color: var(--text-light); 
    margin-top: 0.5rem; 
    font-size: 0.9rem; 
    line-height: 1.4; 
    border-left: 3px solid var(--secondary-color); 
    padding: 8px; 
    border-radius: var(--border-radius-sm); 
    width: 90%; 
}

/* --- Page Profil (profil.php) --- */
.profile-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 20px; }

/* --- ANCRE PUBLICITAIRE (Drapeau) --- */
.flyer-anchor-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Fond sombre et semi-transparent */
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    padding: 10px 0;
}
.flyer-anchor-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.flyer-item {
    display: block;
    max-height: 80px;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    transition: transform 0.3s ease;
}
.flyer-item:hover {
    transform: scale(1.05);
}
.flyer-item img {
    max-height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
}
/* --- FIN ANCRE PUBLICITAIRE --- */

/* --- STYLE BULLE POUR #last-update --- */
#last-update {
    position: fixed;
    bottom: 10px; 
    right: 10px;
    z-index: 1000;
    
    /* Styles Bulle */
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: var(--border-radius-lg); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    
    /* Mise en page interne */
    display: flex;
    flex-direction: column; 
    align-items: flex-end; 
    font-size: 0.75rem;
    line-height: 1.2;
    transition: transform 0.3s ease;
    cursor: default;
}
#last-update:hover {
    transform: scale(1.03);
}
#last-update div {
    margin: 2px 0;
}

/* NOUVEAU STYLE PWA DANS LA BULLE */
#last-update .pwa-install-btn {
    background-color: var(--secondary-color); 
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    margin-top: 5px;
    font-weight: 600;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: transform 0.2s;
}
#last-update .pwa-install-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}
/* FIN NOUVEAU STYLE PWA */

@media (max-width: 600px) {
    .flyer-anchor-content {
        gap: 10px;
    }
    .flyer-item {
        max-height: 50px;
    }
    .flyer-item img {
        max-height: 50px;
    }
    #last-update {
        /* Positionner légèrement plus haut pour ne pas gêner le coin */
        bottom: 70px; /* Pour éviter l'ancre publicitaire sur mobile */
        right: 5px;
        padding: 8px 12px;
    }
}
/* --- FIN STYLE BULLE --- */


/* ==========================================================================
   5. Responsive
   ========================================================================== */
@media (max-width: 768px) { 
    .container { padding: 15px; } 
    /* Sur mobile, on revient à une seule colonne de cartes */
    .professionnels-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .pro-card { 
        border-left: none; 
        border-bottom: 5px solid var(--primary-color); 
    }
    .pro-logo { 
        margin-bottom: 1rem; 
        max-width: 80%;
    }
    .pro-logo img, .pro-logo .placeholder {
         /* Taille réduite pour mobile */
         max-width: 180px; 
         max-height: 180px; 
         width: 180px;
         height: auto;
    }
    .pro-details { width: 100%; }
    /* Les boutons .pro-actions restent en grille 2+ colonnes grâce à Grid */
    .pro-actions {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); /* Légèrement réduit pour mobile */
        gap: 5px;
    }
    .pro-actions .btn-small { 
        font-size: 0.7em; 
        padding: 8px 5px;
    }
    .pro-description {
        width: 100%; 
        border-left: none; 
        padding-left: 0;
        border-radius: var(--border-radius-sm);
    }
    .pro-name-animated {
        font-size: 1.5rem; 
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    /* Sur tablette, 2 colonnes */
    .professionnels-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1025px) { 
    /* Sur grand écran, 3 colonnes */
    .professionnels-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 768px) { 
    .container { max-width: 720px; } 
    .profile-grid { grid-template-columns: 300px 1fr; } 
    .profil-title, .profil-description { text-align: left; } 
}
@media (min-width: 1024px) { 
    .container { max-width: 960px; } 
    .container.annuaire, .container.profil, .container.inscription { max-width: 1200px; } 
} 

/* ==========================================================================
   6. Styles Espace Pro (Login)
   ========================================================================== */
/* Styles spécifiques pour la page de connexion Pro (préfixés pour éviter les conflits) */

body.pro-login-page { 
    background-color: var(--light-gray, #f8f9fa); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 100vh; 
    padding: 20px; 
    font-family: 'Poppins', sans-serif; /* Assure que la police est appliquée */
}
body.pro-login-page .login-container { 
    background: var(--white, #fff); 
    padding: 40px; 
    border-radius: 12px; 
    box-shadow: var(--box-shadow, 0 4px 20px rgba(0,0,0,0.08)); 
    max-width: 450px; 
    width: 100%; 
    text-align: center; 
}
body.pro-login-page .login-container header { margin-bottom: 25px; }
body.pro-login-page .login-container header img { max-width: 150px; height: auto; margin-bottom: 15px; }
body.pro-login-page .login-container h1 { 
    font-size: 1.8em; 
    color: var(--primary-color, #005a87); 
    margin-bottom: 10px; 
    font-weight: 600; 
}
body.pro-login-page .login-container p { color: var(--text-light, #576574); margin-bottom: 25px; }
/* Note: .form-group est déjà défini globalement, mais nous spécifions les inputs de la page de login */
body.pro-login-page .form-group { margin-bottom: 20px; text-align: left; }
body.pro-login-page .form-group label { 
    display: block; 
    margin-bottom: 8px; 
    font-weight: 600; 
    color: var(--text-dark, #2c3e50); 
}
body.pro-login-page .form-group input { 
    width: 100%; 
    padding: 12px 15px; 
    border: 1px solid var(--border-color, #e0e0e0); 
    border-radius: var(--border-radius-sm, 8px); 
    font-size: 1rem; 
    box-sizing: border-box; 
    transition: border-color 0.3s ease, box-shadow 0.3s ease; 
    font-family: 'Poppins', sans-serif; /* Hérite la police */
}
body.pro-login-page .form-group input:focus { 
    outline: none; 
    border-color: var(--primary-color, #005a87); 
    box-shadow: 0 0 0 3px rgba(0, 90, 135, 0.15); 
}
body.pro-login-page .login-button { /* Utilise le style des boutons du site principal */
     display: inline-block; 
     width: 100%; 
     padding: 12px 25px; 
     color: white !important; 
     background: linear-gradient(45deg, var(--success-color, #28a745), #20c997);
     text-decoration: none; 
     font-weight: 600; 
     border-radius: 50px; 
     font-size: 1em; 
     border: none; 
     cursor: pointer; 
     transition: all 0.3s ease; 
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
     font-family: 'Poppins', sans-serif; /* Hérite la police */
   }
body.pro-login-page .login-button:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25); 
    filter: brightness(1.1); 
}
body.pro-login-page .extra-links { margin-top: 25px; font-size: 0.9em; }
body.pro-login-page .extra-links a { 
    color: var(--primary-color, #005a87); 
    text-decoration: none; 
    margin: 0 10px; 
    display: inline-block; 
}
body.pro-login-page .extra-links a:hover { text-decoration: underline; }
/* Note: .error-message et .info-message sont déjà définis globalement */
/* On s'assure juste qu'ils ont le bon padding/margin pour cette page */
body.pro-login-page .error-message,
body.pro-login-page .info-message {
    padding: 15px;
    border-radius: var(--border-radius-sm, 8px);
    margin-bottom: 20px;
} 

/* Styles pour le pied de page (LOGIN) */
/* Doit écraser le style .app-footer public */
body.pro-login-page .app-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center; /* MODIFIÉ: Centré */
    align-items: center;
    flex-wrap: wrap; /* AJOUTÉ: Pour la sécurité */
    gap: 20px; /* AJOUTÉ: Pour l'espacement */
    padding: 10px 20px;
    background-color: var(--light-gray, #f8f9fa);
    border-top: 1px solid var(--border-color, #e0e0e0);
    font-size: 0.8em;
    color: var(--secondary-color, #6c757d);
    z-index: 10;
    /* Reset des styles publics qui pourraient interférer */
    margin: 0;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
}
body.pro-login-page .app-footer .footer-col a {
    color: var(--primary-color, #005a87);
    font-weight: 600;
}
body.pro-login-page .app-footer .footer-col {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Reset des styles publics */
    margin: 0;
    width: auto;
    white-space: normal;
}
@media (max-width: 500px) {
    /* Styles responsives pour le footer (LOGIN) */
    body.pro-login-page .app-footer {
        flex-direction: column;
        text-align: center;
        padding-bottom: 20px; /* Espace réduit par rapport à avant */
        gap: 8px; /* Espace vertical */
    }
    body.pro-login-page .app-footer .footer-col {
        margin: 0;
    }
}
