/* ==========================================================================
   GLOBAL SITE FOOTER
   ========================================================================== */

.site-footer {
    background-color: #001B41;
    width: 100%;
    font-family: 'Jost', sans-serif;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container {
    width: 100%;
    max-width: 1440px;
    padding: 60px 120px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

/* ── Left Column ─────────────────────────────────────────────────────────── */
.footer-left-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-branding {}

.footer-logo-img {
    max-width: 188px;
    height: auto;
    display: block;
}

.footer-logo-placeholder {
    width: 188px;
    height: 36px;
    background: linear-gradient(170deg, #FFC958 0%, #FF6F2F 20%, #FF4F00 50%, #FF6F2F 80%, #FFC958 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
}

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

.footer-phone {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    color: #ffffff;
    margin: 0;
}

.footer-address {
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    color: #D8D8D8;
    margin: 0;
    max-width: 500px;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-cta-btn {
    display: flex;
    height: 42px;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 100px;
    background: var(--Softphone-Orange, #FF4F00);
    width: fit-content;
    color: #ffffff;
    font-family: 'Degular', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
    width: 172px;
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    background-color: #e64600;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* ── Right Column ────────────────────────────────────────────────────────── */
.footer-right-col {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    gap: 80px;
    width: 584px;
}

.footer-menu-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 21.6px;
    color: #ffffff;
    margin: 0;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* Fine-tuned to achieve 30.4px line height look */
}

.footer-menu-list li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 30.4px;
    color: #D8D8D8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-menu-list li a:hover {
    color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE LAYOUT
   ========================================================================== */

@media (max-width: 1024px) {
    .footer-container {
        padding: 60px 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 60px;
    }

    .footer-right-col {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 60px;
    }
}

@media (max-width: 767px) {
    .footer-container {
        padding: 40px 20px;
    }

    .footer-right-col {
        flex-direction: column;
        gap: 40px;
    }
}