.footer {
    background-color: #000080 !important;
    color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins', sans-serif;
}

/* Titres */
.footer-heading {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 1.5rem;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    background: #ffc107;
    width: 50px;
}

@media (max-width: 767px) {
    .footer-heading:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) {
    .footer-heading:after {
        left: 0;
    }
}

/* Texte et paragraphes */
.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Liste de liens */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffc107;
    transform: translateX(5px);
}

/* Informations de contact */
.contact-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: #ffc107;
    width: 20px;
}

/* Horaires d'ouverture */
.opening-hours p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Icônes sociales */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: transparent;
    border: 2px solid white;
    color: white;
}

.social-icon i {
    font-size: 1.2rem;
}

.social-icon:hover {
    background: white;
    color: #000080;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Séparateur */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Copyright */
.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Ajustements responsives supplémentaires */
@media (max-width: 767px) {
    .footer {
        text-align: center;
    }

    .contact-info {
        margin-bottom: 1rem;
    }

    .footer-links {
        margin-bottom: 1rem;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .opening-hours {
        margin-bottom: 1rem;
    }

    .social-icons {
        margin-top: 0.5rem;
    }

    .row.g-4 > * {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .footer-heading {
        margin-bottom: 1rem;
    }

    .footer-text {
        margin-bottom: 1rem;
    }

    .footer-divider {
        margin: 1rem 0;
    }
}

/* Animations */
@media (min-width: 768px) {
    .footer-links a {
        position: relative;
        padding-left: 0;
    }

    .footer-links a:hover {
        padding-left: 5px;
    }
}