    /* --- FOOTER STYLES --- */
.footer {
    background-color: var(--zilom-dark);
    color: white;
    padding: 80px 0 30px 0;
    margin-top: 50px;
}

.footer-brand { color: white; text-decoration: none; }
.text-light-opacity { color: rgba(255, 255, 255, 0.7); line-height: 1.7; }

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

/* Ligne de décoration sous le titre */
.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--zilom-blue);
}

.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}
.footer-links a:hover {
    color: var(--zilom-blue);
    padding-left: 5px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}
.footer-socials a:hover {
    background: var(--zilom-blue);
    transform: translateY(-3px);
}

/* Newsletter */
.newsletter-box {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 5px;
}
.newsletter-box input {
    background: transparent;
    border: none;
    padding: 10px;
    color: white;
    width: 100%;
    outline: none;
}
.newsletter-box button {
    background: var(--zilom-blue);
    border: none;
    color: white;
    padding: 0 15px;
    border-radius: 4px;
    transition: 0.3s;
}
.newsletter-box button:hover { background: white; color: var(--zilom-blue); }

.footer-bottom p, .footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}






.footer {
    /* On utilise les variables pour le dégradé et l'image */
    background: linear-gradient(var(--footer-overlay), var(--footer-overlay)),
    var(--footer-bg-image);

    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Optionnel : effet parallaxe */
    color: white;
    padding: 80px 0 30px 0;
    margin-top: 50px;
}