.site-footer {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    margin-top: auto;
    flex-shrink: 0;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    text-align: center;
}

/* ===== LOGO SIMPLE ===== */
.footer-logo {
    display: block;
}

.footer-logo img {
    width: clamp(280px, 35vw, 550px);
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.footer-logo:hover img {
    transform: scale(1.02);
}

/* ===== NAV GLASS SIMPLE ===== */
.footer-nav {
    position: relative;
}

.footer-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 20px 60px;
    background: rgba(15, 25, 40, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    list-style: none;
    margin: 0;
    transition: all 0.3s ease;
}

.footer-nav ul:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.footer-nav a {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-content {
        padding: 100px 32px 60px;
        gap: 60px;
    }
    
    .footer-nav ul {
        gap: 32px;
        padding: 18px 48px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 80px 24px 50px;
        gap: 50px;
    }
    
    .footer-logo img {
        width: 300px !important;
    }
    
    .footer-nav ul {
        gap: 24px;
        padding: 16px 36px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 60px 20px 40px;
        gap: 40px;
    }
    
    .footer-logo img {
        width: 260px !important;
    }
    
    .footer-nav ul {
        gap: 20px;
        padding: 14px 28px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-nav a {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
