/* =========================================================
   GLOBAL BACKGROUND – Bercak Organik
========================================================= */

:root{
    --nav-height: 125px;
}
body {
    background: #ffffff;
    min-height: 100vh;
    position: relative;
    padding-top: var(--nav-height);
    font-family: 'Poppins', sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
    radial-gradient(ellipse 180px 120px at 12% 18%, rgba(0,0,0,0.045) 0 60%, transparent 65%),
    radial-gradient(ellipse 220px 160px at 28% 55%, rgba(0,0,0,0.04) 0 58%, transparent 64%),
    radial-gradient(ellipse 260px 140px at 65% 32%, rgba(0,0,0,0.035) 0 55%, transparent 62%),
    radial-gradient(ellipse 200px 180px at 80% 70%, rgba(0,0,0,0.04) 0 57%, transparent 63%),
    radial-gradient(ellipse 300px 200px at 45% 85%, rgba(0,0,0,0.03) 0 54%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Wrapper konten utama */
.content-wrapper {
    position: relative;
    z-index: 5;
}

/* ======================================================
   NAVBAR TOP (ORANGE)
   ====================================================== */
   .navbar-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(135deg, #FF8C00, #FF9F1A);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    z-index: 1050;
}

.navbar-top .navbar-brand {
    font-size: 1.4rem;
    font-weight: 600;
}

.navbar-top .navbar-brand span {
    color: #fff;
    letter-spacing: 0.6px;
}

.navbar-top .nav-link {
    color: #fff !important;
    font-weight: 600;
}

/* LOGO */
.logo-rs {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-search input {
    font-size: 14px;
    height: 34px;
}

.nav-search .btn-search {
    font-size: 14px;
    padding: 6px 12px;
}

/* Paksa WhatsApp hijau di navbar top */
.navbar-top .nav-link.whatsapp-link {
    color: #25D366 !important;
}

.navbar-top .nav-link.whatsapp-link:hover {
    color: #1ebe5d !important;
}


/* ======================================================
   NAVBAR TOP LINK
   ====================================================== */
   .nav-top-link {
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-top-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-1px);
}

/* ICON */
.nav-top-link i {
    margin-right: 6px;
    font-size: 15px;
}

/* BUTTON LOGIN / DAFTAR */
.nav-top-btn {
    background: rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 6px 18px !important;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-top-btn:hover {
    background: rgba(255,255,255,0.32);
    transform: translateY(-1px);
}

/* ======================================================
   NAVBAR MENU (PUTIH)
   ====================================================== */
   .navbar-menu {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    z-index: 1040;
}

.navbar-menu .nav-link {
    font-weight: 600;
    font-size: 15.5px;
    letter-spacing: 0.2px;
    color: #333;
    padding: 14px 18px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-menu .nav-item > .nav-link {
    font-size: 16px;
}

.navbar-menu .nav-link:hover {
    color: #FF8C00;
}

.navbar-menu .container {
    padding-left: 10px;
    padding-right: 10px;
}

/* ======================================================
   UNDERLINE ANIMATION
   ====================================================== */
   .navbar-menu .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: #FF8C00;
    border-radius: 5px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-menu .nav-link:hover::after,
.navbar-menu .nav-link.active::after {
    width: 70%;
}


/* ======================================================
   DROPDOWN
   ====================================================== */
   .navbar-menu .dropdown-menu {
    margin-top: 10px;
    background: #ffffff;
    border-radius: 14px;
    padding: 10px 0;
    border: none;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    animation: dropdownFade 0.3s ease;
}

.navbar-menu .dropdown-item {
    padding: 10px 20px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.25s ease, padding-left 0.25s ease;
}

.navbar-menu .dropdown-item:hover {
    background: rgba(255,140,0,0.1);
    padding-left: 24px;
}


/* ======================================================
   LOGIN BUTTON (TOP NAV)
   ====================================================== */
   .navbar-top .nav-link[href="login.php"] {
    background: rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 6px 18px;
}

.navbar-top .nav-link[href="login.php"]:hover {
    background: rgba(255,255,255,0.3);
}


/* ======================================================
   MEGA MENU
   ====================================================== */
   .mega-dropdown {
    position: static;
}

.mega-menu {
    width: 100%;
    max-width: none;
    left: 0;
    right: 0;
    transform: none;
    margin-top: 10px;
    border-radius: 16px;
}

.mega-menu .dropdown-item {
    padding: 8px 0;
    color: #333;
}

.mega-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #FF8C00;
}


/* ======================================================
   ANIMATION
   ====================================================== */
   @keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   HERO GENERAL
=========================== */
.hero {
    position: relative;
    padding-top: 80px;
    width: 100%;
    min-height: calc(100vh - 50px);
    overflow: hidden;
    background-image: var(--hero-bg);
    background-position: center;
    background-size: cover; /* gambar utama */
    background-repeat: no-repeat;

    color: #fff;
    z-index: 0;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;

    filter: none;
    transform: none;
    display: none;

    z-index: 0;
}

/* Overlay gelap */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;

    display: flex;
    flex-direction: column;
    /*justify-content: space-between; */
    justify-content: center;
    padding: 80px 60px 40px;
}

/* ===========================
   HERO TYPES
=========================== */
.hero-home {
    min-height: calc(100vh - 50px);
}

.hero-inner {
    min-height: 100vh;
}

/* ===========================
   HERO HALF (NON HOME)
=========================== */
.hero.hero-half {
    min-height: 50vh; /* setengah layar */
}

/* ===========================
   LAYER CONTENT
=========================== */
.hero-content,
.hero-services {
    position: relative;
    z-index: 2;
}

/* ===========================
   HERO CONTENT
=========================== */
/*.hero-content {*/
/*    position: absolute;*/
/*    bottom: 60px;*/
/*    left: 60px;*/
/*    max-width: 500px;*/
/*}*/

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1rem;
}

.hero-content-up {
    margin-bottom: 110px;
}

/* ===========================
   HERO SERVICES MINI
=========================== */
.hero-services {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.service-mini {
    text-decoration: none;
}

.service-mini .card {
    padding: 14px 10px;
    border-radius: 14px;
    background: rgba(255,255,255,0.95);
    border: none;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    transition: all 0.35s ease;
    backdrop-filter: blur(6px);
    text-align: center;
}

.service-mini .icon {
    font-size: 30px;
    margin-bottom: 6px;
    transition: transform 0.35s ease;
}

.service-mini span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.service-mini .card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 14px 36px rgba(255,140,0,0.35);
}

.service-mini:hover .icon {
    transform: scale(1.2);
}

/* ===========================
   IGD BADGE
=========================== */
.igd-badge {
    position: absolute;
    margin-top: 20px;
    top: 50px;
    right: 20px;
    background: #dc3545;
    color: #ffff;
    padding: 8px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    z-index: 1100;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 992px) {

    .navbar-menu .nav-link {
        font-size: 15px;
    }

    .navbar-menu .dropdown-item {
        font-size: 14px;
    }

    .navbar-top .container {
        justify-content: space-between;
    }

    .nav-top-link {
        font-size: 13px;
        padding: 6px 10px;
    }

    .hero-content { left: 30px; bottom: 30px; max-width: 90%; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 0.95rem; }
    .hero-content-up {
        margin-bottom: 150px;
    }
}

/* ===== MCU CARD ===== */
.mcu-card {
    transition: all .35s ease;
    border-radius: 18px;
    overflow: hidden;
}

.mcu-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

.mcu-card img {
    height: 500px;
    object-fit: contain;
    transition: transform .5s ease;
}

.mcu-card:hover img {
    transform: scale(1.08);
}

/* Harga */
.price-tag {
    font-size: 1.1rem;
    font-weight: 700;
    color: #198754;
}

/* Tombol WA */
.btn-wa {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all .3s ease;
}

.btn-wa:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(37,211,102,.45);
    color: #fff;
}

/* Badge kategori */
.badge-mcu {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,.7);
    color: #fff;
    padding: 6px 12px;
    font-size: .75rem;
    border-radius: 30px;
}



/* =========================================================
   CARD & SERVICE
   ========================================================= */
   .card {
    border-radius: 14px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.card img {
    border-radius: 12px;
}

.service-card .card {
    border-radius: 18px;
    background: #fff;
}

.service-card:hover .card {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 35px rgba(0,0,0,0.18);
    cursor: pointer;
}

.service-icon {
    font-size: 2.4rem;
    color: #0d6efd;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.25) rotate(5deg);
}

.service-card h5 {
    transition: color 0.3s;
}

.service-card:hover h5 {
    color: #0d6efd;
}

/* =========================================================
   DOCTOR IMAGE
   ========================================================= */
   .doctor-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
}

/* ================= BMI ================= */
#bmi {
    background: linear-gradient(135deg, #f8f9fa, #eef2f7);
}

/* Card */
#bmi .card {
    border-radius: 20px;
    transition: all 0.3s ease;
}

#bmi .card:hover {
    transform: translateY(-4px);
}

/* Input */
#bmi input {
    height: 45px;
}

/* ================= Lingkaran BMI ================= */
.bmi-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    transition: all 0.4s ease;
}

/* Warna kategori BMI */
.bmi-kurus {
    background: #0dcaf0;
}

.bmi-normal {
    background: #198754;
}

.bmi-over {
    background: #ffc107;
    color: #000;
}

.bmi-obes1 {
    background: #fd7e14;
}

.bmi-obes2 {
    background: #dc3545;
}

/* Animasi hasil */
.bmi-animate {
    animation: pop 0.4s ease;
}

@keyframes pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.lowongan-widget{
    background:#fff;
    border-radius:12px;
    padding:15px;
    box-shadow:0 3px 10px rgba(0,0,0,0.05);
}

.lowongan-widget div{
    font-size:14px;
}


/* ================= PROMO SECTION ================= */
#promo{
    position: relative;
}

/* ================= CARD PROMO ================= */
#promo .promo-card{
    max-width: 100%;
    margin: auto;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    transition:
    transform .35s cubic-bezier(.25,.8,.25,1),
    box-shadow .35s ease;
}

#promo .promo-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(13,110,253,.18);
}

/* ================= IMAGE ================= */
#promo .promo-img {
    aspect-ratio: 1/1;
    width: 100%;
    overflow: hidden;
}
#promo .promo-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

#promo .promo-card:hover .promo-img img{
    transform: scale(1.08);
}

/* ================= CONTENT ================= */
#promo .card-body{
    padding: 16px;
}

#promo h6{
    font-size: .95rem;
    line-height: 1.4;
}

#promo p{
    font-size: .8rem;
}

/* ================= BADGE ================= */
#promo .badge{
    padding: .45em .75em;
    font-size: .7rem;
    border-radius: 999px;
}

/* ================= BUTTON ================= */
#promo .btn-primary{
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(13,110,253,.35);
    transition: all .3s ease;
}

#promo .btn-primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(13,110,253,.45);
}

/* ================= CAROUSEL ================= */
#promo .carousel-item{
    transition: transform .6s ease, opacity .6s ease;
}

#promo .carousel-control-prev-icon,
#promo .carousel-control-next-icon{
    background-color: rgba(13,110,253,.9);
    border-radius: 50%;
    padding: 18px;
    background-size: 60% 60%;
}

#promo .carousel-control-prev,
#promo .carousel-control-next{
    width: 6%;
}

/* ================= MODAL PROMO ================= */
.modal-backdrop.show{
    opacity: 0 !important;
}

.modal-content-promo{
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    text-align: center;
    animation: scaleUp .25s ease;
}

.modal-content-promo .modal-body{
    padding: 0 !important;
}

.modal-content-promo img{
    max-width: 100%;
    border-radius: 18px;
}

.modal-content-promo .modal-footer{
    background: transparent;
    border: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

.modal-content-promo .btn-close{
    filter: invert(1);
    opacity: .9;
}

/* ================= ANIMATION ================= */
@keyframes scaleUp{
    from{
        transform: scale(.95);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 576px){
    #promo .promo-img img{
        height: 160px;
    }
}

/* ================= ACCESSIBILITY ================= */
@media (prefers-reduced-motion: reduce){
    *{
        animation: none !important;
        transition: none !important;
    }
}


/* =========================================================
   FOOTER
========================================================= */
.footer-section {
    position: relative;
    overflow: hidden;
    border-radius: 40px 40px 0 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;

    /* BACKGROUND FOTO */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: polygon(
        0 8%,
        20% 0,
        50% 6%,
        80% 2%,
        100% 7%,
        100% 100%,
        0 100%
    );
}

/* OVERLAY HITAM (INI YANG NGURANGIN KEJELASAN FOTO) */
.footer-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9); /* NAIk dari 0.7 */
    z-index: 0;
}

/* GLOW AKSEN KUNING */
.footer-section::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -80px;
    width: 300px;
    height: 200px;
    background: rgba(255,193,7,0.15);
    filter: blur(80px);
    border-radius: 40% 60% 70% 30%;
    z-index: 1;
}

/* KONTEN FOOTER */
.footer-wrapper {
    position: relative;
    z-index: 2;
    padding: 70px 0 35px;
}

/* ------------------------------------------------------ */

.footer-line {
    width: 55px;
    height: 3px;
    background: linear-gradient(to right, #f0ad4e, #ffc866);
    border-radius: 10px;
    margin: 6px 0 16px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-list li {
    list-style: none;
    margin-bottom: 7px;
}

.footer-list a {
    color: #fff;
    font-size: 14px;
    opacity: 0.85;
    text-decoration: none;
    transition: 0.3s;
}

.footer-list a:hover {
    opacity: 1;
    padding-left: 6px;
    color: #ffc107;
}

/* SOCIAL */
.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-social i {
    font-size: 18px;
    transition: transform 0.3s, color 0.3s;
}

.footer-social a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-social:hover i,
.footer-social:hover a {
    transform: scale(1.2);
    color: #ffc107;
}

/* COPYRIGHT */
.footer-copy {
    font-size: 13px;
    opacity: 0.75;
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid rgba(255,255,255,0.15);
    margin-top: 40px;
}

/* =========================================================
   BASE SECTION
   ========================================================= */
   section {
    padding: 2rem 0;
}

section h3 {
    font-weight: 700;
    padding-bottom: 12px;
    margin-bottom: 1rem;
    border-bottom: 4px solid;
}
/* =========================================================
   BERITA (KONTEN UTAMA)
   ========================================================= */
   #berita {
    background-color: #f8f9fa;
}

#berita h3 {
    font-size: 2.1rem;
    border-color: #198754;
}

/* Box berita */
#berita .berita-box {
    display: block;
    gap: 24px;
    height: 100%;
    padding: 22px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: 0.25s;
}

#berita .berita-box + .berita-box {
    margin-top: 5px;
}

#berita .berita-box .mt-2 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#berita .berita-box:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

/* Gambar berita */
#berita .berita-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

/* Judul */
#berita .berita-box h5 {
    font-size: 1rem;
    font-weight: 500;
}

/* Ringkasan */
#berita .berita-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}
#berita .berita-box a {
    margin-top: auto; /* 🔥 dorong ke bawah */
}

/* =========================================================
   ARTIKEL SIDEBAR (KANAN)
   ========================================================= */
   #artikel-sidebar {
    background: transparent;
    padding-top: 2rem;
}

/* Container sidebar */
#artikel-sidebar .artikel-sidebar {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e5e7eb;
}

/* Judul sidebar */
#artikel-sidebar h5 {
    font-size: 1.2rem;
    font-weight: 700;
    border-bottom: 3px solid #0d6efd;
    padding-bottom: 10px;
    margin-bottom: 1.5rem;
}

/* Gambar */
#artikel-sidebar .artikel-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 6px;
}

/* Judul kecil */
#artikel-sidebar .artikel-judul {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Ringkasan */
#artikel-sidebar .artikel-ringkas {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #6c757d;
}

/* Tanggal */
#artikel-sidebar small {
    font-size: 0.75rem;
    color: #999;
}

/* Link */
#artikel-sidebar .artikel-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0d6efd;
    text-decoration: none;
}

#artikel-sidebar .artikel-link:hover {
    text-decoration: underline;
}
/* FORCE FIX ARTIKEL SIDEBAR */

/* ================== FINAL LOCK ARTIKEL SIDEBAR ================== */

#artikel-sidebar .artikel-box {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

/* Artikel terakhir */
#artikel-sidebar .artikel-box:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Judul */
#artikel-sidebar .artikel-judul {
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Ringkasan */
#artikel-sidebar .artikel-ringkas {
    font-size: 0.75rem !important;
    line-height: 1.4;
}


/* ================= FINAL AKSES CEPAT (BERSIH) ================= */

.akses-cepat .akses-list {
    display: flex;
    flex-direction: column;
}

.akses-cepat .akses-item {
    display: flex;
    align-items: center;
    width: 100%;

    padding: 14px 16px;
    margin-bottom: 10px;

    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;

    text-decoration: none;
    color: #333;
    font-weight: 600;

    /* putus bootstrap */
    max-width: 100%;
    float: none;
}

.akses-cepat .akses-item i {
    font-size: 18px;
    margin-right: 12px;
    color: #0d6efd;
}

.akses-cepat .akses-item:hover {
    background: #f8f9fa;
    transform: translateX(4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.calendar-box {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.calendar-header button {
    background: #e9f2ff;
    color: #0d6efd;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    transition: .2s;
}

.calendar-header button:hover {
    background: #0d6efd;
    color: #fff;
}

.calendar-header span {
    font-weight: 700;
    font-size: 16px;
    color: #0d6efd;
}

/* HARI */
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 8px;
}

.calendar-days span {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
}

/* TANGGAL */
.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-dates div {
    height: 54px;
    border-radius: 12px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    transition: .2s;
}

.calendar-dates div:hover {
    background: #e9f2ff;
}

/* HARI INI */
.calendar-dates div.today {
    border: 2px solid #0d6efd;
    background: #fff;
    color: #0d6efd;
}

/* JENIS EVENT DI GRID */
.calendar-dates div.holiday { background: #ffecec; color: #dc3545; }
.calendar-dates div.national { background: #e9f7ef; color: #198754; }
.calendar-dates div.international { background: #fff3e6; color: #fd7e14; }
.calendar-dates div.health { background: #e7f1ff; color: #0d6efd; }

/* KOTAK KOSONG */
.calendar-dates .empty {
    background: transparent;
    pointer-events: none;
}

/* DAFTAR EVENT DI BAWAH KALENDER */
.calendar-event div {
    margin-bottom: 5px;
    font-size: 0.85em;
    font-weight: 600;
}

.calendar-event div.holiday { color: #dc3545; }
.calendar-event div.national { color: #198754; }
.calendar-event div.international { color: #fd7e14; }
.calendar-event div.health { color: #0d6efd; }

/* =========================================================
   MITRA
   ========================================================= */
   .mitra-box img {
    filter: grayscale(100%);
    transition: 0.3s;
}

.mitra-box:hover img {
    filter: grayscale(0%);
}

/* =========================================================
   MEDIA
   ========================================================= */
   iframe,
   .instagram-img {
    border-radius: 10px;
}

#youtube .container {
    max-width: 1500px !important;
}

#youtube .yt-thumb {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    object-fit: cover;
}

/* =========================================================
   DOKTER SECTION
   ========================================================= */
   #dokter .swiper-slide {
    width: 100% !important;
}

#dokter .card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.doctor-foto {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: top center;
    border-radius: 10px 10px 0 0;
}

#dokter-home .carousel-item {
    padding: 10px 5px;
}

#dokter-home .card {
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

#dokter-home .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* gambar dokter */
#dokter-home img {
    object-fit: contain;
    max-height: 220px;
}

/* tombol kiri kanan */
#dokter-home .carousel-control-prev-icon,
#dokter-home .carousel-control-next-icon {
    background-color: rgba(0,0,0,0.6);
    border-radius: 50%;
    padding: 15px;
}


/* radiologi Jadwal Card */
.schedule-card {
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f8f9fa);
}

/* Item jadwal */
.schedule-item {
    padding: 14px 0;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background-color: rgba(13,110,253,0.05);
    transform: translateX(6px);
}

/* Animasi scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}
