/* =========================================
   FOOTER
========================================= */

.footer{
    background:#0f2438;
    padding:50px 0 20px;
    color:#d1d5db;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1.2fr;
    gap:40px;
}

.footer-about img{
    width:180px;
    margin-bottom:15px;
}

.footer-about p{
    font-size:15px;
    line-height:1.8;
    color:#c4cbd4;
}

.social-icons{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.social-icons a{
    width:42px;
    height:42px;
    background:#f4c430;
    color:#111827;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    font-size:18px;
    transition:0.3s;
}

.social-icons a:hover{
    transform:translateY(-4px);
    background:#ffffff;
}

.footer-links h3,
.footer-contact h3{
    font-size:24px;
    color:#ffffff;
    margin-bottom:22px;
}

.footer-links ul{
    list-style:none;
}

.footer-links ul li{
    margin-bottom:12px;
}

.footer-links ul li a{
    color:#c4cbd4;
    transition:0.3s;
}

.footer-links ul li a:hover{
    color:#f4c430;
    padding-left:4px;
}

.contact-item{
    display:flex;
    gap:14px;
    margin-bottom:18px;
}

.contact-item i{
    color:#22c55e;
    margin-top:5px;
    font-size:16px;
}

.contact-item p{
    color:#c4cbd4;
    line-height:1.7;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:35px;
    padding-top:18px;
    text-align:center;
}

.footer-bottom p{
    color:#9ca3af;
    font-size:14px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px){

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }

    .contact-item{
        justify-content:center;
    }

    .footer-about img{
        margin:auto auto 15px;
    }
}
/* =========================================
   MOBILE RESPONSIVE FOOTER
========================================= */

@media(max-width:768px){

    .footer{
        padding:40px 0 15px;
    }

    .footer-grid{
        gap:30px;
    }

    .footer-links h3,
    .footer-contact h3{
        font-size:20px;
        margin-bottom:16px;
    }

    .footer-about img{
        width:140px;
    }

    .footer-about p{
        font-size:14px;
        line-height:1.7;
    }

    .social-icons{
        gap:10px;
    }

    .social-icons a{
        width:38px;
        height:38px;
        font-size:16px;
    }

    .contact-item{
        flex-direction:column;
        align-items:center;
        gap:6px;
        margin-bottom:16px;
    }

    .contact-item i{
        margin-top:0;
    }

    .contact-item p{
        font-size:14px;
        text-align:center;
    }

    .footer-links ul li{
        margin-bottom:10px;
    }

    .footer-bottom p{
        font-size:13px;
        line-height:1.6;
    }

}

/* EXTRA SMALL MOBILE */

@media(max-width:480px){

    .footer{
        padding:35px 0 12px;
    }

    .footer-about img{
        width:120px;
    }

    .footer-about p{
        font-size:13px;
    }

    .footer-links h3,
    .footer-contact h3{
        font-size:18px;
    }

    .social-icons a{
        width:34px;
        height:34px;
        font-size:14px;
    }

    .contact-item p{
        font-size:13px;
    }

    .footer-bottom p{
        font-size:12px;
    }

}