/* ============================================
   AUTLHY FOOTER PREMIUM - Épuré & Minimaliste
   Plus d'espacement, fonts plus grandes, layout clean
   ============================================ */

.autlhy-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #12091a 100%);
    color: #fff;
    padding: 80px 60px 40px;
    border-top: 1px solid rgba(165, 105, 189, 0.15);
    font-family: 'Inter', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   TOP SECTION - Brand + 2 Colonnes seulement
   ============================================ */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    padding-right: 40px;
}

.footer-brand h3 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #A569BD, #D198E1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 16px;
    line-height: 1.7;
    color: #aaa;
    font-weight: 300;
}

/* ============================================
   COLONNES LIENS - Plus épuré
   ============================================ */
.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #A569BD;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 16px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col a:hover {
    color: #A569BD;
    padding-left: 8px;
}

/* ============================================
   SOCIAL ICONS SECTION
   ============================================ */
.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link {
    color: #777;
    font-size: 24px;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.social-link:hover {
    color: #A569BD;
    transform: translateY(-4px);
}

.social-link span {
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   BOTTOM SECTION - Copyright + Disclaimer
   ============================================ */
.footer-bottom {
    padding-top: 40px;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.footer-disclaimer {
    font-size: 12px;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 20px;
}

.footer-privacy-btn {
    background: transparent;
    border: 1px solid rgba(165, 105, 189, 0.35);
    color: #A569BD;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.35s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.footer-privacy-btn:hover {
    background: rgba(165, 105, 189, 0.12);
    border-color: #A569BD;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE - Mobile
   ============================================ */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-col h4 {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .autlhy-footer {
        padding: 60px 30px 30px;
    }

    .footer-brand h3 {
        font-size: 32px;
    }

    .footer-brand p {
        font-size: 15px;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .footer-col a {
        font-size: 13px;
    }

    .footer-col a:hover {
        padding-left: 0;
    }

    .footer-socials {
        flex-wrap: wrap;
        gap: 25px;
    }
}

/* ============================================
   PRIVACY MODAL
   ============================================ */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.privacy-modal.active {
    display: flex;
}

.privacy-content {
    background: #0f0f0f;
    border: 1px solid rgba(165, 105, 189, 0.35);
    border-radius: 15px;
    padding: 50px;
    max-width: 650px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.privacy-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
}

.privacy-close:hover {
    color: #A569BD;
}

.privacy-content h2 {
    color: #A569BD;
    margin-bottom: 25px;
    font-size: 28px;
}

.privacy-content p {
    color: #ccc;
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 15px;
}