.hero-section{
    background:linear-gradient(135deg,#fff5f5,#ffffff);
    position:relative;
    overflow:hidden;
}

.hero-content h1{
    font-size:60px;
    font-weight:800;
    line-height:1.2;
    margin-top:20px;
    color:#a10000;
}

.hero-content p{
    font-size:18px;
    margin-top:25px;
    color:#555;
    line-height:1.8;
}

.hero-badge{
    background:#ffe0e0;
    color:#c40000;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-main{
    background:#c40000;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    font-weight:bold;
}

.btn-main:hover{
    background:#a00000;
    color:#fff;
}

.btn-outline-custom{
    border:2px solid #c40000;
    color:#c40000;
    padding:14px 30px;
    border-radius:50px;
    font-weight:bold;
}

.btn-outline-custom:hover{
    background:#c40000;
    color:#fff;
}

.hero-image-wrapper{
    position:relative;
}

.hero-image{
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.floating-card{
    position:absolute;
    background:#fff;
    padding:15px 20px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    font-weight:600;
}

.floating-card i{
    color:#c40000;
    margin-right:10px;
}

.floating-card-1{
    top:20px;
    left:-20px;
}

.floating-card-2{
    bottom:20px;
    right:-20px;
}

.stat-card{
    background:#fff;
    padding:20px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.stat-card h3{
    color:#c40000;
    font-weight:800;
}

.section-title span{
    color:#c40000;
    font-weight:bold;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    margin-top:10px;
}

.service-section,
.article-section{
    padding:100px 0;
}

.service-card{
    background:#fff;
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-icon{
    width:90px;
    height:90px;
    background:#ffe4e4;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    color:#c40000;
    margin-bottom:25px;
}

.article-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.article-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.article-content{
    padding:25px;
}

.article-content span{
    color:#c40000;
    font-weight:bold;
}

.article-content h4{
    margin:15px 0;
    font-weight:700;
    line-height:1.5;
}

.article-content a{
    color:#c40000;
    text-decoration:none;
    font-weight:bold;
}

/* selection dokter */

.doctor-section{
    padding:100px 0;
    background:linear-gradient(90deg,#a00000,#d80000);
}

.doctor-slider-wrapper{
    overflow:hidden;
    margin-top:50px;
    position:relative;
}

.doctor-slider{
    display:flex;
    transition:transform .4s ease;
}

.doctor-item{
    width:100%;
    flex:0 0 100%;
    padding:0 12px;
}

.doctor-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.doctor-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
}

.doctor-content{
    padding:25px;
    text-align:center;
}

.doctor-content h4{
    font-weight:700;
    margin-bottom:8px;
}

.doctor-content span{
    color:#c40000;
}

/* BUTTON */

.doctor-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#c40000;
    z-index:10;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.doctor-prev{
    left:-20px;
}

.doctor-next{
    right:-20px;
}

/* DESKTOP */

@media(min-width:992px){

    .doctor-item{
        flex:0 0 33.3333%;
    }

}

/* TABLET */

@media(max-width:991px){

    .doctor-card img{
        height:340px;
    }

}

/* MOBILE */

@media(max-width:576px){

    .doctor-slider-wrapper{
        padding:0 5px;
    }

    .doctor-item{
        flex:0 0 100%;
        padding:0 5px;
    }

    .doctor-card img{
        height:260px;
        object-fit:cover;
        object-position:center top;
    }

    .doctor-content{
        padding:18px;
    }

    .doctor-content h4{
        font-size:20px;
    }

    .doctor-nav{
        width:42px;
        height:42px;
    }

    .doctor-prev{
        left:5px;
    }

    .doctor-next{
        right:5px;
    }

}

/* end section dokter */

@media(max-width:991px){

    .hero-content h1{
        font-size:42px;
    }

    .floating-card{
        position:relative;
        margin-top:20px;
        left:0;
        right:0;
        bottom:0;
        top:0;
    }

    .section-title h2{
        font-size:32px;
    }

}

@media(max-width:576px){

    .hero-content h1{
        font-size:34px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-main,
    .btn-outline-custom{
        width:100%;
        text-align:center;
    }

}