/* ============================
   CTA SECTION
   ============================ */
.cta-section {
    height: 320px;
    opacity: 1;
}

.cta-inner {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    z-index: 1;
}

.cta-shape {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 75%;
    z-index: 1;
}

.cta-shape svg {
    width: 100%;
    height: 100%;
    transform: scaleX(-1);
    display: block;
}

.cta-left {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

.cta-left-content {
    padding-left: var(--gutter-desktop);
    padding-right: 40px;
}

.cta-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin: 0;
}

.cta-right {
    position: relative;
    width: 50%;
    height: 100%;
    background-image: url('/img/background/bg-hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: var(--gutter-desktop);
    z-index: 0;
}

.cta-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    height: 44px;
    padding: 10px 16px;
    border-radius: 100px;
    background: #15944B;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #FFFFFF;
    transition: background var(--transition-fast);
}

.cta-wa-btn:hover {
    background: #128040;
}

.cta-wa-btn img {
    width: 20px;
    height: 20px;
}

/* Tablet */
@media (max-width: 991px) {
    .cta-section {
        height: 280px;
    }

    .cta-text {
        font-size: 32px;
    }

    .cta-left-content {
        padding-left: var(--gutter-tablet);
        padding-right: 20px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .cta-section {
        height: auto;
    }

    .cta-inner {
        flex-direction: column;
    }

    .cta-shape {
        width: 100%;
        height: 100%;
    }

    .cta-left {
        width: 100%;
        min-height: 220px;
    }

    .cta-left-content {
        padding-left: var(--gutter-mobile);
        padding-right: var(--gutter-mobile);
    }

    .cta-text {
        font-size: 24px;
    }

    .cta-right {
        width: 100%;
        padding: 24px var(--gutter-mobile);
        justify-content: flex-start;
    }
}
