.footer-seo-text {
    max-width: 850px;
    margin: 45px auto 0;
    padding: 0 25px;
    text-align: center;
}

.footer-seo-text p {
    font-size: 11px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    margin: 0;
}
/* ==========================================================================
   FOOTER TECHNIQUE ET LUXE (D'APRÈS IMAGE_F6DF3F.JPG)
   ========================================================================== */
.luxury-footer {
    background-color: #030a13; /* Bleu nuit très profond identique à l'image */
    padding: 80px 0 60px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #94A3B8;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Grille principale à 4 colonnes séparées par des bordures fines */
.footer-main-row-four-cols {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
}

/* Base de chaque colonne */
.footer-col {
    padding: 0 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.06); /* Lignes verticales de séparation */
}

.footer-col:last-child {
    border-right: none; /* Supprime la ligne sur la dernière colonne */
}

/* Ajustements spécifiques colonne de gauche */
/* --- Ajustements spécifiques colonne de gauche (Logo Agrandi) --- */
.col-brand-panel {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-box {
    margin-bottom: 0px;
    width: 100%; /* Permet au conteneur de prendre toute la largeur pour bien centrer */
    display: flex;
    justify-content: center;
}

.footer-logo-box img {
    height: 250px; /* Grandit le logo pour un effet imposant et haut de gamme */
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo-box img:hover {
    transform: scale(1.03); /* Léger effet de survol dynamique */
}

.brand-bio-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: #94A3B8;
    margin: 0 0 25px 0;
    max-width: 320px; /* Élargi très légèrement pour s'accorder avec la taille du logo */
}

/* Boutons réseaux sociaux circulaires et épurés */
.footer-social-circles {
    display: flex;
    gap: 14px;
}

.social-circle-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-circle-link:hover {
    border-color: #E30013;
    background-color: #E30013;
    transform: translateY(-2px);
}

/* --- Titres des colonnes avec la ligne rouge inférieure --- */
.footer-col-title {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin: 0 0 22px 0;
    padding-bottom: 8px;
    position: relative;
    text-transform: uppercase;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: #E30013; /* Ligne rouge de surbrillance */
}

/* --- Listes de liens avec chevrons bleus --- */
.footer-chevron-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-chevron-list li {
    position: relative;
    padding-left: 18px;
}

.footer-chevron-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #0066cc; /* Chevron bleu distinctif */
    font-weight: bold;
    font-size: 12px;
    font-family: monospace;
}

.footer-chevron-list a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
}

.footer-chevron-list a:hover {
    color: #ffffff;
}

/* --- Quatrième colonne : Coordonnées et icônes --- */
.col-contact-panel {
    padding-right: 0;
}

.footer-contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-details-list li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 102, 204, 0.4); /* Cercle bleu fin */
    background-color: rgba(3, 10, 19, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
    flex-shrink: 0;
}

.contact-txt-line {
    font-size: 13.5px;
    line-height: 1.5;
    color: #94A3B8;
}

/* ==========================================================================
   RESPONSIVE (Ajustement fluide pour tablettes et mobiles)
   ========================================================================== */
@media (max-width: 1024px) {
    .footer-main-row-four-cols {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-col {
        padding: 0 20px;
        border-right: none;
    }
    .col-brand-panel, .col-contact-panel {
        padding-left: 20px;
        padding-right: 20px;
    }
    .col-brand-panel {
        align-items: flex-start;
        text-align: left;
    }
    .brand-bio-text {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-main-row-four-cols {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .footer-col {
        padding: 0;
    }
    .col-brand-panel, .col-contact-panel {
        padding: 0;
    }
}



