/*
 * Footer GOLDEN CARGO.
 * Hai cột phẳng theo reference, dùng asset icon riêng của dự án.
 */

.gc-site-footer {
    color: var(--project-color-inverse);
    background: var(--project-color-primary-light);
}

.gc-site-footer__main {
    padding: 38px 0 36px;
    background: var(--project-color-primary-light);
}

.gc-site-footer__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
}

.gc-site-footer__column {
    min-width: 0;
}

.gc-site-footer__title {
    display: flex;
    min-height: 38px;
    align-items: center;
    margin: 0 0 15px;
    color: var(--project-color-inverse);
    font-size: 18px;
    font-weight: var(--project-font-weight-medium);
    line-height: 1.3;
    text-transform: uppercase;
}

.gc-site-footer__title img {
    display: block;
    flex: 0 0 auto;
    margin-right: 14px;
    object-fit: contain;
}

.gc-site-footer__menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.gc-site-footer__menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.62);
    transition: border-color var(--project-transition);
}

.gc-site-footer__menu li:hover,
.gc-site-footer__menu li:focus-within {
    border-bottom-color: var(--project-color-accent);
}

.gc-site-footer__menu a {
    display: flex;
    min-height: 50px;
    align-items: center;
    padding: 11px 0;
    color: var(--project-color-inverse);
    font-size: 14px;
    font-weight: var(--project-font-weight-medium);
    line-height: 1.45;
    text-decoration: none;
    transition: color var(--project-transition);
}

.gc-site-footer__menu a img {
    display: block;
    width: 15px;
    height: 5px;
    flex: 0 0 15px;
    margin-right: 16px;
}

.gc-site-footer__menu a:hover,
.gc-site-footer__menu a:focus-visible {
    color: var(--project-color-secondary);
}

.gc-site-footer__menu a:focus-visible,
.gc-site-footer__contact-row:focus-visible,
.gc-site-footer__bottom a:focus-visible {
    outline: 2px solid var(--project-color-secondary);
    outline-offset: 3px;
}

.gc-site-footer__contact {
    padding-top: 2px;
}

.gc-site-footer__contact-row {
    display: grid;
    min-height: 50px;
    align-items: center;
    color: var(--project-color-inverse);
    font-size: 14px;
    font-weight: var(--project-font-weight-medium);
    grid-template-columns: 24px minmax(0, 1fr);
    line-height: 1.6;
    text-decoration: none;
    column-gap: 9px;
}

.gc-site-footer__contact-row i {
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
    text-align: center;
}

.gc-site-footer__contact-row:hover {
    color: var(--project-color-secondary);
    text-decoration: none;
}

.gc-site-footer__contact-row em {
    font-weight: var(--project-font-weight-medium);
}

.gc-site-footer__bottom {
    padding: 15px 0;
    background: var(--project-color-primary-dark);
}

.gc-site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    line-height: 1.65;
    text-align: center;
    flex-direction: column;
    gap: 2px;
}

.gc-site-footer__bottom a {
    color: var(--project-color-inverse);
    text-decoration: none;
}

.gc-site-footer__bottom a:hover {
    color: var(--project-color-secondary);
    text-decoration: none;
}

@media (max-width: 767px) {
    .gc-site-footer__main {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .gc-site-footer__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .gc-site-footer__title {
        margin-bottom: 11px;
        font-size: 17px;
    }

    .gc-site-footer__menu a,
    .gc-site-footer__contact-row {
        min-height: 47px;
    }

    .gc-site-footer__bottom {
        padding-top: 14px;
        padding-bottom: 14px;
    }
}
