/* ===== NOUVEAU FOOTER PREMIUM - VERSION FINALE ===== */
/* Fichier CSS dédié pour éviter les conflits */

/* 1. CONTENEUR PRINCIPAL DU FOOTER - VERSION ULTRA-MODERNE */
.new-site-footer {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    padding: 100px 0 0;
    overflow: hidden;
    border-top: 2px solid;
    border-image: linear-gradient(90deg, transparent 0%, #00E0FF 50%, transparent 100%) 1;
    box-shadow: inset 0 1px 0 rgba(0, 224, 255, 0.2);
}

/* 2. EFFET DE FOND LUMINEUX SUBTIL */
.new-footer-bg-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 400px;
    background: linear-gradient(135deg, 
        rgba(0, 224, 255, 0.08) 0%, 
        rgba(0, 150, 255, 0.04) 50%, 
        rgba(0, 100, 200, 0.02) 100%);
    filter: blur(200px);
    animation: new-footer-glow-sweep 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes new-footer-glow-sweep {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-30%) translateY(-20px);
        opacity: 1;
    }
}

/* 3. PARTIE PRINCIPALE DU FOOTER */
.new-footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 60px;
    position: relative;
    z-index: 5;
}

/* 4. COLONNES DU FOOTER */
.new-footer-column {
    display: flex;
    flex-direction: column;
}

/* 5. SECTION BRANDING (LOGO ET TAGLINE) */
.footer-branding {
    padding-right: 40px;
}

.footer-branding img {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 224, 255, 0.3));
}

.footer-tagline {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 300px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* 6. ICÔNES SOCIALES PREMIUM */
.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    font-size: 18px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.footer-social-icons a:hover {
    background: linear-gradient(135deg, #00E0FF 0%, #0099CC 100%);
    border-color: rgba(0, 224, 255, 0.5);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 25px rgba(0, 224, 255, 0.3),
        0 0 20px rgba(0, 224, 255, 0.2);
}

/* 7. SECTIONS DE LIENS */
.footer-links h4,
.footer-contact h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00E0FF 0%, #0099CC 100%);
    border-radius: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a,
.footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links ul li a:hover,
.footer-contact a:hover {
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(0, 224, 255, 0.6),
        0 2px 5px rgba(0, 0, 0, 0.5);
    transform: translateX(5px);
}

/* 8. SECTION CONTACT */
.footer-contact address {
    font-style: normal;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-contact a {
    display: block;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
}

.footer-contact a:hover {
    border-bottom-color: rgba(0, 224, 255, 0.3);
    padding-left: 10px;
}

/* 9. PARTIE INFÉRIEURE DU FOOTER */
.new-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.new-footer-bottom p {
    color: #888;
    font-size: 0.95rem;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    color: #00E0FF;
    text-shadow: 0 0 8px rgba(0, 224, 255, 0.5);
}

.footer-legal-links span {
    color: #555;
    font-size: 0.9rem;
}

/* 10. RESPONSIVITÉ ÉLÉGANTE */

/* Tablette */
@media (max-width: 992px) {
    .new-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding-bottom: 50px;
    }
    
    .footer-branding {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .footer-branding img {
        width: 160px;
    }
    
    .footer-tagline {
        max-width: none;
        text-align: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .new-footer-bg-glow {
        width: 800px;
        height: 300px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .new-site-footer {
        padding: 60px 0 0;
    }
    
    .new-footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 40px;
    }
    
    .footer-branding,
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-branding {
        margin-bottom: 30px;
    }
    
    .footer-branding img {
        width: 140px;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact a {
        display: inline-block;
        margin: 0 10px 10px;
    }
    
    .footer-contact a:hover {
        padding-left: 0;
        transform: translateY(-2px);
    }
    
    .new-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 25px 20px;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-legal-links span {
        display: none;
    }
    
    .new-footer-bg-glow {
        width: 600px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .new-site-footer {
        padding: 50px 0 0;
    }
    
    .new-footer-main {
        gap: 25px;
        padding: 0 15px 30px;
    }
    
    .footer-branding img {
        width: 120px;
    }
    
    .footer-tagline {
        font-size: 1.1rem;
    }
    
    .footer-social-icons a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.1rem;
    }
    
    .new-footer-bottom {
        padding: 20px 15px;
    }
    
    .new-footer-bottom p,
    .footer-legal-links a {
        font-size: 0.9rem;
    }
}