/* ========================================
   AITOLIE - Footer Styles
   Premium Layout (Logo, Social, Legal)
   ======================================== */

.footer {
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 40px;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

/* Brand Section (Left) */
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__logo {
    display: block;
    width: 140px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer__logo:hover {
    opacity: 1;
}

.footer__logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: invert(1);
    filter: invert(1);
}

/* Social Icons */
.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social-link:hover {
    background: var(--color-accent, #F97316);
    /* Or Gold */
    background: linear-gradient(135deg, #C9A962, #A68B3D);
    color: #000;
    border-color: transparent;
    transform: translateY(-2px);
}

.footer__social-link svg {
    width: 20px;
    height: 20px;
}

/* Links Section (Right) */
.footer__links {
    display: flex;
    gap: 24px 32px;
    flex-wrap: wrap;
    max-width: 600px;
    justify-content: flex-end;
}

.footer__link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold, #C9A962);
    transition: width 0.3s ease;
}

.footer__link:hover {
    color: var(--gold, #C9A962);
}

.footer__link:hover::after {
    width: 100%;
}

/* Copyright */
.footer__copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer__brand {
        align-items: center;
    }

    .footer__links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
        width: 100%;
    }
}