/* ================================================================
   RSUPP BETUN — CLEAN CSS (duplikasi dihapus)
   ================================================================ */

/* ── Color Theme Variables ───────────────────────────────────── */


/* ── Animations (satu definisi) ─────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

/* ── Page Header (satu definisi, bg via inline style per halaman) */
.page-header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, .92) 0%, rgba(118, 75, 162, .92) 100%);
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: .3;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 3;
    letter-spacing: -.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
}

.page-header p {
    font-size: 1.1rem;
    opacity: .95;
    position: relative;
    z-index: 3;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.page-header .breadcrumb {
    position: relative;
    z-index: 3;
}

@media (max-width:768px) {
    .page-header {
        height: 250px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* ── Content Section ─────────────────────────────────────────── */
.content-section {
    padding: 60px 0;
}

/* ── Section Card (profil, visi, tugas, struktur) ────────────── */
.section-card {
    background: #fff;
    border-radius: 16px;
    padding: 45px;
    margin-bottom: 35px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .05);
    transition: all .3s ease;
}

.section-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

@media (max-width:768px) {
    .section-card {
        padding: 25px 20px;
    }
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f3f5;
}

.section-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    background: linear-gradient(135deg, #969696 0%, #646464 100%);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* ── Icon color variants ─────────────────────────────────────── */
.icon-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.icon-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
}

.icon-green {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: #fff;
}

/* ── Navbar ──────────────────────────────────────────────────── */
.menu-bar {
    background: #fff;
}

#mainNav {
    background-color: #fff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    padding: 12px 0;
}

#mainNav .navbar-brand img {
    max-width: 320px;
    height: auto;
    transition: transform .3s ease;
}

#mainNav .navbar-brand img:hover {
    transform: scale(1.05);
}

#mainNav .navbar-nav .nav-link {
    color: #495057;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px;
    margin: 0 2px;
    border-radius: 8px;
    transition: all .3s ease;
    text-decoration: none;
}

#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link.active {
    color: #059669;
    background-color: #d1fae5;
}

#mainNav .navbar-nav .nav-link.active {
    font-weight: 600;
}

#mainNav .dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    border-radius: 10px;
    padding: 10px;
    margin-top: 8px;
    border-top: 3px solid #10b981;
}

#mainNav .dropdown-item {
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: #495057;
    transition: all .2s ease;
}

#mainNav .dropdown-item:hover {
    background-color: #d1fae5;
    color: #059669;
    padding-left: 20px;
}

#mainNav .dropdown-item.active {
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    color: #fff;
}

#mainNav .dropdown-toggle::after {
    margin-left: 6px;
    transition: transform .3s ease;
}

#mainNav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.navbar-toggler {
    border: 2px solid #e9ecef;
    padding: 6px 10px;
    border-radius: 6px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .15);
}

@media (max-width:991px) {
    #mainNav .navbar-brand img {
        max-width: 250px;
    }

    #mainNav .navbar-nav {
        padding: 16px 0;
    }

    #mainNav .navbar-nav .nav-link {
        padding: 12px 16px;
        margin: 4px 0;
    }

    #mainNav .dropdown-menu {
        border: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-left: 16px;
    }
}

/* ── Topbar ──────────────────────────────────────────────────── */
.topbar {
    background: #fff;
    padding: 6px 0;
    font-size: 13px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.site-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-info .divider {
    color: #ccc;
}

.social-mini-button {
    display: flex;
    gap: 8px;
}

/* ── Hero (home) ─────────────────────────────────────────────── */
.page-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    margin-top: 1px;
}

.overlay-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 42, 74, .82) 0%, rgba(15, 25, 50, .88) 100%);
    z-index: 1;
}

/* Khusus hero home — overlay biru-hijau */
.page-hero.overlay-dark::before {
    background: linear-gradient(135deg, rgba(14, 165, 233, .82) 0%, rgba(16, 185, 129, .75) 100%);
}

.hero-section {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 10px 0;
}

.hero-badge {
    display: inline-block;
}

.badge-text {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, .2);
    display: inline-block;
}

.hero-title {
    color: #fff;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.3;
    text-shadow: 10px 5px 20px rgba(0, 0, 0, .3);
}

.hero-subtitle {
    color: rgba(255, 255, 255, .95);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all .3s ease;
    font-size: 14px;
}

@media (max-width:992px) {
    .page-hero {
        min-height: 450px;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width:768px) {
    .page-hero {
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width:400px) {
    .page-hero {
        min-height: 380px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0 0 10px 0 !important;
    }
}

/* ── Welcome section (home) ──────────────────────────────────── */
.welcome-section {
    background: #fff;
    padding: 64px 0;
}

.welcome-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 14px;
}

.welcome-title span {
    color: var(--primary);
}

.welcome-text {
    color: #555;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 24px;
}

.btn-hl {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all .2s;
}

.btn-hl:hover {
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    color: #fff;
    text-decoration: none;
}

/* ── Director card ───────────────────────────────────────────── */
.dir-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    border: 1px solid #e8edf5;
}

.dir-card img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e8edf5;
    margin-bottom: 16px;
}

.dir-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.dir-card p {
    font-size: 12px;
    color: #888;
    margin: 0;
}

/* ── Section heading (home) ──────────────────────────────────── */
.sec-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.sec-divider {
    width: 48px;
    height: 4px;
    border-radius: 2px;
    margin: 0 auto 32px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* ── Tenun background ────────────────────────────────────────── */
.tenun-bg {
    position: relative;
    background: #f4f6f9;
}

.tenun-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .06;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='80'%3E%3Crect width='40' height='80' fill='none'/%3E%3Crect x='0' y='0' width='4' height='80' fill='%23fff'/%3E%3Crect x='36' y='0' width='4' height='80' fill='%23fff'/%3E%3Cpolygon points='20,4 26,12 20,20 14,12' fill='%23fff'/%3E%3Ccircle cx='20' cy='12' r='2' fill='%23fff'/%3E%3Cpolygon points='20,36 26,44 20,52 14,44' fill='%23fff'/%3E%3Ccircle cx='20' cy='44' r='2' fill='%23fff'/%3E%3Cpolyline points='8,56 12,60 16,56 20,60 24,56 28,60 32,56' fill='none' stroke='%23fff' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 70px 140px;
}

.tenun-bg>* {
    position: relative;
    z-index: 1;
}

/* ── Info card (poli / kamar) ────────────────────────────────── */
.info-card {
    border: none;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    transition: transform .2s, box-shadow .2s;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.info-card-head {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    background: linear-gradient(135deg, #0ea5e9, #10b981);
}

.info-card-head .ic {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, .2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.info-card-head span {
    font-weight: 700;
    font-size: 13px;
    line-height: 1.3;
}

.info-card-body {
    background: #fff;
    padding: 13px 15px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #555;
    margin-bottom: 5px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row .val-green {
    color: #27ae60;
    font-weight: 700;
}

.info-row .val-red {
    color: #e74c3c;
    font-weight: 700;
}

/* ── Dokter slider (home) ────────────────────────────────────── */
.dok-slide-wrap {
    position: relative;
}

.dok-slider {
    display: flex;
    gap: 16px;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 8px 4px;
}

.dok-slide-item {
    min-width: 175px;
    flex-shrink: 0;
}

.dok-slide-card {
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    overflow: hidden;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
    border-top: 3px solid transparent;
    border-image: linear-gradient(135deg, #0ea5e9, #10b981) 1;
}

.dok-slide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, .2);
}

.dok-slide-card .photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    background: #e8edf5;
    flex-shrink: 0;
    margin: 0 auto 10px;
    border: 3px solid #e8edf5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}

.dok-slide-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .3s;
}

.dok-slide-card:hover .photo img {
    transform: scale(1.08);
}

.dok-slide-card .info {
    padding: 0 8px 8px;
}

.dok-slide-card .sps {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}

.dok-slide-card .nm {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.dok-slide-card .sip {
    font-size: 10px;
    color: #aaa;
    margin-top: 4px;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.slide-btn:hover {
    background: var(--primary-dark);
}

.slide-btn.left {
    left: -16px;
}

.slide-btn.right {
    right: -16px;
}

/* ── Berita ──────────────────────────────────────────────────── */
.berita-body {
    background: #f0f4f8;
    padding: 40px 0 64px;
}

.brt-card {
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    overflow: hidden;
    height: 100%;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}

.brt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.brt-thumb {
    height: 190px;
    overflow: hidden;
    position: relative;
    background: #e8edf5;
}

.brt-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.brt-card:hover .brt-thumb img {
    transform: scale(1.06);
}

.brt-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.brt-body {
    padding: 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.brt-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 10px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.brt-title a {
    color: inherit;
    text-decoration: none;
}

.brt-title a:hover {
    color: var(--primary);
}

.brt-meta {
    font-size: 11px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
}

.brt-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-top: 12px;
    transition: gap .2s;
}

.brt-readmore:hover {
    gap: 10px;
    color: var(--primary-dark);
    text-decoration: none;
}

/* ── Sosmed feed (berita sidebar) ────────────────────────────── */
.sosmed-feed-card {
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    overflow: hidden;
    margin-bottom: 20px;
}

.sosmed-feed-header {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f2f5;
}

.sosmed-feed-header .icon {
    font-size: 18px;
}

.sosmed-feed-header span {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}

.sosmed-feed-header a {
    margin-left: auto;
    font-size: 11px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.sosmed-feed-header a:hover {
    text-decoration: underline;
}

.fb-wrap {
    padding: 12px;
    display: flex;
    justify-content: center;
}

.ig-wrap {
    padding: 12px;
}

.sec-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #3498db;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sec-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e6ef;
}

/* ── Pelayanan ───────────────────────────────────────────────── */
.pelayanan-wrap {
    background: #f4f6f9;
    padding: 50px 0 60px;
}

.pel-card {
    border: none;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    overflow: hidden;
    height: 100%;
    transition: transform .2s, box-shadow .2s;
}

.pel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .13);
}

.pel-card-header {
    padding: 20px 20px 16px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pel-card-header .icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.pel-card-header h5 {
    margin: 0;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
}

.pel-card-header small {
    font-size: 12px;
    opacity: .8;
}

.pel-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pel-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-bottom: 1px solid #f0f2f5;
    font-size: 14px;
    color: #444;
    transition: background .15s;
}

.pel-list li:last-child {
    border-bottom: none;
}

.pel-list li:hover {
    background: #f8f9fa;
}

.pel-list li .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Jadwal Dokter ───────────────────────────────────────────── */
.jdw-hero-inner {
    position: relative;
    z-index: 3;
}

.jdw-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
}

.jdw-search {
    background: #fff;
    padding: 18px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.jdw-search .form-control {
    border: none;
    font-size: 14px;
    padding: 10px 8px;
    box-shadow: none !important;
}

.jdw-search .input-group {
    border: 1.5px solid #e0e6ef;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s;
}

.jdw-search .input-group:focus-within {
    border-color: #10b981;
}

.jdw-body {
    background: #f0f9ff;
    padding: 36px 0 64px;
}

.poli-section {
    margin-bottom: 32px;
}

.poli-header-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.poli-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.poli-title-text {
    font-size: 14px;
    font-weight: 800;
    color: #0f2942;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.poli-count-badge {
    margin-left: auto;
    background: #d1fae5;
    color: #059669;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.poli-divider {
    height: 2px;
    border-radius: 2px;
    margin-bottom: 14px;
    background: linear-gradient(90deg, var(--poli-color), transparent);
}

.dok-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    height: 100%;
    border-left: 5px solid var(--poli-color);
    transition: transform .2s, box-shadow .2s;
}

.dok-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .13);
}

.dok-photo {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f4f8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
}

.dok-body {
    flex: 1;
    min-width: 0;
}

.dok-name {
    font-size: 14px;
    font-weight: 700;
    color: #0f2942;
    margin-bottom: 4px;
    line-height: 1.3;
}

.dok-sps-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.dok-schedules {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sched-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f9ff;
    border-radius: 7px;
    padding: 6px 10px;
    font-size: 12px;
}

.sched-hari {
    color: #0f2942;
    font-weight: 600;
    flex: 1;
}

.sched-jam {
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    padding: 3px 9px;
    border-radius: 5px;
    white-space: nowrap;
}

.sched-icon {
    color: #10b981;
    font-size: 11px;
    flex-shrink: 0;
}

/* ── Stok Darah ──────────────────────────────────────────────── */
.stok-body {
    background: #f0f4f8;
    padding: 40px 0 64px;
}

.stok-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.stok-sum-card {
    flex: 1;
    min-width: 120px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
    border-top: 4px solid var(--gol-color);
    transition: transform .2s;
}

.stok-sum-card:hover {
    transform: translateY(-3px);
}

.stok-sum-gol {
    font-size: 28px;
    font-weight: 800;
    color: var(--gol-color);
    line-height: 1;
    margin-bottom: 4px;
}

.stok-sum-label {
    font-size: 11px;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.stok-sum-count {
    font-size: 20px;
    font-weight: 700;
    color: #1a2a4a;
}

.stok-sum-unit {
    font-size: 11px;
    color: #aaa;
}

.stok-search {
    background: #fff;
    padding: 18px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.stok-search .input-group {
    border: 1.5px solid #e0e6ef;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s;
}

.stok-search .input-group:focus-within {
    border-color: #e74c3c;
}

.stok-search .form-control {
    border: none;
    font-size: 14px;
    padding: 10px 8px;
    box-shadow: none !important;
}

.stok-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    overflow: hidden;
}

.stok-card-header {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.stok-card-header .icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.stok-card-header h4 {
    color: #fff;
    font-weight: 700;
    margin: 0;
    font-size: 16px;
}

.stok-card-header p {
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
    margin: 0;
}

.stok-table {
    width: 100%;
    border-collapse: collapse;
}

.stok-table thead th {
    background: var(--primary-dark);
    color: #fff;
    padding: 12px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    border: none;
}

.stok-table tbody tr {
    border-bottom: 1px solid #f0f2f5;
    transition: background .15s;
}

.stok-table tbody tr:hover {
    background: var(--primary-light);
}

.stok-table tbody td {
    padding: 12px 18px;
    font-size: 13px;
    vertical-align: middle;
    border: none;
}

.badge-gol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
}

.badge-rhesus {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.rhesus-pos {
    background: #eafaf1;
    color: #27ae60;
}

.rhesus-neg {
    background: #fdf2f2;
    color: #e74c3c;
}

.badge-stok {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 28px;
    padding: 0 10px;
    background: #1a2a4a;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

.komponen-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.komponen-icon {
    width: 32px;
    height: 32px;
    background: #fdf2f2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    font-size: 14px;
    flex-shrink: 0;
}

.stok-empty {
    text-align: center;
    padding: 56px 20px;
    color: #aaa;
}

.stok-empty i {
    font-size: 44px;
    display: block;
    margin-bottom: 14px;
    color: #dde3ec;
}

.stok-footer {
    background: #f8f9fa;
    border-top: 1px solid #f0f2f5;
    padding: 10px 18px;
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── Laboratorium ────────────────────────────────────────────── */
.lab-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--accent) 100%);
    padding: 50px 0 40px;
}

.lab-table-wrap {
    background: var(--bg-light);
    padding: 0 0 60px;
}

.lab-card {
    border: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, .10);
    overflow: hidden;
}

.lab-table thead th {
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 14px 20px;
    border: none;
}

.lab-table tbody tr {
    border-bottom: 1px solid #f0f2f5;
    transition: background .15s;
}

.lab-table tbody tr:hover {
    background: var(--primary-light);
}

.lab-table tbody tr.has-detail {
    cursor: pointer;
}

.lab-table tbody tr.has-detail:hover {
    background: var(--primary-light);
}

.lab-table td {
    padding: 13px 20px;
    vertical-align: middle;
    border: none;
    font-size: 14px;
}

.lab-name {
    font-weight: 600;
    color: var(--dark);
}

.lab-price {
    font-weight: 700;
    color: var(--accent-dark);
    font-size: 14px;
    white-space: nowrap;
}

.lab-price-free {
    color: #adb5bd;
    font-weight: 400;
    font-style: italic;
}

.toggle-icon {
    color: var(--accent);
    font-size: 10px;
    transition: transform .25s ease;
    margin-right: 8px;
}

.detail-row td {
    padding: 0 !important;
    border: none !important;
    background: #f0fdf4;
}

.detail-inner {
    border-left: 4px solid var(--accent);
    margin: 0 20px 0 40px;
}

.detail-inner table td {
    padding: 9px 16px;
    font-size: 13px;
    color: #555;
    border-top: 1px solid #eef0f3;
}

.detail-price {
    color: var(--accent-dark);
    font-weight: 600;
    white-space: nowrap;
}

.lab-footer {
    background: linear-gradient(135deg, #f0fdf4, #f0f9ff);
    border-top: 2px solid #d1fae5;
    padding: 12px 20px;
    font-size: 13px;
    color: #6c757d;
}

.search-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, .15);
}

.btn-cari {
    background: linear-gradient(135deg, #10b981, #0ea5e9);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 10px 28px;
    transition: opacity .2s;
}

.btn-cari:hover {
    opacity: .9;
    color: #fff;
}

.counter-badge {
    background: linear-gradient(135deg, #10b981, #0ea5e9);
    color: #fff;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 600;
}

/* ── Radiologi ───────────────────────────────────────────────── */
.rad-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--accent) 100%);
    padding: 50px 0 40px;
}

.rad-table-wrap {
    background: var(--bg-light);
    padding: 48px 0 60px;
}

.rad-card {
    border: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, .10);
    overflow: hidden;
}

.rad-table thead th {
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 14px 20px;
    border: none;
}

.rad-table tbody tr {
    border-bottom: 1px solid #f0f2f5;
    transition: background .15s;
}

.rad-table tbody tr:hover {
    background: var(--primary-light);
}

.rad-table tbody tr.has-detail {
    cursor: pointer;
}

.rad-table tbody tr.has-detail:hover {
    background: var(--primary-light);
}

.rad-table td {
    padding: 13px 20px;
    vertical-align: middle;
    border: none;
    font-size: 14px;
}

.rad-name {
    font-weight: 600;
    color: var(--dark);
}

.rad-price {
    font-weight: 700;
    color: var(--accent-dark);
    font-size: 14px;
    white-space: nowrap;
}

.rad-price-free {
    color: #adb5bd;
    font-weight: 400;
    font-style: italic;
}

.toggle-icon-rad {
    color: var(--primary);
    font-size: 10px;
    transition: transform .25s ease;
    margin-right: 8px;
}

.detail-row-rad td {
    padding: 0 !important;
    border: none !important;
    background: #f0f9ff;
}

.detail-inner-rad {
    border-left: 4px solid var(--primary);
    margin: 0 20px 0 40px;
}

.detail-inner-rad table td {
    padding: 9px 16px;
    font-size: 13px;
    color: #555;
    border-top: 1px solid #eef0f3;
}

.detail-price-rad {
    color: var(--accent-dark);
    font-weight: 600;
    white-space: nowrap;
}

.rad-footer {
    background: linear-gradient(135deg, #f0f9ff, #f0fdf4);
    border-top: 2px solid #e0f2fe;
    padding: 12px 20px;
    font-size: 13px;
    color: #6c757d;
}

.search-input-rad:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, .15);
}

.btn-cari-rad {
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 10px 28px;
    transition: opacity .2s;
}

.btn-cari-rad:hover {
    opacity: .9;
    color: #fff;
}

.counter-badge-rad {
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    color: #fff;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 600;
}

/* ── Operasi ─────────────────────────────────────────────────── */
.op-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--accent) 100%);
    padding: 50px 0 40px;
}

.op-table-wrap {
    background: var(--bg-light);
    padding: 48px 0 60px;
}

.op-card {
    border: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, .10);
    overflow: hidden;
}

.op-table thead th {
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 14px 20px;
    border: none;
}

.op-table tbody tr {
    border-bottom: 1px solid #f0f2f5;
    transition: background .15s;
}

.op-table tbody tr:hover {
    background: var(--primary-light);
}

.op-table td {
    padding: 13px 20px;
    vertical-align: middle;
    border: none;
    font-size: 14px;
}

.op-name {
    font-weight: 600;
    color: var(--dark);
}

.op-price {
    font-weight: 700;
    color: var(--accent-dark);
    font-size: 14px;
    white-space: nowrap;
}

.op-footer {
    background: linear-gradient(135deg, #f0f9ff, #f0fdf4);
    border-top: 2px solid #e0f2fe;
    padding: 12px 20px;
    font-size: 13px;
    color: #6c757d;
}

.search-input-op:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, .15);
}

.btn-cari-op {
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 10px 28px;
    transition: opacity .2s;
}

.btn-cari-op:hover {
    opacity: .9;
    color: #fff;
}

.counter-badge-op {
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    color: #fff;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 600;
}

.row-num {
    display: inline-block;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 700;
    margin-right: 10px;
}

/* ── Empty / No data state (satu definisi) ───────────────────── */
.no-data-wrap,
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #adb5bd;
}

.no-data-wrap i,
.empty-state .empty-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
    color: #dee2e6;
}

/* ── Dokter semua (listsemuadokter) ──────────────────────────── */
.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    border-radius: 2px;
}

.card-doctor1 {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all .3s ease;
}

.card-doctor1:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15) !important;
}

.card-img-top-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #f8f9fa;
}

.card-doctor1 .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.card-doctor1:hover .card-img-top {
    transform: scale(1.1);
}

.card-doctor1 .card-body {
    padding: 20px 15px;
}

.card-doctor1 .card-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

@media (max-width:768px) {
    .card-img-top-wrapper {
        height: 250px;
    }
}

/* Jadwal dokter horizontal layout */
.poli-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, .3);
}

.poli-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, .2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.poli-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.doctors-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
    gap: 25px;
}

.doctor-card-horizontal {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .08);
    overflow: hidden;
    transition: all .3s ease;
    display: flex;
}

.doctor-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}

.doctor-left-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    border-right: 3px solid #667eea;
}

.doctor-photo-horizontal {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
    margin-bottom: 15px;
}

.doctor-photo-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-name-horizontal {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px;
    line-height: 1.3;
    text-align: center;
}

.doctor-badge-horizontal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #667eea;
    color: #fff;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
}

.doctor-right-section {
    flex: 1;
    padding: 25px;
    display: flex;
    align-items: center;
}

.schedule-item-horizontal {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 12px;
    border-left: 4px solid #667eea;
    transition: all .3s ease;
}

.schedule-item-horizontal:hover {
    background: #e9ecef;
    border-left-color: #764ba2;
}

.schedule-item-horizontal:last-child {
    margin-bottom: 0;
}

.schedule-row-horizontal {
    display: flex;
    gap: 20px;
}

.schedule-col-horizontal {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.schedule-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.schedule-icon-box.icon-calendar {
    background: rgba(52, 152, 219, .15);
    color: #3498db;
}

.schedule-icon-box.icon-clock {
    background: rgba(46, 204, 113, .15);
    color: #2ecc71;
}

.schedule-text-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.schedule-label-h {
    font-size: .75rem;
    color: #7f8c8d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.schedule-value-h {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

@media (max-width:1200px) {
    .doctors-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width:768px) {
    .doctor-card-horizontal {
        flex-direction: column;
    }

    .doctor-left-section {
        min-width: 100%;
        border-right: none;
        border-bottom: 3px solid #667eea;
        padding: 20px;
    }

    .doctor-photo-horizontal {
        width: 100px;
        height: 100px;
    }

    .schedule-row-horizontal {
        flex-direction: column;
        gap: 12px;
    }

    .poli-header {
        padding: 15px 20px;
    }

    .poli-title {
        font-size: 1.4rem;
    }
}

/* ── Kamar ───────────────────────────────────────────────────── */
.room-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
    overflow: hidden;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .3);
}

.card-header-custom {
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
    color: #fff;
    padding: 15px 10px;
    border: none;
}

.card-header-custom1 {
    background: linear-gradient(135deg, #56a9c2 0%, #4b5fa2 100%);
    color: #fff;
    padding: 15px 10px;
    border: none;
}

.card-header-custom2 {
    background: linear-gradient(135deg, #b3ac4e 0%, #a28b4b 100%);
    color: #fff;
    padding: 15px 15px;
    border: none;
}

.card-header-custom3 {
    background: linear-gradient(135deg, #51b974 0%, #4ba272 100%);
    color: #fff;
    padding: 15px 10px;
    border: none;
}

.room-class {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center;
}

.stat-box {
    padding: 14px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    transition: background .3s ease;
}

.stat-box:last-child {
    border-bottom: none;
}

.stat-box:hover {
    background: #f8f9fa;
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.icon-total {
    background: linear-gradient(135deg, #969696 0%, #646464 100%);
}

.icon-total1 {
    background: linear-gradient(135deg, #66cbea 0%, #4b5fa2 100%);
}

.icon-total2 {
    background: linear-gradient(135deg, #eae166 0%, #a28b4b 100%);
}

.icon-total3 {
    background: linear-gradient(135deg, #66ea92 0%, #4ba272 100%);
}

.icon-available {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.icon-occupied {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
}

.stat-label {
    color: #6c757d;
    font-size: .9rem;
    font-weight: 200;
    text-transform: uppercase;
    margin-bottom: 3px;
    letter-spacing: .5px;
}

.stat-value {
    color: #212529;
    font-size: 1.2rem;
    font-weight: bold;
}

.price-section {
    background: linear-gradient(135deg, #428830 0%, #03753c 100%);
    color: #fff;
    padding: 15px;
    text-align: center;
}

.price-label {
    font-size: .9rem;
    opacity: .9;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 1.2rem;
    font-weight: bold;
}

/* ── Kontak ──────────────────────────────────────────────────── */
.contact-section {
    padding: 60px 0;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .04);
    transition: all .3s ease;
    border: 1px solid rgba(0, 0, 0, .05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all .3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-info {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.8;
    margin: 0;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all .3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #764ba2;
    transform: translateX(5px);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, .3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-2px);
}

.map-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .05);
}

.map-header {
    padding: 15px;
    background: #fff;
    color: #383838;
}

.map-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.map-container {
    position: relative;
    padding-bottom: 400px;
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width:768px) {
    .contact-card {
        padding: 25px;
    }

    .map-container {
        padding-bottom: 300px;
    }
}

/* ── Sejarah / Timeline ──────────────────────────────────────── */
.intro-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .05);
}

.intro-card p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #546e7a;
    margin-bottom: 20px;
    text-align: justify;
}

.intro-card p:last-child {
    margin-bottom: 0;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #969696 0%, #646464 100%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
    padding-right: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 50px;
}

.timeline-content {
    width: 45%;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    border: 1px solid rgba(0, 0, 0, .05);
    transition: all .3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #969696 0%, #646464 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(70, 70, 70, .4);
    z-index: 2;
}

.timeline-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-item:nth-child(odd) .timeline-date {
    justify-content: flex-end;
}

.timeline-item:nth-child(even) .timeline-date {
    justify-content: flex-start;
}

.timeline-description {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

@media (max-width:768px) {
    .intro-card {
        padding: 25px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        margin-bottom: 40px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
        padding: 20px;
    }

    .timeline-icon {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        justify-content: flex-start;
    }
}

/* ── Visi Misi ───────────────────────────────────────────────── */
.visi-content {
    text-align: center;
    padding: 15px 20px;
}

.visi-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #3f3f3f;
    line-height: 1.9;
    margin: 0;
    position: relative;
    display: inline-block;
}

.visi-text::before,
.visi-text::after {
    content: '"';
    font-size: 3rem;
    color: #e9ecef;
    font-weight: 700;
    position: absolute;
    font-family: Georgia, serif;
}

.visi-text::before {
    top: -20px;
    left: -40px;
}

.visi-text::after {
    bottom: -30px;
    right: -40px;
}

.misi-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.misi-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 10px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all .3s ease;
}

.misi-item:hover {
    background: #f1f3f5;
    transform: translateX(5px);
}

.misi-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #969696 0%, #646464 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.misi-text {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
    margin: 0;
    padding-top: 5px;
}

.motto-card {
    background: linear-gradient(135deg, #979797, #c7c7c7 0%, #979797 100%);
    color: #303030;
    text-align: center;
    padding: 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.motto-text {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width:768px) {
    .visi-text {
        font-size: 1.1rem;
    }

    .motto-text {
        font-size: 1.4rem;
    }

    .misi-text {
        font-size: .95rem;
    }
}

/* ── Tugas Fungsi ────────────────────────────────────────────── */
.tugas-content {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.tugas-text {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.9;
    margin: 0;
    text-align: justify;
}

.fungsi-intro {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
}

.fungsi-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fungsi-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 10px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all .3s ease;
    border-left: 3px solid transparent;
}

.fungsi-item:hover {
    background: #e3f2fd;
    border-left-color: #4facfe;
    transform: translateX(5px);
}

.fungsi-letter {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #969696 0%, #646464 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
    text-transform: lowercase;
}

.fungsi-text {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
    margin: 0;
    padding-top: 5px;
}

/* ── Struktur Organisasi ─────────────────────────────────────── */
.image-container {
    position: relative;
    width: 100%;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
    border: 2px solid #e9ecef;
    transition: all .3s ease;
}

.image-container:hover {
    border-color: #667eea;
    box-shadow: 0 4px 16px rgba(102, 126, 234, .2);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: all .3s ease;
}

.image-container:hover img {
    transform: scale(1.02);
}

.zoom-hint {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(102, 126, 234, .9);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: all .3s ease;
    pointer-events: none;
}

.image-container:hover .zoom-hint {
    opacity: 1;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, .3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, .4);
    color: #fff;
}

.info-text {
    text-align: center;
    color: #546e7a;
    font-size: .95rem;
    margin-top: 15px;
    font-style: italic;
}

@media (max-width:768px) {
    .image-container {
        padding: 15px;
    }

    .zoom-hint {
        display: none;
    }
}

/* ── Footer ──────────────────────────────────────────────────── */
footer {
    color: #444;
    padding: 0;
    margin-top: 10px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* ── Pengaduan Float ─────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #0ea5e9;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .3);
    z-index: 1000;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #0369a1;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .4);
}

.whatsapp-float i {
    margin-top: 3px;
}

.whatsapp-float::before {
    content: "Form Pengaduan";
    position: absolute;
    right: 70px;
    background: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.whatsapp-float::after {
    content: "";
    position: absolute;
    right: 60px;
    border-left: 8px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
}

.whatsapp-float.pulse {
    animation: pulse 2s infinite;
}

@media (max-width:768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float::before {
        font-size: 12px;
        padding: 6px 12px;
        right: 60px;
    }

    .whatsapp-float::after {
        right: 50px;
    }
}

/* ── Carousel ────────────────────────────────────────────────── */
.carousel-inner .carousel-item img {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

/* ── Doctors grid 2 col ──────────────────────────────────────── */
.doctors-grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}

@media (max-width:768px) {
    .doctors-grid-2-col {
        grid-template-columns: 1fr;
    }
}

.doctor-card-grid {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
}

.doctor-card-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .1);
}

.doctor-profile-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e0e0e0;
}

.doctor-photo-grid img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f4f8;
}

.doctor-name-grid {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px;
}

.schedule-item-grid {
    display: flex;
    justify-content: space-between;
    background: #f8fafc;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: .9rem;
}

.schedule-item-grid:last-child {
    margin-bottom: 0;
}

.schedule-day {
    font-weight: 600;
    color: #3b82f6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-time {
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Dropdown Sub-menu ───────────────────────────────────────── */
.dropdown-submenu-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    border-radius: 10px;
    padding: 10px;
    min-width: 200px;
    border-top: 3px solid #10b981;
    z-index: 1050;
}

/* Desktop: hover ATAU class .show */
@media (min-width:992px) {
    .dropdown-submenu:hover>.dropdown-submenu-menu,
    .dropdown-submenu-menu.show {
        display: block;
    }
}

/* Mobile: hanya class .show */
@media (max-width:991px) {
    .dropdown-submenu-menu {
        position: static;
        left: 0;
        box-shadow: none;
        border: none;
        border-top: none;
        background: #f0fdf4;
        margin-left: 16px;
        border-radius: 8px;
        padding: 6px;
    }

    .dropdown-submenu-menu.show {
        display: block;
    }
}

.dropdown-submenu>.dropdown-toggle::after {
    margin-left: auto;
    float: right;
    margin-top: 6px;
}

/*fotodokter*/
.dkr-body-wrap {
    background: #f0f4f8;
    padding: 40px 0 64px;
}

/* Section header */
.dkr-section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.dkr-section-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.dkr-section-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f2942;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin: 0;
}

.dkr-section-count {
    margin-left: auto;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
}

.dkr-divider {
    height: 3px;
    border-radius: 2px;
    margin-bottom: 24px;
}

/* Card */
.dkr-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    overflow: hidden;
    height: 100%;
    transition: transform .2s, box-shadow .2s;
    padding: 20px 16px 16px;
    text-align: center;
}

.dkr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .13);
}

.dkr-photo-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: #e0f2fe;
    margin: 0 auto 14px;
    border: 3px solid #0ea5e9;
    box-shadow: 0 2px 10px rgba(14, 165, 233, .2);
    flex-shrink: 0;
}

.dkr-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .3s;
}

.dkr-card:hover .dkr-photo-wrap img {
    transform: scale(1.08);
}

.dkr-body {
    padding: 14px 16px;
    text-align: center;
}

.dkr-name {
    font-size: 13px;
    font-weight: 700;
    color: #0f2942;
    margin-bottom: 6px;
    line-height: 1.3;
}

.dkr-sps {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    margin-bottom: 6px;
}

.dkr-sip {
    font-size: 10px;
    color: #aaa;
}

/* Empty state */
.dkr-empty {
    text-align: center;
    padding: 48px 20px;
    color: #aaa;
}

.dkr-empty i {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
    color: #dde3ec;
}

.kontak-hero {
    background: linear-gradient(135deg, #1a2a4a 0%, #2c3e50 100%);
    padding: 52px 0 44px;
    position: relative;
    overflow: hidden;
}

.kontak-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='80'%3E%3Crect width='40' height='80' fill='none'/%3E%3Crect x='0' y='0' width='4' height='80' fill='%23fff'/%3E%3Crect x='36' y='0' width='4' height='80' fill='%23fff'/%3E%3Cpolygon points='20,4 26,12 20,20 14,12' fill='%23fff'/%3E%3Ccircle cx='20' cy='12' r='2' fill='%23fff'/%3E%3Cpolygon points='20,36 26,44 20,52 14,44' fill='%23fff'/%3E%3Ccircle cx='20' cy='44' r='2' fill='%23fff'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 40px 80px;
}

.kontak-hero-inner {
    position: relative;
    z-index: 1;
}

.kontak-hero h1 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
}

.kontak-hero p {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    margin: 0;
}

.kontak-body {
    background: #f0f4f8;
    padding: 48px 0 64px;
}

/* Info card */
.info-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    padding: 28px 24px;
    height: 100%;
    border-top: 4px solid var(--card-color);
    transition: transform .2s, box-shadow .2s;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
}

.info-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 16px;
    background: var(--card-color);
}

.info-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 6px;
}

.info-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a2a4a;
    line-height: 1.6;
    margin: 0;
}

.info-value a {
    color: #1a2a4a;
    text-decoration: none;
    transition: color .2s;
}

.info-value a:hover {
    color: #3498db;
}

/* Sosmed */
.sosmed-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    padding: 28px 24px;
}

.sosmed-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #1a2a4a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f4f8;
}

.sosmed-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sosmed-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
    flex: 1;
    min-width: 160px;
}

.sosmed-btn:hover {
    opacity: .88;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.sosmed-btn i {
    font-size: 18px;
}

.sosmed-fb {
    background: #1877f2;
}

.sosmed-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.sosmed-wa {
    background: #25d366;
}

.sosmed-yt {
    background: #ff0000;
}

/* WA CTA */
.wa-cta {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .25);
}

.wa-cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    flex-shrink: 0;
}

.wa-cta-text h5 {
    color: #fff;
    font-weight: 700;
    margin: 0 0 4px;
    font-size: 15px;
}

.wa-cta-text p {
    color: rgba(255, 255, 255, .8);
    font-size: 12px;
    margin: 0;
}

.wa-cta-btn {
    margin-left: auto;
    background: #fff;
    color: #128c7e;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: box-shadow .2s;
    flex-shrink: 0;
}

.wa-cta-btn:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
    color: #128c7e;
    text-decoration: none;
}

/* Map */
.map-wrap {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
}

.map-wrap-header {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f4f8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-wrap-header i {
    color: #3498db;
    font-size: 16px;
}

.map-wrap-header span {
    font-size: 14px;
    font-weight: 700;
    color: #1a2a4a;
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: none;
}

/* Section divider */
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #3498db;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e6ef;
}

/* ================================================================
   RSUPP BETUN — HOME PAGE REDESIGN (modern / professional)
   Tambahkan blok ini ke FILE CSS UTAMA (paling bawah).
   Class lama yang dipakai halaman lain (info-card, dok-slide-card,
   btn-hl, sec-title, sec-divider, dll) di-OVERRIDE di sini dengan
   versi yang lebih clean — aman untuk halaman lain karena hanya
   memperhalus visual, tidak mengubah struktur/nama class.
   ================================================================ */

/* ── Refined palette (dipakai lewat variabel yang sudah ada) ─── */
:root {
    --primary: #0369a1;
    --primary-dark: #075985;
    --primary-light: #e0f2fe;
    --accent: #059669;
    --accent-dark: #047857;
    --accent-light: #d1fae5;
    --dark: #0f172a;
    --text: #475569;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --bg-light: #f8fafc;
    --shadow-soft: 0 4px 16px rgba(15, 23, 42, .06);
    --shadow-hover: 0 12px 28px rgba(15, 23, 42, .12);
}

body {
    color: var(--text);
}

/* ── Section rhythm helpers ──────────────────────────────────── */
.hm-section {
    padding: 72px 0;
}

.hm-bg-white {
    background: #fff;
}

.hm-bg-alt {
    background: var(--bg-light);
}

.hm-sec-head {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.hm-sec-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent-dark);
    background: var(--accent-light);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.hm-cta-row {
    margin-top: 40px;
}

/* ── Section title / divider (override) ──────────────────────── */
.sec-title {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -.3px;
}

.sec-divider {
    width: 40px;
    height: 3px;
    border-radius: 2px;
    margin: 0 auto;
    background: var(--primary);
}

/* ── Highlight button (override, less "gradient soup") ──────── */
.btn-hl {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all .2s ease;
}

.btn-hl:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3, 105, 161, .25);
}

/* ── HERO (redesigned) ───────────────────────────────────────── */
.hm-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center top;
}

.hm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(7, 27, 51, .90) 0%, rgba(3, 76, 92, .82) 55%, rgba(4, 89, 76, .78) 100%);
}

.hm-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 0;
}

.hm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #e0f2fe;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .6px;
    padding: 9px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hm-hero-title {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 2.75rem;
    line-height: 1.28;
    letter-spacing: -.5px;
    margin-bottom: 32px;
}

.hm-hero-title-accent {
    color: #f8c838;
}

.hm-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hm {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all .2s ease;
}

.btn-hm-outline {
    border: 1.5px solid rgba(255, 255, 255, .5);
    color: #fff;
    background: transparent;
}

.btn-hm-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
    color: #fff;
}

.btn-hm-solid {
    background: #fff;
    color: var(--primary-dark);
    border: 1.5px solid #fff;
}

.btn-hm-solid:hover {
    background: #e0f2fe;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
}

@media (max-width: 992px) {
    .hm-hero {
        min-height: 480px;
    }

    .hm-hero-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 576px) {
    .hm-hero-title {
        font-size: 1.7rem;
    }

    .hm-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ── WELCOME (redesigned) ────────────────────────────────────── */
.hm-welcome {
    background: #fff;
    padding: 76px 0;
}

.hm-eyebrow {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hm-welcome-title {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 18px;
    letter-spacing: -.4px;
}

.hm-gradient-text {
    color: var(--primary);
}

.hm-welcome-text {
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 28px;
}

.hm-dir-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
}

.hm-dir-photo {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px;
    border: 4px solid var(--primary-light);
}

.hm-dir-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hm-dir-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.hm-dir-card p {
    font-size: 12.5px;
    color: var(--text-muted);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}

/* ── BERITA (redesigned) ─────────────────────────────────────── */
.hm-news-feature {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    border: 1px solid var(--border);
    transition: box-shadow .25s, transform .25s;
}

.hm-news-feature:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.hm-news-feature-img {
    position: relative;
    height: 260px;
    background: var(--bg-light);
    overflow: hidden;
}

.hm-news-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .35s;
}

.hm-news-feature:hover .hm-news-feature-img img {
    transform: scale(1.04);
}

.hm-news-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 4px 13px;
    border-radius: 20px;
}

.hm-news-cat-sm {
    position: static;
    display: inline-block;
    margin-bottom: 6px;
}

.hm-news-feature-body {
    padding: 22px 24px;
}

.hm-news-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.5;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hm-news-date {
    font-size: 12px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hm-news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.hm-news-row {
    display: flex;
    gap: 14px;
    text-decoration: none;
    align-items: flex-start;
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: var(--shadow-soft);
    flex: 1;
    border: 1px solid var(--border);
    transition: box-shadow .2s, transform .2s;
}

.hm-news-row:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.hm-news-row-img {
    width: 92px;
    height: 72px;
    object-fit: contain;
    background: var(--bg-light);
    border-radius: 8px;
    flex-shrink: 0;
}

.hm-news-row-body {
    min-width: 0;
}

.hm-news-row-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── INFO CARD — poli / kamar (redesigned, override) ─────────── */
.info-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform .2s, box-shadow .2s;
    height: 100%;
    background: #fff;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.info-card-head {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    background: var(--primary);
}

.info-card-head .ic {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.info-card-head span {
    font-weight: 700;
    font-size: 13px;
    line-height: 1.3;
}

.info-card-body {
    background: #fff;
    padding: 14px 16px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text);
    margin-bottom: 6px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row i {
    color: var(--primary);
    width: 14px;
    text-align: center;
}

.info-row .val-green {
    color: var(--accent-dark);
    font-weight: 700;
}

.info-row .val-red {
    color: #dc2626;
    font-weight: 700;
}

.info-row-tarif {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px dashed var(--border);
}

/* ── DOKTER SLIDER (redesigned, override) ────────────────────── */
.dok-slide-wrap {
    position: relative;
}

.dok-slider {
    display: flex;
    gap: 18px;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 8px 4px 16px;
}

.dok-slide-item {
    min-width: 180px;
    flex-shrink: 0;
}

.dok-slide-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    text-align: center;
    padding: 22px 12px 18px;
    transition: transform .2s, box-shadow .2s;
    border: 1px solid var(--border);
    height: 100%;
}

.dok-slide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.dok-slide-card .photo {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-light);
    flex-shrink: 0;
    margin: 0 auto 14px;
    border: 3px solid var(--primary-light);
}

.dok-slide-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .3s;
}

.dok-slide-card:hover .photo img {
    transform: scale(1.06);
}

.dok-slide-card .info {
    padding: 0 6px;
}

.dok-slide-card .sps {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.dok-slide-card .nm {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.dok-slide-card .sip {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 5px;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 14px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}

.slide-btn:hover {
    background: var(--primary);
    color: #fff;
}

.slide-btn.left {
    left: -18px;
}

.slide-btn.right {
    right: -18px;
}

@media (max-width: 576px) {

    .slide-btn.left,
    .slide-btn.right {
        display: none;
    }
}

/* ================================================================
   RSUPP BETUN — LAYOUT REDESIGN (navbar, topbar, FAB, footer)
   Tambahkan blok ini SETELAH home-redesign.css di file CSS utama.
   ================================================================ */

/* ── Navbar (override, refined) ──────────────────────────────── */
#mainNav {
    background-color: #fff !important;
    box-shadow: 0 1px 0 var(--border);
    padding: 14px 0;
    transition: box-shadow .2s, padding .2s;
}

#mainNav.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 4px 16px rgba(15, 23, 42, .08);
    padding: 10px 0;
}

#mainNav .navbar-brand img {
    max-width: 280px;
    height: auto;
}

#mainNav .navbar-nav .nav-link {
    color: #334155;
    font-weight: 600;
    font-size: 14.5px;
    padding: 10px 16px;
    margin: 0 2px;
    border-radius: 6px;
    transition: all .2s ease;
}

#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link.active {
    color: var(--primary);
    background-color: var(--primary-light);
}

#mainNav .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-hover);
    border-radius: 10px;
    padding: 8px;
    margin-top: 8px;
    border-top: 3px solid var(--primary);
}

#mainNav .dropdown-item {
    padding: 9px 14px;
    border-radius: 6px;
    font-size: 13.5px;
    color: #334155;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .15s ease;
}

#mainNav .dropdown-item i {
    width: 14px;
    text-align: center;
    color: var(--primary);
    font-size: 12px;
}

#mainNav .dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

#mainNav .dropdown-item.active {
    background: var(--primary);
    color: #fff;
}

#mainNav .dropdown-item.active i {
    color: #fff;
}

.dropdown-submenu-menu {
    border-top: 3px solid var(--accent) !important;
}

/* ── Topbar (override) ───────────────────────────────────────── */
.topbar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 12.5px;
}

.topbar .site-info a,
.topbar .site-info span {
    color: rgba(255, 255, 255, .85) !important;
}

.topbar .divider {
    color: rgba(255, 255, 255, .3) !important;
}

.topbar .social-mini-button a span {
    color: rgba(255, 255, 255, .85) !important;
}

.topbar .social-mini-button a {
    transition: color .15s;
}

.topbar .social-mini-button a:hover span {
    color: #38bdf8 !important;
}

/* ── FAB (Floating Action Button) ────────────────────────────── */
.fab-wrap {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.fab-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all .25s ease;
    pointer-events: none;
}

.fab-item.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fab-label {
    background: #fff;
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    white-space: nowrap;
}

.fab-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    text-decoration: none;
    color: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform .2s;
}

.fab-btn:hover {
    transform: scale(1.08);
    color: #fff;
}

.fab-btn-primary {
    background: var(--primary);
}

.fab-btn-wa {
    background: #25d366;
}

.fab-main {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(3, 105, 161, .35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
}

.fab-main:hover {
    transform: scale(1.05);
}

.fab-main.is-open {
    background: #dc2626;
}

@media (max-width: 768px) {
    .fab-wrap {
        bottom: 20px;
        right: 20px;
    }

    .fab-main {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .fab-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* ── Footer (redesigned, light blue) ─────────────────────────── */
.site-footer {
    background: #fff;
    color: #334155;
    font-size: 14px;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.site-footer-motif {
    position: absolute;
    inset: 0;
    background-image: url('../images/tenun.png');
    background-repeat: repeat;
    background-size: 280px auto;
    opacity: .07;
    pointer-events: none;
    z-index: 0;
}

.site-footer-inner {
    position: relative;
    z-index: 1;
}

.footer-brand img {
    height: 48px;
    margin-bottom: 16px;
}

.footer-quote {
    border-left: 3px solid var(--primary);
    padding-left: 14px;
    margin: 0 0 20px;
}

.footer-quote p {
    font-size: 14px;
    color: #64748b;
    font-style: italic;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-size: 14px;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: all .2s;
}

.footer-social-btn.fb:hover {
    background: #1877f2;
    color: #fff;
}

.footer-social-btn.ig:hover {
    background: #e1306c;
    color: #fff;
}

.footer-social-btn.wa:hover {
    background: #25d366;
    color: #fff;
}

.footer-heading {
    color: var(--dark);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-heading-accent {
    border-bottom-color: var(--accent);
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-list a {
    color: #475569;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
}

.footer-link-list a:hover {
    color: var(--primary-dark);
}

.footer-link-list a i {
    font-size: 10px;
    color: var(--accent);
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-hours-item {
    background: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    box-shadow: var(--shadow-soft);
}

.footer-hours-title {
    font-size: 12px;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.footer-hours-title i {
    width: 14px;
    text-align: center;
    margin-right: 2px;
}

.footer-hours-detail {
    font-size: 12px;
    color: #64748b;
}

.footer-hours-detail strong {
    color: var(--dark);
}

.footer-hours-closed {
    font-size: 12px;
    color: #94a3b8;
}

.footer-hours-closed span {
    color: #dc2626;
}

.footer-hours-igd {
    background: #fef2f2;
    border-left: 3px solid #dc2626;
    border-radius: 0 8px 8px 0;
    box-shadow: none;
}

.footer-hours-igd .footer-hours-title {
    color: #dc2626;
    font-weight: 700;
    margin: 0;
}

.footer-igd-badge {
    background: #dc2626;
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 13px;
    box-shadow: var(--shadow-soft);
}

.footer-contact-icon-wa {
    color: #25d366;
}

.footer-contact-text {
    color: #475569;
    font-size: 13px;
    line-height: 1.6;
    padding-top: 6px;
}

.footer-contact-row a {
    color: #475569;
    text-decoration: none;
    font-size: 13px;
    padding-top: 6px;
    transition: color .2s;
}

.footer-contact-row a:hover {
    color: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(3, 105, 161, .12);
    padding: 18px 0;
    background: rgba(255, 255, 255, .5);
    position: relative;
    z-index: 1;
}

.footer-copyright {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}

.footer-copyright strong {
    color: var(--dark);
}

.footer-heart {
    color: #dc2626;
}

/* ================================================================
   RSUPP BETUN — MINIMALIST PREMIUM REDESIGN (v2)
   Semua class baru pakai prefix "mp-" supaya TIDAK bentrok dengan
   class lama apa pun di file CSS Anda. Tempel blok ini di PALING
   BAWAH file CSS utama (css/style-clean.css).
   ================================================================ */

.mp-scope,
body {
    --mp-ink: #1c1f26;
    --mp-ink-soft: #5b6472;
    --mp-ink-faint: #9aa3b0;
    --mp-line: #e8e6e0;
    --mp-paper: #ffffff;
    --mp-paper-tint: #faf9f6;
    --mp-teal: #0f4c48;
    --mp-teal-soft: #eef4f3;
    --mp-gold: #b08d57;
    --mp-gold-soft: #f7f0e4;
    --mp-ok: #2f7d5e;
    --mp-full: #b0503f;
    font-family: 'Inter', -apple-system, sans-serif;
}

.mp-tag,
.mp-eyebrow-tag,
.mp-kicker {
    font-family: 'Inter', sans-serif;
}

/* ── Typography helpers ──────────────────────────────────────── */
.mp-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--mp-gold);
    margin-bottom: 14px;
}

.mp-tag::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 1px;
    background: var(--mp-gold);
    margin-right: 10px;
    vertical-align: middle;
}

.mp-title {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--mp-ink);
    letter-spacing: -.4px;
    margin-bottom: 0;
    line-height: 1.25;
}

.mp-body-text {
    color: var(--mp-ink-soft);
    font-size: 15.5px;
    line-height: 1.9;
    margin: 20px 0 28px;
    font-weight: 400;
}

.mp-meta {
    font-size: 11.5px;
    color: var(--mp-ink-faint);
    letter-spacing: .2px;
}

/* ── Section rhythm ───────────────────────────────────────────── */
.mp-section {
    padding: 88px 0;
    background: var(--mp-paper);
}

.mp-section-tint {
    background: var(--mp-paper-tint);
}

.mp-section-head {
    margin-bottom: 44px;
}

.mp-cta-center {
    text-align: center;
    margin-top: 44px;
}

/* ── Link / button ────────────────────────────────────────────── */
.mp-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--mp-teal);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: all .2s ease;
}

.mp-link i {
    font-size: 11px;
    transition: transform .2s ease;
}

.mp-link:hover {
    color: var(--mp-teal);
    border-bottom-color: var(--mp-teal);
}

.mp-link:hover i {
    transform: translateX(3px);
}

.mp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 30px;
    border-radius: 2px;
    text-decoration: none;
    transition: all .25s ease;
    letter-spacing: .2px;
}

.mp-btn-dark {
    background: var(--mp-ink);
    color: #fff;
    border: 1px solid var(--mp-ink);
}

.mp-btn-dark:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.mp-btn-line {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .5);
}

.mp-btn-line:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    color: #fff;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.mp-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--mp-ink);
}

.mp-hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(35%) brightness(.55);
    transform: scale(1.02);
}

.mp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 17, 22, .25) 0%, rgba(15, 17, 22, .15) 40%, rgba(15, 17, 22, .92) 100%);
}

.mp-hero-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 72px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.mp-hero-content {
    max-width: 680px;
    text-align: right;
}

.mp-kicker {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 20px;
}

.mp-hero-title {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 2.9rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.22;
    letter-spacing: -.6px;
    margin-bottom: 22px;
}

.mp-hero-sub {
    font-size: 15.5px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
    margin-bottom: 34px;
    max-width: 520px;
}

.mp-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    .mp-hero {
        min-height: 560px;
    }

    .mp-hero-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 576px) {
    .mp-hero-title {
        font-size: 1.85rem;
    }

    .mp-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ── Person card (direktur) ──────────────────────────────────── */
.mp-person-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--mp-paper);
    border: 1px solid var(--mp-line);
    padding: 24px;
}

.mp-person-photo {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.mp-person-info h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--mp-ink);
    margin: 0 0 4px;
    line-height: 1.35;
}

.mp-person-info p {
    font-size: 12px;
    color: var(--mp-gold);
    font-weight: 600;
    letter-spacing: .4px;
    text-transform: uppercase;
    margin: 0;
}

/* ── News (berita) ────────────────────────────────────────────── */
.mp-eyebrow-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--mp-teal);
    margin-bottom: 10px;
}

.mp-eyebrow-tag-sm {
    margin-bottom: 5px;
}

.mp-news-main {
    display: block;
    text-decoration: none;
    background: var(--mp-paper);
    border: 1px solid var(--mp-line);
    height: 100%;
    transition: border-color .2s;
}

.mp-news-main:hover {
    border-color: var(--mp-teal);
}

.mp-news-main-img {
    height: 260px;
    background: var(--mp-teal-soft);
    overflow: hidden;
}

.mp-news-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mp-news-main-body {
    padding: 26px 28px;
}

.mp-news-main-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--mp-ink);
    line-height: 1.5;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mp-news-side {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--mp-line);
    border: 1px solid var(--mp-line);
    height: 100%;
}

.mp-news-row {
    display: flex;
    gap: 16px;
    text-decoration: none;
    align-items: flex-start;
    background: var(--mp-paper);
    padding: 18px;
    flex: 1;
    transition: background .2s;
}

.mp-news-row:hover {
    background: var(--mp-paper-tint);
}

.mp-news-row-img {
    width: 84px;
    height: 68px;
    object-fit: cover;
    background: var(--mp-teal-soft);
    flex-shrink: 0;
}

.mp-news-row-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--mp-ink);
    margin: 0 0 6px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Tile (poli / kamar) ─────────────────────────────────────── */
.mp-tile {
    background: var(--mp-paper);
    border: 1px solid var(--mp-line);
    padding: 22px 18px;
    height: 100%;
    transition: border-color .2s, transform .2s;
}

.mp-tile:hover {
    border-color: var(--mp-teal);
    transform: translateY(-2px);
}

.mp-tile-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mp-teal-soft);
    color: var(--mp-teal);
    font-size: 16px;
    flex-shrink: 0;
}

.mp-tile-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.mp-tile-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--mp-ink);
    line-height: 1.35;
    margin: 0;
}

.mp-tile-row {
    font-size: 12px;
    color: var(--mp-ink-soft);
    margin-bottom: 4px;
    line-height: 1.5;
}

.mp-tile-time {
    color: var(--mp-teal);
    font-weight: 700;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px dashed var(--mp-line);
}

.mp-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-right: 4px;
}

.mp-dot-ok {
    background: var(--mp-ok);
}

.mp-dot-full {
    background: var(--mp-full);
}

/* ── Dokter slider ────────────────────────────────────────────── */
.mp-dok-wrap {
    position: relative;
}

.mp-dok-slider {
    display: flex;
    gap: 1px;
    overflow: hidden;
    scroll-behavior: smooth;
    background: var(--mp-line);
    border: 1px solid var(--mp-line);
}

.mp-dok-item {
    min-width: 190px;
    flex-shrink: 0;
}

.mp-dok-card {
    background: var(--mp-paper);
    text-align: center;
    padding: 28px 14px;
    height: 100%;
}

.mp-dok-photo {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    background: var(--mp-teal-soft);
}

.mp-dok-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.mp-dok-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--mp-ink);
    margin-bottom: 8px;
    line-height: 1.35;
}

.mp-dok-sps {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--mp-teal);
    background: var(--mp-teal-soft);
    padding: 3px 12px;
}

.mp-dok-sip {
    font-size: 10px;
    color: var(--mp-ink-faint);
    margin-top: 8px;
}

.mp-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    background: var(--mp-paper);
    border: 1px solid var(--mp-line);
    color: var(--mp-ink);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.mp-slide-btn:hover {
    background: var(--mp-ink);
    color: #fff;
    border-color: var(--mp-ink);
}

.mp-slide-btn.left {
    left: -19px;
}

.mp-slide-btn.right {
    right: -19px;
}

@media (max-width: 576px) {

    .mp-slide-btn.left,
    .mp-slide-btn.right {
        display: none;
    }
}

/* ================================================================
   RSUPP BETUN — WARM ACCENT REDESIGN (v3)
   Semua class baru pakai prefix "wa-" (warm accent) supaya TIDAK
   bentrok dengan class apa pun yang sudah ada. Tempel di PALING
   BAWAH file CSS utama (css/style-clean.css).
   ================================================================ */

.wa-scope,
body {
    --wa-teal: #0f4c48;
    --wa-teal-dark: #0a3733;
    --wa-teal-soft: #e8f2f0;
    --wa-gold: #b08d57;
    --wa-gold-soft: #f7f0e4;
    --wa-ink: #1c1f26;
    --wa-ink-soft: #5b6472;
    --wa-ink-faint: #9aa3b0;
    --wa-line: #e8e6e0;
    --wa-paper: #ffffff;
    --wa-paper-tint: #faf9f6;
    --wa-ok: #2f7d5e;
    --wa-full: #b0503f;
}

/* ── Typography helpers ──────────────────────────────────────── */
.wa-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--wa-gold);
    margin-bottom: 14px;
}

.wa-tag::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 1px;
    background: var(--wa-gold);
    margin-right: 10px;
    vertical-align: middle;
}

.wa-title {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--wa-ink);
    letter-spacing: -.3px;
    margin-bottom: 0;
    line-height: 1.25;
}

.wa-body-text {
    color: var(--wa-ink-soft);
    font-size: 15.5px;
    line-height: 1.9;
    margin: 20px 0 28px;
}

.wa-meta {
    font-size: 11.5px;
    color: var(--wa-ink-faint);
}

/* ── Section rhythm ───────────────────────────────────────────── */
.wa-section {
    padding: 80px 0;
    background: var(--wa-paper);
}

.wa-section-tint {
    background: var(--wa-paper-tint);
}

.wa-section-head {
    margin-bottom: 40px;
}

.wa-cta-center {
    text-align: center;
    margin-top: 40px;
}

/* ── Link / button ────────────────────────────────────────────── */
.wa-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--wa-teal);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: all .2s ease;
}

.wa-link i {
    font-size: 11px;
    transition: transform .2s ease;
}

.wa-link:hover {
    color: var(--wa-teal-dark);
    border-bottom-color: var(--wa-teal);
}

.wa-link:hover i {
    transform: translateX(3px);
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    font-size: 13.5px;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all .25s ease;
}

.wa-btn-solid {
    background: var(--wa-gold);
    color: #fff;
    border: 1px solid var(--wa-gold);
}

.wa-btn-solid:hover {
    background: #9c7a48;
    color: #fff;
}

.wa-btn-line {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .4);
}

.wa-btn-line:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    color: #fff;
}

/* ── HERO — slideshow ─────────────────────────────────────────── */

.wa-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--wa-teal-dark);
    padding: 40px 0 64px;
}

.wa-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
    z-index: 1;
}

.wa-hero-slide.active {
    opacity: 1;
}

.wa-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
    z-index: 2;
}

.wa-hero-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(176, 141, 87, .22) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.wa-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 640px;
    margin-left: auto;
    text-align: right;
    transition: opacity .6s ease;
}

.wa-hero-inner.wa-hidden {
    opacity: 0;
    pointer-events: none;
}

.wa-kicker {
    display: inline-flex;
    align-items: center;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(224, 201, 160, .4);
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 24px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}

.wa-hero-title {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -.5px;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}

.wa-hero-title span {
    color: #e0c9a0;
}

.wa-hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .95);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
}

.wa-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.wa-hero-dots {
    position: absolute;
    bottom: 28px;
    right: 40px;
    z-index: 4;
    display: flex;
    gap: 8px;
}

.wa-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    cursor: default;
    transition: background .3s;
}

.wa-dot.active {
    background: #e0c9a0;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════ */

@media (max-width: 1440px) {
    .wa-hero {
        min-height: 560px;
    }
}

@media (max-width: 1200px) {
    .wa-hero {
        min-height: 540px;
    }
}

   
/* ── Mobile besar (≤ 767px) ──────────────────────────────
   .wa-hero-inner adalah SATU elemen tunggal (bukan per-slide),
   jadi otomatis dia overlay di atas SLIDE MANAPUN yang sedang
   aktif. Semua slide diperlakukan sama: cover + overlay teks.
   Ini pendekatan paling stabil & tidak konflik.
   ────────────────────────────────────────────────────── */
@media (max-width: 767px) {
    body {
        margin: 0;
    }
 
    .wa-hero {
        display: block;
        min-height: 0;
        height: auto;
        padding: 0;
        margin: 0;
        transition: min-height .4s ease;
    }
 
    .wa-hero.wa-hero-compact {
        min-height: 0;
        padding: 0;
    }
 
    .wa-hero-slide {
        position: relative;
        inset: auto;
        width: 100%;
        background-repeat: no-repeat;
        opacity: 1;
        margin: 0;
        display: block;
    }
    .wa-hero-slide:not(.active) {
        display: none;
    }
 
    .wa-hero-slide {
        background-size: cover;
        background-position: center 30%;
        aspect-ratio: 4 / 5; /* tinggi mengikuti lebar layar, cukup untuk memuat teks+tombol di dalamnya */
    }
 
    .wa-hero-slide:not(:first-child) {
        background-size: contain;
        background-position: center;
        background-color: var(--wa-teal-dark);
        aspect-ratio: 16 / 9;
    }
 
    .wa-hero.wa-hero-compact .wa-hero-inner {
        display: none;
    }
 
    .wa-hero-inner {
        position: absolute;
        inset: auto 0 0 0;
        z-index: 3;
        max-width: 100%;
        width: 100%;
        margin: 0;
        text-align: left;
        padding: 16px 16px 20px;
        box-sizing: border-box;
        background: linear-gradient(to top, rgba(0,0,0,.75) 30%, rgba(0,0,0,.35) 65%, transparent);
    }
 
    .wa-kicker {
        font-size: 9.5px;
        letter-spacing: 1px;
        padding: 6px 14px;
        margin-bottom: 12px;
        white-space: normal;
        line-height: 1.5;
    }
 
    .wa-hero-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }
 
    .wa-hero-sub {
        font-size: 12.5px;
        line-height: 1.6;
        margin-bottom: 18px;
        margin-left: 0;
        max-width: 100%;
    }
 
    .wa-hero-actions {
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 8px;
    }
 
    .wa-btn {
        flex: 1 1 auto;
        min-width: 0;
        text-align: center;
        padding: 9px 14px;
        font-size: 12.5px;
        white-space: nowrap;
    }
 
    .wa-hero-dots {
        position: static;
        display: flex;
        justify-content: center;
        gap: 6px;
        padding: 8px 0;
    }
}
 
@media (max-width: 480px) {
    .wa-hero,
    .wa-hero-slide:first-child {
        min-height: 480px;
    }
    .wa-hero-title {
        font-size: 1.3rem;
    }
}

/* ── Layar ultrawide (≥ 2200px) ───────────── */
@media (min-width: 2200px) {
    .wa-hero {
        min-height: 820px;
    }
}




/* ── Person card (direktur) ──────────────────────────────────── */
.wa-person-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--wa-paper);
    border: 1px solid var(--wa-line);
    border-left: 3px solid var(--wa-gold);
    padding: 24px;
    box-shadow: 0 2px 10px rgba(15, 76, 72, .06);
}

.wa-person-photo {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.wa-person-info h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--wa-ink);
    margin: 0 0 4px;
    line-height: 1.35;
}

.wa-person-info p {
    font-size: 12px;
    color: var(--wa-gold);
    font-weight: 600;
    letter-spacing: .4px;
    text-transform: uppercase;
    margin: 0;
}

/* ── News (berita) ────────────────────────────────────────────── */
.wa-news-main {
    display: block;
    text-decoration: none;
    background: var(--wa-paper);
    border: 1px solid var(--wa-line);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 10px rgba(15, 76, 72, .06);
    transition: box-shadow .2s;
}

.wa-news-main:hover {
    box-shadow: 0 6px 20px rgba(15, 76, 72, .14);
}

.wa-news-main-img {
    position: relative;
    height: 260px;
    background: var(--wa-teal-soft);
    overflow: hidden;
}

.wa-news-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa-news-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--wa-gold);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 4px 13px;
    border-radius: 20px;
}

.wa-news-cat-sm {
    position: static;
    display: inline-block;
    margin-bottom: 6px;
}

.wa-news-main-body {
    padding: 24px 26px;
}

.wa-news-main-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--wa-ink);
    line-height: 1.5;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wa-news-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.wa-news-row {
    display: flex;
    gap: 14px;
    text-decoration: none;
    align-items: flex-start;
    background: var(--wa-paper);
    border: 1px solid var(--wa-line);
    border-radius: 10px;
    padding: 14px;
    flex: 1;
    box-shadow: 0 2px 8px rgba(15, 76, 72, .05);
    transition: box-shadow .2s, transform .2s;
}

.wa-news-row:hover {
    box-shadow: 0 6px 16px rgba(15, 76, 72, .12);
    transform: translateY(-2px);
}

.wa-news-row-img {
    width: 84px;
    height: 68px;
    object-fit: cover;
    background: var(--wa-teal-soft);
    border-radius: 8px;
    flex-shrink: 0;
}

.wa-news-row-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--wa-ink);
    margin: 0 0 6px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Tile (poli / kamar) ─────────────────────────────────────── */
.wa-tile {
    background: var(--wa-paper);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(15, 76, 72, .08);
    border-left: 3px solid var(--wa-gold);
    transition: all .2s;
}

.wa-tile:hover {
    box-shadow: 0 6px 20px rgba(15, 76, 72, .16);
    transform: translateY(-2px);
}

.wa-tile-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.wa-tile-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--wa-teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.wa-tile-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--wa-ink);
    line-height: 1.3;
}

.wa-tile-row {
    font-size: 11.5px;
    color: var(--wa-ink-soft);
    margin-bottom: 3px;
}

.wa-tile-time {
    color: var(--wa-teal);
    font-weight: 700;
    margin-top: 6px;
}

.wa-dot-ok,
.wa-dot-full {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-right: 4px;
}

.wa-dot-ok {
    background: var(--wa-ok);
}

.wa-dot-full {
    background: var(--wa-full);
}

/* ── Dokter slider ────────────────────────────────────────────── */
.wa-dok-wrap {
    position: relative;
}

.wa-dok-slider {
    display: flex;
    gap: 16px;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 4px 2px 12px;
}

.wa-dok-item {
    min-width: 190px;
    flex-shrink: 0;
}

.wa-dok-card {
    background: var(--wa-paper);
    text-align: center;
    padding: 26px 14px;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(15, 76, 72, .07);
    border-top: 3px solid var(--wa-gold);
    transition: box-shadow .2s, transform .2s;
}

.wa-dok-card:hover {
    box-shadow: 0 6px 20px rgba(15, 76, 72, .15);
    transform: translateY(-3px);
}

.wa-dok-photo {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    background: var(--wa-teal-soft);
    border: 3px solid var(--wa-teal-soft);
}

.wa-dok-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.wa-dok-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--wa-ink);
    margin-bottom: 8px;
    line-height: 1.35;
}

.wa-dok-sps {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--wa-teal);
    background: var(--wa-teal-soft);
    padding: 3px 12px;
    border-radius: 20px;
}

.wa-dok-sip {
    font-size: 10px;
    color: var(--wa-ink-faint);
    margin-top: 8px;
}

.wa-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--wa-paper);
    border: 1px solid var(--wa-line);
    color: var(--wa-teal);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(15, 76, 72, .1);
    transition: all .2s;
}

.wa-slide-btn:hover {
    background: var(--wa-teal);
    color: #fff;
}

.wa-slide-btn.left {
    left: -19px;
}

.wa-slide-btn.right {
    right: -19px;
}

@media (max-width: 576px) {

    .wa-slide-btn.left,
    .wa-slide-btn.right {
        display: none;
    }
}