/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: #020617;
    color: #94a3b8;
    padding: 76px 0 25px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* =========================================
   FOOTER BLUE GLOW
========================================= */

.site-footer:before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -200px;
    top: -300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 68%);
    pointer-events: none;
}

.site-footer:after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    left: -180px;
    bottom: -220px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1), transparent 68%);
    pointer-events: none;
}

/* =========================================
   FOOTER TOP
========================================= */

.footer-top {
    display: grid;
    grid-template-columns: 1.15fr 1.85fr;
    gap: 90px;
    padding-bottom: 55px;
    position: relative;
    z-index: 1;
}

/* =========================================
   FOOTER LOGO
========================================= */

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo-image {
    display: block;
    width: 150px;
    height: auto;
    max-height: 45px;
    object-fit: contain;
}

/* =========================================
   FOOTER SOCIAL
========================================= */

.footer-socials {
    display: flex;
    gap: 9px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    color: #94a3b8;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    transition: 0.25s;
}

.footer-socials a:hover {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
}

/* =========================================
   FOOTER LINKS
========================================= */

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.footer-links h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #f1f5f9;
    margin: 5px 0 18px;
    position: relative;
}

.footer-links h4:after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    margin-top: 8px;
    border-radius: 5px;
    background: linear-gradient(90deg, #3b82f6, #818cf8);
}

.footer-links a,
.footer-links span {
    display: block;
    text-decoration: none;
    color: #94a3b8;
    font-size: 13px;
    margin: 0 0 12px;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #60a5fa;
    transform: translateX(3px);
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
    color: #64748b;
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.2s;
}

.footer-bottom a:hover {
    color: #60a5fa;
}

/* =========================================
   MOBILE / TABLET
========================================= */

@media (max-width: 800px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 560px) {
    .site-footer {
        padding-top: 55px;
    }
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: column;
    }
}