/* ==================================================
   OMODA & JAECOO TÂN PHÚ — FOOTER
================================================== */

.oj-footer {
    margin-top: 0;
    background: #0d0d0d;
    color: #ffffff;
    font-family: "Inter", Arial, sans-serif;
}

.oj-footer__main {
    padding: 72px 0 58px;
}

.oj-footer__grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(160px, 1fr));
    gap: 52px;
}

.oj-footer__logo {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 22px;
    color: #ffffff;
    text-decoration: none;
}

.oj-footer__logo-main {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.oj-footer__logo-location {
    margin-top: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.6);
}

.oj-footer__brand p {
    max-width: 420px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.8;
}

.oj-footer__hotline {
    color: #ffffff;
    font-size: 17px;
    font-weight: 750;
    text-decoration: none;
}

.oj-footer__hotline:hover {
    color: var(--oj-blue);
}

.oj-footer__column h3 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.oj-footer__column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.oj-footer__column li {
    margin-bottom: 13px;
}

.oj-footer__column a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.oj-footer__column a:hover {
    color: #ffffff;
}

.oj-footer__contact p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.6;
}

.oj-footer__contact strong {
    color: #ffffff;
}

.oj-footer__contact p a {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
}

.oj-footer__column .oj-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 12px;
    padding: 0 20px;
    border-radius: 6px;
    background: var(--oj-cta);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.oj-footer__column .oj-footer__cta:hover {
    color: #ffffff;
    background: #e94600;
}

.oj-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.oj-footer__bottom-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.oj-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .oj-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .oj-footer__main {
        padding: 52px 0 40px;
    }

    .oj-footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .oj-footer__bottom-inner {
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}