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

.footer-section{
    padding: 20px 0 0;
}

.footer-card{
    background: #ffffff;
    padding: 40px 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.footer-logo{
    height: 60px;
    margin-bottom: 20px;
}

.footer-desc{
    color: #64748b;
    line-height: 1.8;
}

.footer-social{
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social img{
    width: 42px;
    height: 42px;
}

.footer-section h5{
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li{
    margin-bottom: 12px;
}

.footer-section ul li a{
    color: #334155;
    text-decoration: none;
    transition: .3s;
}

.footer-section ul li a:hover{
    color: #2563eb;
}

.footer-input{
    width: 100%;
    height: 50px;
    border-radius: 12px;
}

.footer-btn{
    margin-top: 12px;
    width: 100%;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg,#2563eb,#7c3aed);
    border: none;
    color: #ffffff;
    font-weight: 700;
    transition: .3s;
}

.footer-btn:hover{
    opacity: .95;
}

.footer-bottom{
    margin-top: 0;
    background: linear-gradient(135deg,#2563eb,#4f46e5);
    color: #ffffff;
    padding: 16px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

@media (max-width:991px){

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

}

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

@media (max-width:767px){

    .footer-card{
        padding: 20px;
    }

    .footer-logo{
        height: 50px;
    }

    .footer-bottom{
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 15px;
        font-size: 14px;
    }

}

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

@media (max-width:480px){

    .footer-card{
        padding: 15px;
    }

    .footer-logo{
        height: 45px;
    }

    .footer-bottom{
        font-size: 13px;
        padding: 12px;
    }

}