.modern-footer {
    background: linear-gradient(135deg, #3F384C 0%, #2C2838 100%);
    color: #fff;
    padding: 60px 0 0;
    margin-top: 80px;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Grille principale */
 .footer-main {
    padding-bottom: 50px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 50px;
}
/* Colonne Marque */
 .footer-brand {
    max-width: 320px;
}
.brand-logo {
    max-width: 160px;
    margin-bottom: 20px;
    display: block;
}
.brand-tagline {
    font-family:'DM Serif Display', serif;
    font-size: 18px;
    color: #d4a574;
    margin-bottom: 12px;
    line-height: 1.4;
}
.brand-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}
/* Colonnes standards */
 .footer-col h4 {
    font-family:'DM Serif Display', serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a, .footer-col ul.contact-list li {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-col ul li a:hover {
    color: #d4a574;
    transform: translateX(3px);
}
.contact-list li {
    margin-bottom: 10px;
    font-size: 14px;
}
/* Social Links - Version minimaliste */
 .social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-links a:hover {
    background: #d4a574;
    border-color: #d4a574;
    transform: translateY(-3px);
}
/* Footer Bottom */
 .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}
.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.copyright, .developer {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}
.developer a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.developer a:hover {
    color: #fff;
}
/* Badges */
 .footer-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.footer-badges span {
    padding: 6px 16px;
    background: rgba(212, 165, 116, 0.15);
    color: #d4a574;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    white-space: nowrap;
}
/* Responsive Design */
 @media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
    }
    .footer-col:last-child {
        grid-column: span 2;
    }
}
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
    .footer-col:last-child {
        grid-column: span 1;
    }
}
@media (max-width: 768px) {
    .modern-footer {
        padding: 40px 0 0;
        margin-top: 60px;
    }
    .footer-main {
        padding-bottom: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }
    .brand-logo {
        margin-left: auto;
        margin-right: auto;
    }
    .social-links {
        justify-content: center;
    }
    .footer-bottom-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-badges {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .footer-grid {
        gap: 30px;
    }
    .brand-logo {
        max-width: 140px;
    }
    .brand-tagline {
        font-size: 16px;
    }
    .footer-col h4 {
        font-size: 16px;
    }
    .footer-badges {
        flex-direction: column;
        align-items: center;
    }
    .footer-badges span {
        width: 100%;
        text-align: center;
        max-width: 200px;
    }
}
/* Animation au chargement */
 @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.footer-brand, .footer-col {
    animation: fadeIn 0.6s ease-out backwards;
}
.footer-brand {
    animation-delay: 0.1s;
}
.footer-col:nth-child(2) {
    animation-delay: 0.2s;
}
.footer-col:nth-child(3) {
    animation-delay: 0.3s;
}
.footer-col:nth-child(4) {
    animation-delay: 0.4s;
}
.footer-col:nth-child(5) {
    animation-delay: 0.5s;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 50%;
    color: #D4A574;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #D4A574;
    color: #2C3142;
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}