/* =========================
   CTA SECTION
========================= */

.cta-section{
    padding:100px 0;
    background:#ffffff;
}

/* =========================
   CTA CARD
========================= */

.cta-section .container{
    background:linear-gradient(
        135deg,
        #15803d,
        #22c55e
    );

    border-radius:30px;
    padding:70px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.15);

    position:relative;
    overflow:hidden;
}

/* Decorative Effect */

.cta-section .container::before{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-80px;
    right:-80px;
}

.cta-section .container::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-60px;
    left:-60px;
}

/* =========================
   CTA CONTENT
========================= */

.cta-title{
    color:#fff;
    font-size:3rem;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

.cta-text{
    color:rgba(255,255,255,.92);
    font-size:1.1rem;
    line-height:1.8;
    max-width:650px;
    position:relative;
    z-index:2;
}

/* =========================
   CTA BUTTON
========================= */

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:#fff;
    color:#15803d;

    padding:18px 40px;

    border-radius:60px;

    font-weight:700;
    font-size:16px;

    transition:.35s;

    box-shadow:
    0 15px 35px rgba(0,0,0,.15);

    position:relative;
    z-index:2;
}

.cta-btn:hover{
    background:#f8fafc;
    color:#15803d;
    transform:translateY(-5px);

    box-shadow:
    0 25px 50px rgba(0,0,0,.25);
}

.cta-btn span{
    transition:.35s;
}

.cta-btn:hover span{
    transform:translateX(6px);
}

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

@media(max-width:992px){

    .cta-section .container{
        padding:55px;
    }

    .cta-title{
        font-size:2.4rem;
    }

    .cta-text{
        font-size:1rem;
    }
}

@media(max-width:768px){

    .cta-section{
        padding:70px 0;
        text-align:center;
    }

    .cta-section .container{
        padding:40px 25px;
        border-radius:22px;
    }

    .cta-title{
        font-size:2rem;
    }

    .cta-btn{
        margin-top:20px;
    }
}

@media(max-width:576px){

    .cta-title{
        font-size:1.7rem;
    }

    .cta-btn{
        width:100%;
    }
}