/* ================================================
   FOOTER ULTRA-MODERNE - NEOFOOTER
   Couleur principale : #01236a
   Couleur hover : #b3a183
   ================================================ */

/* Container Principal */
.footer-neofooter {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow: hidden;
}

.footer-neofooter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #01236a, transparent);
}

/* Content Area */
.footer-content-neofooter {
    padding: 80px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-content-neofooter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(1, 35, 106, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section */
.footer-section-neofooter {
    margin-bottom: 40px;
}

/* Logo */
.footer-logo-neofooter {
    margin-bottom: 20px;
}

.footer-logo-neofooter img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo-neofooter:hover img {
    transform: scale(1.05);
}

/* Description */
.footer-description-neofooter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Links */
.footer-social-neofooter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link-neofooter {
    width: 40px;
    height: 40px;
    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: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-link-neofooter:hover {
    background: linear-gradient(135deg, #b3a183 0%, #c9b596 100%);
    border-color: #b3a183;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Titles */
.footer-title-neofooter {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-title-neofooter i {
    color: #01236a;
    font-size: 20px;
}

/* Links */
.footer-links-neofooter {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-link-neofooter {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link-neofooter::before {
    content: '▸';
    color: #b3a183;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-link-neofooter:hover {
    color: #b3a183;
    padding-left: 15px;
}

.footer-link-neofooter:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Section */
.footer-contact-neofooter {
    margin-bottom: 25px;
}

.contact-item-neofooter {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid #01236a;
    transition: all 0.3s ease;
}

.contact-item-neofooter:hover {
    background: rgba(179, 161, 131, 0.1);
    border-left-color: #b3a183;
    transform: translateX(5px);
}

.contact-item-neofooter > i {
    font-size: 20px;
    color: #01236a;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    transition: color 0.3s ease;
}

.contact-item-neofooter:hover > i {
    color: #b3a183;
}

.contact-text-neofooter strong {
    display: block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text-neofooter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.contact-link-neofooter {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link-neofooter:hover {
    color: #b3a183;
}

/* Extranet Button */
.btn-extranet-neofooter {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #01236a 0%, #013a8f 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 35, 106, 0.3);
    border: 2px solid transparent;
}

.btn-extranet-neofooter:hover {
    background: linear-gradient(135deg, #b3a183 0%, #c9b596 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 161, 131, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-extranet-neofooter i:last-child {
    transition: transform 0.3s ease;
}

.btn-extranet-neofooter:hover i:last-child {
    transform: translateX(4px);
}

/* Footer Bottom */
.footer-bottom-neofooter {
    background: rgba(0, 0, 0, 0.5);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-copyright-neofooter p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

.footer-legal-neofooter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.footer-legal-link-neofooter {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal-link-neofooter:hover {
    color: #b3a183;
}

.separator-neofooter {
    color: rgba(255, 255, 255, 0.3);
}

.footer-powered-neofooter {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-powered-neofooter img {
    height: 20px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-powered-neofooter a:hover img {
    transform: scale(1.1);
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 991px) {
    .footer-content-neofooter {
        padding: 60px 0 30px;
    }
    
    .footer-section-neofooter {
        margin-bottom: 30px;
    }
    
    .footer-bottom-content-neofooter {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-neofooter {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-content-neofooter {
        padding: 40px 0 20px;
    }
    
    .footer-title-neofooter {
        font-size: 16px;
    }
    
    .footer-social-neofooter {
        justify-content: center;
    }
    
    .btn-extranet-neofooter {
        width: 100%;
        justify-content: center;
    }
    
    .footer-legal-neofooter {
        flex-direction: column;
        gap: 8px;
    }
    
    .separator-neofooter {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-content-neofooter {
        padding: 30px 0 15px;
    }
    
    .footer-logo-neofooter img {
        height: 50px;
    }
    
    .footer-description-neofooter {
        font-size: 13px;
    }
    
    .contact-item-neofooter {
        padding: 12px;
    }
    
    .footer-bottom-neofooter {
        padding: 20px 0;
    }
}

/* Animations */
@keyframes fadeInUp-neofooter {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section-neofooter {
    animation: fadeInUp-neofooter 0.6s ease-out;
}

.footer-section-neofooter:nth-child(1) { animation-delay: 0.1s; }
.footer-section-neofooter:nth-child(2) { animation-delay: 0.2s; }
.footer-section-neofooter:nth-child(3) { animation-delay: 0.3s; }
.footer-section-neofooter:nth-child(4) { animation-delay: 0.4s; }