/* Footer CTA and footer */
.footer-cta-section {
    background-color: #F3F4F6;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    padding: 56px 100px 56px 100px;
    gap: 24px;
    position: relative;
}
.footer-cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding-right: 40px;
    z-index: 2;
}
.footer-cta-heading {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.15;
    margin-bottom: 0;
}
.footer-cta-btn {
    font-size: 1.05rem;
    padding: 14px 36px;
    border-radius: 9999px;
    background-color: var(--primary-orange);
    color: var(--white);
    font-weight: 700;
    border: 2px solid var(--primary-orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.footer-cta-btn:hover {
    background-color: #e0761c;
    border-color: #e0761c;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(245, 130, 32, 0.3);
}
.footer-cta-image-wrap {
    flex: 0 0 auto;
    align-self: flex-end;
    position: relative;
    height: 340px;
    width: 260px;
    overflow: visible;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.footer-cta-img {
    position: absolute;
    bottom: -56px;
    right: 0;
    height: 420px;
    width: auto;
    object-fit: contain;
    object-position: bottom;
    z-index: 5;
    pointer-events: none;
}

.footer {
    background-color: #214AAE;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}
.footer-content {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 40px;
}
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.brand-column {
    flex: 2;
    max-width: 360px;
}
.links-column,
.contact-column {
    flex: 1;
}
.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 6px;
    filter: brightness(0) invert(1);
}
.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 0;
}
.footer-column h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-column ul li a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.25s ease;
}
.footer-column ul li a:hover {
    color: var(--primary-orange);
}
.contact-column p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 10px;
}
.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 18px;
    padding-bottom: 18px;
    text-align: center;
}
.footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.84rem;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .footer-cta-inner {
        padding: 48px 40px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-cta-content {
        align-items: center;
        padding-right: 0;
    }
    .footer-cta-image-wrap {
        height: 280px;
        width: 100%;
        justify-content: center;
        overflow: hidden;
    }
    .footer-cta-img {
        position: relative;
        bottom: 0;
        height: 280px;
        margin: 0 auto;
    }
    .footer-content {
        flex-wrap: wrap;
        gap: 28px;
    }
    .brand-column {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .links-column,
    .contact-column {
        flex: 1 1 40%;
    }
}

@media (max-width: 768px) {
    .footer-cta-inner {
        padding: 40px 24px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-cta-heading {
        font-size: 1.8rem;
    }
    .footer-cta-content {
        align-items: center;
        padding-right: 0;
    }
    .footer-cta-image-wrap {
        height: 240px;
        width: 100%;
        justify-content: center;
        overflow: hidden;
    }
    .footer-cta-img {
        position: relative;
        bottom: 0;
        height: 240px;
        width: auto;
        margin: 0 auto;
    }
    .footer-content {
        flex-direction: column;
        gap: 28px;
    }
    .brand-column {
        max-width: 100%;
    }
}
