/* ===== NERO LUXURY FOOTER ===== */

.site-footer {
    background: #0A2E4D;
    color: rgba(255,255,255,0.7);
    padding: 100px 0 40px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

/* SUBTLE LIGHT EFFECT */
.site-footer::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.site-footer::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    border-radius: 50%;
}

/* CONTAINER FIX */
.site-footer .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

/* BRAND */
.footer-brand {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-logo {
    width: 150px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
}

/* TITLES */
.footer-col h4 {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

/* HOVER EFFECT */
.footer-col ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #fff;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-col ul li a:hover::after {
    width: 100%;
}

/* CONTACT */
.footer-col p {
    margin-bottom: 6px;
}

/* BOTTOM BAR */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ANIMATION (subtle fade in) */
.footer-col {
    opacity: 0;
    transform: translateY(20px);
    animation: footerFade 0.8s ease forwards;
}

.footer-col:nth-child(1) { animation-delay: 0.1s; }
.footer-col:nth-child(2) { animation-delay: 0.2s; }
.footer-col:nth-child(3) { animation-delay: 0.3s; }
.footer-col:nth-child(4) { animation-delay: 0.4s; }

@keyframes footerFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}