.footer-modern {
    background: linear-gradient(
        135deg,
        #061f3c,
        #061f5c
    );
    color: #fff;
    padding: 30px 0 18px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

/* Effet décoratif */
.footer-modern::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -150px;
    right: -80px;
}

.footer-modern::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    bottom: -120px;
    left: -50px;
}

/* Brand */
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 700;
}

.footer-brand i {
    font-size: 1.6rem;
}

/* Copyright */
.footer-modern p {
    font-size: 1rem;
    font-weight: 600;
}

.footer-modern small {
    color: rgba(255,255,255,0.75);
}

/* Année */
.footer-year {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
}

/* Ligne */
.footer-modern hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin: 22px 0 15px;
}

/* Bottom */
.footer-bottom {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
}

.separator {
    margin: 0 10px;
    color: #fff;
}

/* Mobile */
@media (max-width: 768px) {

    .footer-modern {
        text-align: center;
        padding: 25px 15px 15px;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-year {
        margin-top: 5px;
    }
}