#hilux-thailand-app-footer {
    background-color: var(--bg-dark);
    padding: 70px 0 25px 0;
    font-family: "Roboto", sans-serif;
    color: var(--text-white);
}


.h-th-footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.h-th-footer-col {
    flex: 1;
    min-width: 140px;
}

.h-th-footer-col.h-th-footer-brand {
    flex: 2.2;
    min-width: 260px;
}

.h-th-footer-brand .footer-logo {
    max-width: 240px;
    height: auto;
    filter: brightness(200%) contrast(0%) saturate(0%) blur(0px) hue-rotate(0deg);
    display: block;
    margin-bottom: 20px;
}

.h-th-footer-brand .brand-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-info .contact-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 5px;
    display: block;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    width: fit-content;
    transition: color 0.2s ease;
}

.footer-contact-link i {
    color: #25d366;
    font-size: 18px;
}


.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--text-white);
    display: inline-block;
}


.footer-col-title.sub-group-title {
    margin-top: 30px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    color: var(--text-white);
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-contact-link:hover,
.footer-links-list a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.h-th-footer-bottom {
    border-top: 1px solid #212121;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    font-size: 13px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}




@media screen and (max-width: 1024px) {
    .h-th-footer-grid {
        gap: 25px;
    }

    .h-th-footer-col.h-th-footer-brand {
        flex: 100%;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 640px) {
    .h-th-footer-col {
        flex: 45%;
    }
}

@media screen and (max-width: 480px) {
    #hilux-thailand-app-footer {
        padding: 50px 0 25px 0;
    }

    .h-th-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}