/*==============================================================
CALL TO ACTION
==============================================================*/
.cta-section{
    padding:100px 0;
    background:#fff;
}

.cta-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:32px;
    padding:80px;
    background:linear-gradient(135deg,#d71920 0%,#b8131a 100%);
    box-shadow:0 30px 80px rgba(215,25,32,.25);
}

/* Decorative circles */
.cta-wrapper::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    right:-140px;
    top:-140px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.cta-wrapper::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    left:-80px;
    bottom:-80px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
}

.cta-wrapper>*{
    position:relative;
    z-index:2;
}

.cta-subtitle{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.cta-wrapper h2{
    color:#fff;
    font-size:48px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.cta-wrapper p{
    color:rgba(255,255,255,.88);
    font-size:18px;
    line-height:1.8;
    max-width:650px;
    margin:0;
}

.cta-wrapper .btn{
    min-width:220px;
    height:60px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    transition:.35s;
}

.cta-wrapper .btn-light{
    color:#d71920;
}

.cta-wrapper .btn-light:hover{
    transform:translateY(-4px);
}

.cta-wrapper .btn-outline-light:hover{
    background:#fff;
    color:#d71920;
    transform:translateY(-4px);
}

/*==============================================================
CTA BUTTONS
==============================================================*/

.cta-buttons{
    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-end;
    gap:18px;
}

.cta-buttons .btn{
    width:260px;
    height:62px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:999px;

    font-size:18px;
    font-weight:600;

    padding:0;
}

.cta-buttons .btn-light{
    color:#d71920;
}

.cta-buttons .btn-outline-light{
    border:2px solid rgba(255,255,255,.65);
}

.cta-buttons .btn-outline-light:hover{
    border-color:#fff;
}

@media(max-width:991px){

    .cta-buttons{
        margin-top:40px;
        align-items:center;
    }

    .cta-buttons .btn{
        width:100%;
        max-width:340px;
    }

}

@media(max-width:991px){

    .cta-wrapper{
        padding:50px 35px;
        text-align:center;
    }

    .cta-wrapper h2{
        font-size:36px;
    }

    .cta-wrapper p{
        margin:0 auto 30px;
    }

    .cta-wrapper .btn{
        width:100%;
        margin-bottom:15px;
    }

}

@media(max-width:576px){

    .cta-wrapper{
        border-radius:24px;
        padding:40px 25px;
    }

    .cta-wrapper h2{
        font-size:30px;
    }

    .cta-wrapper p{
        font-size:16px;
    }

}
