.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-para);
    padding:1em;
}
.container {
    margin: 0;
    max-width: none;
}
.footer-cta-inner {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-cta-inner .cta-heading {
    font-family: var(--font-heading);
    /* font-size: 2em; */
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.2;
}

.cta-btn-group {
    display: flex;
    align-items: stretch;
    gap: 10px;
    flex-shrink: 0;
}

.cta-btn-primary {
    background-color: var(--button-color);
    color: var(--primary-color);
    font-family: var(--font-heading);
    /* font-size: 1.25em; */
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
}

.cta-btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-btn-arrow {
    background-color: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.cta-btn-arrow:hover {
    background-color: var(--secondary-color);
}

.cta-btn-arrow:hover svg {
    color: var(--button-color);
}

.footer-body-wrapper {
    margin: 0 auto;
    padding-top: 20px;
}

.footer-main-row {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-brand {
    width: 30%;
}

.footer-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
    display: block;
}

.footer-brand .footer-desc {
    font-family: var(--font-para);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--white);
    margin: 0;
    opacity: 0.9;
    text-align: justify;
}

.footer-cols {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    width: 70%;
    /* margin-left: 50px; */
}

.footer-col {
    flex: 1;
    min-width: 130px;
}

.footer-col .footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.25em;
    font-weight: 700;
    color: var(--button-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 25px 0;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav li a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-para);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: color 0.25s;
    white-space: nowrap;
    /* Prevents wrapping on desktop/tablet */
}

.footer-nav li a:hover {
    color: var(--button-color);
}

.f-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 10px;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom-bar .terms-condition{
    color: #fff;
    text-decoration: none;
    font-size: 0.85em;
}
.footer-bottom-bar .footer-copy {
    font-family: var(--font-para);
    font-size: 0.85em;
    font-weight: 500;
    color: var(--white);
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--secondary-color);
    border-radius: 6px;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.social-btn:hover {
    background-color: var(--button-color);
    color: #111827;
}


/* Responsive  */

@media (max-width: 1200px) {
    .footer-main-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 50px;
    }

    .footer-brand {
        width: 100%;
        max-width: 800px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo img {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 25px;
    }

    .footer-brand .footer-desc {
        text-align: center;
        margin: 0 auto;
        max-width: 700px;
    }

    .footer-cols {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: nowrap;
    }

    .footer-col {
        flex: 1;
        text-align: left;
    }

    .footer-nav li a {
        justify-content: flex-start;
        white-space: nowrap;
    }
}

@media(max-width:767px) {
    .footer-cols {
        display: grid;
        gap: 30px;
    }

    .footer-desc {
        text-align: justify !important;
    }

    .footer-brand {
        align-items: baseline;
    }
}

@media (max-width: 480px) {
    .cta-btn-primary {
        padding: 12px 20px;
        font-size: 1.1em;
    }
    .footer-logo img{
        height: 50px;
    }
    .footer-main-row{
        gap: 10px;
    }
    .footer-cols{
        gap: 15px;
    }
}