/* ==========================================================
   CONTACT CTA
========================================================== */

.contact-cta{
    padding:40px 0;
    position:relative;
    overflow:hidden;
}

.contact-cta .container{
    max-width:1320px;
    margin:0 auto;
}

/* ==========================================================
   CTA BOX
========================================================== */

.cta-box{

    position:relative;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:40px;

    overflow:hidden;

    padding:10px 30px;

    border-radius:24px;

    background:
        linear-gradient(
            90deg,
            #08b86c 0%,
            #0a8cb7 35%,
            #0b63f6 100%
        );

    box-shadow:
        0 25px 60px rgba(11,99,246,.22);

}

/* ==========================================================
   Decorative Background
========================================================== */

.cta-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at 15% 50%,
            rgba(255,255,255,.08),
            transparent 35%),

        radial-gradient(circle at 90% 10%,
            rgba(255,255,255,.08),
            transparent 30%);

    pointer-events:none;

}

.cta-box::after{

    content:"";

    position:absolute;

    inset:0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.04) 1px,
            transparent 1px),

        linear-gradient(
            90deg,
            rgba(255,255,255,.04) 1px,
            transparent 1px);

    background-size:36px 36px;

    opacity:.18;

    pointer-events:none;

}

/* ==========================================================
   LEFT ILLUSTRATION
========================================================== */

.cta-illustration{

    flex:0 0 230px;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;
    z-index:2;

}

.cta-illustration img{

    width:100%;
    max-width:220px;

    display:block;

    filter:
        drop-shadow(0 18px 35px rgba(0,0,0,.18));

}

/* ==========================================================
   CONTENT
========================================================== */

.cta-content{

    flex:1;

    position:relative;
    z-index:2;

}

.cta-subtitle{

    display:block;

    color:rgba(255,255,255,.92);

    font-size:16px;
    font-weight:400;

    margin-bottom:10px;

    line-height:1.6;

}

.cta-content h2{

    color:#fff;

    font-size:24px;
    font-weight:800;

    line-height:1.15;

    margin:0;

}

.cta-content h2 span{

    color:#ffffff;

}

/* ==========================================================
   CTA BUTTON
========================================================== */

.cta-action{

    flex-shrink:0;

    position:relative;
    z-index:2;

}

.calendar-btn{

    display:flex;
    align-items:center;
    justify-content:center;

    gap:6px;

    background:#fff;

    color:#0b1b57;

    padding:4px 10px;

    border-radius:70px;

    font-size:14px;
    font-weight:500;

    text-decoration:none;

    white-space:nowrap;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;

    box-shadow:
        0 20px 40px rgba(0,0,0,.12);

}

.calendar-btn:hover{

    transform:
        translateY(-5px);

    box-shadow:
        0 25px 50px rgba(0,0,0,.22);

}

.calendar-icon{

    width:30px;
    height:30px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#edf4ff;

    color:#0b63f6;

    font-size:14px;

}

.calendar-text{

    display:flex;
    align-items:center;

}

.calendar-arrow{

    font-size:15px;

    transition:transform .35s ease;

}

.calendar-btn:hover .calendar-arrow{

    transform:translateX(6px);

}

/* ==========================================================
   DECORATIVE SHAPES
========================================================== */

.cta-shape{

    position:absolute;

    border-radius:50%;

    pointer-events:none;

}

.shape-1{

    width:220px;
    height:220px;

    left:-90px;
    top:-90px;

    background:
        rgba(255,255,255,.06);

}

.shape-2{

    width:170px;
    height:170px;

    right:-60px;
    bottom:-60px;

    background:
        rgba(255,255,255,.08);

}

.shape-3{

    width:80px;
    height:80px;

    right:26%;
    top:-35px;

    background:
        rgba(255,255,255,.05);

}

/* ==========================================================
   CTA ANIMATIONS
========================================================== */

@keyframes ctaFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes pulseGlow{

    0%{
        box-shadow:0 0 0 rgba(255,255,255,.25);
    }

    50%{
        box-shadow:0 0 30px rgba(255,255,255,.18);
    }

    100%{
        box-shadow:0 0 0 rgba(255,255,255,.25);
    }

}

.cta-illustration img{
    animation:ctaFloat 6s ease-in-out infinite;
}

.calendar-btn:hover .calendar-icon{
    animation:pulseGlow .8s ease;
}


/* ==========================================================
   3840px (4K)
========================================================== */

@media (min-width:3000px){

    .contact-cta{
        padding:30px 0;
    }

    .contact-cta .container{
        max-width:2400px;
    }

    .cta-box{
        padding:20px 40px;
        gap:120px;
        border-radius:42px;
    }

    .cta-illustration{
        flex:0 0 420px;
    }

    .cta-illustration img{
        max-width:300px;
    }

    .cta-content{
        max-width:1200px;
    }

    .cta-subtitle{
        font-size:30px;
        margin-bottom:22px;
    }

    .cta-content h2{
        font-size:46px;
        line-height:1.1;
    }

    .calendar-btn{
        padding:10px 20px;
        font-size:24px;
        gap:26px;
        border-radius:90px;
    }

    .calendar-icon{
        width:44px;
        height:44px;
        font-size:30px;
    }

    .calendar-arrow{
        font-size:22px;
    }

    .shape-1{
        width:460px;
        height:460px;
    }

    .shape-2{
        width:320px;
        height:320px;
    }

    .shape-3{
        width:150px;
        height:150px;
    }

}


/* ==========================================================
   2560px (2200px - 2999px)
========================================================== */

@media (min-width:2200px) and (max-width:2999px){

    .contact-cta{
        padding:30px 0;
    }

    .contact-cta .container{
        max-width:1800px;
    }

    .cta-box{
        padding:10px 40px;
        gap:90px;
        border-radius:34px;
    }

    .cta-illustration{
        flex:0 0 320px;
    }

    .cta-illustration img{
        max-width:310px;
    }

    .cta-content{
        max-width:900px;
    }

    .cta-subtitle{
        font-size:22px;
        margin-bottom:18px;
    }

    .cta-content h2{
        font-size:32px;
        line-height:1.12;
    }

    .calendar-btn{
        padding:10px 20px;
        font-size:18px;
        gap:22px;
        border-radius:80px;
    }

    .calendar-icon{
        width:30px;
        height:30px;
        font-size:18px;
    }

    .calendar-arrow{
        font-size:18px;
    }

    .shape-1{
        width:340px;
        height:340px;
    }

    .shape-2{
        width:250px;
        height:250px;
    }

    .shape-3{
        width:110px;
        height:110px;
    }

}


/* ==========================================================
   1920px (1600px - 2199px)
========================================================== */

@media (min-width:1600px) and (max-width:2199px){

    .contact-cta{
        padding:30px 0;
    }

    .contact-cta .container{
        max-width:1500px;
    }

    .cta-box{
        padding:20px 30px;
        gap:60px;
        border-radius:30px;
    }

    .cta-illustration{
        flex:0 0 260px;
    }

    .cta-illustration img{
        max-width:250px;
    }

    .cta-content{
        max-width:760px;
    }

    .cta-subtitle{
        font-size:20px;
        margin-bottom:14px;
    }

    .cta-content h2{
        font-size:26px;
        line-height:1.15;
    }

    .cta-action{
        flex-shrink:0;
    }

    .calendar-btn{
        font-size:16px;
        padding:10px 20px;
        gap:18px;
        border-radius:70px;
    }

    .calendar-icon{
        width:30px;
        height:30px;
        font-size:18px;
    }

    .calendar-arrow{
        font-size:16px;
    }

    .shape-1{
        width:260px;
        height:260px;
    }

    .shape-2{
        width:190px;
        height:190px;
    }

}

/* ==========================================================
   1440px
========================================================== */

@media(max-width:1440px){
    
    .contact-cta .container{
        max-width:1240px;
    }

    .cta-content h2{
        font-size:24px;
    }

    .cta-subtitle{
        font-size:16px;
    }
    
    .cta-illustration img {
    width: 100%;
    max-width: 170px;
    }

    .cta-box{
        gap:30px;
    }

}

/* ==========================================================
   1366px
========================================================== */

@media(max-width:1366px){
    
    .contact-cta .container{
        max-width:1240px;
    }

    .cta-box{
        padding:10px 30px;
    }

    .cta-content h2{
        font-size:24px;
    }

    .calendar-btn{
        font-size:14px;
        padding:6px 10px;
    }

    .cta-illustration img{
        max-width:170px;
    }

}

/* ==========================================================
   1280px
========================================================== */

@media(max-width:1280px){
    
    .contact-cta .container{
        max-width:1180px;
    }

    .cta-content h2{
        font-size:22px;
    }

    .cta-subtitle{
        font-size:14px;
    }

    .cta-illustration{
        flex-basis:160px;
    }

    .cta-illustration img{
        max-width:150px;
    }

}

/* ==========================================================
   1024px
========================================================== */

@media(max-width:1024px){

    .cta-box{

        display:flex;

        grid-template-columns:1fr;

        gap:25px;

    }

    .cta-action{

        grid-column:1/-1;

        display:flex;

        justify-content:center;

        margin-top:15px;

    }

    .calendar-btn{

        width:100%;

        max-width:420px;

    }

}

/* ==========================================================
   768px
========================================================== */

@media(max-width:768px){

    .contact-cta{
        padding:30px 0;
    }

    .cta-box{

        flex-direction:column;

        text-align:center;

        padding:15px 20px;

        gap:25px;

    }

    .cta-content{

        order:2;

    }

    .cta-action{

        order:3;

        width:100%;

    }

    .calendar-btn{

        width:100%;

        justify-content:center;

    }

    .cta-illustration{

        order:1;

    }

    .cta-content h2{

        font-size:22px;

    }

    .cta-subtitle{

        font-size:14px;

    }

}

/* ==========================================================
   576px
========================================================== */

@media(max-width:576px){

    .cta-box{

        padding:15px 20px;

        border-radius:20px;

    }

    .cta-content h2{

        font-size:20px;

        line-height:1.3;

    }

    .cta-subtitle{

        font-size:14px;

    }

    .calendar-btn{

        font-size:14px;

        padding:10px 20px;

        gap:12px;

    }

    .calendar-icon{

        width:42px;

        height:42px;

        font-size:16px;

    }

}

/* ==========================================================
   480px
========================================================== */

@media(max-width:480px){

    .cta-content h2{

        font-size:18px;

    }

    .cta-subtitle{

        font-size:14px;

    }

    .calendar-btn{

        font-size:14px;

        padding:8px 18px;

    }

    .calendar-arrow{

        display:none;

    }

}

/* ==========================================================
   375px
========================================================== */

@media(max-width:375px){

    .cta-box{

        padding:20px 10px;

    }

    .cta-content h2{

        font-size:18px;

    }

    .cta-subtitle{

        font-size:12px;

    }

    .calendar-btn{

        font-size:12px;

        padding:8px 16px;

    }

    .cta-illustration img{

        max-width:150px;

    }

}

/* ==========================================================
   320px
========================================================== */

@media(max-width:320px){

    .cta-content h2{

        font-size:18px;

    }

    .cta-subtitle{

        font-size:12px;

    }

    .calendar-btn{

        font-size:12px;

        padding:8px 14px;

    }

    .calendar-icon{

        width:36px;

        height:36px;

        font-size:14px;

    }

}

