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


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

.site-footer {

    width: 100%;

    background: #0b1f33;

    color: #ffffff;

    font-family:
        "Times New Roman",
        Times,
        serif;

}


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

.footer-container {

    width: 100%;

    max-width: 1280px;

    margin: 0 auto;

    padding: 70px 30px;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1.3fr
        1.5fr;

    gap: 50px;

}


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

.footer-brand {

    max-width: 360px;

}


.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    color: #ffffff;

}


.footer-logo-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f97316;

    color: #ffffff;

    border-radius: 12px;

    font-size: 28px;

    font-weight: bold;

}


.footer-logo-name {

    font-size: 30px;

    font-weight: bold;

}


.footer-tagline {

    margin: 12px 0 4px;

    color: #22c55e;

    font-size: 18px;

    font-weight: bold;

}


.footer-description {

    margin: 0 0 18px;

    color: #60a5fa;

    font-size: 16px;

    font-weight: bold;

}


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

.footer-title {

    position: relative;

    margin: 0 0 25px;

    padding-bottom: 12px;

    color: #ffffff;

    font-size: 21px;

    font-weight: bold;

}


.footer-title::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 45px;

    height: 3px;

    background: #f97316;

    border-radius: 5px;

}


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

.footer-links {

    margin: 0;

    padding: 0;

    list-style: none;

}


.footer-links li {

    margin-bottom: 13px;

}


.footer-links a {

    color: #cbd5e1;

    text-decoration: none;

    font-size: 16px;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;

}


.footer-links a:hover {

    color: #f97316;

    padding-left: 5px;

}


/* =========================================
   CONTACT
   ========================================= */

.footer-contact {

    margin: 0;

    padding: 0;

    list-style: none;

}


.footer-contact li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 18px;

    color: #cbd5e1;

    font-size: 16px;

    line-height: 1.5;

}


.footer-contact i {

    width: 20px;

    margin-top: 4px;

    color: #f97316;

    font-size: 16px;

    flex-shrink: 0;

}


.footer-contact a {

    color: #cbd5e1;

    text-decoration: none;

    transition: color 0.3s ease;

}


.footer-contact a:hover {

    color: #22c55e;

}


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

.footer-social {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 25px;

}


.social-link {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;

}


.social-link:hover {

    background: #f97316;

    border-color: #f97316;

    transform: translateY(-3px);

}


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

.footer-bottom {

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

}


.footer-bottom-container {

    width: 100%;

    max-width: 1280px;

    margin: 0 auto;

    padding: 20px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom p {

    margin: 0;

    color: #94a3b8;

    font-size: 14px;

}


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

@media (max-width: 1050px) {

    .footer-container {

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

        gap: 40px;

    }


    .footer-brand {

        max-width: 100%;

    }

}


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

@media (max-width: 750px) {

    .footer-container {

        grid-template-columns: 1fr;

        padding: 55px 25px;

        gap: 40px;

    }


    .footer-brand {

        max-width: 100%;

    }


    .footer-bottom-container {

        padding: 20px 25px;

        flex-direction: column;

        text-align: center;

    }

}


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

@media (max-width: 500px) {

    .footer-container {

        padding: 45px 18px;

    }


    .footer-logo-name {

        font-size: 26px;

    }


    .footer-bottom-container {

        padding: 18px;

    }

}