.footer {
    background-image: url('../assets/images/footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0 0;
    color: #fff;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col {
    text-align: start;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo img {
    height: clamp(90px, 10vw, 110px);
    width: auto;
    margin-bottom: 16px;
}

.footer-slogan {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.4;
}

.footer-slogan-sub {
    font-size: 20px;
    font-weight: 600;
    color: #1A72B2;
    margin-bottom: 24px;
}

/* Social Icons */
.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-links{
    width: 150px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: border-color 0.3s, background 0.3s;
}

.footer-social a:hover,
.contact-icon:hover {
    border-color: #4f8ef7;
    background: rgba(79, 142, 247, 0.15);
}

.footer-social a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}


.footer-col-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
    transition: color 0.3s, gap 0.3s;
}
/* .footer-links ul li {
    display: flex;
    
} */
.footer-links ul li a::before {
    content: '›';
    font-size: 18px;
    color: #D43125;
    line-height: 1;
}

.footer-links ul li a:hover {
    color: #ffffff;
    gap: 12px;
}


.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #4f8ef7;
    font-size: 15px;
    margin-top: 1px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.contact-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-divider {
    border: 1px solid #D43125;
    margin: 0;
    z-index: 1;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copy,
.footer-credit {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.45);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}