@charset "UTF-8";
/* ==========================================================================
   1. GLOBAL & VARIABLES
   ========================================================================== */
:root {
    --rs-green: #2ecc71;
    --rs-dark-green: #1a4d2e;
    --rs-light-green: #f0fff4;
    --rs-emergency: #e74c3c;
    --rs-text-dark: #2d3436;
    --rs-text-gray: #636e72;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 45px rgba(46, 204, 113, 0.2);
    --radius-card: 20px;
    --radius-button: 50px;
    --transition-fast: 0.3s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: #f8fafc;
    color: var(--rs-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    background: #fff;
    border-bottom: 3px solid var(--rs-green);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
}

.logo-asyifa {
    max-height: 55px; /* Atur tinggi maksimal logo. Gue saranin 55px biar ada jarak ke atas & bawah di header 80px. */
    width: auto; /* Biar lebarnya menyesuaikan, gak gepeng */
    display: block;
}
@media (max-width: 768px) {
    .logo-asyifa {
        max-height: 45px;
    }
}
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--rs-green);
    color: white;
    padding: 10px;
    z-index: 2000;
}
.skip-link:focus { top: 0; }

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
    position: relative;
}

.nav-links li a {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.nav-links li a:hover { color: var(--rs-green); }

/* DROPDOWN */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px; /* Gue lebarin dikit biar gak sesak */
    background: #fff;
    border-radius: 15px; /* Sesuaikan biar melengkung cakep kayak tombol Appointment */
    padding: 10px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); /* Shadow lebih lembut */
    z-index: 1100;
    
    /* FIX UTAMA DI SINI */
    list-style: none; /* Hilangkan titik bullets */
    margin: 0; 
    padding: 8px 0; /* Padding vertikal saja */
}

.dropdown:hover .dropdown-content,
.dropdown.open .dropdown-content {
    display: block;
    /* Tambahan animasi simpel biar gak kaget munculnya */
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-content li { 
    margin: 0; 
    padding: 0;
}

.dropdown-content li a {
    padding: 12px 25px;
    display: block;
    font-size: 0.95rem;
    color: var(--rs-dark-green);
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-content li a:hover { 
    background: var(--rs-light-green); 
    color: var(--rs-green);
    padding-left: 30px; /* Efek geser dikit pas di-hover */
}
.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px; /* Jembatan gaib */
    display: block;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    /* Tambahkan ini */
    margin-left: auto; 
    padding-right: 15px; /* Kasih sedikit nafas biar gak nempel banget ke pinggir layar */
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--rs-text-dark);
    transition: 0.3s;
}

/* ==========================================================================
   3. HERO SLIDER (CINEMATIC ZOOM & MOBILE FIRST)
   ========================================================================== */

/* --- MOBILE DEFAULT (Layar HP) --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 280px; /* Tinggi disesuaikan untuk HP agar proporsional */
    overflow: hidden;
    background: #000;
    margin-top: 0;
    margin-bottom: 0; /* Dihapus agar tidak dobel dengan padding shortcuts di bawahnya */
}

.slides-container {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0; /* FIX: Menghapus gap putih di atas slider bawaan tag UL */
    padding: 0; /* FIX: Menghapus ruang kosong di sebelah kiri bawaan tag UL */
    list-style: none; /* Menghilangkan titik bullet bawaan UL */
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide { 
    flex: 0 0 100%; 
    position: relative; 
    height: 100%;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s linear;
    transform: scale(1);
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* Dark Overlay */
.slide::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 60%),
                linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.4) 100%);
    z-index: 2; 
    pointer-events: none;
}

/* --- NAVIGASI DOTS --- */
.dots {
    position: absolute;
    bottom: 15px; /* Diturunkan untuk versi HP agar tidak menabrak gambar/teks */
    width: 100%;
    text-align: center;
    z-index: 15;
}

.dot {
    display: inline-block;
    width: 10px; height: 10px; /* Diperkecil sedikit untuk HP */
    margin: 0 5px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.dot.active { 
    background: var(--rs-green); 
    width: 30px; 
    border-radius: 20px; 
}

/* --- NAVIGASI PANAH --- */
.prev, .next {
    display: none; /* Sembunyikan panah di HP karena layar sentuh bisa di-swipe */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    width: 50px; height: 50px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: 0.3s;
}

.prev:hover, .next:hover { 
    background: var(--rs-green); 
    transform: translateY(-50%) scale(1.1); 
}
.prev { left: 20px; }
.next { right: 20px; }


/* ==========================================================================
   MEDIA QUERIES (Kembali ke desain besar untuk PC/Tablet)
   ========================================================================== */

/* TABLET (768px ke atas) */
@media (min-width: 768px) {
    .hero-slider { 
        height: 800px; /* Mulai tinggikan slider */
    }
    .dots { 
        bottom: 30px; 
    }
    .dot {
        width: 12px; height: 12px; margin: 0 6px;
    }
    .dot.active {
        width: 35px;
    }
}

/* DESKTOP (992px ke atas) */
@media (min-width: 992px) {
    .hero-slider { 
        height: 550px; /* Kembali ke ukuran asli di PC */
        margin-bottom: 20px; /* Tambahkan kembali margin untuk memberi ruang overlap cards */
    }
    .prev, .next { 
        display: block; /* Munculkan kembali panah di PC */
        width: 55px; height: 55px;
    }
    .prev { left: 30px; }
    .next { right: 30px; }
    .dots { 
        bottom: 40px; 
    }
}

/* ==========================================================================
   4. SHORTCUTS & WELCOME (MOBILE FIRST - 3 KOLOM)
   ========================================================================== */

/* --- WRAPPER --- */
.shortcuts-wrapper {
    padding-top: 25px; /* Jarak aman di mobile */
}

/* --- MOBILE DEFAULT (Layar HP) --- */
.shortcuts {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Jejer 3 kolom */
    gap: 10px; /* Jarak antar kartu dirapatkan */
    padding: 0 10px;
    margin-top: 0;
    position: relative;
    z-index: 20;
}

.short-card { 
    background: #fff; 
    border-radius: 12px; 
    padding: 15px 5px; /* Padding kiri-kanan ditipiskan agar teks muat */
    text-align: center; 
    text-decoration: none; 
    color: var(--rs-text-dark); 
    box-shadow: var(--shadow-soft); 
    border: 1px solid #f1f2f6; 
    transition: all var(--transition-fast); 
}

/* Efek saat disentuh di HP */
.short-card:active {
    transform: scale(0.95);
}

/* Sembunyikan deskripsi di HP */
.short-card p {
    display: none; 
}

/* Sesuaikan ukuran teks judul di HP */
.short-card h3 {
    font-size: 12px;
    margin: 0;
    line-height: 1.3;
}

/* Sesuaikan ukuran Ikon di HP */
.short-card .icon-wrapper { 
    width: 45px; 
    height: 45px; 
    background: var(--rs-light-green); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 8px; /* Jarak ikon ke teks */
    transition: 0.3s;
}

.short-card i { 
    font-size: 20px; 
    color: var(--rs-green); 
}

/* Khusus IGD (Jika ada) */
.short-card.igd { border-bottom: 3px solid var(--rs-emergency); }
.short-card.igd i { color: var(--rs-emergency); }
.short-card.igd .icon-wrapper { background: #fff5f5; }


/* ==========================================================================
   MEDIA QUERIES (Kembali ke desain besar untuk Tablet & Desktop)
   ========================================================================== */

/* TABLET (Layar 768px ke atas) */
@media (min-width: 768px) {
    .shortcuts {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        padding: 0 20px;
    }
    
    .short-card {
        padding: 30px 20px;
        border-radius: var(--radius-card); /* Kembali ke radius awal */
    }

    .short-card h3 { font-size: 18px; margin-bottom: 10px; }
    
    /* Munculkan kembali deskripsi */
    .short-card p { display: block; font-size: 14px; margin: 0; color: #666; }

    .short-card .icon-wrapper { width: 60px; height: 60px; margin-bottom: 15px; }
    .short-card i { font-size: 28px; }
}

/* DESKTOP (Layar 992px ke atas) */
@media (min-width: 992px) {
    .shortcuts-wrapper {
        padding-top: 0; 
    }

    .shortcuts {
        margin-top: -50px; /* Terapkan overlap slider HANYA di Desktop */
        gap: 30px;
    }

    .short-card { 
        padding: 40px 30px; 
    }

    .short-card h3 { font-size: 20px; }
    
    .short-card .icon-wrapper { 
        width: 80px; 
        height: 80px; 
        margin: 0 auto 25px; 
    }

    .short-card i { font-size: 35px; }

    /* Efek hover (Arahkan Mouse) aktif di PC */
    .short-card:hover { 
        transform: translateY(-12px); 
        box-shadow: var(--shadow-hover); 
        border-color: var(--rs-green); 
    }
    .short-card:hover .icon-wrapper { background: var(--rs-green); }
    .short-card:hover i { color: #fff; }
    
    .short-card.igd { border-bottom: 5px solid var(--rs-emergency); }
    .short-card.igd:hover .icon-wrapper { background: var(--rs-emergency); }
}

/* --- WELCOME SECTION (Mobile Default) --- */
.welcome-section {
    padding: 80px 0; /* Padding lebih kecil untuk mobile */
    background: radial-gradient(circle at center, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.welcome-grid {
    display: flex;
    flex-direction: column; /* Ditumpuk ke bawah untuk mobile */
    text-align: center;
    gap: 40px;
}

.welcome-text {
    order: 1;
    text-align: center;
}

.badge-welcome { display: inline-block; background: var(--rs-light-green); color: var(--rs-green); padding: 8px 22px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 25px; border: 1px solid rgba(46, 204, 113, 0.15); }
.welcome-eyebrow { font-size: 0.85rem; color: var(--rs-green); font-weight: 700; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px; }

.welcome-text h2 {
    font-size: 2.2rem; /* Ukuran font mobile */
    color: var(--rs-dark-green);
    line-height: 1.1;
    margin-bottom: 0;
    font-weight: 800;
}

.welcome-text h2 span { color: var(--rs-green); font-size: 1.6rem; font-weight: 400; display: block; margin-top: 6px; }

.welcome-divider {
    width: 40px;
    height: 3px;
    background: var(--rs-green);
    border-radius: 10px;
    margin: 18px auto; /* Ditengahkan untuk mobile */
}

.welcome-text .description { margin: 0 0 30px 0; color: var(--rs-text-gray); font-size: 1.15rem; line-height: 1.8; }

.welcome-highlights { display: flex; flex-direction: column; gap: 10px; margin-bottom: 35px; }
.hi-item { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 0.95rem; color: var(--rs-text-dark); } /* Center di mobile */
.hi-dot { width: 8px; height: 8px; background: var(--rs-green); border-radius: 50%; flex-shrink: 0; }

.welcome-text .cta-actions {
    display: flex;
    flex-direction: column; /* Tombol memanjang ke bawah di mobile */
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.welcome-image {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

.welcome-image .image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.welcome-foto-fix {
    width: 100%;
    max-width: 350px; /* Gambar lebih kecil di mobile */
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
    object-fit: cover;
}
.welcome-foto-fix:hover { transform: translateY(-10px); }

.exp-badge {
    position: absolute;
    bottom: -20px;
    left: 50%; /* Ditengahkan di mobile */
    transform: translateX(-50%);
    background: var(--rs-green);
    color: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.35);
    text-align: center;
}
.exp-badge strong { font-size: 1.8rem; display: block; line-height: 1; }
.exp-badge span { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; }

/* --- BUTTON STYLES (Mobile Default) --- */
.btn-utama, .btn-minimalis {
    padding: 16px 40px;
    border-radius: var(--radius-button);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Teks tombol di tengah */
    width: 100%; /* Penuhi lebar layar di mobile */
    gap: 10px;
}

.btn-utama { background: var(--rs-green); color: #fff; border: 2px solid var(--rs-green); }
.btn-utama:hover { background: var(--rs-dark-green); border-color: var(--rs-dark-green); transform: scale(1.05); }

.btn-minimalis { border: 2px solid var(--rs-green); color: var(--rs-green); background: transparent; }
.btn-minimalis:hover { background: var(--rs-green); color: #fff; transform: scale(1.05); }


/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE SCALING UP)
   ========================================================================== */

/* --- TABLET (768px ke atas) --- */
@media (min-width: 768px) {
    .shortcuts { margin-top: -30px; }
    .welcome-text h2 { font-size: 2.8rem; }
    
    /* Tombol sejajar di tablet */
    .welcome-text .cta-actions { 
        flex-direction: row; 
        width: auto; 
    }
    .btn-utama, .btn-minimalis { 
        width: auto; 
    }
}

/* --- DESKTOP (992px ke atas) --- */
@media (min-width: 992px) {
    .welcome-section { padding: 120px 0; }
    
    /* Kembali ke format 2 kolom untuk Desktop */
    .welcome-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 50px;
        align-items: center;
        text-align: left;
    }

    .welcome-text { order: unset; text-align: left; }
    .welcome-text h2 { font-size: 3.4rem; }
    .welcome-divider { margin: 18px 0; } /* Rata kiri */
    
    .hi-item { justify-content: flex-start; } /* List poin rata kiri */
    .welcome-text .cta-actions { justify-content: flex-start; }

    .welcome-image { order: unset; justify-content: flex-end; }
    .welcome-image .image-wrapper { justify-content: flex-end; }
    .welcome-foto-fix { max-width: 420px; }
    
    /* Badge kembali ke pojok kiri bawah gambar */
    .exp-badge {
        left: 20px;
        transform: none;
    }
}
/* ==========================================================================
   PROMO SECTION (MOBILE FIRST)
   ========================================================================== */

/* 1. Pengaturan Default (Layar HP / Mobile) */
.promo-section { padding: 60px 0; background-color: #ffffff; } /* Padding dikurangi untuk HP */
.section-title.center { text-align: center; margin-bottom: 30px; }
.section-title-wrapper { text-align: center; margin-bottom: 40px; }
.badge-promo { color: var(--rs-green); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem; }
.section-title-wrapper h2 { font-size: 2rem; color: var(--rs-dark-green); margin: 10px 0; font-weight: 800; } /* Font diperkecil untuk HP */
.section-title-wrapper h2 span { color: var(--rs-green); }
.section-title-wrapper .underline { width: 70px; height: 5px; background: var(--rs-green); margin: 0 auto; border-radius: 10px; }

/* 2. Grid Default: 1 Kolom Penuh untuk Mobile */
.promo-grid { 
    display: grid; 
    grid-template-columns: 1fr; /* <-- Berubah jadi 1 kolom */
    gap: 25px; 
    padding: 0 15px; 
    max-width: 1300px; 
    margin: 0 auto; 
}

/* 3. Pengaturan Kartu Promo */
.promo-card { background: #fff; border-radius: 30px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.05); border: 1px solid #f1f2f6; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative; display: flex; flex-direction: column; }
.promo-card:hover { transform: translateY(-15px); box-shadow: 0 25px 50px rgba(46, 204, 113, 0.15); border-color: var(--rs-green); }
.promo-image { height: 180px; overflow: hidden; position: relative; }
.promo-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.promo-card:hover .promo-image img { transform: scale(1.1) rotate(1deg); }
.promo-badge { position: absolute; top: 20px; right: 20px; background: var(--rs-green); color: #fff; padding: 8px 18px; border-radius: 50px; font-size: 0.75rem; font-weight: 800; z-index: 10; box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3); }
.promo-info { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.promo-info h3 { color: var(--rs-dark-green); margin-bottom: 15px; font-size: 1.3rem; font-weight: 800; line-height: 1.3; }
.promo-info p { color: var(--rs-text-gray); font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; }
.promo-price { margin-top: auto; margin-bottom: 25px; padding: 15px; background: var(--rs-light-green); border-radius: 15px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.old-price { text-decoration: line-through; color: #a0aec0; font-size: 0.9rem; font-weight: 600; }
.new-price { color: var(--rs-green); font-weight: 800; font-size: 1.25rem; }
.btn-promo { display: block; text-align: center; background: var(--rs-dark-green); color: #fff; padding: 16px; border-radius: 18px; text-decoration: none; font-weight: 700; transition: 0.3s; border: none; font-size: 1rem; }
.btn-promo:hover { background: var(--rs-green); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2); color: #fff; }

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */

/* Tablet & Layar Menengah (Lebar minimal 768px) */
@media (min-width: 768px) {
    .promo-section { padding: 80px 0; }
    .section-title-wrapper h2 { font-size: 2.4rem; }
    .promo-grid {
        grid-template-columns: repeat(2, 1fr); /* Berubah jadi 2 kolom */
    }
}

/* Desktop Kecil & Layar Lebar (Lebar minimal 992px) */
@media (min-width: 992px) {
    .promo-section { padding: 100px 0; }
    .section-title-wrapper h2 { font-size: 2.8rem; }
    .promo-grid {
        grid-template-columns: repeat(3, 1fr); /* Berubah jadi 3 kolom */
    }
}

/* Desktop Besar (Lebar minimal 1200px) */
@media (min-width: 1200px) {
    .promo-grid {
        grid-template-columns: repeat(4, 1fr); /* Kembali ke 4 kolom seperti desain awal Anda */
    }
}

/* ==========================================================================
   5. TENTANG KAMI & JADWAL DOKTER (OPTIMIZED PRO)
   RS ASYIFA DEPOK - VERSION 2.0
   ========================================================================== /* ==========================================================================
   JADWAL DOKTER
   ========================================================================== */

/* HERO */
.hero-jadwal {
    background: linear-gradient(135deg, #1a4d2e 0%, #2ecc71 100%);
    padding: 70px 0 100px;
    text-align: center; color: #fff;
    border-radius: 0 0 50px 50px;
    overflow: hidden; position: relative;
}

.hero-jadwal::before {
    content: ""; position: absolute;
    top: -60px; right: -60px;
    width: 250px; height: 250px;
    border-radius: 50%; background: rgba(255,255,255,0.06);
}

.hero-jadwal::after {
    content: ""; position: absolute;
    bottom: -80px; left: -40px;
    width: 300px; height: 300px;
    border-radius: 50%; background: rgba(255,255,255,0.04);
}

.hero-jadwal-inner { position: relative; z-index: 2; }

.hero-badge-jadwal {
    display: inline-block;
    background: rgba(255,255,255,0.15); color: #fff;
    padding: 6px 18px; border-radius: 50px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}

.hero-jadwal h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 10px; }
.hero-jadwal p  { font-size: 1rem; opacity: 0.85; margin-bottom: 28px; }

.jadwal-search-wrap {
    max-width: 520px; margin: 0 auto;
    background: #fff; border-radius: 50px;
    display: flex; align-items: center;
    padding: 12px 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.jadwal-search-wrap i {
    color: var(--rs-green); margin-right: 12px; font-size: 1.1rem;
}

.jadwal-search-wrap input {
    border: none; outline: none; width: 100%;
    font-size: 0.95rem; color: #333;
    background: transparent; font-family: inherit;
}

/* CONTAINER */
.jadwal-container { padding: 60px 0; }

/* CARD DOKTER */
.grid-jadwal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 0px;
    position: relative; z-index: 10;
}

.card-dokter-new {
    background: #fff; border-radius: 20px;
    padding: 24px; border: 1px solid #f1f2f6;
    transition: all 0.3s ease; display: flex;
    flex-direction: column;
}

.card-dokter-new:hover {
    transform: translateY(-8px);
    border-color: var(--rs-green);
    box-shadow: 0 20px 40px rgba(46,204,113,0.12);
}

.dokter-card-top {
    display: flex; align-items: center;
    gap: 14px; margin-bottom: 16px;
}

.dokter-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, #1a4d2e, #2ecc71);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px; font-weight: 800; flex-shrink: 0;
}

.doctor-name {
    font-size: 0.95rem; font-weight: 800;
    color: var(--rs-dark-green); margin-bottom: 5px;
    line-height: 1.3;
}

.dokter-spec-badge {
    display: inline-block;
    background: var(--rs-light-green); color: var(--rs-green);
    padding: 3px 10px; border-radius: 20px;
    font-size: 10px; font-weight: 700;
    border: 1px solid rgba(46,204,113,0.2);
}

.dokter-divider {
    height: 1px; background: #f1f5f9; margin-bottom: 14px;
}

.dokter-jadwal-row {
    display: flex; justify-content: space-between;
    align-items: center; padding: 7px 0;
    border-bottom: 1px solid #f8fafc; font-size: 0.84rem;
}

.dokter-jadwal-row:last-of-type { border-bottom: none; }
.dokter-hari { color: var(--rs-dark-green); font-weight: 700; }
.dokter-jam  { color: var(--rs-text-gray); }

.btn-profil-dokter {
    display: flex; align-items: center;
    justify-content: center; gap: 8px;
    margin-top: 18px; background: var(--rs-light-green);
    color: var(--rs-green);
    border: 1.5px solid rgba(46,204,113,0.3);
    padding: 10px; border-radius: 12px;
    font-size: 0.85rem; font-weight: 700;
    cursor: pointer; transition: 0.3s; width: 100%;
}

.btn-profil-dokter:hover { background: var(--rs-green); color: #fff; }

/* MODAL JADWAL */
.modal-jadwal {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    z-index: 2000;
    align-items: center; justify-content: center; padding: 20px;
}

.modal-jadwal.show { display: flex; }

.modal-jadwal-box {
    background: #fff; border-radius: 28px;
    width: 100%; max-width: 750px;
    overflow: hidden; max-height: 90vh; overflow-y: auto;
    animation: modalPop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-jadwal-header {
    background: linear-gradient(135deg, #1a4d2e, #2ecc71);
    display: flex; position: relative; min-height: 180px;
}

.modal-jadwal-img {
    width: 220px; /* naikan dari 160px */
    flex-shrink: 0; overflow: hidden;
    background: linear-gradient(135deg, #065f46, #2ecc71);
}

.modal-jadwal-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center; /* pastikan wajah tampil */
    display: block;
    min-height: 220px; /* tambahkan ini */
}

.modal-jadwal-info {
    padding: 28px 28px 28px 24px; color: #fff;
    display: flex; flex-direction: column;
    justify-content: center; flex-grow: 1;
}

.modal-spec-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2); color: #fff;
    padding: 4px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 700;
    margin-bottom: 10px; width: fit-content;
}

.modal-jadwal-info h2 { font-size: 1.4rem; font-weight: 900; margin-bottom: 8px; }
.modal-jadwal-info p  { font-size: 0.88rem; opacity: 0.85; line-height: 1.6; }

.modal-jadwal-close {
    position: absolute; top: 14px; right: 14px;
    background: rgba(255,255,255,0.2); border: none;
    color: #fff; width: 34px; height: 34px;
    border-radius: 50%; font-size: 14px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
}

.modal-jadwal-close:hover { background: var(--rs-emergency); }

.modal-jadwal-body { padding: 28px 30px; }

.modal-jadwal-body h4 {
    color: var(--rs-dark-green); font-size: 0.9rem;
    font-weight: 800; margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--rs-light-green);
    display: flex; align-items: center; gap: 8px;
}

.modal-jadwal-grid {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 8px; margin-bottom: 24px;
}

.modal-jadwal-item {
    background: #f8fafc; border-radius: 12px;
    padding: 12px 6px; text-align: center;
    border: 1px solid #f1f2f6; transition: 0.3s;
}

.modal-jadwal-item:hover { border-color: var(--rs-green); background: var(--rs-light-green); }

.modal-jadwal-item.tutup {
    background: #fff5f5; border-color: #fecaca;
}

.mj-hari {
    font-size: 10px; font-weight: 800;
    color: var(--rs-green); text-transform: uppercase;
    letter-spacing: 1px; display: block; margin-bottom: 6px;
}

.modal-jadwal-item.tutup .mj-hari { color: var(--rs-emergency); }

.mj-jam {
    font-size: 0.72rem; font-weight: 700;
    color: #374151; display: block; line-height: 1.4;
}

.modal-jadwal-item.tutup .mj-jam { color: var(--rs-emergency); }

/* Sesi pagi/sore di dalam satu kartu jadwal */
.mj-jam-sesi {
    display: block;
}
.mj-jam-sesi:not(:last-child) {
    margin-bottom: 3px;
    padding-bottom: 3px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}
.modal-jadwal-item.dua-sesi .mj-jam {
    font-size: 0.64rem;
}

.modal-jadwal-actions {
    display: flex; gap: 14px;
}

.modal-jadwal-actions .btn-utama,
.modal-jadwal-actions .btn-minimalis {
    flex: 1; justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-jadwal { grid-template-columns: repeat(2, 1fr); }
    .modal-jadwal-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 600px) {
    .grid-jadwal { grid-template-columns: 1fr; }
    .hero-jadwal { padding: 50px 0 80px; border-radius: 0 0 30px 30px; }
    .modal-jadwal-header { flex-direction: column; }
    .modal-jadwal-img { width: 100%; height: 280px; }
    .modal-jadwal-grid { grid-template-columns: repeat(4, 1fr); }
    .modal-jadwal-actions { flex-direction: column; }
    .modal-jadwal-body { padding: 20px; }
        .modal-jadwal-img img {
        min-height: unset;
        height: 100%;
    }
}

/* ==========================================================================
   TENTANG KAMI
   ========================================================================== */

/* HERO */
.hero-tentang {
    background: linear-gradient(135deg, #1a4d2e 0%, #2ecc71 100%);
    padding: 70px 0 100px;
    text-align: center; color: #fff;
    border-radius: 0 0 50px 50px;
    overflow: hidden; position: relative;
}

.hero-tentang::before {
    content: ""; position: absolute;
    top: -60px; right: -60px;
    width: 250px; height: 250px;
    border-radius: 50%; background: rgba(255,255,255,0.06);
}

.hero-tentang::after {
    content: ""; position: absolute;
    bottom: -80px; left: -40px;
    width: 300px; height: 300px;
    border-radius: 50%; background: rgba(255,255,255,0.04);
}

.hero-tentang-inner { position: relative; z-index: 2; }

.hero-badge-tentang {
    display: inline-block;
    background: rgba(255,255,255,0.15); color: #fff;
    padding: 6px 18px; border-radius: 50px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}

.hero-tentang h1 {
    font-size: 2.4rem; font-weight: 900;
    margin-bottom: 12px; line-height: 1.2;
}

.hero-tentang p {
    font-size: 1rem; opacity: 0.85;
    max-width: 550px; margin: 0 auto;
}

/* INTRO */
.tentang-intro { padding: 70px 0; }

.tentang-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px; align-items: center;
}

.tentang-intro-img-wrap { position: relative; }

.tentang-intro-img {
    width: 100%; border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    display: block; object-fit: cover;
    height: 380px;
}

.tentang-exp-tag {
    position: absolute; bottom: -20px; left: 24px;
    background: var(--rs-green); color: #fff;
    padding: 14px 22px; border-radius: 18px;
    box-shadow: 0 10px 30px rgba(46,204,113,0.35);
    text-align: center;
}

.tentang-exp-tag strong { display: block; font-size: 1.8rem; font-weight: 900; line-height: 1; }
.tentang-exp-tag span   { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; }

.tentang-sub-label {
    font-size: 0.8rem; color: var(--rs-green);
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 3px; margin-bottom: 12px; display: block;
}

.tentang-intro-text h2 {
    font-size: 1.8rem; font-weight: 900;
    color: var(--rs-dark-green); line-height: 1.2; margin-bottom: 16px;
}

.tentang-intro-text p {
    color: var(--rs-text-gray); font-size: 0.95rem;
    line-height: 1.75; margin-bottom: 14px;
}

.tentang-features { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 28px; }

.tentang-feature {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.9rem; color: var(--rs-text-dark);
}

.tentang-feat-dot {
    width: 24px; height: 24px;
    background: var(--rs-light-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--rs-green); font-size: 10px; flex-shrink: 0;
}

.btn-tentang-intro {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--rs-dark-green); color: #fff;
    padding: 13px 28px; border-radius: 14px;
    font-size: 0.9rem; font-weight: 700;
    text-decoration: none; transition: 0.3s;
}

.btn-tentang-intro:hover { background: var(--rs-green); }

/* STATS */
.tentang-stats {
    background: linear-gradient(135deg, #1a4d2e, #2ecc71);
    padding: 50px 0; position: relative; overflow: hidden;
}

.tentang-stats::before {
    content: ""; position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%; background: rgba(255,255,255,0.06);
}

.tentang-stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; position: relative; z-index: 2;
}

.tentang-stat-card {
    background: rgba(255,255,255,0.12);
    border-radius: 20px; padding: 28px 20px;
    text-align: center; color: #fff;
    border: 1px solid rgba(255,255,255,0.15); transition: 0.3s;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}

.tentang-stat-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-5px); }
.tentang-stat-card i      { font-size: 28px; opacity: 0.9; }
.tentang-stat-card strong { font-size: 2.2rem; font-weight: 900; }
.tentang-stat-card span   { font-size: 0.82rem; opacity: 0.85; font-weight: 600; }

/* VISI MISI */
.tentang-vismis { padding: 70px 0 50px; }

.tentang-section-header { text-align: center; margin-bottom: 50px; }

.tentang-section-header h2 {
    font-size: 1.8rem; font-weight: 900;
    color: var(--rs-dark-green); margin-bottom: 12px;
}

.tentang-section-header h2 span { color: var(--rs-green); }

.tentang-underline {
    width: 50px; height: 4px;
    background: var(--rs-green);
    border-radius: 10px; margin: 0 auto;
}

.tentang-vismis-grid {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px;
}

.tentang-vismis-card {
    background: #fff; border-radius: 24px;
    padding: 36px; border: 1px solid #f1f2f6; transition: 0.3s;
}

.tentang-vismis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(46,204,113,0.1);
    border-color: var(--rs-green);
}

.tentang-vismis-icon {
    width: 58px; height: 58px; border-radius: 18px;
    background: var(--rs-light-green);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--rs-green); margin-bottom: 20px;
}

.tentang-vismis-card h3 {
    color: var(--rs-dark-green); font-size: 1.2rem;
    font-weight: 800; margin-bottom: 14px;
}

.tentang-vismis-card p {
    color: var(--rs-text-gray); font-size: 0.92rem; line-height: 1.75;
}

.tentang-misi-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }

.tentang-misi-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.92rem; color: var(--rs-text-dark); line-height: 1.6;
}

.tentang-misi-check {
    width: 22px; height: 22px;
    background: var(--rs-light-green); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--rs-green); font-size: 9px; flex-shrink: 0; margin-top: 2px;
}

/* NILAI INTI */
.tentang-nilai { padding: 20px 0 80px; }

.tentang-nilai-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

.tentang-nilai-card {
    background: #fff; border-radius: 20px;
    padding: 28px 22px; border: 1px solid #f1f2f6;
    text-align: center; transition: 0.3s;
}

.tentang-nilai-card:hover {
    transform: translateY(-6px);
    border-color: var(--rs-green);
    box-shadow: 0 15px 30px rgba(46,204,113,0.1);
}

.tentang-nilai-icon {
    width: 56px; height: 56px;
    background: var(--rs-light-green); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--rs-green);
    margin: 0 auto 16px; transition: 0.3s;
}

.tentang-nilai-card:hover .tentang-nilai-icon {
    background: var(--rs-green); color: #fff;
}

.tentang-nilai-card h4 {
    color: var(--rs-dark-green); font-size: 1rem;
    font-weight: 800; margin-bottom: 10px;
}

.tentang-nilai-card p {
    color: var(--rs-text-gray); font-size: 0.83rem; line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .tentang-intro-grid  { grid-template-columns: 1fr; }
    .tentang-vismis-grid { grid-template-columns: 1fr; }
    .tentang-stats-grid  { grid-template-columns: repeat(2, 1fr); }
    .tentang-nilai-grid  { grid-template-columns: repeat(2, 1fr); }
    .tentang-intro-img-wrap { margin-bottom: 30px; }
}

@media (max-width: 600px) {
    .hero-tentang { padding: 50px 0 80px; border-radius: 0 0 30px 30px; }
    .hero-tentang h1 { font-size: 1.8rem; }
    .tentang-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .tentang-nilai-grid { grid-template-columns: repeat(2, 1fr); }
    .tentang-intro-img  { height: 250px; }
}
/* ==========================================================================
   7. FOOTER & RESPONSIVE
   ========================================================================== */
.footer { background: var(--rs-dark-green); color: #f8fafc; padding: 60px 0 20px; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer-links { list-style: none; margin-top: 20px; }
.footer-links a { color: #cbd5e1; text-decoration: none; }
.footer-links a:hover { color: #fff; padding-left: 5px; transition: 0.3s; }

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px; left: 0; width: 100%;
        background: #fff; padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .nav-links li { margin: 10px 0; width: 100%; }
    .hero-slider { 
        height: 250px; 
        background-color: #ffffff; /* Atau pakai warna hijau khas RS-nya biar nggak kelihatan belang */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-slider img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; 
    }
    .shortcuts { margin-top: 20px; }
    .about-grid { grid-template-columns: 1fr; }
    .modal-body { flex-direction: column; }
}

/* ==========================================================================
   8. LAYANAN PAGE CUSTOM
   ========================================================================== */

/* HERO LAYANAN */
.hero-layanan {
    background: linear-gradient(135deg, #1a4d2e 0%, #2ecc71 100%);
    padding: 70px 0 100px;
    text-align: center;
    color: #fff;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
    position: relative;
}

.hero-layanan::before {
    content: ""; position: absolute;
    top: -60px; right: -60px;
    width: 250px; height: 250px;
    border-radius: 50%; background: rgba(255,255,255,0.06);
}

.hero-layanan::after {
    content: ""; position: absolute;
    bottom: -80px; left: -40px;
    width: 300px; height: 300px;
    border-radius: 50%; background: rgba(255,255,255,0.04);
}

.hero-layanan-inner { position: relative; z-index: 2; }

.hero-badge-layanan {
    display: inline-block;
    background: rgba(255,255,255,0.15); color: #fff;
    padding: 6px 18px; border-radius: 50px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}

.hero-layanan h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 10px; }
.hero-layanan p  { font-size: 1rem; opacity: 0.85; margin-bottom: 25px; }

.hero-layanan-pills {
    display: flex; justify-content: center;
    gap: 14px; flex-wrap: wrap;
}

.hero-layanan-pills span {
    background: rgba(255,255,255,0.15);
    padding: 8px 18px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 700;
    display: flex; align-items: center; gap: 8px;
}

/* GRID LAYANAN */
.grid-layanan-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

/* CARD LAYANAN */
.layanan-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    border: 1px solid #f1f2f6;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.layanan-card:hover {
    transform: translateY(-8px);
    border-color: var(--rs-green);
    box-shadow: 0 20px 40px rgba(46,204,113,0.12);
}

.layanan-icon-wrap {
    width: 58px; height: 58px;
    background: var(--rs-light-green);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--rs-green);
    margin-bottom: 14px; transition: 0.3s;
}

.layanan-card:hover .layanan-icon-wrap {
    background: var(--rs-green);
    color: #fff;
}

.layanan-badge {
    display: inline-block;
    background: var(--rs-light-green);
    color: var(--rs-green);
    padding: 3px 12px; border-radius: 20px;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 12px;
}

.layanan-badge.darurat {
    background: #fff5f5;
    color: var(--rs-emergency);
}

.layanan-card h4 {
    color: var(--rs-dark-green);
    font-size: 1.1rem; font-weight: 800;
    margin-bottom: 10px;
}

.layanan-card p {
    color: var(--rs-text-gray);
    font-size: 0.88rem; line-height: 1.65;
    margin-bottom: 20px; flex-grow: 1;
}

.layanan-footer { margin-top: auto; }

.btn-layanan {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--rs-light-green);
    color: var(--rs-green);
    border: 1.5px solid rgba(46,204,113,0.3);
    padding: 11px 16px; border-radius: 12px;
    font-size: 0.88rem; font-weight: 700;
    text-decoration: none; transition: 0.3s;
}

.btn-layanan:hover { background: var(--rs-green); color: #fff; }

/* IGD Card */
.highlight-igd {
    border-bottom: 4px solid var(--rs-emergency);
}

.highlight-igd:hover {
    border-color: var(--rs-emergency);
    box-shadow: 0 20px 40px rgba(239,68,68,0.12);
}

.igd-icon {
    background: #fff5f5 !important;
    color: var(--rs-emergency) !important;
}

.highlight-igd:hover .igd-icon {
    background: var(--rs-emergency) !important;
    color: #fff !important;
}

.highlight-igd h4 { color: #b91c1c; }

.btn-layanan-darurat {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--rs-emergency); color: #fff;
    padding: 11px 16px; border-radius: 12px;
    font-size: 0.88rem; font-weight: 700;
    text-decoration: none; transition: 0.3s;
}

.btn-layanan-darurat:hover { background: #b91c1c; transform: translateY(-2px); color: #fff; }

/* Responsive */
@media (max-width: 992px) {
    .grid-layanan-page { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .grid-layanan-page { grid-template-columns: 1fr; }
    .hero-layanan { padding: 50px 0 80px; border-radius: 0 0 30px 30px; }
}

/* ==========================================================================
   9. KONTAK PAGE CUSTOM
   ========================================================================== */
/* HERO KONTAK */
.hero-kontak {
    background: linear-gradient(135deg, #1a4d2e 0%, #2ecc71 100%);
    padding: 70px 20px 100px;
    text-align: center;
    color: #fff;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
    position: relative;
}

.hero-kontak::before {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.hero-kontak::after {
    content: "";
    position: absolute;
    bottom: -80px; left: -40px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.hero-kontak-inner { position: relative; z-index: 2; }

.hero-badge-kontak {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-kontak h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 10px; }
.hero-kontak p  { font-size: 1rem; opacity: 0.85; margin-bottom: 25px; }

.hero-kontak-pills {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-kontak-pills span {
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* WRAPPER */
.kontak-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding-top: 0;
    padding-bottom: 40px;
}

/* FORM CARD */
.form-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #f1f2f6;
}

.form-card h3 { color: var(--rs-dark-green); font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.form-card > p { color: #94a3b8; font-size: 0.9rem; margin-bottom: 24px; }

.rs-form .form-group { margin-bottom: 18px; }
.rs-form label { display: block; font-size: 0.85rem; font-weight: 700; color: #374151; margin-bottom: 7px; }
.rs-form input, .rs-form select, .rs-form textarea {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem; color: #333;
    outline: none; transition: 0.3s;
    background: #f8fafc;
    font-family: inherit;
}

.rs-form input:focus, .rs-form select:focus, .rs-form textarea:focus {
    border-color: var(--rs-green);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(46,204,113,0.1);
}

.rs-form textarea { resize: none; }

.btn-submit-kontak {
    width: 100%;
    background: linear-gradient(135deg, #1a4d2e, #2ecc71);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 6px;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-kontak:hover { opacity: 0.9; transform: translateY(-2px); }

/* ALERT */
.alert-success, .alert-error {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success { background: #f0fff4; color: #1a4d2e; border: 1px solid rgba(46,204,113,0.3); }
.alert-error   { background: #fff1f2; color: #9f1239; border: 1px solid rgba(239,68,68,0.3); }

/* INFO SIDE */
.info-side-kontak { display: flex; flex-direction: column; gap: 16px; }

.info-card-item {
    background: #fff;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f2f6;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: 0.3s;
}

.info-card-item:hover { border-color: var(--rs-green); transform: translateX(5px); }

.info-icon-wrap {
    width: 46px; height: 46px;
    border-radius: 14px;
    background: #f0fff4;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.info-card-item h4 { color: var(--rs-dark-green); font-size: 0.95rem; font-weight: 800; margin-bottom: 5px; }
.info-card-item p  { color: #636e72; font-size: 0.85rem; line-height: 1.6; margin: 0; }

.wa-card { background: linear-gradient(135deg, #f0fff4, #d1fae5); border: 1.5px solid rgba(46,204,113,0.3); }
.wa-link { color: var(--rs-green); font-weight: 800; font-size: 1rem; text-decoration: none; display: block; margin-top: 5px; }
.wa-link:hover { color: var(--rs-dark-green); }

@media (max-width: 992px) {
    .kontak-wrapper { grid-template-columns: 1fr; margin-top: -30px; }
}

@media (max-width: 768px) {
    .hero-kontak { padding: 50px 20px 80px; border-radius: 0 0 30px 30px; }
    .hero-kontak h1 { font-size: 1.8rem; }
    .hero-kontak-pills { gap: 10px; }
    .form-card { padding: 24px; }
}

/* ==========================================================================
   10. IGD PAGE CUSTOM - UPDATED
   ========================================================================== */
.hero-emergency {
    background: linear-gradient(135deg, #991b1b 0%, #ef4444 100%) !important;
    padding: 80px 0 120px;
    color: white;
}

.hero-emergency h1 { font-weight: 800; font-size: 2.8rem; margin-bottom: 10px; }
.hero-emergency p { opacity: 0.9; max-width: 700px; font-size: 1.1rem; }

.back-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    transition: 0.3s;
}
.back-link:hover { color: white; transform: translateX(-5px); }

/* Hotline Card */
.igd-hotline-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 2px solid #fee2e2;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.hotline-icon {
    width: 90px; height: 90px;
    background: #fef2f2;
    color: #dc2626;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    animation: pulse-red 2s infinite;
    flex-shrink: 0;
}

.hotline-text { flex-grow: 1; }
.hotline-text h3 { color: #1e293b; font-weight: 700; margin-bottom: 5px; }
.hotline-text p { color: #64748b; font-size: 0.95rem; }
.phone-number { color: #dc2626; font-size: 2.5rem; font-weight: 900; letter-spacing: -1px; }

.btn-emergency {
    background: #dc2626;
    color: white;
    padding: 18px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}
.btn-emergency:hover { background: #991b1b; transform: translateY(-3px); box-shadow: 0 15px 25px rgba(220, 38, 38, 0.3); }

/* Steps / Triage Cards */
.igd-steps { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 25px; 
    margin-top: 50px; 
}
.step-card {
    background: #fff; 
    padding: 40px 30px; 
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); 
    position: relative; 
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}
.step-card:hover { transform: translateY(-5px); border-color: #fee2e2; }

.step-number {
    position: absolute; top: -10px; right: 0;
    font-size: 6rem; font-weight: 900; color: #f8fafc; z-index: 1;
}
.step-content { position: relative; z-index: 2; }
.step-content h4 { color: #1e293b; margin-bottom: 15px; font-weight: 700; font-size: 1.3rem; }
.step-content p { color: #64748b; line-height: 1.7; font-size: 0.95rem; }

/* Triage Labels */
.triage-labels { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.t-item { display: flex; align-items: center; gap: 10px; }
.t-item span {
    width: 35px; height: 22px; border-radius: 6px; 
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 800; color: white;
}
.t-item small { color: #475569; font-weight: 600; }
.t-red { background: #dc2626; }
.t-yellow { background: #f59e0b; }
.t-green { background: #10b981; }

/* Facilities Bar */
.igd-facilities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 20px;
}
.fac-item {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; color: #475569; font-size: 0.9rem;
}
.fac-item i { color: #dc2626; font-size: 1.2rem; }

/* Animation */
@keyframes pulse-red {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(220, 38, 38, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .igd-hotline-card { flex-direction: column; text-align: center; gap: 20px; margin-top: -60px; }
    .phone-number { font-size: 2rem; }
    .hero-emergency { padding: 60px 0 100px; text-align: center; }
    .hero-emergency p { margin: 0 auto; }
}

@media (max-width: 576px) {
    .igd-facilities { flex-direction: column; align-items: flex-start; gap: 15px; }
    .btn-emergency { width: 100%; }
}
/* ==========================================================================
   11. RAWAT INAP PAGE CUSTOM
   ========================================================================== */
/* HERO INPATIENT */
.hero-inpatient {
    background: linear-gradient(135deg, #1a4d2e 0%, #2ecc71 100%);
    padding: 70px 0 100px;
    text-align: center;
    color: #fff;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
    position: relative;
}

.hero-inpatient::before {
    content: ""; position: absolute;
    top: -60px; right: -60px;
    width: 250px; height: 250px;
    border-radius: 50%; background: rgba(255,255,255,0.06);
}

.hero-inpatient::after {
    content: ""; position: absolute;
    bottom: -80px; left: -40px;
    width: 300px; height: 300px;
    border-radius: 50%; background: rgba(255,255,255,0.04);
}

.hero-inpatient-inner { position: relative; z-index: 2; }
.hero-badge-inpatient {
    display: inline-block;
    background: rgba(255,255,255,0.15); color: #fff;
    padding: 6px 18px; border-radius: 50px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}

.hero-inpatient h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 10px; }
.hero-inpatient p  { font-size: 1rem; opacity: 0.85; margin-bottom: 25px; }

.hero-inpatient-pills {
    display: flex; justify-content: center;
    gap: 14px; flex-wrap: wrap;
}

.hero-inpatient-pills span {
    background: rgba(255,255,255,0.15);
    padding: 8px 18px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 700;
    display: flex; align-items: center; gap: 8px;
}

/* CAROUSEL */
.inpatient-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: -50px;
}

.inpatient-carousel { overflow: hidden; width: 100%; }

.inpatient-grid {
    display: flex;
    gap: 25px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card {
    flex: 0 0 calc(33.333% - 17px);
    min-width: calc(33.333% - 17px);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid #e2e8f0;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.room-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.highlight-room  { border: 2px solid var(--rs-green); }

.room-badge {
    background: var(--rs-green); color: #fff;
    text-align: center; padding: 6px;
    font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
}

.room-header {
    background: var(--rs-light-green);
    padding: 28px; text-align: center;
}

.room-header h3 { color: var(--rs-dark-green); font-size: 1.4rem; margin-bottom: 10px; font-weight: 800; }
.price { font-size: 1.7rem; font-weight: 800; color: var(--rs-green); }
.price span { font-size: 0.9rem; color: var(--rs-text-gray); font-weight: 400; }

.room-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.room-desc { color: var(--rs-text-gray); font-size: 0.9rem; margin-bottom: 18px; line-height: 1.6; }

.room-amenities { list-style: none; margin-bottom: 24px; flex-grow: 1; padding: 0; }
.room-amenities li {
    margin-bottom: 10px; font-size: 0.9rem;
    color: var(--rs-text-dark);
    display: flex; align-items: center; gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f8fafc;
}
.room-amenities li:last-child { border-bottom: none; }
.room-amenities li i { color: var(--rs-green); font-size: 0.85rem; flex-shrink: 0; }

.btn-info-room {
    display: flex; width: 100%; text-align: center;
    background: var(--rs-dark-green); color: #fff;
    padding: 13px; border-radius: 14px;
    font-size: 0.9rem; font-weight: 700;
    border: none; cursor: pointer; transition: 0.3s;
    align-items: center; justify-content: center; gap: 8px;
}
.btn-info-room:hover { background: var(--rs-green); transform: translateY(-2px); }

.btn-info-outline {
    background: var(--rs-light-green) !important;
    color: var(--rs-green) !important;
    border: 1.5px solid rgba(46,204,113,0.3) !important;
}
.btn-info-outline:hover { background: var(--rs-green) !important; color: #fff !important; }

.carousel-btn {
    width: 48px; height: 48px;
    background: #fff; border: 1.5px solid #e2e8f0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--rs-dark-green);
    font-size: 1rem; flex-shrink: 0; transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); z-index: 10;
}
.carousel-btn:hover { background: var(--rs-green); color: #fff; border-color: var(--rs-green); transform: scale(1.1); }

.carousel-dots {
    display: flex; justify-content: center;
    gap: 8px; margin-top: 28px;
}

.carousel-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #d1fae5; border: none; cursor: pointer; transition: 0.3s;
}
.carousel-dot.active { background: var(--rs-green); width: 28px; border-radius: 10px; }

.inpatient-note {
    margin-top: 40px; background: #f0fff4;
    border: 1px solid rgba(46,204,113,0.2);
    padding: 16px 20px; border-radius: 14px;
    color: var(--rs-dark-green); font-size: 0.88rem;
    display: flex; align-items: center; gap: 10px;
}

/* MODAL */
.modal-inpatient {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
    z-index: 2000; align-items: center; justify-content: center; padding: 20px;
}
.modal-inpatient.show { display: flex; }

.modal-inpatient-box {
    background: #fff; border-radius: 28px;
    width: 100%; max-width: 750px;
    overflow: hidden; overflow-y: auto;
    max-height: 90vh;
    animation: modalPop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-slideshow {
    position: relative; height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a4d2e, #2ecc71);
}

.modal-slides { display: flex; height: 100%; transition: transform 0.5s ease; }

.modal-slide { flex: 0 0 100%; height: 100%; overflow: hidden; }
.modal-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.modal-slide-prev, .modal-slide-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff; width: 40px; height: 40px;
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 10; transition: 0.3s;
}
.modal-slide-prev { left: 16px; }
.modal-slide-next { right: 16px; }
.modal-slide-prev:hover, .modal-slide-next:hover { background: var(--rs-green); }

.modal-slide-dots {
    position: absolute; bottom: 14px; width: 100%;
    display: flex; justify-content: center; gap: 6px; z-index: 10;
}
.modal-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none; cursor: pointer; padding: 0; transition: 0.3s;
}
.modal-dot.active { background: #fff; width: 22px; border-radius: 10px; }

.modal-close-btn {
    position: absolute; top: 14px; right: 14px;
    background: rgba(255,255,255,0.2); border: none;
    color: #fff; width: 34px; height: 34px;
    border-radius: 50%; font-size: 16px; cursor: pointer;
    z-index: 10; display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.modal-close-btn:hover { background: var(--rs-emergency); }

.modal-inpatient-body { padding: 28px 30px; }

.modal-inpatient-header {
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 20px; margin-bottom: 24px;
}
.modal-inpatient-header h2 { color: var(--rs-dark-green); font-size: 1.4rem; font-weight: 900; margin-bottom: 6px; }
.modal-inpatient-header p  { color: var(--rs-text-gray); font-size: 0.9rem; }

.modal-price-tag {
    background: var(--rs-light-green);
    border: 1px solid rgba(46,204,113,0.2);
    padding: 12px 18px; border-radius: 16px;
    text-align: center; flex-shrink: 0;
}
.modal-price-tag strong { display: block; color: var(--rs-green); font-size: 1.2rem; font-weight: 900; }
.modal-price-tag span   { font-size: 0.75rem; color: var(--rs-text-gray); }

.modal-inpatient-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; margin-bottom: 20px;
}
.modal-inpatient-grid h4 {
    color: var(--rs-dark-green); font-size: 0.9rem; font-weight: 800;
    margin-bottom: 12px; padding-bottom: 8px;
    border-bottom: 2px solid var(--rs-light-green);
    display: flex; align-items: center; gap: 8px;
}

.modal-list { list-style: none; padding: 0; }
.modal-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.88rem; color: var(--rs-text-dark);
    padding: 7px 0; border-bottom: 1px solid #f8fafc;
}
.modal-list li:last-child { border-bottom: none; }
.modal-list li i { color: var(--rs-green); font-size: 0.8rem; flex-shrink: 0; }

.modal-inpatient-note {
    background: #fffbeb; border: 1px solid rgba(245,158,11,0.25);
    border-radius: 12px; padding: 14px 16px;
    font-size: 0.83rem; color: #92400e;
    margin-bottom: 22px; display: flex; align-items: center; gap: 10px;
}

.modal-inpatient-actions { display: flex; gap: 14px; }
.modal-inpatient-actions .btn-utama,
.modal-inpatient-actions .btn-minimalis { flex: 1; justify-content: center; }

/* Responsive */
@media (max-width: 992px) {
    .room-card { flex: 0 0 calc(50% - 13px); min-width: calc(50% - 13px); }
    .modal-inpatient-header { flex-direction: column; }
    .modal-inpatient-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .room-card { flex: 0 0 100%; min-width: 100%; }
    .carousel-btn { display: none; }
    .modal-slideshow { height: 220px; }
    .modal-inpatient-body { padding: 20px; }
    .modal-inpatient-actions { flex-direction: column; }
    .hero-inpatient { padding: 50px 0 80px; border-radius: 0 0 30px 30px; }
}
/* ==========================================================================
   12. FARMASI PAGE CUSTOM - FULL OPTIMIZED (CONCEPT 3)
   ========================================================================== */

/* Hero Pharmacy Section */.hero-pharmacy { 
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%) !important; 
    padding: 80px 0 120px;
    color: white;
}

.hero-pharmacy .back-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: 0.3s ease;
}

.hero-pharmacy .back-link:hover {
    color: #fff;
    transform: translateX(-5px);
}

.hero-pharmacy h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-pharmacy p {
    font-size: 1.1rem;
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Pharmacy Grid (Floating Cards) */
.pharmacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: -80px; /* Menarik kartu ke atas hero */
    position: relative;
    z-index: 10;
}

.pharmacy-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    text-align: center;
    border-bottom: 5px solid #2d9d78;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pharmacy-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}

.p-icon {
    width: 80px;
    height: 80px;
    background: #f0fdf4;
    color: #2d9d78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.pharmacy-card:hover .p-icon {
    background: #2d9d78;
    color: #fff;
    transform: rotateY(360deg);
}

.pharmacy-card h4 {
    color: #064e3b;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pharmacy-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Quality & Assurance Section (Replacement for Delivery) */
.delivery-section {
    margin: 80px 0;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.delivery-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    background: linear-gradient(110deg, #f8fafc 60%, #ffffff 60.1%);
}

.delivery-text h2 {
    color: #1e1b4b; /* Indigo gelap untuk kesan formal */
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.delivery-text h2 i {
    color: #4338ca;
    background: #eef2ff;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.delivery-text p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Quality Badges Style */
.quality-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.q-badge {
    background: #f1f5f9;
    color: #4338ca;
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(67, 56, 202, 0.1);
    transition: 0.3s ease;
}

.q-badge:hover {
    background: #4338ca;
    color: #fff;
    transform: scale(1.05);
}

/* WhatsApp Contact Area */
.delivery-contact span {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.wa-link {
    font-size: 1.8rem;
    font-weight: 800;
    color: #16a34a;
    text-decoration: none;
    transition: 0.3s;
}

.wa-link:hover {
    color: #15803d;
    filter: brightness(1.1);
}

/* Floating Quality Badge (Circle) */
.delivery-badge {
    background: #4338ca;
    color: white;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    transform: rotate(12deg);
    box-shadow: 0 15px 35px rgba(67, 56, 202, 0.3);
    padding: 25px;
    line-height: 1.3;
}

/* Bottom Grid (Why Choose Us) */
.grid-vismis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.vismis-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #f1f5f9;
}

.vismis-card i {
    flex-shrink: 0;
}

.vismis-card strong {
    display: block;
    font-size: 1.2rem;
    color: #064e3b;
    margin-bottom: 8px;
}

.vismis-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* ==========================================
   RESPONSIVE LOGIC
   ========================================== */

@media (max-width: 1024px) {
    .delivery-content {
        padding: 40px;
        background: #f8fafc; /* Hilangkan gradien menyudut di tablet */
    }
}

@media (max-width: 992px) {
    .delivery-content {
        flex-direction: column;
        text-align: center;
    }

    .delivery-text h2 { justify-content: center; }
    .quality-badges { justify-content: center; }
    .delivery-badge { margin-top: 40px; transform: rotate(0deg); }
}

@media (max-width: 768px) {
    .hero-pharmacy { padding: 60px 0 100px; text-align: center; }
    .hero-pharmacy p { margin: 0 auto; }
    
    .pharmacy-grid { margin-top: -60px; padding: 0 20px; }
    .grid-vismis { grid-template-columns: 1fr; }
    
    .wa-link { font-size: 1.5rem; }
    .delivery-badge { display: none; } /* Sembunyikan lingkaran biru di mobile agar ringkas */
}

@media (max-width: 480px) {
    .pharmacy-card { padding: 30px 20px; }
    .delivery-text h2 { font-size: 1.6rem; }
}

/* ==========================================================================
   13. POLIKLINIK PAGE CUSTOM
   ========================================================================== */
/* HERO POLY NEW */
.hero-poly-new {
    background: linear-gradient(135deg, #1a4d2e 0%, #2ecc71 100%);
    padding: 70px 0 100px;
    text-align: center;
    color: #fff;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
    position: relative;
}

.hero-poly-new::before {
    content: ""; position: absolute;
    top: -60px; right: -60px;
    width: 250px; height: 250px;
    border-radius: 50%; background: rgba(255,255,255,0.06);
}

.hero-poly-new::after {
    content: ""; position: absolute;
    bottom: -80px; left: -40px;
    width: 300px; height: 300px;
    border-radius: 50%; background: rgba(255,255,255,0.04);
}

.hero-poly-inner { position: relative; z-index: 2; }

.hero-badge-poly {
    display: inline-block;
    background: rgba(255,255,255,0.15); color: #fff;
    padding: 6px 18px; border-radius: 50px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}

.hero-poly-new h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 10px; }
.hero-poly-new p  { font-size: 1rem; opacity: 0.85; margin-bottom: 25px; }

.hero-poly-pills {
    display: flex; justify-content: center;
    gap: 14px; flex-wrap: wrap;
}

.hero-poly-pills span {
    background: rgba(255,255,255,0.15);
    padding: 8px 18px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 700;
    display: flex; align-items: center; gap: 8px;
}

/* GRID POLY */
.poly-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
}

.poly-card-new {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    border: 1px solid #f1f2f6;
    border-left: 4px solid var(--rs-green);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.poly-card-new:hover {
    transform: translateY(-8px);
    border-color: var(--rs-green);
    box-shadow: 0 20px 40px rgba(46,204,113,0.12);
}

.poly-icon-new {
    width: 56px; height: 56px;
    background: var(--rs-light-green);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--rs-green);
    margin-bottom: 18px; transition: 0.3s;
}

.poly-card-new:hover .poly-icon-new {
    background: var(--rs-green);
    color: #fff;
}

.poly-info-new h4 {
    color: var(--rs-dark-green);
    font-size: 1.05rem; font-weight: 800;
    margin-bottom: 10px; line-height: 1.3;
}

.poly-info-new p {
    color: var(--rs-text-gray);
    font-size: 0.88rem; line-height: 1.65;
    margin-bottom: 20px; flex-grow: 1;
}

.btn-poly-detail {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--rs-light-green);
    color: var(--rs-green);
    border: 1.5px solid rgba(46,204,113,0.3);
    padding: 11px 16px; border-radius: 12px;
    font-size: 0.85rem; font-weight: 700;
    cursor: pointer; transition: 0.3s; width: 100%;
    margin-top: auto;
}

.btn-poly-detail:hover { background: var(--rs-green); color: #fff; }

/* CTA */
.poly-cta-box {
    background: linear-gradient(135deg, #1a4d2e, #2ecc71);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.poly-cta-box::before {
    content: ""; position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%; background: rgba(255,255,255,0.08);
}

.poly-cta-box h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 10px; position: relative; z-index: 2; }
.poly-cta-box p  { opacity: 0.85; margin-bottom: 24px; position: relative; z-index: 2; }

.btn-cta-poly {
    background: #fff; color: #1a4d2e;
    padding: 14px 32px; border-radius: 50px;
    font-weight: 800; font-size: 0.95rem;
    text-decoration: none; transition: 0.3s;
    position: relative; z-index: 2;
    display: inline-flex; align-items: center; gap: 10px;
}

.btn-cta-poly:hover { background: var(--rs-light-green); transform: translateY(-2px); }

/* MODAL POLY */
.modal-poly {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    z-index: 2000;
    align-items: center; justify-content: center; padding: 20px;
}

.modal-poly.show { display: flex; }

.modal-poly-box {
    background: #fff; border-radius: 28px;
    width: 100%; max-width: 600px;
    overflow: hidden; max-height: 90vh; overflow-y: auto;
    animation: modalPop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-poly-header {
    background: linear-gradient(135deg, #1a4d2e, #2ecc71);
    padding: 30px; color: #fff; position: relative;
    text-align: center;
}

.modal-poly-close {
    position: absolute; top: 16px; right: 16px;
    background: rgba(255,255,255,0.2); border: none;
    color: #fff; width: 34px; height: 34px;
    border-radius: 50%; font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: 0.3s;
}

.modal-poly-close:hover { background: var(--rs-emergency); }

.modal-poly-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #fff;
    margin: 0 auto 16px;
}

.modal-poly-header h2 { font-size: 1.4rem; font-weight: 900; margin-bottom: 8px; }
.modal-poly-header p  { opacity: 0.85; font-size: 0.9rem; }

.modal-poly-body { padding: 28px 30px; }

.modal-poly-body h4 {
    color: var(--rs-dark-green); font-size: 0.95rem; font-weight: 800;
    margin-bottom: 16px; padding-bottom: 10px;
    border-bottom: 2px solid var(--rs-light-green);
    display: flex; align-items: center; gap: 8px;
}

.modal-poly-services {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px; margin-bottom: 24px;
}

.poly-service-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: var(--rs-text-dark);
    background: #f8fafc; padding: 10px 12px;
    border-radius: 10px;
}

.poly-check {
    width: 20px; height: 20px;
    background: var(--rs-light-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--rs-green); font-size: 9px; flex-shrink: 0;
}

.modal-poly-actions {
    display: flex; gap: 14px;
}

.modal-poly-actions .btn-utama,
.modal-poly-actions .btn-minimalis {
    flex: 1; justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .poly-grid-new { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .poly-grid-new { grid-template-columns: 1fr; }
    .modal-poly-services { grid-template-columns: 1fr; }
    .modal-poly-actions { flex-direction: column; }
    .poly-cta-box { padding: 35px 20px; }
    .hero-poly-new { padding: 50px 0 80px; border-radius: 0 0 30px 30px; }
}

/* ==========================================================================
   14. LABORATORIUM PAGE CUSTOM
   ========================================================================== */

.hero-lab { 
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%) !important; 
    padding: 80px 0 120px;
    color: white;
}

/* Styling Tabel agar lebih Pro */
.table-responsive-wrapper {
    margin-top: 30px;
    overflow-x: auto;
}

.custom-lab-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.custom-lab-table thead {
    background-color: #065f46;
    color: white;
}

.custom-lab-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
}

.custom-lab-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f5f9;
    color: #4b5563;
    font-size: 0.95rem;
}

.custom-lab-table tr:last-child td {
    border-bottom: none;
}

.custom-lab-table tr:hover {
    background-color: #f8fafc;
}

/* Khusus Info Box Lab agar warnanya konsisten */
.lab-info-box {
    margin-top: 40px;
    background: #fffbeb; /* Kuning soft untuk peringatan/catatan */
    border-left: 6px solid #f59e0b;
}

.lab-info-box h3 {
    color: #92400e;
}

/* Responsive Table Mobile */
@media (max-width: 576px) {
    .custom-lab-table th, .custom-lab-table td {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
}

/* Responsive Table */
@media (max-width: 768px) {
    .lab-table thead { display: none; }
    .lab-table td {
        display: block;
        padding: 10px 20px;
        text-align: right;
    }
    .lab-table td::before {
        content: attr(data-label);
        float: left;
        font-weight: 700;
        color: var(--rs-green);
    }
    .lab-table td:first-child { background: #f8fafc; text-align: left; }
}

/* ==========================================================================
   15. RADIOLOGI PAGE CUSTOM - FULL RESPONSIVE OPTIMIZED
   ========================================================================== */

/* Hero Section */
.hero-radiology {
    background: linear-gradient(135deg, #065f46, var(--rs-green, #2d9d78)) !important;
    padding: 60px 0;
    color: white;
    text-align: center;
}

.hero-radiology .back-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
    transition: 0.3s;
}

.hero-radiology .back-link:hover {
    color: white;
    transform: translateX(-5px);
}

/* Container Detail Radiologi */
.radio-detail-info {
    padding: 80px 0;
    background: #fff;
}

/* DESKTOP LAYOUT: Teks lebih lebar ke kiri (4fr 6fr) */
.radio-detail-grid {
    display: grid !important;
    grid-template-columns: 4fr 6fr; 
    gap: 60px;
    align-items: start; /* Mengubah ke start agar teks panjang tidak memaksa gambar melayang di tengah */
}

.radio-detail-grid .welcome-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: sticky; /* Gambar tetap terlihat saat scroll teks yang panjang */
    top: 100px;
}

.radio-detail-grid .welcome-text h2 {
    font-size: 2.5rem;
    color: #065f46;
    margin-bottom: 20px;
    font-weight: 800;
}

.radio-detail-grid .welcome-text p {
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 15px;
}

/* Styling Daftar Layanan Baru (X-Ray & USG) */
.radio-services-list {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.radio-services-list h3 {
    font-size: 1.5rem;
    color: #065f46;
    margin-bottom: 20px;
}

.service-sub-item {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.service-sub-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: #2d9d78;
}

.service-sub-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* List Checkmark (Disesuaikan untuk grid 2 kolom di dalam teks) */
.circle-check {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.circle-check li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
}

.circle-check li i {
    color: #10b981;
    font-size: 1rem;
}

/* Info Box Keunggulan & Keamanan */
.radio-info-box {
    background: #f8fbf9;
    border-left: 6px solid #2d9d78;
    padding: 40px;
    border-radius: 0 20px 20px 0;
    margin: 30px auto;
    max-width: 1200px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.info-header i { font-size: 28px; color: #2d9d78; }
.info-header h3 { margin: 0; color: #065f46; font-weight: 700; }

.info-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-item {
    display: flex;
    flex-direction: column; /* Mengubah ke column agar icon di atas teks */
    gap: 8px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.info-item i { color: #2d9d78; font-size: 1.5rem; margin-bottom: 5px; }
.info-item p { margin: 0; font-size: 0.95rem; color: #4b5563; line-height: 1.5; }
.info-item strong { color: #065f46; display: block; margin-bottom: 4px; }

/* ==========================================
   RESPONSIVE LOGIC
   ========================================== */

@media (max-width: 992px) {
    .radio-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .radio-detail-grid .welcome-image { order: 2; }
    .radio-detail-grid .welcome-text { order: 1; text-align: center; }

    .radio-detail-grid .welcome-image img {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

    .circle-check {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .radio-detail-grid .welcome-text h2 { font-size: 1.8rem; }
    .radio-info-box { padding: 30px 20px; border-left-width: 4px; }
    .circle-check { grid-template-columns: 1fr; } /* List jadi satu kolom di HP */
}

/* ==========================================================================
   LAYANAN BARU - AKTA KELAHIRAN, SI ANTAR, JEJAK PERTAMA
   Tambahkan ke style.css utama Anda
   ========================================================================== */

/* ==========================================================================
   LAYANAN PAGE - SECTION LABEL & SPECIAL CARDS
   ========================================================================== */

/* Label Pemisah Seksi */
.layanan-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f1f2f6;
}

.layanan-section-label i {
    width: 38px;
    height: 38px;
    background: var(--rs-light-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rs-green);
    font-size: 16px;
}

.layanan-section-label span {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--rs-dark-green);
}

/* Grid 3 Kolom untuk Layanan Bayi */
.grid-layanan-3col {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* Badge Khusus Layanan Baru */
.badge-special {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e !important;
    border: 1px solid rgba(217, 119, 6, 0.3) !important;
}

/* Card Special dengan accent warna berbeda */
.highlight-special {
    border-top: 4px solid var(--rs-green);
    background: linear-gradient(to bottom, #f0fff8, #fff);
    position: relative;
    overflow: hidden;
}

.highlight-special::before {
    content: "NEW";
    position: absolute;
    top: 16px;
    right: -28px;
    background: #fbbf24;
    color: #78350f;
    font-size: 9px;
    font-weight: 900;
    padding: 5px 42px;
    transform: rotate(35deg);
    letter-spacing: 2px;
}

/* Icon Khusus Masing-Masing Layanan Baru */
.special-icon-akta {
    background: #f0fdf4 !important;
    color: #16a34a !important;
}

.highlight-special:hover .special-icon-akta {
    background: #16a34a !important;
    color: #fff !important;
}

.special-icon-antar {
    background: #eff6ff !important;
    color: #0369a1 !important;
}

.highlight-special:nth-child(2):hover .special-icon-antar {
    background: #0369a1 !important;
    color: #fff !important;
}

.special-icon-foto {
    background: #fdf2f8 !important;
    color: #be185d !important;
}

.highlight-special:nth-child(3):hover .special-icon-foto {
    background: #be185d !important;
    color: #fff !important;
}

/* Tombol Khusus */
.btn-special-akta {
    background: #f0fdf4 !important;
    color: #16a34a !important;
    border-color: rgba(22, 163, 74, 0.3) !important;
}
.btn-special-akta:hover { background: #16a34a !important; color: #fff !important; }

.btn-special-antar {
    background: #eff6ff !important;
    color: #0369a1 !important;
    border-color: rgba(3, 105, 161, 0.3) !important;
}
.btn-special-antar:hover { background: #0369a1 !important; color: #fff !important; }

.btn-special-foto {
    background: #fdf2f8 !important;
    color: #be185d !important;
    border-color: rgba(190, 24, 93, 0.3) !important;
}
.btn-special-foto:hover { background: #be185d !important; color: #fff !important; }

/* ==========================================================================
   HERO VARIAN WARNA
   ========================================================================== */
.hero-akta  { background: linear-gradient(135deg, #064e3b 0%, #34d399 100%) !important; }
.hero-antar { background: linear-gradient(135deg, #0c4a6e 0%, #38bdf8 100%) !important; }
.hero-foto  { background: linear-gradient(135deg, #831843 0%, #f472b6 100%) !important; }

/* ==========================================================================
   KOMPONEN BERSAMA - HALAMAN DETAIL LAYANAN BARU
   ========================================================================== */

/* INTRO GRID */
.akta-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

.akta-intro-text h2 {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--rs-dark-green);
    line-height: 1.2;
    margin-bottom: 16px;
}

.akta-intro-text p {
    color: var(--rs-text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* INFO CARD SAMPING */
.akta-info-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #f1f2f6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.akta-info-card-header {
    background: linear-gradient(135deg, #1a4d2e, #2ecc71);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.akta-info-card-header i { font-size: 22px; }
.akta-info-card-header h3 { font-size: 1rem; font-weight: 800; margin: 0; }

.akta-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 24px;
    border-bottom: 1px solid #f8fafc;
}

.akta-info-item:last-child { border-bottom: none; }

.akta-info-icon {
    width: 36px;
    height: 36px;
    background: var(--rs-light-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rs-green);
    font-size: 14px;
    flex-shrink: 0;
}

.akta-info-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--rs-dark-green);
    margin-bottom: 4px;
}

.akta-info-item span {
    font-size: 0.83rem;
    color: var(--rs-text-gray);
    line-height: 1.5;
}

/* SECTION HEADER */
.akta-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.akta-section-header h2 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--rs-dark-green);
    margin: 10px 0 14px;
}

/* ==========================================================================
   AKTA KELAHIRAN - KOMPONEN UNIK
   ========================================================================== */

/* Syarat Dokumen Grid */
.akta-syarat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 0;
}

.akta-syarat-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 22px;
    border: 1px solid #f1f2f6;
    text-align: center;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
}

.akta-syarat-card:hover {
    transform: translateY(-6px);
    border-color: #16a34a;
    box-shadow: 0 15px 35px rgba(22,163,74,0.12);
}

.akta-syarat-num {
    position: absolute;
    top: 14px;
    left: 18px;
    font-size: 0.75rem;
    font-weight: 900;
    color: #d1fae5;
    letter-spacing: 1px;
    font-family: monospace;
}

.akta-syarat-icon {
    width: 56px;
    height: 56px;
    background: #f0fdf4;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #16a34a;
    margin: 0 auto 16px;
    transition: 0.3s;
}

.akta-syarat-card:hover .akta-syarat-icon {
    background: #16a34a;
    color: #fff;
}

.akta-syarat-card h4 {
    color: var(--rs-dark-green);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.akta-syarat-card p {
    color: var(--rs-text-gray);
    font-size: 0.83rem;
    line-height: 1.65;
}

/* Alur Proses */
.akta-alur-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 50px;
    position: relative;
}

.akta-alur-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.akta-alur-step {
    width: 48px;
    height: 48px;
    background: #16a34a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px #f0fdf4;
}

.akta-alur-connector {
    position: absolute;
    top: 24px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #bbf7d0;
    z-index: 1;
}

.hide-connector { display: none; }

.akta-alur-body {
    margin-top: 20px;
    text-align: center;
    padding: 0 10px;
}

.akta-alur-body i {
    font-size: 28px;
    color: #16a34a;
    margin-bottom: 10px;
    display: block;
}

.akta-alur-body h4 {
    color: var(--rs-dark-green);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.akta-alur-body p {
    font-size: 0.83rem;
    color: var(--rs-text-gray);
    line-height: 1.6;
}

/* Tombol WA di dalam info card */
.akta-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #16a34a, #4ade80);
    color: #fff;
    padding: 14px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.akta-wa-btn i { font-size: 18px; }
.akta-wa-btn:hover { opacity: 0.88; transform: translateY(-2px); color: #fff; }

/* CTA BOX */
.akta-cta-box {
    background: linear-gradient(135deg, #1a4d2e, #2ecc71);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    color: #fff;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.akta-cta-box::before {
    content: "";
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.akta-cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.akta-cta-text {
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.akta-cta-text h3 { font-size: 1.2rem; font-weight: 900; margin-bottom: 6px; }
.akta-cta-text p  { opacity: 0.85; font-size: 0.9rem; line-height: 1.6; }

.akta-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.akta-cta-actions .btn-utama {
    background: #fff;
    color: #1a4d2e;
    border-color: #fff;
}

.akta-cta-actions .btn-utama:hover { background: #f0fdf4; }
.akta-cta-actions .btn-minimalis { border-color: rgba(255,255,255,0.6); color: #fff; }
.akta-cta-actions .btn-minimalis:hover { background: rgba(255,255,255,0.15); }

/* ==========================================================================
   SI ANTAR - KOMPONEN UNIK
   ========================================================================== */

.antar-unggulan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 50px;
}

.antar-unggulan-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 22px;
    border: 1px solid #f1f2f6;
    transition: 0.3s;
}

.antar-unggulan-card:hover {
    transform: translateY(-6px);
    border-color: #0369a1;
    box-shadow: 0 15px 35px rgba(3,105,161,0.1);
}

.antar-unggulan-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    transition: 0.3s;
}

.antar-unggulan-card h4 {
    color: var(--rs-dark-green);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.antar-unggulan-card p {
    color: var(--rs-text-gray);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* Zona Layanan */
.antar-zona-box {
    background: #f0f9ff;
    border: 1px solid rgba(3,105,161,0.2);
    border-radius: 22px;
    padding: 32px;
    margin-bottom: 0;
}

.antar-zona-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.antar-zona-header i { font-size: 22px; color: #0369a1; margin-top: 3px; }
.antar-zona-header h3 { font-size: 1.1rem; font-weight: 800; color: #0c4a6e; margin-bottom: 4px; }
.antar-zona-header p  { font-size: 0.88rem; color: #0369a1; margin: 0; }

.antar-zona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.antar-zona-item {
    background: #fff;
    border: 1px solid rgba(3,105,161,0.2);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0c4a6e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.antar-zona-item i { color: #0369a1; }

/* Tombol WA di dalam info card Si Antar */
.antar-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #0c4a6e, #0369a1);
    color: #fff;
    padding: 14px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
    box-sizing: border-box;
}
.antar-wa-btn i { font-size: 18px; }
.antar-wa-btn:hover { opacity: 0.88; transform: translateY(-2px); color: #fff; }

/* Grid Rekomendasi Pasien */
.antar-rekomendasi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 50px;
}

.antar-rekomendasi-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 22px;
    border: 1px solid #f1f2f6;
    text-align: center;
    transition: 0.3s;
}

.antar-rekomendasi-card:hover {
    transform: translateY(-6px);
    border-color: #0369a1;
    box-shadow: 0 15px 35px rgba(3, 105, 161, 0.1);
}

.antar-rekomendasi-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
    transition: 0.3s;
}

.antar-rekomendasi-card h4 {
    color: var(--rs-dark-green);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.antar-rekomendasi-card p {
    color: var(--rs-text-gray);
    font-size: 0.83rem;
    line-height: 1.65;
}

@media (max-width: 992px) {
    .antar-rekomendasi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .antar-rekomendasi-grid { grid-template-columns: 1fr; }
}

/* Tombol Si Antar */
.btn-antar-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0c4a6e;
    padding: 13px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.3s;
}

.btn-antar-wa:hover { background: #e0f2fe; }

.btn-antar-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    padding: 13px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.3s;
}

.btn-antar-outline:hover { background: rgba(255,255,255,0.15); }

/* ==========================================================================
   JEJAK PERTAMA - KOMPONEN BARU (HARGA HIGHLIGHT, SINGLE PAKET, BENEFIT)
   ========================================================================== */

/* Highlight harga di dalam info card */
.foto-harga-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, #fff0f6, #fdf2f8);
    border-bottom: 1px solid rgba(190,24,93,0.15);
}

.foto-harga-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #be185d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.foto-harga-nominal {
    font-size: 2rem;
    font-weight: 900;
    color: #831843;
    line-height: 1.1;
}

.foto-harga-sublabel {
    font-size: 0.75rem;
    color: #9d174d;
    margin-top: 4px;
}

/* Tombol WA Foto */
.foto-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #831843, #be185d);
    color: #fff;
    padding: 14px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.foto-wa-btn i { font-size: 18px; }
.foto-wa-btn:hover { opacity: 0.88; transform: translateY(-2px); color: #fff; }

/* Single Paket Layout */
.foto-single-paket {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: 2px solid rgba(190,24,93,0.2);
    box-shadow: 0 20px 50px rgba(190,24,93,0.1);
    margin-bottom: 40px;
}

.foto-single-left {
    background: linear-gradient(160deg, #831843, #be185d, #f472b6);
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
}

.foto-single-badge {
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.foto-single-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    margin-bottom: 16px;
}

.foto-single-left h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.foto-single-price {
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 16px 20px;
    text-align: center;
    width: 100%;
    margin-bottom: 4px;
}

.foto-single-price span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.foto-single-price strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
}

.foto-single-price small {
    font-size: 0.78rem;
    opacity: 0.85;
}

/* Kolom kanan benefit */
.foto-single-right {
    padding: 36px 40px;
    background: #fff;
}

.foto-single-right h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--rs-dark-green);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #fdf2f8;
}

.foto-benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.foto-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.foto-benefit-icon {
    width: 44px;
    height: 44px;
    background: #fdf2f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #be185d;
    flex-shrink: 0;
    transition: 0.3s;
}

.foto-benefit-item:hover .foto-benefit-icon {
    background: #be185d;
    color: #fff;
}

.foto-benefit-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--rs-dark-green);
    margin-bottom: 4px;
}

.foto-benefit-item span {
    font-size: 0.83rem;
    color: var(--rs-text-gray);
    line-height: 1.55;
}

/* Responsive */
@media (max-width: 992px) {
    .foto-single-paket { grid-template-columns: 1fr; }
    .foto-single-left { padding: 32px 28px; }
}

@media (max-width: 600px) {
    .foto-single-right { padding: 24px 20px; }
}

/* ==========================================================================
   JEJAK PERTAMA - KOMPONEN UNIK (LAMA - TETAP ADA)
   ========================================================================== */

/* Paket Foto Grid */
.foto-paket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.foto-paket-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f1f2f6;
    transition: 0.3s;
    position: relative;
}

.foto-paket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.foto-paket-featured {
    border: 2px solid #be185d;
    transform: scale(1.03);
}

.foto-paket-featured:hover { transform: scale(1.03) translateY(-10px); }

.foto-paket-recommended {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #78350f;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 20px;
    border-radius: 0 0 14px 14px;
    white-space: nowrap;
    z-index: 10;
}

.foto-paket-header {
    padding: 32px 24px 24px;
    text-align: center;
    color: #fff;
}

.foto-paket-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 14px;
}

.foto-paket-header h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 6px; }
.foto-paket-header p  { font-size: 0.85rem; opacity: 0.85; }

.foto-paket-body { padding: 24px; }

.foto-paket-price {
    text-align: center;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 2px dashed #f1f2f6;
}

.foto-paket-price strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--rs-dark-green);
}

.foto-paket-price span {
    font-size: 0.82rem;
    color: var(--rs-text-gray);
}

.foto-paket-list {
    list-style: none;
    padding: 0;
    margin-bottom: 22px;
}

.foto-paket-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.87rem;
    color: var(--rs-text-dark);
    padding: 8px 0;
    border-bottom: 1px solid #f8fafc;
}

.foto-paket-list li:last-child { border-bottom: none; }

.foto-paket-list li i.fa-check { color: #16a34a; }

.btn-foto-pesan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    padding: 13px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-foto-pesan:hover { opacity: 0.85; transform: translateY(-2px); color: #fff; }

/* Kotak Keamanan Bayi */
.foto-safety-box {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    background: #fff5f7;
    border: 1px solid rgba(190,24,93,0.2);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 0;
}

.foto-safety-icon {
    width: 52px;
    height: 52px;
    background: #fdf2f8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #be185d;
    flex-shrink: 0;
}

.foto-safety-text h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #831843;
    margin-bottom: 8px;
}

.foto-safety-text p {
    font-size: 0.88rem;
    color: #9d174d;
    line-height: 1.7;
    margin: 0;
}

/* Tombol Jejak Pertama */
.btn-foto-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #831843;
    padding: 13px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.3s;
}

.btn-foto-wa:hover { background: #fdf2f8; }

.btn-foto-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    padding: 13px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.3s;
}

.btn-foto-outline:hover { background: rgba(255,255,255,0.15); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 992px) {
    .akta-intro-grid    { grid-template-columns: 1fr; }
    .akta-syarat-grid   { grid-template-columns: repeat(2, 1fr); }
    .akta-alur-wrap     { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .akta-alur-connector { display: none; }
    .antar-unggulan-grid { grid-template-columns: repeat(2, 1fr); }
    .antar-zona-grid    { grid-template-columns: repeat(2, 1fr); }
    .foto-paket-grid    { grid-template-columns: 1fr; }
    .foto-paket-featured { transform: scale(1); }
    .foto-paket-featured:hover { transform: translateY(-10px); }
    .grid-layanan-3col  { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .akta-cta-box { flex-direction: column; text-align: center; padding: 30px 22px; }
    .akta-cta-actions { justify-content: center; }
}

@media (max-width: 600px) {
    .akta-syarat-grid    { grid-template-columns: 1fr; }
    .akta-alur-wrap      { grid-template-columns: 1fr; }
    .antar-unggulan-grid { grid-template-columns: 1fr; }
    .antar-zona-grid     { grid-template-columns: 1fr; }
    .grid-layanan-3col   { grid-template-columns: 1fr !important; }
    .foto-paket-grid     { grid-template-columns: 1fr; }
}
/* ==========================================================================
   16. NEWS / INFORMATION CENTER
   ========================================================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.news-thumb {
    height: 220px;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.news-card:hover .news-thumb img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-date {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--rs-green);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.3rem;
    color: var(--rs-dark-green);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.95rem;
    color: var(--rs-text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-readmore {
    text-decoration: none;
    color: var(--rs-green);
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.2s;
}

.btn-readmore:hover {
    color: var(--rs-dark-green);
    padding-left: 5px;
}

/* ==========================================================================
   17. BERITA & DETAIL BERITA
   ========================================================================== */
/* HERO BERITA */
.hero-berita {
    background: linear-gradient(135deg, #1a4d2e 0%, #2ecc71 100%);
    padding: 70px 0 100px;
    text-align: center; color: #fff;
    border-radius: 0 0 50px 50px;
    overflow: hidden; position: relative;
}

.hero-berita::before {
    content: ""; position: absolute;
    top: -60px; right: -60px;
    width: 250px; height: 250px;
    border-radius: 50%; background: rgba(255,255,255,0.06);
}

.hero-berita::after {
    content: ""; position: absolute;
    bottom: -80px; left: -40px;
    width: 300px; height: 300px;
    border-radius: 50%; background: rgba(255,255,255,0.04);
}

.hero-berita-inner { position: relative; z-index: 2; }
.hero-badge-berita {
    display: inline-block;
    background: rgba(255,255,255,0.15); color: #fff;
    padding: 6px 18px; border-radius: 50px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.hero-berita h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 10px; }
.hero-berita p  { font-size: 1rem; opacity: 0.85; }

/* CONTAINER BERITA */
.berita-container { padding: 60px 0; }

/* FEATURED CARD */
.featured-berita-card {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    background: #fff; border-radius: 24px;
    overflow: hidden; border: 1px solid #f1f2f6;
    margin: -50px 0 40px;
    position: relative; z-index: 10;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s; text-decoration: none;
}

.featured-berita-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(46,204,113,0.13);
    border-color: var(--rs-green);
}

.featured-berita-img { height: 280px; overflow: hidden; }
.featured-berita-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.featured-berita-card:hover .featured-berita-img img { transform: scale(1.05); }

.featured-berita-body {
    padding: 32px;
    display: flex; flex-direction: column; justify-content: center;
}

.featured-berita-label {
    display: inline-block;
    background: var(--rs-light-green); color: var(--rs-green);
    padding: 4px 12px; border-radius: 20px;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}

.featured-berita-meta {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.78rem; color: #94a3b8; margin-bottom: 12px;
}

.featured-berita-body h2 {
    color: var(--rs-dark-green);
    font-size: 1.3rem; font-weight: 800;
    line-height: 1.3; margin-bottom: 12px;
}

.featured-berita-body p {
    color: var(--rs-text-gray);
    font-size: 0.88rem; line-height: 1.65; margin-bottom: 18px;
}

.btn-berita-read {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--rs-dark-green); color: #fff;
    padding: 10px 20px; border-radius: 12px;
    font-size: 0.85rem; font-weight: 700;
    transition: 0.3s; width: fit-content;
}

.featured-berita-card:hover .btn-berita-read { background: var(--rs-green); }

/* BADGE KATEGORI */
.berita-cat-badge {
    display: inline-block;
    background: var(--rs-light-green); color: var(--rs-green);
    padding: 3px 10px; border-radius: 20px;
    font-size: 10px; font-weight: 700;
}

/* GRID BERITA */
.berita-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px; margin-bottom: 40px;
}

.berita-card {
    background: #fff; border-radius: 20px;
    overflow: hidden; border: 1px solid #f1f2f6;
    transition: 0.3s; display: flex;
    flex-direction: column; text-decoration: none;
}

.berita-card:hover {
    transform: translateY(-8px);
    border-color: var(--rs-green);
    box-shadow: 0 20px 40px rgba(46,204,113,0.1);
}

.berita-thumb { height: 180px; overflow: hidden; position: relative; }
.berita-thumb img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.berita-card:hover .berita-thumb img { transform: scale(1.08); }

.berita-cat-tag {
    position: absolute; top: 12px; left: 12px;
    background: var(--rs-green); color: #fff;
    padding: 3px 10px; border-radius: 20px;
    font-size: 10px; font-weight: 700;
}

.berita-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }

.berita-date {
    font-size: 0.75rem; color: #94a3b8;
    font-weight: 600; margin-bottom: 8px;
    display: flex; align-items: center; gap: 6px;
}

.berita-body h3 {
    color: var(--rs-dark-green);
    font-size: 0.98rem; font-weight: 800;
    line-height: 1.35; margin-bottom: 10px;
}

.berita-body p {
    color: var(--rs-text-gray);
    font-size: 0.83rem; line-height: 1.6;
    margin-bottom: 16px; flex-grow: 1;
}

.btn-berita-more {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--rs-green); font-size: 0.82rem; font-weight: 700;
    transition: 0.2s; margin-top: auto;
}

.berita-card:hover .btn-berita-more { color: var(--rs-dark-green); gap: 10px; }

/* PAGINATION */
.berita-pagination {
    display: flex; justify-content: center;
    align-items: center; gap: 8px; padding-bottom: 20px;
}

.page-btn {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.88rem; font-weight: 700;
    border: 1.5px solid #e2e8f0; background: #fff;
    color: var(--rs-text-gray); cursor: pointer;
    transition: 0.3s; text-decoration: none;
}

.page-btn:hover { border-color: var(--rs-green); color: var(--rs-green); }
.page-btn.active { background: var(--rs-green); color: #fff; border-color: var(--rs-green); }
.page-btn.dots   { border: none; background: none; cursor: default; }

/* =====================
   DETAIL BERITA
   ===================== */
.hero-detail-berita {
    background: linear-gradient(135deg, #1a4d2e 0%, #2ecc71 100%);
    padding: 60px 0 80px; color: #fff;
    border-radius: 0 0 50px 50px;
    overflow: hidden; position: relative;
}

.hero-detail-berita::before {
    content: ""; position: absolute;
    top: -60px; right: -60px;
    width: 250px; height: 250px;
    border-radius: 50%; background: rgba(255,255,255,0.06);
}

.hero-detail-berita .container { position: relative; z-index: 2; }

.detail-berita-meta {
    display: flex; align-items: center; gap: 12px;
    margin: 16px 0 14px; font-size: 0.85rem;
    opacity: 0.9;
}

.detail-berita-meta .berita-cat-badge {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.hero-detail-berita h1 {
    font-size: 2rem; font-weight: 900;
    line-height: 1.2; margin-bottom: 14px;
    max-width: 750px;
}

.hero-detail-berita p {
    font-size: 1rem; opacity: 0.85;
    max-width: 650px; line-height: 1.7;
}

/* WRAPPER DETAIL */
.detail-berita-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 50px 0 80px;
    align-items: start;
}

/* KONTEN UTAMA */
.detail-berita-foto {
    border-radius: 20px; overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.detail-berita-foto img { width: 100%; display: block; }

.detail-berita-isi {
    font-size: 1.05rem; color: #374151;
    line-height: 1.85; margin-bottom: 35px;
}

/* SHARE */
.detail-berita-share {
    display: flex; align-items: center; gap: 14px;
    flex-wrap: wrap; padding: 20px;
    background: #f8fafc; border-radius: 14px;
    margin-bottom: 30px;
}

.detail-berita-share span {
    font-size: 0.88rem; font-weight: 700;
    color: var(--rs-dark-green);
}

.share-buttons { display: flex; gap: 10px; flex-wrap: wrap; }

.share-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 16px; border-radius: 10px;
    font-size: 0.82rem; font-weight: 700;
    text-decoration: none; transition: 0.3s;
}

.share-btn.facebook { background: #1877f2; color: #fff; }
.share-btn.facebook:hover { background: #1558b0; }
.share-btn.whatsapp { background: #25d366; color: #fff; }
.share-btn.whatsapp:hover { background: #1da851; }
.share-btn.twitter  { background: #1da1f2; color: #fff; }
.share-btn.twitter:hover  { background: #0d8ecf; }

/* CTA BOX */
.detail-berita-cta {
    display: flex; align-items: center; gap: 20px;
    background: linear-gradient(135deg, #1a4d2e, #2ecc71);
    color: #fff; padding: 24px 28px;
    border-radius: 20px; flex-wrap: wrap;
}

.cta-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
}

.detail-berita-cta h4 { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.detail-berita-cta p  { font-size: 0.85rem; opacity: 0.85; flex-grow: 1; }

.detail-berita-cta .btn-utama {
    background: #fff; color: var(--rs-dark-green);
    flex-shrink: 0;
}

.detail-berita-cta .btn-utama:hover { background: var(--rs-light-green); }

/* SIDEBAR */
.sidebar-card {
    background: #fff; border-radius: 20px;
    padding: 24px; border: 1px solid #f1f2f6;
    margin-bottom: 24px;
}

.sidebar-title {
    color: var(--rs-dark-green);
    font-size: 1rem; font-weight: 800;
    margin-bottom: 18px; padding-bottom: 10px;
    border-bottom: 2px solid var(--rs-light-green);
    position: relative;
}

.sidebar-title::after {
    content: ''; position: absolute;
    left: 0; bottom: -2px;
    width: 30px; height: 2px;
    background: var(--rs-green);
}

.sidebar-article {
    display: flex; gap: 12px;
    margin-bottom: 16px; padding-bottom: 16px;
    border-bottom: 1px solid #f8fafc;
    text-decoration: none; transition: 0.3s;
}

.sidebar-article:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.sidebar-article:hover { transform: translateX(4px); }

.sidebar-article-img {
    width: 70px; height: 60px;
    border-radius: 10px; overflow: hidden; flex-shrink: 0;
}

.sidebar-article-img img { width: 100%; height: 100%; object-fit: cover; }

.sidebar-cat {
    display: block;
    font-size: 9px; font-weight: 700;
    color: var(--rs-green); text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 4px;
}

.sidebar-article-info h4 {
    color: var(--rs-dark-green);
    font-size: 0.82rem; font-weight: 700;
    line-height: 1.3; margin-bottom: 5px;
}

.sidebar-date {
    font-size: 0.75rem; color: #94a3b8;
    display: flex; align-items: center; gap: 4px;
}

/* SIDEBAR INFO */
.sidebar-contact-item {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 14px;
}

.sidebar-contact-item i {
    color: var(--rs-green); font-size: 1.1rem;
    margin-top: 2px; flex-shrink: 0;
}

.sidebar-contact-item strong { display: block; font-size: 0.85rem; color: var(--rs-dark-green); }
.sidebar-contact-item span  { font-size: 0.82rem; color: var(--rs-text-gray); }

.btn-sidebar-kontak {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--rs-light-green); color: var(--rs-green);
    border: 1.5px solid rgba(46,204,113,0.3);
    padding: 11px; border-radius: 12px;
    font-size: 0.85rem; font-weight: 700;
    text-decoration: none; transition: 0.3s;
    margin-top: 16px; width: 100%;
}

.btn-sidebar-kontak:hover { background: var(--rs-green); color: #fff; }

/* Responsive */
@media (max-width: 992px) {
    .featured-berita-card { grid-template-columns: 1fr; }
    .featured-berita-img  { height: 240px; }
    .berita-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-berita-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .berita-grid { grid-template-columns: 1fr; }
    .hero-berita, .hero-detail-berita { border-radius: 0 0 30px 30px; }
    .hero-detail-berita h1 { font-size: 1.5rem; }
    .detail-berita-cta { flex-direction: column; text-align: center; }
    .share-buttons { justify-content: center; }
}

/* ==========================================================================
   18. CAREER PAGE CUSTOM
   ========================================================================== */
/* ==========================================================================
   FULL CAREER STYLE - RS ASYIFA DEPOK
   Layout: Modern, Scannable, & Responsive
   ========================================================================== */

:root {
    --rs-green-dark: #1a4d2e;     /* Hijau Tua Referensi */
    --rs-green-light: #2ecc71;    /* Hijau Muda Referensi */
    --rs-slate-800: #1e293b;      /* Warna Judul */
    --rs-slate-600: #475569;      /* Warna Teks */
    --rs-slate-400: #94a3b8;      /* Warna Teks Muda */
    --rs-white: #ffffff;
    --rs-bg: #f8fafc;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
}

/* GLOBAL SETUP */
body {
    background-color: var(--rs-bg);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   1. HERO SECTION (SESUAI REFERENSI LAYANAN)
   ========================================================================== */
.hero-layanan {
    background: linear-gradient(135deg, var(--rs-green-dark) 0%, var(--rs-green-light) 100%);
    padding: 80px 0 50px;
    text-align: center;
    color: #fff;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
    position: relative;
}

.hero-layanan::before {
    content: ""; position: absolute;
    top: -60px; right: -60px;
    width: 250px; height: 250px;
    border-radius: 50%; background: rgba(255,255,255,0.06);
}

.hero-layanan::after {
    content: ""; position: absolute;
    bottom: -80px; left: -40px;
    width: 300px; height: 300px;
    border-radius: 50%; background: rgba(255,255,255,0.04);
}

.hero-layanan-inner { position: relative; z-index: 2; }

.hero-badge-layanan {
    display: inline-block;
    background: rgba(255,255,255,0.15); color: #fff;
    padding: 6px 18px; border-radius: 50px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.hero-layanan h1 { font-size: 2.8rem; font-weight: 900; margin-bottom: 15px; }
.hero-layanan p  { font-size: 1.1rem; opacity: 0.85; margin-bottom: 35px; max-width: 650px; margin-left: auto; margin-right: auto; }

.hero-layanan-pills {
    display: flex; justify-content: center;
    gap: 14px; flex-wrap: wrap;
}

.hero-layanan-pills span {
    background: rgba(255,255,255,0.15);
    padding: 10px 22px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 700;
    display: flex; align-items: center; gap: 10px;
    backdrop-filter: blur(4px);
}

/* ==========================================================================
   2. DAFTAR LOWONGAN (karir.php)
   ========================================================================== */
.job-list-section {
    padding: 15px 0 100px; /* Menghilangkan nilai negatif pada padding atas */
}

.job-grid {
    display: grid;
    /* Mengubah minmax menjadi 280px agar aman di HP layar sempit */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.job-card {
    background: var(--rs-white, #ffffff);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
}

.job-card:hover {
    transform: translateY(-10px);
    border-color: var(--rs-green-light, #4ade80);
    box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0,0,0,0.1));
}

.job-tag {
    display: inline-block;
    background: #f0fdf4;
    color: #16a34a;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.job-title {
    font-size: 1.4rem;
    color: var(--rs-slate-800, #1e293b);
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 700;
}

.job-meta {
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--rs-slate-600, #475569);
    margin-bottom: 8px;
}

.btn-detail {
    background: #f1f5f9;
    color: var(--rs-slate-600, #475569);
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: block; /* Memastikan tombol memenuhi lebar card */
}

.job-card:hover .btn-detail {
    background: var(--rs-green-dark, #15803d);
    color: #fff;
}

/* ==========================================================================
   3. DETAIL LOWONGAN (detail-karir.php)
   ========================================================================== */
.career-detail-section { padding: 50px 0; }

.back-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--rs-slate-400, #94a3b8);
    font-weight: 600;
    margin-bottom: 30px;
}

.back-link:hover { color: var(--rs-green-dark, #15803d); }

.job-header-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0,0,0,0.1));
    margin-bottom: 30px;
    border-left: 8px solid var(--rs-green-light, #4ade80);
}

.job-header-card h1 { font-size: 2.2rem; margin: 10px 0; color: var(--rs-slate-800, #1e293b); }

.job-meta-top {
    display: flex;
    flex-wrap: wrap; /* Memungkinkan item turun ke baris baru jika sempit */
    gap: 15px;
    margin-top: 15px;
    color: var(--rs-slate-600, #475569);
}

.detail-grid-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

.info-block {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
}

.section-title-custom {
    font-size: 1.3rem;
    color: var(--rs-slate-800, #1e293b);
    margin-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

.description-text {
    line-height: 1.7;
    color: var(--rs-slate-600, #475569);
}

.qualification-list {
    list-style: none;
    padding: 0;
}

.qualification-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--rs-slate-600, #475569);
    line-height: 1.6;
}

.qualification-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--rs-green-light, #4ade80);
    font-weight: bold;
}

/* STICKY SIDEBAR */
.sticky-card {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0,0,0,0.1));
    position: sticky;
    top: 100px;
    border: 1px solid #f1f5f9;
}

.sticky-card p {
    color: var(--rs-slate-600, #475569);
    line-height: 1.6;
}

.divider {
    border: 0;
    height: 1px;
    background: #f1f5f9;
    margin: 20px 0;
}

.btn-apply-full {
    display: block;
    background: var(--rs-green-dark, #15803d);
    color: #fff;
    text-align: center;
    padding: 16px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    transition: 0.3s;
}

.btn-apply-full:hover {
    background: var(--rs-green-light, #4ade80);
    transform: scale(1.03);
}

.note {
    font-size: 0.85rem !important;
    color: var(--rs-slate-400, #94a3b8) !important;
    text-align: center;
}

/* ==========================================================================
   4. RESPONSIVE (MOBILE FRIENDLY UPDATES)
   ========================================================================== */
@media (max-width: 992px) {
    .detail-grid-layout { 
        grid-template-columns: 1fr; 
    }
    .sticky-card { 
        position: static; 
        margin-top: 30px;
    }
}

/* Penyesuaian khusus untuk Tablet Kecil & Smartphone */
@media (max-width: 768px) {
    .career-detail-section { 
        padding: 30px 0; 
    }
    
    .job-header-card {
        padding: 25px 20px;
        border-left-width: 5px;
    }

    .job-header-card h1 { 
        font-size: 1.8rem; /* Mengecilkan ukuran font judul di HP */
    }

    .info-block {
        padding: 25px 20px;
    }

    .sticky-card {
        padding: 25px 20px;
    }

    .job-meta-top {
        flex-direction: column; /* Membuat info lokasi, batas akhir, dll turun ke bawah vertikal */
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .job-grid { 
        /* Memaksa grid menjadi 1 kolom penuh di layar sangat kecil */
        grid-template-columns: 1fr; 
    }
    
    .job-card {
        padding: 20px; /* Mengurangi ruang kosong berlebih dalam card */
    }

    .job-title {
        font-size: 1.25rem;
    }
    
    .job-header-card h1 { 
        font-size: 1.5rem; 
    }
}
/* ==========================================================================
   19. AKREDITASI PAGE
   ========================================================================== */

/* HERO */
.hero-akreditasi {
    background: linear-gradient(135deg, #1a4d2e 0%, #2ecc71 100%);
    padding: 70px 0 100px;
    text-align: center; color: #fff;
    border-radius: 0 0 50px 50px;
    overflow: hidden; position: relative;
}

.hero-akreditasi::before {
    content: ""; position: absolute;
    top: -60px; right: -60px;
    width: 250px; height: 250px;
    border-radius: 50%; background: rgba(255,255,255,0.06);
}

.hero-akreditasi::after {
    content: ""; position: absolute;
    bottom: -80px; left: -40px;
    width: 300px; height: 300px;
    border-radius: 50%; background: rgba(255,255,255,0.04);
}

.hero-akreditasi-inner { position: relative; z-index: 2; }

.hero-badge-akreditasi {
    display: inline-block;
    background: rgba(255,255,255,0.15); color: #fff;
    padding: 6px 18px; border-radius: 50px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}

.hero-akreditasi h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 10px; }
.hero-akreditasi p  { font-size: 1rem; opacity: 0.85; max-width: 550px; margin: 0 auto; }

/* CONTAINER */
.akreditasi-container { padding: 60px 0 80px; }

/* STATUS BOX */
.akreditasi-status-box {
    background: #fff;
    border-radius: 28px; overflow: hidden;
    margin: -50px 0 50px;
    position: relative; z-index: 10;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid #f1f2f6;
    display: grid;
    grid-template-columns: 280px 1fr;
}

.akreditasi-status-left {
    background: linear-gradient(135deg, #b8860b, #ffd700, #daa520);
    padding: 40px 30px; text-align: center; color: #fff;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 14px;
}

.akreditasi-award-icon {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
}

.akreditasi-stars {
    font-size: 22px; letter-spacing: 4px; color: #fff;
}

.akreditasi-status-left h2 {
    font-size: 1.4rem; font-weight: 900; line-height: 1.2;
}

.akreditasi-status-left p { font-size: 0.82rem; opacity: 0.9; }

.akreditasi-status-right {
    padding: 36px 40px;
    display: flex; flex-direction: column;
    justify-content: center; gap: 20px;
}

.akreditasi-status-right h3 {
    color: var(--rs-dark-green);
    font-size: 1.2rem; font-weight: 800; margin-bottom: 8px;
}

.akreditasi-status-right p {
    color: var(--rs-text-gray);
    font-size: 0.92rem; line-height: 1.75;
}

.akreditasi-pills {
    display: flex; gap: 10px; flex-wrap: wrap;
}

.akreditasi-pills span {
    background: var(--rs-light-green); color: var(--rs-green);
    padding: 6px 14px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 700;
    border: 1px solid rgba(46,204,113,0.2);
    display: flex; align-items: center; gap: 6px;
}

/* SECTION HEADER */
.akreditasi-section-header { text-align: center; margin-bottom: 40px; }

.akreditasi-section-header h2 {
    color: var(--rs-dark-green);
    font-size: 1.6rem; font-weight: 900; margin-bottom: 12px;
}

.akreditasi-section-header h2 span { color: var(--rs-green); }

.akreditasi-underline {
    width: 50px; height: 4px;
    background: var(--rs-green);
    border-radius: 10px; margin: 0 auto;
}

/* ISO GRID */
.akreditasi-iso-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px; margin-bottom: 50px;
}

.akreditasi-iso-card {
    background: #fff; border-radius: 22px;
    padding: 30px; border: 1px solid #f1f2f6;
    transition: 0.3s; text-align: center;
}

.akreditasi-iso-card:hover {
    transform: translateY(-8px);
    border-color: var(--rs-green);
    box-shadow: 0 20px 40px rgba(46,204,113,0.12);
}

.akreditasi-iso-badge {
    display: inline-block;
    background: var(--rs-light-green); color: var(--rs-green);
    padding: 3px 12px; border-radius: 20px;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 16px;
}

.akreditasi-iso-icon {
    width: 64px; height: 64px;
    background: var(--rs-light-green); border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--rs-green);
    margin: 0 auto 18px; transition: 0.3s;
}

.akreditasi-iso-card:hover .akreditasi-iso-icon {
    background: var(--rs-green); color: #fff;
}

.akreditasi-iso-card h4 {
    color: var(--rs-dark-green); font-size: 1rem;
    font-weight: 800; margin-bottom: 10px;
}

.akreditasi-iso-card p {
    color: var(--rs-text-gray); font-size: 0.85rem; line-height: 1.65;
}

/* MONITORING */
.akreditasi-monitoring {
    background: linear-gradient(135deg, #1a4d2e, #2ecc71);
    border-radius: 24px; padding: 50px;
    color: #fff; position: relative; overflow: hidden;
}

.akreditasi-monitoring::before {
    content: ""; position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%; background: rgba(255,255,255,0.07);
}

.akreditasi-monitoring-inner { position: relative; z-index: 2; }

.akreditasi-monitoring-text { margin-bottom: 30px; }

.akreditasi-monitoring-text h3 {
    font-size: 1.5rem; font-weight: 900;
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 12px;
}

.akreditasi-monitoring-text p {
    opacity: 0.85; font-size: 0.95rem;
    line-height: 1.75; max-width: 700px;
}

.akreditasi-monitoring-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr); gap: 16px;
}

.akreditasi-m-stat {
    background: rgba(255,255,255,0.15);
    border-radius: 16px; padding: 22px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15); transition: 0.3s;
}

.akreditasi-m-stat:hover { background: rgba(255,255,255,0.22); transform: translateY(-4px); }
.akreditasi-m-stat strong { display: block; font-size: 1.8rem; font-weight: 900; margin-bottom: 6px; }
.akreditasi-m-stat span  { font-size: 0.8rem; opacity: 0.85; font-weight: 600; }

/* Responsive */
@media (max-width: 992px) {
    .akreditasi-status-box { grid-template-columns: 1fr; }
    .akreditasi-status-left { padding: 35px; }
    .akreditasi-iso-grid { grid-template-columns: repeat(2, 1fr); }
    .akreditasi-monitoring-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .hero-akreditasi { padding: 50px 0 80px; border-radius: 0 0 30px 30px; }
    .hero-akreditasi h1 { font-size: 1.8rem; }
    .akreditasi-iso-grid { grid-template-columns: 1fr; }
    .akreditasi-monitoring { padding: 30px 20px; }
    .akreditasi-monitoring-text h3 { font-size: 1.2rem; }
    .akreditasi-monitoring-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   20. FOOTER STYLING
   ========================================================================== */
.footer {
    background: #ffffff;
    color: var(--rs-text-dark);
    padding: 70px 0 0;
    margin-top: 80px;
    border-top: 3px solid var(--rs-green);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Logo */
.footer-logo-wrap {
    display: block;
    margin-bottom: 18px;
}

.footer-logo-img {
    max-height: 55px;
    width: auto;
    
}

.footer-logo-circle {
    width: 48px; height: 48px;
    background: var(--rs-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 20px; color: #fff;
    flex-shrink: 0;
}

.footer-logo-text { line-height: 1.3; }
.footer-logo-text strong { display: block; color: var(--rs-dark-green); font-size: 1rem; font-weight: 800; }
.footer-logo-text span { font-size: 0.75rem; color: var(--rs-text-gray); }

.footer-col p {
    color: var(--rs-text-gray);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

/* Heading */
.footer-col h3 {
    color: var(--rs-dark-green);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(46, 204, 113, 0.2);
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 30px; height: 2px;
    background: var(--rs-green);
}

/* Contact Items */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: var(--rs-text-gray);
    line-height: 1.6;
}

.footer-contact-icon {
    width: 32px; height: 32px;
    background: var(--rs-light-green);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--rs-green);
    flex-shrink: 0;
    font-size: 13px;
}

/* Links */
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--rs-text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a::before { content: "›"; color: var(--rs-green); font-size: 1.1rem; }
.footer-links a:hover { color: var(--rs-green); padding-left: 5px; }

/* Social */
.social-icons { display: flex; gap: 12px; margin-bottom: 16px; }
.social-icons a {
    width: 38px; height: 38px;
    background: var(--rs-light-green);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--rs-green);
    text-decoration: none;
    transition: 0.3s;
}
.social-icons a:hover { background: var(--rs-green); color: #fff; transform: translateY(-3px); }

.footer-note { font-size: 0.82rem; color: var(--rs-text-gray); line-height: 1.6; }

/* Bottom */
.footer-bottom {
    border-top: 1px solid #e2e8f0;
    background: var(--rs-light-green);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--rs-text-gray);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-badge {
    background: #fff;
    color: var(--rs-green);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

/* Floating WA */
.floating-wa {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25d366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999 !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.wa-tooltip {
    position: absolute !important;
    right: 80px !important;
    background: var(--rs-dark-green) !important;
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 10px !important;
    font-size: 0.85rem !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.floating-wa:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5) !important;
    text-decoration: none !important;
}

.floating-wa:hover .wa-tooltip {
    opacity: 1 !important;
}

.floating-wa:focus,
.floating-wa:active {
    text-decoration: none !important;
    outline: none !important;
}

.floating-wa i {
    color: #fff !important;
    font-size: 28px !important;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   23. PARTNER SECTION STYLING (INFINITE SLIDE)
   ========================================================================== */
.partner-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.partner-title h2 {
    color: var(--rs-dark-green);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.partner-title h2 span { color: var(--rs-green); }

.partner-title .underline {
    width: 60px;
    height: 4px;
    background: var(--rs-green);
    margin: 0 auto;
    border-radius: 10px;
}

.partner-title .line {
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, #2ecc71, #27ae60);
    margin: 0 auto;
    border-radius: 10px;
}

.partner-slider {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    position: relative;
    background: #fff;
}

.partner-slider::before,
.partner-slider::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.partner-slider::before {
    left: 0;
    top: 0;
    background: linear-gradient(to right, white, transparent);
}

.partner-slider::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, white, transparent);
}

.partner-track {
    display: flex;
    width: calc(200px * 36); 
    animation: scroll-marquee 40s linear infinite;
}

.partner-item {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}

.partner-item img {
    max-width: 160px;   /* naikan dari 150px */
    height: 100px;       /* kasih tinggi fix biar seragam */
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.partner-track:hover {
    animation-play-state: paused;
}

.partner-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 18)); }
}
/* ==========================================================================
   24. TESTIMONI (MOBILE FIRST)
   ========================================================================== */

/* --- 1. Pengaturan Default (Layar HP / Mobile) --- */
.testimoni-section { 
    padding: 70px 0; /* Padding lebih kecil untuk mobile */
    background: #f8fafc; 
}

.testimonial-track-wrapper { overflow: hidden; }

.testimonial-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.testimonial-item {
    background: #fff;
    border-radius: 20px;
    padding: 25px; /* Padding dalam kartu sedikit dikurangi untuk HP */
    border: 1px solid #f1f2f6;
    position: relative;
    transition: all 0.3s ease;
    box-sizing: border-box;

    /* SETTING MOBILE: 1 Kolom Penuh */
    flex: 0 0 100%;
    min-width: 100%;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    border-color: var(--rs-green);
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.12);
}

.testi-tag-label { position: absolute; top: 20px; right: 20px; background: var(--rs-light-green); color: var(--rs-green); padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; }

.testi-quote {
    font-size: 48px; /* Icon kutipan sedikit dikecilkan di HP */
    color: var(--rs-green);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 5px;
    font-family: Georgia, serif;
    font-weight: 900;
}

.testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 18px; letter-spacing: 2px; }

.testi-text {
    color: var(--rs-text-gray);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 25px;
    min-height: auto; /* Biarkan tinggi teks menyesuaikan isi di layar HP */
}

.testi-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid #f1f5f9; padding-top: 20px; }

.testi-avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }

.av-green  { background: #f0fff4; color: #1a4d2e; }
.av-amber  { background: #fffbeb; color: #92400e; }
.av-blue   { background: #eff6ff; color: #1e40af; }
.av-purple { background: #fdf4ff; color: #7e22ce; }
.av-red    { background: #fff1f2; color: #9f1239; }
.av-teal   { background: #f0fdfa; color: #134e4a; }

.testi-name  { font-weight: 700; color: var(--rs-dark-green); font-size: 0.95rem; margin-bottom: 3px; }
.testi-role  { font-size: 0.8rem; color: #94a3b8; }

.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 35px; }
.testi-dot { width: 10px; height: 10px; border-radius: 50%; background: #d1fae5; border: none; cursor: pointer; transition: all 0.3s ease; }
.testi-dot.active { background: var(--rs-green); width: 28px; border-radius: 20px; }


/* ==========================================================================
   --- 2. MEDIA QUERIES (RESPONSIVE SCALING UP) ---
   ========================================================================== */

/* Tablet & Layar Menengah (Lebar minimal 768px) */
@media (min-width: 768px) {
    .testimoni-section { padding: 85px 0; }
    
    .testimonial-item { 
        /* Berubah menjadi 2 Kolom */
        flex: 0 0 calc(50% - 12.5px); /* Dikurangi separuh dari gap (25px) */
        min-width: calc(50% - 12.5px); 
        padding: 30px; /* Kembalikan padding normal */
    }
    
    .testi-quote { font-size: 56px; } /* Kembalikan ukuran icon kutipan */
    .testi-text { min-height: 80px; } /* Samaratakan tinggi teks agar kartu sejajar */
}

/* Desktop & Layar Lebar (Lebar minimal 992px) */
@media (min-width: 992px) {
    .testimoni-section { padding: 100px 0; }
    
    .testimonial-item { 
        /* Kembali ke format 3 Kolom seperti desain awal Anda */
        flex: 0 0 calc(33.333% - 17px); 
        min-width: calc(33.333% - 17px); 
    }
}

/* ==========================================================================
   25. HEADER APPOINTMENT BUTTON
   ========================================================================== */

/* Styling dasar item navigasi khusus CTA */
.nav-cta {
    margin-left: 15px; /* Kasih jarak dikit dari menu terakhir */
    display: flex;
    align-items: center;
}

.btn-appointment {
    background: var(--rs-green); /* Pake variabel hijau medis lo */
    color: #fff !important; /* Paksa teks jadi putih */
    padding: 10px 20px !important;
    border-radius: 50px; /* Bentuk kapsul biar modern */
    font-weight: 700 !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 157, 120, 0.3);
    border: 2px solid transparent;
}

.btn-appointment:hover {
    background: #fff !important;
    color: var(--rs-green) !important;
    border-color: var(--rs-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 157, 120, 0.4);
}

.btn-appointment i {
    margin-right: 8px;
}

/* Biar rapi di tampilan mobile */
@media (max-width: 992px) {
    .nav-cta {
        margin-left: 0;
        margin-top: 15px;
    }
    .btn-appointment {
        display: block;
        text-align: center;
    }
}
/* ==========================================================================
   LOGIN PASIEN
   ========================================================================== */

/* HERO */
.hero-login {
    background: linear-gradient(135deg, #1a4d2e 0%, #2ecc71 100%);
    padding: 70px 0 100px;
    text-align: center; color: #fff;
    border-radius: 0 0 50px 50px;
    overflow: hidden; position: relative;
}

.hero-login::before {
    content: ""; position: absolute;
    top: -60px; right: -60px;
    width: 250px; height: 250px;
    border-radius: 50%; background: rgba(255,255,255,0.06);
}

.hero-login::after {
    content: ""; position: absolute;
    bottom: -80px; left: -40px;
    width: 300px; height: 300px;
    border-radius: 50%; background: rgba(255,255,255,0.04);
}

.hero-login-inner { position: relative; z-index: 2; }

.hero-badge-login {
    display: inline-block;
    background: rgba(255,255,255,0.15); color: #fff;
    padding: 6px 18px; border-radius: 50px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}

.hero-login h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 10px; }
.hero-login p  { font-size: 1rem; opacity: 0.85; }

/* CONTAINER */
.login-container { padding: 60px 0 80px; }

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    margin-top: -50px;
    position: relative; z-index: 10;
    align-items: start;
}

/* INFO SIDE */
.login-info-side {
    background: #fff; border-radius: 24px;
    padding: 32px; border: 1px solid #f1f2f6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.login-info-header {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 24px; padding-bottom: 18px;
    border-bottom: 2px solid var(--rs-light-green);
}

.login-info-icon {
    width: 46px; height: 46px;
    background: var(--rs-light-green); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--rs-green); font-size: 20px; flex-shrink: 0;
}

.login-info-header h3 {
    color: var(--rs-dark-green); font-size: 1.1rem; font-weight: 800;
}

.login-info-item {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 20px; padding-bottom: 20px;
    border-bottom: 1px solid #f8fafc;
}

.login-info-item:last-of-type { border-bottom: none; }

.login-info-num {
    width: 28px; height: 28px;
    background: var(--rs-green); color: #fff;
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800; flex-shrink: 0;
}

.login-info-item strong { display: block; color: var(--rs-dark-green); font-size: 0.9rem; font-weight: 800; margin-bottom: 5px; }
.login-info-item p { color: var(--rs-text-gray); font-size: 0.83rem; line-height: 1.65; margin: 0; }

.login-info-cta {
    background: var(--rs-light-green); border-radius: 16px;
    padding: 20px; text-align: center; margin-top: 10px;
}

.login-info-cta p { color: var(--rs-text-gray); font-size: 0.85rem; margin-bottom: 12px; }

.btn-login-daftar {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--rs-green); color: #fff;
    padding: 10px 22px; border-radius: 12px;
    font-size: 0.88rem; font-weight: 700;
    text-decoration: none; transition: 0.3s;
}

.btn-login-daftar:hover { background: var(--rs-dark-green); }

/* FORM CARD */
.login-form-card {
    background: #fff; border-radius: 24px;
    padding: 36px; border: 1px solid #f1f2f6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.login-form-header { text-align: center; margin-bottom: 28px; }

.login-form-icon {
    width: 60px; height: 60px;
    background: var(--rs-light-green); border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--rs-green);
    margin: 0 auto 16px;
}

.login-form-header h3 {
    color: var(--rs-dark-green); font-size: 1.2rem; font-weight: 800; margin-bottom: 6px;
}

.login-form-header p { color: var(--rs-text-gray); font-size: 0.88rem; }

/* ALERT */
.login-alert {
    padding: 12px 16px; border-radius: 12px;
    font-size: 0.88rem; font-weight: 600;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
}

.login-alert.error { background: #fff1f2; color: #9f1239; border: 1px solid rgba(239,68,68,0.3); }
.login-alert.success { background: #f0fff4; color: #1a4d2e; border: 1px solid rgba(46,204,113,0.3); }

/* FORM GROUPS */
.login-form-group { margin-bottom: 20px; }

.login-form-group label {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 700;
    color: #374151; margin-bottom: 8px;
}

.login-form-group label i { color: var(--rs-green); }

.login-form-group input {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid #e2e8f0; border-radius: 12px;
    font-size: 0.95rem; color: #333;
    outline: none; transition: 0.3s;
    background: #f8fafc; font-family: inherit;
}

.login-form-group input:focus {
    border-color: var(--rs-green); background: #fff;
    box-shadow: 0 0 0 3px rgba(46,204,113,0.1);
}

/* PASSWORD WRAP */
.login-password-wrap { position: relative; }

.login-password-wrap input { padding-right: 48px; }

.toggle-password {
    position: absolute; right: 14px; top: 50%;
    transform: translateY(-50%);
    background: none; border: none;
    color: #94a3b8; cursor: pointer;
    font-size: 16px; transition: 0.3s;
}

.toggle-password:hover { color: var(--rs-green); }

/* CAPTCHA */
.login-captcha-wrap { display: flex; flex-direction: column; gap: 10px; }

.login-captcha-img {
    display: flex; align-items: center; gap: 10px;
    background: #f8fafc; border-radius: 12px;
    border: 1.5px solid #e2e8f0; padding: 8px 12px;
}

.login-captcha-img img { height: 45px; border-radius: 6px; flex-grow: 1; }

.refresh-captcha {
    background: var(--rs-light-green); border: none;
    color: var(--rs-green); width: 36px; height: 36px;
    border-radius: 10px; cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}

.refresh-captcha:hover { background: var(--rs-green); color: #fff; }

/* FIELD ERROR */
.login-field-error {
    display: block; font-size: 0.78rem;
    color: #ef4444; margin-top: 5px;
}

/* SUBMIT */
.btn-login-submit {
    width: 100%; background: linear-gradient(135deg, #1a4d2e, #2ecc71);
    color: #fff; border: none; padding: 15px;
    border-radius: 14px; font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: 0.3s; margin-top: 6px;
    display: flex; align-items: center; justify-content: center;
    gap: 10px; font-family: inherit;
}

.btn-login-submit:hover { opacity: 0.9; transform: translateY(-2px); }

/* FOOTER */
.login-form-footer {
    text-align: center; margin-top: 20px;
    font-size: 0.85rem; color: var(--rs-text-gray);
}

.login-form-footer a { color: var(--rs-green); font-weight: 700; text-decoration: none; }
.login-form-footer a:hover { color: var(--rs-dark-green); }

/* Responsive */
@media (max-width: 992px) {
    .login-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .hero-login { padding: 50px 0 80px; border-radius: 0 0 30px 30px; }
    .hero-login h1 { font-size: 1.8rem; }
    .login-form-card { padding: 24px; }
    .login-info-side { padding: 24px; }
}