/**
 * LD Solutions - Footer
 * Avec padding-top pour chevauchement section contact
 *
 * @package ldsolutions
 * @version 1.0.0
 */

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

.lds-footer
 {
    background: var(--lds-white, #ffffff);
    padding: 163px 4rem 20px;
    position: relative;
    z-index: 1;
    margin-top: -135px;
}

/* Liseret gris en haut */
.lds-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 20%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.1) 80%,
        transparent 100%
    );
}

.lds-footer__container {
    max-width: 1800px;
    margin: 0 auto;
}

.lds-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* ============================================================
   BRAND
   ============================================================ */

.lds-footer__brand {
    max-width: 280px;
    margin-left: 130px;
}

.lds-footer__logo {
    display: block;
    margin-bottom: 1rem;
    text-decoration: none;
}

.lds-footer__logo-img {
    max-width: 200px;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.lds-footer__logo:hover .lds-footer__logo-img {
    opacity: 0.8;
}

.lds-footer__tagline {
    font-family: Arial, Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(2, 27, 80, 0.6);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.lds-footer__heading {
    font-family: 'Chillax', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lds-navy, #021B50);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1.25rem;
}

.lds-footer__links,
.lds-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lds-footer__links a,
.lds-footer__contact a,
.lds-footer__contact span {
    font-family: Arial, Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(2, 27, 80, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lds-footer__links a:hover,
.lds-footer__contact a:hover {
    color: var(--lds-blue, #125AF8);
}

/* ============================================================
   BOTTOM
   ============================================================ */

.lds-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(2, 27, 80, 0.1);
}

.lds-footer__copyright {
    font-family: Arial, Arial, sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(2, 27, 80, 0.5);
    margin: 0;
}

.lds-footer__legal {
    display: flex;
    gap: 30px;
}

.lds-footer__legal a {
    font-family: Arial, Arial, sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(2, 27, 80, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lds-footer__legal a:hover {
    color: var(--lds-blue, #125AF8);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .lds-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .lds-footer__brand {
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .lds-footer {
        padding: 160px 1.5rem 50px;
    }

    .lds-footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lds-footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .lds-footer__legal {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .lds-footer {
        padding: 140px 1rem 40px;
    }

    .lds-footer__legal {
        flex-direction: column;
        gap: 12px;
    }
}
