/* ══════════════════════════════════════
       FOOTER
       ══════════════════════════════════════ */
.site-footer {
    background: linear-gradient(175deg, #00109E 0%, #000C77 100%);
    background-image: url('../image/footer-bg.png');
    color: #fff;
    padding: 44px 0 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.footer-logo {
    height: 70px;
    margin-bottom: 18px;
    display: block;
}

.ft-contact-head {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 7px;
    display: flex;
    justify-content: center;
}

.ft-addr {
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
}

.ft-addr span {
    display: inline-block;
    max-width: 450px;
    text-align: center;
}

.ft-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.ft-contact-item {
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ft-contact-item i {
    color: rgba(255, 255, 255, .45);
}

.ft-border-left {
    border-left: 3px solid var(--bs-secondary-500);
    padding-left: 10px;
}

.ft-hr {
    border-color: rgba(255, 255, 255, .14);
    margin: 24px 0;
}

.ft-col-head {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: .3px;
}

.ft-link {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color .15s;
}

.ft-link:hover {
    color: var(--bs-secondary-300);
}

.ft-link i {
    margin-top: 2px;
    color: rgba(255, 255, 255, .4);
    flex-shrink: 0;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    text-decoration: none;
    transition: opacity .15s;
    margin-right: 8px;
    margin-bottom: 8px;
}

.app-btn img {
    height: 50px;
    width: auto;
    display: block;
}

.app-btn:hover {
    opacity: .8;
}

.app-btn i {
    font-size: 20px;
    color: #fff;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
}

.app-btn-sub {
    font-size: 9px;
    color: rgba(255, 255, 255, .65);
    line-height: 1;
}

.app-btn-name {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

.social-row {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.s-icon {
    /* width: 34px; */
    /* height: 34px; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: opacity .15s, transform .15s;
}

.s-icon:hover {
    opacity: .85;
    transform: scale(1.1);
    color: #fff;
}

.s-fb {
    background: #1877F2;
}

.s-ig {
    background: linear-gradient(135deg, #405DE6, #E1306C, #FCAF45);
}

.s-x {
    background: #000;
}

.s-line {
    background: #06C755;
}

.s-yt {
    background: #FF0000;
}

.s-mail {
    background: var(--bs-tertiary-500);
}

.ft-copyright {
    background: var(--bs-secondary-500);
    margin-top: 32px;
    text-align: center;
    padding: 13px 0;
    font-size: 11px;
    color: var(--bs-white);
}

.ft-container {
    /* display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 40px; */
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
    .site-footer {
        padding: 32px 0 0;
    }
    .ft-contact-row {
        flex-direction: column;
        gap: 8px;
    }
    .ft-hr {
        margin: 18px 0;
    }
}

@media (max-width: 575.98px) {
    .site-footer {
        padding: 24px 0 0;
    }
    .footer-logo {
        height: 28px;
        margin-bottom: 14px;
    }
    .ft-addr {
        font-size: 11.5px;
    }
    .ft-copyright {
        font-size: 10.5px;
        padding: 11px 16px;
        line-height: 1.5;
    }
}