:root {
        --primary-green: #0E9F8D;
        --primary-gradient-start: #0E9F8D;
        --primary-gradient-end: #6CC4A1;
        --hero-yellow: #F6CA22;
        --hero-green: #0e9f8d;
        --text-dark: #111111;
        --text-muted: #5E6E7B;
        --white: #FFFFFF;
    }

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        font-family: Inter, Poppins, Arial, sans-serif;
    }

    * {
        box-sizing: border-box;
    }

    /* HERO SECTION */

    #home.hero-kemenkes {
        position: relative;
        min-height: 650px;
        height: 650px;
        overflow: hidden;
        display: flex;
        align-items: center;
        color: var(--white);
        padding: 120px 0 40px;
        background-image:
            /*radial-gradient(circle at 0% 0%,*/
            /*    rgba(246, 202, 34, 0.98) 0%,*/
            /*    rgba(246, 202, 34, 0.72) 14%,*/
            /*    rgba(246, 202, 34, 0.22) 32%,*/
            /*    rgba(246, 202, 34, 0) 50%),*/
            /*linear-gradient(0deg,*/
            /*    rgba(14, 159, 141, 0.96) 0%,*/
            /*    rgba(14, 159, 141, 0.92) 34%,*/
            /*    rgba(108, 196, 161, 0.72) 52%,*/
            /*    rgba(108, 196, 161, 0.18) 66%,*/
            /*    rgba(255, 255, 255, 0) 78%),*/
            url('../../assets/img/home1.jpeg');
        /* url('assets/img/gekgek.jpg'); */
        background-size: cover;
        background-position: center right;
        background-repeat: no-repeat;
    }

    #home.hero-kemenkes::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.05),
                rgba(0, 0, 0, 0.10));
        pointer-events: none;
    }

    .hero-kemenkes .hero-container {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
        padding: 80px 60px 48px;
    }

    .hero-kemenkes .hero-content {
        width: 100%;
        max-width: 1200px;
    }

    .hero-kemenkes .hero-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 14px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.92);
    }

    .hero-kemenkes .hero-label::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: var(--hero-yellow);
        box-shadow: 0 0 0 6px rgba(246, 202, 34, 0.18);
    }

    .hero-kemenkes h1 {
        margin: 0;
        max-width: 560px;
        font-size: 48px;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: -0.02em;
        color: var(--white);
        text-shadow: 0 6px 20px rgba(0, 0, 0, 0.20);
    }

    .hero-kemenkes .hero-subtext {
        margin: 18px 0 36px;
        max-width: 560px;
        font-size: 18px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.92);
    }

    /* =========================================================
       SEARCH + ACTIONS
    ========================================================= */

    .hero-top-row {
        width: 100%;
        max-width: 1200px;

        display: flex;
        align-items: stretch;
        gap: 16px;
    }

    /* SEARCH */

    .hero-search-card {
        flex: 0 0 42%;
        max-width: 42%;

        padding: 12px;
        border-radius: 18px;

        background: rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(10px);

        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
    }

    .hero-search-title {
        display: block;
        margin: 0 0 8px 4px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.9);
    }

    .hero-search-box {
        display: flex;
        align-items: center;
        height: 54px;
        border-radius: 14px;
        background: var(--white);
        overflow: hidden;
    }

    .hero-search-box i {
        width: 52px;
        text-align: center;
        font-size: 18px;
        color: var(--primary-green);
    }

    .hero-search-box input {
        flex: 1;
        border: 0;
        outline: 0;
        height: 100%;
        font-size: 14px;
        color: var(--text-dark);
        background: transparent;
    }

    .hero-search-box button {
        height: calc(100% - 10px);
        margin-right: 5px;
        padding: 0 22px;
        border: 0;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 700;
        color: var(--white);
        background: var(--hero-green);
        cursor: pointer;
        transition: 0.3s ease;
    }

    .hero-search-box button:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(246, 202, 34, 0.35);
    }

    /* =========================================================
       HERO ACTIONS
    ========================================================= */

    .hero-actions {
        flex: 1;

        display: grid;
        grid-template-columns: repeat(5, 1fr);

        gap: 12px;
    }

    .hero-action-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 10px;
        padding: 14px 10px;

        text-align: center;
        text-decoration: none;

        border-radius: 18px;
        background: rgba(255, 255, 255, .96);

        color: var(--text-dark);

        box-shadow: 0 10px 28px rgba(0, 0, 0, .14);

        transition: .3s ease;
    }

    .hero-action-item:hover  { 
        transform: translateY(-5px);
        background: var(--hero-green);
        box-shadow: 0 16px 30px rgba(0, 0, 0, .18);
        
        color: var(--white);
        text-decoration: none;
        
    }
.hero-action-item:hover .hero-action-icon {
    color: var(--white);
}
    .hero-action-icon {
        width: 40px;
        height: 40px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 12px;

        background: none;

        color: var(--primary-green);
        font-size: 17px;
    }

    .hero-action-item span:last-child {
        font-size: 12px;
        font-weight: 700;
        line-height: 1.3;
    }

    /* =========================================================
       DOTS
    ========================================================= */
    .rawat-header{
    background: linear-gradient(135deg,#0e9f8d,#22b8a7);
    padding:60px 20px;
    text-align:center;
    color:#fff;
}

.rawat-header h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.rawat-header p{
    font-size:18px;
    opacity:.9;
}

#sliderRawatInap{
    margin-top:40px;
}

#sliderRawatInap img{
    height:550px;
    object-fit:cover;
    border-radius:20px;
}

.carousel-caption{
    background:rgba(0,0,0,.55);
    padding:20px;
    border-radius:15px;
}

.rawat-section{
    background:#f7f9fb;
    padding:70px 0;
}

.room-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.room-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.room-badge{
    position:absolute;
    top:15px;
    right:15px;
    background:#ffc107;
    color:#000;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}

.room-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#e8faf8;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.room-icon i{
    font-size:35px;
    color:#0e9f8d;
}

.room-title{
    text-align:center;
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}

.room-feature{
    margin-bottom:10px;
    color:#666;
}

.room-feature i{
    color:#0e9f8d;
    margin-right:8px;
}

.room-price{
    text-align:center;
    margin-top:25px;
    font-size:32px;
    font-weight:700;
    color:#0e9f8d;
}

.room-price span{
    font-size:15px;
    color:#777;
}

.rawatjalan-section {
    background: #f8fafc;
    padding: 80px 0;
}

.rawatjalan-header {
    background: linear-gradient(135deg,#0d6efd,#198754);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.rawatjalan-header h2{
    color:#fff;
    margin-bottom:10px;
    font-weight:700;
}

.rawatjalan-header p{
    margin:0;
    opacity:.9;
}

.rawatjalan-intro{
    text-align:center;
    max-width:900px;
    margin:0 auto 40px;
    color:#555;
    line-height:1.8;
}

.klinik-card{
    background:#fff;
    border-radius:18px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:15px;
    height:100%;
    transition:.35s ease;
    border:1px solid #eef2f7;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.klinik-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(13,110,253,.15);
    border-color:#0d6efd;
}

.klinik-icon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:15px;
    background:linear-gradient(135deg,#0d6efd,#198754);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}

.klinik-content{
    flex:1;
}

.klinik-label{
    font-size:.8rem;
    color:#6c757d;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:4px;
}

.klinik-content h5{
    margin:0;
    font-size:1rem;
    font-weight:600;
}

.klinik-content a{
    color:#212529;
    text-decoration:none;
}

.klinik-content a:hover{
    color:#0d6efd;
}

.judul-klinik{
    text-align:center;
    margin-bottom:35px;
}

.judul-klinik h3{
    font-weight:700;
    color:#0d6efd;
}

/*.unggulan-section{*/
/*    background:#f8fafc;*/
/*}*/

/*.unggulan-header{*/
/*    background:linear-gradient(135deg,#0d6efd,#198754);*/
/*    padding:60px 30px;*/
/*    border-radius:20px;*/
/*    color:#fff;*/
/*    box-shadow:0 15px 40px rgba(0,0,0,.15);*/
/*}*/

/*.unggulan-header h2{*/
/*    color:#fff;*/
/*    font-weight:700;*/
/*    margin-bottom:10px;*/
/*}*/

/*.unggulan-header p{*/
/*    margin:0;*/
/*    opacity:.9;*/
/*}*/

/*.unggulan-box{*/
/*    background:#fff;*/
/*    border-radius:20px;*/
/*    padding:30px;*/
/*    height:100%;*/
/*    transition:.35s;*/
/*    border:1px solid #edf2f7;*/
/*    box-shadow:0 8px 25px rgba(0,0,0,.06);*/
/*    position:relative;*/
/*    overflow:hidden;*/
/*}*/

/*.unggulan-box::before{*/
/*    content:'';*/
/*    position:absolute;*/
/*    top:0;*/
/*    left:0;*/
/*    width:100%;*/
/*    height:5px;*/
/*    background:linear-gradient(90deg,#0d6efd,#198754);*/
/*}*/

/*.unggulan-box:hover{*/
/*    transform:translateY(-10px);*/
/*    box-shadow:0 20px 40px rgba(13,110,253,.18);*/
/*}*/

/*.unggulan-icon{*/
/*    width:70px;*/
/*    height:70px;*/
/*    border-radius:18px;*/
/*    background:linear-gradient(135deg,#0d6efd,#198754);*/
/*    display:flex;*/
/*    align-items:center;*/
/*    justify-content:center;*/
/*    margin-bottom:20px;*/
/*}*/

/*.unggulan-icon i{*/
/*    color:#fff;*/
/*    font-size:30px;*/
/*}*/

/*.unggulan-title{*/
/*    font-size:1.2rem;*/
/*    font-weight:700;*/
/*    margin-bottom:15px;*/
/*}*/

/*.unggulan-desc{*/
/*    color:#6b7280;*/
/*    line-height:1.8;*/
/*}*/
.unggulan-page{
    background:#f8fafc;
}

.unggulan-banner{
    background:
    linear-gradient(
        rgba(14,116,72,.92),
        rgba(21,128,61,.92)
    ),
    url('../assets/img/patternmodal.png');

    background-repeat:repeat;
    background-blend-mode:multiply;

    padding:80px 0;
    text-align:center;
    color:#fff;
}

.unggulan-banner h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
    color:#fff;
}

.unggulan-banner p{
    max-width:700px;
    margin:auto;
    opacity:.95;
}

.unggulan-item{
    display:flex;
    align-items:center;
    gap:40px;
    margin-bottom:60px;
}

.unggulan-item.reverse{
    flex-direction:row-reverse;
}

.unggulan-img{
    flex:1;
}

.unggulan-img img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    transition:.3s;
}

.unggulan-img img:hover{
    transform:scale(1.02);
}

.unggulan-content{
    flex:1;
}

.badge-unggulan{
    background:#15803d;
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.unggulan-content h2{
    margin-top:20px;
    color:#166534;
    font-weight:700;
}

.unggulan-content p{
    color:#64748b;
    line-height:1.8;
}

@media(max-width:768px){

    .unggulan-item,
    .unggulan-item.reverse{
        flex-direction:column;
    }

}
.info-terkini{
    padding:5px 0;
    background:#f8fafc;
}

.info-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.info-header h2{
    font-size:42px;
    font-weight:700;
    color:#111827;
}

.lihat-semua{
    color:#0E9F8D;
    font-weight:600;
    text-decoration:none;
}

.info-filter{
    display:flex;
    gap:15px;
    margin-bottom:40px;
    flex-wrap:wrap;
}

.info-filter button{
    border:none;
    background:#fff;
    padding:12px 24px;
    border-radius:50px;
    color:#64748b;
    font-weight:600;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.info-filter button.active{
    background:#0E9F8D;
    color:#fff;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.info-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.info-image{
    padding:15px 15px 0;
    background:#fff;
}

.info-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.info-card:hover img{
    transform:scale(1.05);
}

.info-content{
    padding:25px;
}

.info-badge{
    display:inline-block;
    padding:7px 14px;
    border-radius:8px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.pengumuman{
    background:#dff7f3;
    color:#0E9F8D;
}

.berita{
    background:#e8f4ff;
    color:#2563eb;
}

.artikel{
    background:#fff2d8;
    color:#d97706;
}

.info-content h3{
    font-size:26px;
    line-height:1.4;
    margin-bottom:15px;
    color:#111827;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.info-date{
    color:#64748b;
    font-size:15px;
}
.penunjang-section{
    background:#f8fafc;
    padding:60px 0;
}

.penunjang-header{
    background:linear-gradient(135deg,#0d6efd,#198754);
    color:#fff;
    text-align:center;
    padding:60px 20px;
    border-radius:20px;
    margin-bottom:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.penunjang-header h2{
    color:#fff;
    margin-bottom:10px;
    font-weight:700;
}

.penunjang-header p{
    margin:0;
    opacity:.9;
}

.penunjang-intro{
    text-align:center;
    max-width:900px;
    margin:0 auto 50px;
    color:#64748b;
    line-height:1.8;
}

.penunjang-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    border:1px solid #eef2f7;
}

.penunjang-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(13,110,253,.15);
}

.penunjang-title{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
    color:#0d6efd;
    font-weight:700;
}

.penunjang-title i{
    font-size:28px;
}

.penunjang-list{
    list-style:none;
    padding:0;
    margin:0;
}

.penunjang-list li{
    padding:12px 0;
    border-bottom:1px solid #edf2f7;
}

.penunjang-list li:last-child{
    border-bottom:none;
}

.penunjang-list i{
    color:#198754;
    margin-right:10px;
}

.penunjang-mini{
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.penunjang-mini:hover{
    transform:translateY(-5px);
}

.penunjang-mini i{
    font-size:40px;
    color:#0d6efd;
    margin-bottom:15px;
}

.penunjang-mini h4{
    margin:0;
    font-size:1.2rem;
    font-weight:700;
}
.penunjang-title{
    color:#1e293b !important;
    font-weight:700;
    margin-bottom:15px;
    border-left:4px solid #d4c137;
    padding-left:12px;
}
.penunjang-title h3{
    color:#1e293b !important;
    font-weight:700;
    margin-bottom:15px;
    border-left:4px solid #d4c137;
    padding-left:12px;
}
.btn-appointment{
    
}
.penunjang-mini h4{
    color:#1e293b !important;
    font-weight:700;
    margin-bottom:15px;
    border-left:4px solid #d4c137;
    padding-left:12px;
}
    .hero-dots {
        display: flex;
        align-items: center;
        gap: 9px;
        margin-top: 36px;
    }

    .hero-dots span {
        width: 26px;
        height: 3px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.42);
    }

    .hero-dots span:first-child {
        width: 48px;
        background: var(--hero-yellow);
    }

    /* =========================================================
       HERO EKSEKUTIF
    ========================================================= */
    .hero-eksekutif {
        position: relative;
        width: 100%;
        min-height: 695px;
        display: flex;
        align-items: center;
        overflow: hidden;

        background:
            linear-gradient(90deg,
                rgba(18, 170, 150, 0.85) 0%,
                rgba(18, 170, 150, 0.65) 35%,
                rgba(0, 0, 0, 0.20) 100%),
            url('assets/img/vvip/KVVIP.png') center center / cover no-repeat;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(to right,
                rgba(14, 159, 141, 0.90),
                rgba(14, 159, 141, 0.45),
                rgba(0, 0, 0, 0.10));
    }

    .hero-container {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1300px;
        margin: auto;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
    }

    /* LEFT */
    .hero-content {
        flex: 1;
        max-width: 620px;
        color: #fff;
    }

    .hero-badge {
        display: inline-block;
        padding: 10px 18px;
        border-radius: 999px;

        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);

        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 58px;
        line-height: 1.1;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .hero-desc {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 40px;
        color: rgba(255, 255, 255, 0.92);
    }

    .hero-features {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-feature {
        width: calc(50% - 10px);

        display: flex;
        align-items: center;
        gap: 14px;

        padding: 18px;
        border-radius: 18px;

        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(10px);

        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .hero-icon {
        width: 52px;
        height: 52px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;
        background: rgba(255, 255, 255, 0.18);

        font-size: 20px;
        color: #fff;
    }

    .hero-feature span {
        font-size: 15px;
        font-weight: 600;
        line-height: 1.5;
    }

    /* RIGHT IMAGE */
    .hero-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .hero-image img {
        width: 100%;
        max-width: 360px;
        object-fit: contain;
        filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {

        .hero-eksekutif {
            min-height: auto;
            padding: 80px 0;
        }

        .hero-container {
            flex-direction: column;
            text-align: center;
            padding: 25px;
        }

        .hero-content {
            max-width: 100%;
        }

        .hero-content h1 {
            font-size: 38px;
        }

        .hero-feature {
            width: 100%;
        }

        .hero-image img {
            max-width: 320px;
            margin-top: 30px;
        }
    }

    /* =========================================================
       RESPONSIVE
    ========================================================= */

    @media (max-width: 991px) {

        #home.hero-kemenkes {
            min-height: auto;
            height: auto;
            align-items: flex-start;

            background-position: center top;
        }

        .hero-kemenkes .hero-container {
            padding: 50px 24px 24px;
        }

        .hero-kemenkes h1 {
            font-size: 34px;
            line-height: 1.2;
        }

        .hero-kemenkes .hero-subtext {
            font-size: 14px;
            margin: 14px 0 22px;
        }

        .hero-top-row {
            flex-direction: column;
        }

        .hero-search-card {
            max-width: 100%;
            flex: 100%;
        }

        .hero-search-box button {
            display: none;
        }

        .hero-actions {
            grid-template-columns: repeat(5, minmax(72px, 1fr));

            overflow-x: auto;
            padding-bottom: 8px;

            scrollbar-width: none;
        }

        .hero-actions::-webkit-scrollbar {
            display: none;
        }

        .hero-action-item {
            min-height: 86px;
            padding: 12px 8px;
            border-radius: 14px;
        }

        .hero-action-icon {
            width: 34px;
            height: 34px;
            font-size: 15px;
        }

        .hero-action-item span:last-child {
            font-size: 10px;
        }
    }

    @media (max-width: 420px) {

        .hero-kemenkes .hero-container {
            padding: 42px 18px 20px;
        }

        .hero-kemenkes h1 {
            font-size: 30px;
        }

        .hero-kemenkes .hero-subtext {
            font-size: 13px;
        }
    }

    @media (max-width: 360px) {

        .hero-kemenkes h1 {
            font-size: 27px;
        }
    }

    /* =====================================================
   HERO RS
===================================================== */

    .hero-rs {
        width: 100%;
        padding: 0px 0px;
        background: #f5f7fa;
        font-family: 'Poppins', sans-serif;
    }

    .hero-rs-container {
        max-height: 650px;
        margin: auto;

        display: flex;
        align-items: center;
        gap: 50px;

        background: #ffffff;
        border-radius: 24px;
        padding: 30px;

        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

    /* =====================================================
   IMAGE
===================================================== */

    .hero-rs-image {
        flex: 1;
    }

    .hero-rs-image img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;

        border-radius: 18px;
        display: block;
    }

    /* =====================================================
   CONTENT
===================================================== */

    .hero-rs-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-rs-label {
        display: inline-block;

        width: fit-content;

        background: #e8f7f5;
        color: #009688;

        padding: 8px 16px;
        border-radius: 999px;

        font-size: 14px;
        font-weight: 600;

        margin-bottom: 20px;
    }

    .hero-rs-content h1 {
        font-size: 24px;
        line-height: 1.4;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 20px;
    }

    .hero-rs-content p {
        font-size: 16px;
        line-height: 1.9;
        color: #6b7280;
        margin-bottom: 30px;
    }

    /* =====================================================
   BUTTONS
===================================================== */
    .fotodokter{
        width:25%;
    }
    .hero-rs-buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 14px 24px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s ease;
    }

    .btn-hero-primary {
        background: #009688;
        color: #ffffff;
    }

    .btn-hero-primary:hover {
        background: #00796b;
    }

    .btn-hero-outline {
        border: 2px solid #009688;
        color: #009688;
        background: transparent;
    }

    .btn-hero-outline:hover {
        background: #009688;
        color: #ffffff;
    }

    /* =====================================================
   RESPONSIVE
===================================================== */

    @media (max-width: 992px) {

        .hero-rs-container {
            flex-direction: column;
            padding: 5px;
        }

        .hero-rs-content h1 {
            font-size: 15px;
        }
    }

    @media (max-width: 768px) {

        .hero-rs {
            padding: 40px 15px;
        }

        .hero-rs-container {
            gap: 30px;
            border-radius: 18px;
        }

        .hero-rs-content {
            text-align: center;
            align-items: center;
        }

        .hero-rs-content h1 {
            font-size: 24px;
            line-height: 1.5;
        }

        .hero-rs-content p {
            font-size: 15px;
        }

        .hero-rs-buttons {
            justify-content: center;
        }

        .btn-hero-primary,
        .btn-hero-outline {
            width: 100%;
            text-align: center;
        }
    }

    /* ======================================================
   LAYANAN SECTION
====================================================== */
    .layanan-wrapper {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
        
    }
    .layanan-section {
        position: relative;
        width: 100%;
        padding: 30px 50px;
        overflow: hidden;
        display: flex;
        align-items: center;
        gap: 50px;
        font-family: 'Poppins', sans-serif;
        /* BACKGROUND IMAGE + OVERLAY */
        background:
            linear-gradient(rgba(245, 249, 248, 0.94),
                rgba(245, 249, 248, 0.94)),
            url('assets/img/unggulan/hemodialisa.jpeg');

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* EFFECT GLOW */
    .layanan-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at top left,
                rgba(0, 150, 136, 0.12),
                transparent 35%),
            radial-gradient(circle at bottom right,
                rgba(0, 150, 136, 0.10),
                transparent 35%);
        pointer-events: none;
    }

    /* ======================================================
   LEFT CONTENT
====================================================== */

    .layanan-info {
        position: relative;
        z-index: 2;

        width: 320px;
        flex-shrink: 0;

        /* jarak kiri */
        margin-left: 20px;
    }

    .layanan-label {
        display: inline-block;

        background: #dff5f1;
        color: #009688;

        padding: 8px 16px;
        border-radius: 999px;

        font-size: 14px;
        font-weight: 600;

        margin-bottom: 20px;
    }

    .layanan-info h2 {
        font-size: 42px;
        line-height: 1.3;
        font-weight: 700;

        color: #1f2937;

        margin-bottom: 20px;
    }

    .layanan-info p {
        font-size: 16px;
        line-height: 1.9;
        color: #6b7280;
        margin-bottom: 30px;
    }

    /* ======================================================
   NAVIGATION
====================================================== */

    .layanan-nav {
        display: flex;
        gap: 14px;
    }

    .layanan-nav button {
        width: 48px;
        height: 48px;

        border: none;
        border-radius: 50%;

        background: #ffffff;
        color: #009688;

        cursor: pointer;

        font-size: 16px;

        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

        transition: 0.3s ease;
    }

    .layanan-nav button:hover {
        background: #009688;
        color: #ffffff;
    }

    /* ======================================================
   SLIDER WRAPPER
====================================================== */

    .layanan-slider-wrapper {
        position: relative;
        z-index: 2;

        flex: 1;

        overflow-x: auto;

        scrollbar-width: none;

        /* jarak kanan */
        padding-right: 30px;
    }

    .layanan-slider-wrapper::-webkit-scrollbar {
        display: none;
    }

    /* ======================================================
   SLIDER
====================================================== */

    .layanan-slider {
        display: flex;
        gap: 24px;

        min-width: max-content;

        padding: 10px 0 20px;
    }

    /* ======================================================
   CARD
====================================================== */
    .layanan-empty h3{
        color:#000000!important;
    }
    .layanan-empty p{
        color:#000000!important;
    }
    .layanan-empty {
    position: relative;
    width: 100%;
    height: 120px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 24px;
    overflow: hidden;

    flex-shrink: 0;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-align:center;
    color:#000000;
}

    .layanan-card {
        position: relative;

        width: 280px;
        height: 420px;

        border-radius: 24px;
        overflow: hidden;

        flex-shrink: 0;

        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

        transition: 0.35s ease;
    }

    .layanan-card:hover {
        transform: translateY(-8px);
    }

    /* ======================================================
   IMAGE
====================================================== */

    .layanan-image {
        position: absolute;
        inset: 0;
    }

    .layanan-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        display: block;
    }

    /* ======================================================
   GRADIENT OVERLAY
====================================================== */
.coming-soon-section{
    padding:80px 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f8fafc;
}

.coming-soon-box{
    max-width:700px;
    width:100%;
    background:#fff;
    border-radius:20px;
    padding:50px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.coming-soon-box i.fa-tools{
    font-size:70px;
    color:#0e9f8d;
    margin-bottom:20px;
}

.coming-soon-box h2{
    font-size:36px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:15px;
}

.coming-soon-box p{
    color:#6b7280;
    font-size:16px;
    line-height:1.8;
    margin-bottom:30px;
}

.btn-back-home{
    display:inline-block;
    background:#0e9f8d;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.btn-back-home:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(14,159,141,.3);
}
    .layanan-card::before {
        content: "";

        position: absolute;
        inset: 0;

        background:
            linear-gradient(to top,
                rgba(61, 201, 180, 0.96) 0%,
                rgba(61, 201, 180, 0.88) 28%,
                rgba(61, 201, 180, 0.18) 58%,
                rgba(0, 0, 0, 0.08) 100%);

        z-index: 1;
    }

    /* glow blur */
    .layanan-card::after {
        content: "";

        position: absolute;

        left: 0;
        right: 0;
        bottom: -40px;

        height: 180px;

        background: rgba(80, 255, 220, 0.35);

        filter: blur(55px);

        z-index: 1;
    }

    /* ======================================================
   CONTENT
====================================================== */

    .layanan-content {
        position: absolute;

        left: 0;
        right: 0;
        bottom: 0;

        z-index: 2;

        padding: 20px;
        color: #ffffff;
    }

    .layanan-content h3 {
        font-size: 22px;
        font-weight: 700;
        line-height: 1.4;

        margin-bottom: 12px;

        color: #ffffff;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;

        overflow: hidden;
    }

    .layanan-content p {
        font-size: 14px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.94);
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* ======================================================
   RESPONSIVE
====================================================== */

    @media (max-width: 992px) {

        .layanan-section {
            flex-direction: column;
            align-items: flex-start;

            padding: 70px 25px;
        }

        .layanan-info {
            width: 100%;
            margin-left: 0;
        }

        .layanan-info h2 {
            font-size: 32px;
        }
    }

    @media (max-width: 768px) {

        .layanan-section {
            padding: 55px 20px;
            gap: 35px;
        }

        .layanan-info h2 {
            font-size: 26px;
        }

        .layanan-info p {
            font-size: 15px;
        }

        .layanan-slider-wrapper {
            padding-right: 10px;
        }

        .layanan-card {
            width: 240px;
            height: 370px;
        }

        .layanan-content h3 {
            font-size: 18px;
        }
    }

    /* =====================================================
   PROMO SECTION
===================================================== */

    .promo-section {
        position: relative;

        width: 100%;
        padding: 90px 50px;

        overflow: hidden;

        font-family: 'Poppins', sans-serif;

        background:
            linear-gradient(rgba(248, 251, 250, 0.96),
                rgba(248, 251, 250, 0.96)),
            url('assets/img/bg-rs.jpg');

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* glow background */
    .promo-section::before {
        content: "";

        position: absolute;
        inset: 0;

        background:
            radial-gradient(circle at top right,
                rgba(0, 150, 136, 0.10),
                transparent 35%),
            radial-gradient(circle at bottom left,
                rgba(0, 150, 136, 0.10),
                transparent 35%);

        pointer-events: none;
    }

    /* =====================================================
   HEADER
===================================================== */

    .promo-header {
        position: relative;
        z-index: 2;

        max-width: 1400px;
        margin: auto auto 35px auto;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 20px;
    }

    .promo-label {
        display: inline-block;

        background: #dff5f1;
        color: #009688;

        padding: 8px 16px;
        border-radius: 999px;

        font-size: 14px;
        font-weight: 600;

        margin-bottom: 16px;
    }

    .promo-header h2 {
        font-size: 40px;
        font-weight: 700;

        color: #1f2937;
    }

    /* =====================================================
   NAVIGATION
===================================================== */

    .promo-nav {
        display: flex;
        gap: 12px;
    }

    .promo-nav button {
        width: 46px;
        height: 46px;

        border: none;
        border-radius: 50%;

        background: #ffffff;
        color: #009688;

        cursor: pointer;

        font-size: 16px;

        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

        transition: 0.3s ease;
    }

    .promo-nav button:hover {
        background: #009688;
        color: #ffffff;
    }

    /* =====================================================
   SLIDER WRAPPER
===================================================== */

    .promo-slider-wrapper {
        position: relative;
        z-index: 2;

        max-width: 1400px;
        margin: auto;

        overflow-x: auto;

        scrollbar-width: none;
    }

    .promo-slider-wrapper::-webkit-scrollbar {
        display: none;
    }

    /* =====================================================
   SLIDER
===================================================== */

    .promo-slider {
        display: flex;
        gap: 24px;

        min-width: max-content;

        padding-bottom: 10px;
    }

    /* =====================================================
   CARD
===================================================== */

    .promo-card {
        width: 260px;

        background: #ffffff;

        border-radius: 22px;
        overflow: hidden;

        flex-shrink: 0;

        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

        transition: 0.3s ease;
    }

    .promo-card:hover {
        transform: translateY(-8px);
    }

    /* =====================================================
   IMAGE
===================================================== */

    .promo-image {
        width: 100%;
        aspect-ratio: 1/1;

        overflow: hidden;
    }

    .promo-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        display: block;

        transition: 0.4s ease;
    }

    .promo-card:hover .promo-image img {
        transform: scale(1.05);
    }

    /* =====================================================
   CONTENT
===================================================== */

    .promo-content {
        padding: 20px;
    }

    .promo-content h3 {
        font-size: 16px;
        line-height: 1.6;
        font-weight: 600;

        color: #1f2937;

        margin-bottom: 14px;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;

        overflow: hidden;
    }

    .promo-price {
        display: inline-block;

        background: #e6faf6;
        color: #009688;

        padding: 7px 14px;
        border-radius: 999px;

        font-size: 13px;
        font-weight: 600;

        margin-bottom: 14px;
    }

    .promo-date {
        display: flex;
        align-items: center;
        gap: 8px;

        font-size: 13px;
        color: #6b7280;
    }

    /* TESTIMONI PASIEN */
    .testimonial-section {
        padding: 70px 5%;
        background: #f8f8f8;
        overflow: hidden;
    }

    /* HEADER */
    .testimonial-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 45px;
        gap: 20px;
    }

    .testimonial-header h2 {
        font-size: 42px;
        font-weight: 700;
        color: #0E9F8D;
        margin: 0;
    }

    /* NAVIGATION */
    .testimonial-nav {
        display: flex;
        gap: 12px;
    }

    .testimonial-nav button {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: 1px solid #d9ebe3;
        background: #fff;
        color: #69b89a;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .testimonial-nav button:hover {
        background: #69b89a;
        color: #fff;
    }

    /* SLIDER  */
    .testimonial-slider {
        display: flex;
        gap: 35px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

    .testimonial-slider::-webkit-scrollbar {
        display: none;
    }

    /* CARD */
    .testimonial-card {
        min-width: calc(50% - 18px);
        /* tampil 2 card */
        max-width: calc(50% - 18px);
        display: flex;
        align-items: flex-start;
        gap: 24px;

        flex-shrink: 0;
    }

    /* IMAGE */
    .testimonial-image {
        width: 220px;
        height: 300px;
        border-radius: 18px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .testimonial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* CONTENT */
    .testimonial-content {
        flex: 1;
        min-width: 0;
        width: 100%;
    }

    /* ICON */
    .quote-icon {
        font-size: 35px;
        color: #69b89a;
        margin-bottom: 10px;
    }

    /* =========================================
   PARAGRAF WRAP TEXT
========================================= */
    .testimonial-content p {
        font-size: 12px;
        line-height: 1.9;
        color: #555;
        width: 100%;
        max-width: 100%;

        /* PENTING */
        white-space: normal !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        display: block;
        margin: 0 0 22px 0;
    }

    /* FOOTER */
    .testimonial-footer {
        border-top: 1px solid #e5e5e5;
        padding-top: 5px;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;

        font-size: 10px;
        color: #888;
    }

    .testimonial-button {
        margin-top: 18px;
    }

    .btn-selengkapnya {
        display: inline-flex;
        align-items: center;
        gap: 8px;

        padding: 10px 20px;
        border-radius: 50px;

        background: #69b89a;
        color: #fff;
        text-decoration: none;

        font-size: 14px;
        font-weight: 600;

        transition: 0.3s ease;
    }

    .btn-selengkapnya:hover {
        background: #4f9f81;
        color: #fff;
        transform: translateY(-2px);
    }

    .btn-selengkapnya::after {
        content: "\f061";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 12px;
    }

    /* =========================================
   RESPONSIVE
========================================= */
    @media (max-width: 1200px) {

        .testimonial-card {
            min-width: 100%;
            max-width: 100%;
        }
    }

    @media (max-width: 768px) {

        .testimonial-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .testimonial-header h2 {
            font-size: 32px;
        }

        .testimonial-card {
            flex-direction: column;
        }

        .testimonial-image {
            width: 100%;
            height: 260px;
        }
    }

    /* =====================================================
   RESPONSIVE
===================================================== */

    @media (max-width: 992px) {

        .promo-section {
            padding: 70px 25px;
        }

        .promo-header h2 {
            font-size: 32px;
        }
    }

    @media (max-width: 768px) {

        .promo-section {
            padding: 55px 20px;
        }

        .promo-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .promo-header h2 {
            font-size: 26px;
        }

        .promo-card {
            width: 220px;
        }
    }