/**
 * Footer Moderne - Click and Travel
 * Styles séparés pour une meilleure maintenabilité
 */

/* ============================================
   FOOTER PRINCIPAL
============================================ */
footer.modern-footer {
    flex-shrink: 0;
    background: linear-gradient(135deg, #0c4a6e 0%, #155e75 50%, #0e7490 100%);
    color: #ffffff;
    padding-top: 60px;
    margin-top: auto;
}

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

/* ============================================
   FOOTER TOP - GRILLE
============================================ */
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* ============================================
   SECTIONS DU FOOTER
============================================ */
.footer-section h3 {
    color: #22d3ee;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #22d3ee;
}

.footer-section h5 {
    color: #22d3ee;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ============================================
   INFORMATIONS DE CONTACT
============================================ */
.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #22d3ee;
    margin-bottom: 15px;
}

.footer-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-contact-info {
    margin-top: 25px;
}

.footer-contact-info .footer-title {
    border: none;
    margin-bottom: 5px;
}

.footer-contact-info .footer-description {
    margin: 5px 0;
}

.email-link {
    color: #22d3ee;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #06b6d4;
    text-decoration: underline;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #e0e0e0;
    font-size: 14px;
}

.contact-info i {
    color: #22d3ee;
    margin-right: 12px;
    width: 20px;
    margin-top: 3px;
}

/* ============================================
   RÉSEAUX SOCIAUX
============================================ */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: #22d3ee;
    color: #0c4a6e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(34, 211, 238, 0.4);
}

/* ============================================
   LIENS DU FOOTER
============================================ */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #22d3ee;
    padding-left: 5px;
}

.footer-links a i {
    margin-left: 8px;
    font-size: 12px;
}

/* ============================================
   LIENS EN ÉVIDENCE
============================================ */
.footer-highlights {
    margin-bottom: 30px;
}

.highlight-link {
    display: block;
    margin-bottom: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.highlight-link:hover {
    transform: translateX(5px);
}

.highlight-title {
    display: inline;
    font-size: 16px;
    color: #22d3ee;
    margin: 0;
}

.highlight-link:hover .highlight-title {
    color: #06b6d4;
}

/* ============================================
   LOGOS PARTENAIRES
============================================ */
.partners-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.partners-logos img {
    height: 50px;
    object-fit: contain;
    background: white;
    padding: 8px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.partners-logos img:hover {
    transform: scale(1.05);
}

/* ============================================
   SÉLECTEUR DE LANGUE
============================================ */
.language-selector {
    margin-bottom: 20px;
}

.language-selector select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.language-selector select:hover {
    background: rgba(255, 255, 255, 0.2);
}

.language-selector select option {
    background: #0c4a6e;
    color: #ffffff;
}

/* ============================================
   FOOTER BOTTOM
============================================ */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #e0e0e0;
    font-size: 14px;
}

/* ============================================
   LIENS LÉGAUX
============================================ */
.legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #22d3ee;
}

/* ============================================
   BADGE DE SÉCURITÉ
============================================ */
.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.security-badge i {
    color: #4CAF50;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .partners-logos {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
    
    .language-selector select {
        max-width: 100%;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    footer.modern-footer {
        padding-top: 40px;
    }
    
    .footer-top {
        gap: 30px;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
    
    .partners-logos img {
        height: 40px;
    }
}

/* ============================================
   AMÉLIORATION ACCESSIBILITÉ
============================================ */
.footer-links a:focus,
.social-links a:focus,
.legal-links a:focus {
    outline: 2px solid #22d3ee;
    outline-offset: 2px;
}

/* Styles d'impression */
@media print {
    footer.modern-footer {
        background: #ffffff;
        color: #000000;
        box-shadow: none;
    }
    
    .social-links,
    .language-selector {
        display: none;
    }
}