/* ===================== FOOTER ===================== */

footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #ffffff;
    padding: 40px 60px 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #CC0303, #ff4444, #CC0303);
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 25px;
}

/* Section Contact */
.footer-section h3 {
    color: #CC0303;
    font-size: 1.3em;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #CC0303, #ff4444);
    border-radius: 2px;
}

.footer-contact-item {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(204, 3, 3, 0.1);
    transform: translateX(5px);
}

.footer-contact-item i {
    color: #CC0303;
    font-size: 1.1em;
    min-width: 22px;
    margin-top: 2px;
}

.footer-contact-item p {
    color: #e0e0e0;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95em;
}

.footer-contact-item strong {
    color: #ffffff;
    display: block;
    margin-bottom: 3px;
    font-size: 0.95em;
}

/* Section Liens */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #e0e0e0;
    font-size: 1em;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '▸';
    color: #CC0303;
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    background: rgba(204, 3, 3, 0.15);
    color: #ffffff;
    transform: translateX(5px);
}

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

/* Section Légale */
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-legal a {
    color: #e0e0e0;
    font-size: 1em;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-legal a::before {
    content: '▸';
    color: #CC0303;
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.footer-legal a:hover {
    background: rgba(204, 3, 3, 0.15);
    color: #ffffff;
    transform: translateX(5px);
}

.footer-legal a:hover::before {
    transform: translateX(5px);
}

/* Ligne de séparation */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 20px 0 15px;
}

/* Copyright */
.footer-bottom {
    text-align: center;
    padding-top: 10px;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 0.9em;
    line-height: 1.5;
}

.footer-bottom strong {
    color: #CC0303;
    font-weight: 600;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 768px) {
    footer {
        padding: 30px 30px 15px;
        margin-top: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 20px;
    }

    .footer-section:first-child {
        grid-column: 1;
    }

    .footer-section h3 {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 600px) {
    footer {
        padding: 25px 20px 15px;
    }

    .footer-contact-item,
    .footer-links a,
    .footer-legal a {
        padding: 8px 12px;
        font-size: 0.9em;
    }
}