/* =========================================
        HERO SERVICE
========================================= */

.service-hero{

    position: relative;

    width: 100%;

    min-height: 100vh;

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

    overflow: hidden;

    padding: 180px 0 120px;

}

.service-bg{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:0;

    opacity:100;      /* Atur tingkat terlihat gambar */

}

/* Overlay gelap */
.service-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(10,15,24,.75);

    z-index:1;

}

.service-hero-container{

    position:relative;

    z-index:2;

}

/* =========================================
        CONTAINER
========================================= */

.service-hero-container{

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

    margin:auto;

    position:relative;
    z-index:2;

}


/* =========================================
        HEADING
========================================= */

.service-heading{

    text-align:center;

    margin-bottom:80px;

}

.service-heading h1{

    font-size:72px;

    line-height:1.1;

    font-weight:800;

    color:#ffffff;

    letter-spacing:-2px;

}

.blue-text{

    color:#48D4FF;

}

.white-text{

    color:#ffffff;

}


/* =========================================
        PROCESS
========================================= */

.service-process{

    display:flex;

    justify-content:center;

    align-items:stretch;

    gap:22px;

    flex-wrap:nowrap;

}


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

.process-card{

    position: relative;

    overflow: hidden;

    will-change: transform;

    width:215px;

    min-height:260px;

    background:#ffffff;

    border-radius:24px;

    padding:32px 22px;

    transition:.35s ease;

    cursor:pointer;

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

}

.process-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:24px;

    background:

    radial-gradient(circle at top,

    rgba(72,212,255,.18),

    transparent 70%);

    opacity:0;

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-12px);

    box-shadow:

    0 30px 60px rgba(0,0,0,.25);

}

.process-card:hover::before{

    opacity:1;

}


/* =========================================
        NUMBER
========================================= */

.process-number{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#EAF9FF;

    color:#1DBEFF;

    font-size:17px;

    font-weight:700;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:24px;

}


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

.process-card h3{

    font-size:27px;

    line-height:1.15;

    font-weight:700;

    color:#111111;

    margin-bottom:22px;

}


/* =========================================
        DESCRIPTION
========================================= */

.process-card p{

    font-size:15px;

    line-height:1.8;

    color:#666666;

}


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

/* Laptop Besar */
@media (max-width:1400px){

    .service-hero{

        padding:170px 0 110px;

    }

    .service-hero-container{

        max-width:1200px;

    }

    .service-heading{

        margin-bottom:70px;

    }

    .service-heading h1{

        font-size:64px;

    }

    .service-process{

        gap:20px;

    }

    .process-card{

        width:210px;

        min-height:250px;

    }

}


/* Laptop */
@media (max-width:1200px){

    .service-hero{

        padding:160px 0 100px;

    }

    .service-heading h1{

        font-size:56px;

    }

    .service-process{

        flex-wrap:wrap;

        justify-content:center;

        gap:20px;

    }

    .process-card{

        width:calc(33.333% - 14px);

        min-width:250px;

    }

}


/* Tablet */
@media (max-width:992px){

    .service-hero{

        min-height:auto;

        padding:140px 0 90px;

    }

    .service-heading{

        margin-bottom:50px;

    }

    .service-heading h1{

        font-size:46px;

        line-height:1.2;

    }

    .service-process{

        gap:18px;

    }

    .process-card{

        width:calc(50% - 10px);

        min-width:0;

        padding:28px 20px;

    }

    .process-card h3{

        font-size:24px;

    }

}


/* Mobile */
@media (max-width:768px){

    .service-hero{

        padding:120px 0 70px;

    }

    .service-hero-container{

        width:92%;

    }

    .service-heading{

        margin-bottom:35px;

    }

    .service-heading h1{

        font-size:34px;

        line-height:1.25;

        letter-spacing:-1px;

    }

    .service-process{

        flex-direction:column;

        gap:18px;

    }

    .process-card{

        width:100%;

        min-height:auto;

        padding:24px 20px;

        border-radius:20px;

    }

    .process-number{

        width:40px;

        height:40px;

        font-size:16px;

        margin-bottom:18px;

    }

    .process-card h3{

        font-size:22px;

        margin-bottom:14px;

    }

    .process-card p{

        font-size:14px;

        line-height:1.7;

    }

}


/* Small Mobile */
@media (max-width:480px){

    .service-hero{

        padding:110px 0 60px;

    }

    .service-heading h1{

        font-size:28px;

    }

    .process-card{

        padding:20px 18px;

        border-radius:18px;

    }

    .process-card h3{

        font-size:20px;

    }

    .process-card p{

        font-size:13px;

        line-height:1.6;

    }

}


/* iPhone SE */
@media (max-width:380px){

    .service-heading h1{

        font-size:24px;

    }

    .process-number{

        width:36px;

        height:36px;

        font-size:14px;

    }

    .process-card h3{

        font-size:18px;

    }

    .process-card p{

        font-size:12px;

    }

}



