/* ===================================
   REDARROW - FOOTER ULTRA SIMPLIFIÉ
   Footer minimaliste et épuré
   =================================== */

.footer {
    padding: 3rem 0 !important;
    background: #000000 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-bottom: 2rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    gap: 2rem !important;
    flex-wrap: wrap !important;
}

.footer-brand {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
}

.footer-logo {
    height: 35px !important;
    width: auto !important;
    filter: brightness(0) saturate(100%) invert(1) !important;
    opacity: 0.85 !important;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.875rem !important;
}

.footer-links {
    display: flex !important;
    gap: 2rem !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    font-size: 0.9375rem !important;
    transition: color 0.2s ease !important;
}

.footer-links a:hover {
    color: #FFFFFF !important;
}

.footer-bottom {
    text-align: center !important;
    padding-top: 2rem !important;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.875rem !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }

    .footer-brand {
        align-items: center !important;
    }

    .footer-links {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
}
