/* =========================================
   CTA PHOTO & VIDEO SERVICE
========================================= */

.cta-section {
    position: relative;
    width: 100%;
    min-height: 650px;
    background: #10151D;
    overflow: hidden;

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

.cta-container {
    position: relative;
    z-index: 5;

    width: 90%;
    max-width: 1200px;

    text-align: center;
}

/* ===========================
      TITLE
=========================== */

.cta-title {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;

    max-width: 1100px;
    margin: auto;
}

.cta-title .blue {
    color: #6FD8FF;
}

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

.cta-btn {

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

    margin-top: 45px;

    width: 185px;
    height: 55px;

    background: #545454;
    color: white;

    border-radius: 999px;

    text-decoration: none;
    font-size: 15px;
    font-weight: 500;

    transition: .35s ease;
}

.cta-btn:hover {

    background: #6FD8FF;
    color: #10151D;

    transform: translateY(-4px);
}

/* =====================================
      RIGHT ORGANIC SHAPES
===================================== */

.cta-bg {

    position: absolute;

    inset: 0;

    overflow: hidden;
}

/* blob utama */

.shape {

    position: absolute;

    border-radius: 45% 55% 60% 40% /
                     35% 55% 45% 65%;
}

/* shape paling belakang */

.shape-1 {

    width: 600px;
    height: 900px;

    background: #313748;

    right: -250px;
    top: -80px;

    opacity: .95;
}

/* layer 2 */

.shape-2 {

    width: 500px;
    height: 760px;

    background: #1E2434;

    right: -170px;
    top: -30px;
}

/* layer 3 */

.shape-3 {

    width: 380px;
    height: 620px;

    background: #11182A;

    right: -80px;
    top: 40px;
}

/* layer 4 */

.shape-4 {

    width: 250px;
    height: 480px;

    background: #060A12;

    right: 40px;
    top: 120px;
}

/* =====================================
      GLOW
===================================== */

.cta-section::before{

    content:"";

    position:absolute;

    width:900px;
    height:900px;

    background:radial-gradient(circle,
    rgba(111,216,255,.08),
    transparent 70%);

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);
}

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

@media(max-width:992px){

    .cta-section{

        min-height:550px;
    }

    .shape-1{

        width:430px;
        height:700px;
    }

    .shape-2{

        width:360px;
        height:600px;
    }

    .shape-3{

        width:280px;
        height:500px;
    }

    .shape-4{

        width:180px;
        height:400px;
    }

}

@media(max-width:768px){

    .cta-section{

        padding:100px 20px;
        min-height:auto;
    }

    .cta-title{

        font-size:38px;
    }

    .cta-btn{

        width:170px;
        height:50px;

        font-size:14px;
    }

    .shape-1{

        right:-300px;
    }

}

@media(max-width:480px){

    .cta-title{

        font-size:30px;
    }

    .shape-1{

        width:330px;
        height:520px;
    }

    .shape-2{

        width:270px;
        height:450px;
    }

    .shape-3{

        width:200px;
        height:350px;
    }

    .shape-4{

        display:none;
    }

}