/*==================================================
    CALL TO ACTION
==================================================*/

.cta-section{

    padding:100px 0;

    background:#ffffff;

}

/*==================================================
    WRAPPER
==================================================*/

.cta-wrapper{

    background:linear-gradient(135deg,#009245,#00b050);

    border-radius:28px;

    padding:70px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

    overflow:hidden;

    position:relative;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

/* Decorative Circle */

.cta-wrapper::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-140px;

    right:-120px;

}

.cta-wrapper::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-100px;

    left:-80px;

}

/*==================================================
    CONTENT
==================================================*/

.cta-content{

    position:relative;

    z-index:2;

    flex:1;

}

.cta-content .section-badge{

    background:rgba(255,255,255,.18);

    color:#ffffff;

}

.cta-content h2{

    font-size:48px;

    color:#ffffff;

    font-weight:800;

    margin:20px 0;

    line-height:1.2;

}

.cta-content p{

    color:rgba(255,255,255,.90);

    font-size:18px;

    line-height:1.9;

    max-width:650px;

}

/*==================================================
    BUTTONS
==================================================*/

.cta-buttons{

    display:flex;

    flex-direction:column;

    gap:18px;

    z-index:2;

}

.btn-primary-custom{

    display:inline-block;

    background:#ffffff;

    color:#009245;

    text-decoration:none;

    font-weight:700;

    padding:12px 34px;

    border-radius:12px;

    transition:.35s;

    text-align:center;

    min-width:220px;

}

.btn-primary-custom:hover{

    background:#f4f4f4;

    transform:translateY(-3px);

}

.btn-outline-custom{

    display:inline-block;

    border:2px solid #ffffff;

    color:#ffffff;

    text-decoration:none;

    font-weight:700;

    padding:12px 34px;

    border-radius:12px;

    transition:.35s;

    text-align:center;

    min-width:220px;

}

.btn-outline-custom:hover{

    background:#ffffff;

    color:#009245;

}

/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:992px){

    .cta-wrapper{

        flex-direction:column;

        text-align:center;

        padding:60px 40px;

    }

    .cta-content h2{

        font-size:38px;

    }

    .cta-buttons{

        width:100%;

        align-items:center;

    }

}

@media(max-width:576px){

    .cta-section{

        padding:70px 0;

    }

    .cta-wrapper{

        padding:45px 25px;

    }

    .cta-content h2{

        font-size:30px;

    }

    .cta-content p{

        font-size:16px;

    }

    .btn-primary-custom,
    .btn-outline-custom{

        width:100%;

    }

}