/* =========================
   FOOTER
========================= */
.site-footer {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.95),
            rgba(10, 10, 10, 1));
    padding: 80px 2%;
    position: relative;
}

/* Soft glow */
.site-footer::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: rgba(255, 122, 25, 0.18);
    filter: blur(120px);
    border-radius: 50%;
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* Brand */
.footer-brand h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* Links */
.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--color-white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-orange);
    padding-left: 6px;
}

/* Contact */
.footer-contact p {
    font-size: 14px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: var(--color-orange);
    font-weight: 500;
}

/* Bottom */
.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    transition: 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-orange);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
