/* =========================
        FOOTER CSS
========================= */

.kb-footer{
    background: #0c4b1e;
    color: #fff;
    padding-top: 70px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.kb-footer::before{
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.kb-footer .container{
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.footer-top{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo{
    width: 250px;
    margin-bottom: 20px;
}

.footer-about p{
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.75);
    margin-bottom: 25px;
}

.footer-col h3{
    font-size: 22px;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
}

.footer-col h3::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 45px;
    height: 3px;
    background: #ff8c00;
    border-radius: 10px;
}

.footer-col ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li{
    margin-bottom: 14px;
}

.footer-col ul li a{
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
}

.footer-col ul li a:hover{
    color: #ff8c00;
    padding-left: 5px;
}

.footer-contact li{
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.8;
}

.footer-contact li i{
    color: #ff8c00;
    margin-right: 10px;
}

.footer-social{
    display: flex;
    gap: 12px;
}

.footer-social a{
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 15px;
}

.footer-social a:hover{
    background: #ff8c00;
    transform: translateY(-4px);
}

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 22px 0;
}

.footer-bottom p{
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width: 1100px){

    .footer-top{
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width: 768px){

    .kb-footer{
        padding-top: 50px;
    }

    .footer-top{
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-logo{
        width: 150px;
    }

    .footer-col h3{
        font-size: 20px;
    }

    .footer-about p,
    .footer-col ul li a,
    .footer-contact li{
        font-size: 14px;
    }

    .footer-social a{
        width: 38px;
        height: 38px;
    }

}