/* ================= CTA RSUD ================= */
.cta-rsud{
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(
        120deg,
        #8b0000 0%,
        #c40012 45%,
        #e60012 100%
    );
    padding:50px 0;
    text-align:center;
}

/* SHAPE KIRI */
.cta-rsud::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    left:-250px;
    top:-180px;
    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.18),
        rgba(255,255,255,0)
    );
    transform:rotate(35deg);
}

.cta-rsud::after{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    right:-280px;
    bottom:-260px;
    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.22),
        rgba(255,255,255,0)
    );
    transform:rotate(-25deg);
}

.cta-content{
    max-width:700px;
    margin:auto;
    position:relative;
    z-index:2;
}

.cta-content h2{
    font-size:30px;
    font-weight:700;
    color:white;
    margin-bottom:15px;
}

.cta-content p{
    font-size:17px;
    color:rgba(255,255,255,.9);
    margin-bottom:30px;
}

.cta-content::before{
    content:"";
    position:absolute;
    width:220px;
    height:6px;
    background:rgba(255,255,255,.35);
    top:35px;
    left:80px;
    transform:rotate(-35deg);
}

.cta-button{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:white;
    color:#e60012;
    padding:14px 32px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
    transition:.3s ease;
}

.cta-button:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
    text-decoration:none;
}

.cta-button i{
    transition:.3s ease;
    font-size:18px;
}

.cta-button:hover i{
    transform:translateX(6px);
}

/* RESPONSIVE */
@media(max-width:768px){
    .cta-content{
        padding:40px 20px;
    }

    .cta-content h2{
        font-size:26px;
    }

   .cta-content p{
        font-size:15px;
    }
}