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

.site-footer{

    position:relative;

    background:#060B17;

    border-top:1px solid rgba(255,255,255,.06);

    overflow:hidden;

}

.site-footer::before{

    content:"";

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    width:900px;

    height:1px;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(59,130,246,.45),

        transparent

    );

}

.site-footer .container{

    padding-block:5rem 2rem;

}


/*==================================================
GRID
==================================================*/

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:4rem;

    margin-bottom:4rem;

}

.footer-title{

    color:#ffffff;

    margin-bottom:1.25rem;

    font-weight:700;

}

.footer-grid p{

    color:#94A3B8;

    line-height:1.8;

    max-width:320px;

}


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

.footer-links{

    display:flex;

    flex-direction:column;

    gap:.9rem;

}

.footer-links a{

    color:#94A3B8;

    text-decoration:none;

    transition:.25s ease;

}

.footer-links a:hover{

    color:#ffffff;

    transform:translateX(4px);

}


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

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:2rem;

    border-top:1px solid rgba(255,255,255,.06);

}

.footer-bottom p{

    color:#64748B;

    font-size:.9rem;

}


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

.social-links{

    display:flex;

    gap:.75rem;

}

.social-links a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    color:#CBD5E1;

    text-decoration:none;

    transition:.3s ease;

}

.social-links a:hover{

    background:#2563EB;

    border-color:#2563EB;

    color:#ffffff;

    transform:translateY(-3px);

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

        gap:3rem;

    }

}

@media(max-width:640px){

    .footer-grid{

        grid-template-columns:1fr;

    }

    .footer-bottom{

        flex-direction:column;

        gap:1.5rem;

        text-align:center;

    }

}