/* ==========================================================================
   CSS GLOBAL DESIGN SYSTEM (CLEAN, FLAT, NO GRADIENT, WHITE BG)
   Tema: Background Putih, Primary Green (#008837), Secondary Orange (#F27A1A)
   Tombol: Border-only, NO background fill/gradient.
   100% Responsif (Mobile, Tablet, Desktop)
   ========================================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
  --bg-primary: #ffffff;
  --bg-subtle: #ffffff;
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-dark: #94a3b8;
  
  --primary-green: #009933;
  --primary-green-dark: #007728;
  --secondary-orange: #f27a1a;
  --secondary-orange-hover: #d9650d;
  
  --text-main: #333333;
  --text-muted: #555555;
  --text-light: #777777;
  
  --font-base: 'Montserrat', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  --max-width: 1240px;
  --radius-sm: 0px;
  --radius-md: 0px;
  --transition-fast: 0.2s ease;
}

/* --- Base Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

main {
  flex: 1;
  overflow-x: hidden;
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* --- Container Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --- Global Page Section Padding (Desktop: Lega & Tidak Mepet Navbar) --- */
.page-section {
  padding: 4rem 0 5.5rem;
  width: 100%;
}

.contact-page-section,
.pendaftaran-page-section,
.gallery-detail-section,
.article-detail-section,
.gallery-page-section,
.article-page-section {
  padding: 4rem 0 5.5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

/* ==========================================================================
   GLOBAL SCROLL REVEAL & MICRO-ANIMATIONS SYSTEM (GPU-ACCELERATED)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 1.35s cubic-bezier(0.22, 1, 0.36, 1), transform 1.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-from-left {
  transform: translateX(-50px);
}

.reveal-on-scroll.reveal-from-right {
  transform: translateX(50px);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translate(0, 0) !important;
}

.delay-1 { transition-delay: 0.22s !important; }
.delay-2 { transition-delay: 0.44s !important; }
.delay-3 { transition-delay: 0.66s !important; }
.delay-4 { transition-delay: 0.88s !important; }
.delay-5 { transition-delay: 1.10s !important; }
.delay-6 { transition-delay: 1.32s !important; }

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Micro-interactions pada Tombol */
.btn:active,
button:not(.poster-slider-nav):not(.poster-page-dot):not(.service-tab-btn):not(.tabs-scroll-btn):active {
  transform: scale(0.97) !important;
}

.rc-feature-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.25s ease !important;
}

.rc-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.rc-counter-item {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.rc-counter-item:hover {
  transform: translateY(-5px);
}

/* --- Typography Helpers --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2.1rem; margin-bottom: 1rem; }
h2 { font-size: 1.65rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.text-center { text-align: center; }
.text-green { color: var(--primary-green) !important; }
.text-orange { color: var(--secondary-orange) !important; }

/* Section Header Utility */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  font-size: 1.75rem;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-green);
}

.section-header p {
  max-width: 700px;
  margin: 0.5rem auto 0;
  font-size: 1rem;
}

/* --- Button Styles (Strictly NO Background Fill / No Gradient) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: transparent !important;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
  text-decoration: none !important;
  white-space: nowrap;
}

/* Primary Green Outline Button */
.btn-primary {
  border: 2px solid var(--primary-green) !important;
  color: var(--primary-green) !important;
}

.btn-primary:hover {
  border-color: var(--primary-green-dark) !important;
  color: var(--primary-green-dark) !important;
  text-decoration: underline !important;
}

/* Secondary Orange Outline Button */
.btn-secondary {
  border: 2px solid var(--secondary-orange) !important;
  color: var(--secondary-orange) !important;
}

.btn-secondary:hover {
  border-color: var(--secondary-orange-hover) !important;
  color: var(--secondary-orange-hover) !important;
  text-decoration: underline !important;
}

/* Neutral Border Button */
.btn-outline {
  border: 2px solid var(--border-dark) !important;
  color: var(--text-main) !important;
}

.btn-outline:hover {
  border-color: var(--text-main) !important;
  color: #000000 !important;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   TOP BAR (STRIP BIRU & KONTAK HEADER SEJAJAR SEMPURNA)
   ========================================================================== */
.top-bar {
  background: #ffffff;
  border-top: 3px solid #1e3a8a; /* Strip garis biru di bagian paling atas */
  border-bottom: 1px solid var(--border-light);
  padding: 8px 0;
  font-size: 0.86rem;
  color: #4b5563;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.top-bar-contact {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4b5563;
  line-height: 1;
}

.topbar-item a {
  color: #4b5563;
  text-decoration: none;
  line-height: 1;
  transition: color var(--transition-fast);
}

.topbar-item a:hover {
  color: var(--primary-green);
}

.icon-svg {
  stroke: #64748b;
  flex-shrink: 0;
  display: block;
}

.top-bar-emergency {
  display: flex;
  align-items: center;
}

.emergency-text {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-green);
  letter-spacing: 0.3px;
  line-height: 1;
}

/* ==========================================================================
   MAIN HEADER & NAVBAR (SMART REVEAL ON SCROLL UP)
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  z-index: 99999 !important;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  will-change: transform;
}

/* Header saat mengambang */
.main-header.header-scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

/* Header saat disembunyikan (scroll ke bawah) */
.main-header.header-hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Hamburger Button untuk Mobile (Sembunyikan di Desktop) */
.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #1e293b;
  font-size: 1.2rem;
  cursor: pointer;
  outline: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Nav Menu Kanan */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ==========================================================================
   DROPDOWN MENU: CLEAN MINIMALIST DENGAN ACTIVE TRIGGER PENANDA
   ========================================================================== */
.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  color: #334155;
  font-weight: 700;
  font-size: 0.92rem;
  position: relative;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.nav-link i.nav-arrow {
  font-size: 0.7rem;
  color: #94a3b8;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Hover Desktop dengan Mouse Cursor */
@media (hover: hover) and (pointer: fine) {
  .nav-item:hover > .nav-link {
    color: #16a34a;
    background: transparent;
  }

  .nav-item:hover > .nav-link i.nav-arrow {
    transform: rotate(180deg);
    color: #16a34a;
  }

  .nav-item:hover .dropdown-menu {
    display: block;
  }
}

/* Modifier Class untuk Touchscreen Tablet & Click Event via JS */
.nav-item.open-dropdown > .nav-link {
  color: #16a34a;
  background: transparent;
}

.nav-item.open-dropdown > .nav-link i.nav-arrow {
  transform: rotate(180deg);
  color: #16a34a;
}

.nav-item.open-dropdown .dropdown-menu {
  display: block !important;
}

/* Reset Visual saat Dropdown Ditutup (Mencegah Focus Lock di Touchscreen) */
.nav-item:not(.open-dropdown):not(.active) > .nav-link,
.nav-item:not(.open-dropdown):not(.active) > .nav-link:focus,
.nav-item:not(.open-dropdown):not(.active) > .nav-link:focus-visible {
  color: #334155;
}

.nav-item:not(.open-dropdown):not(.active) > .nav-link i.nav-arrow,
.nav-item:not(.open-dropdown):not(.active) > .nav-link:focus i.nav-arrow,
.nav-item:not(.open-dropdown):not(.active) > .nav-link:focus-visible i.nav-arrow {
  transform: rotate(0deg) !important;
  color: #94a3b8 !important;
}

/* Indikator Garis Hijau di Menu Halaman Aktif */
.nav-item.active > .nav-link {
  color: #16a34a;
  font-weight: 800;
}

.nav-item.active > .nav-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 14px;
  right: 14px;
  height: 3px;
  background: #16a34a;
  border-radius: 3px 3px 0 0;
}

/* Dropdown Menu Bersih: Floating Clean Popover */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: 6px;
  left: 0;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  min-width: 230px;
  z-index: 1050;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  padding: 8px;
  animation: dropdownFadeIn 0.2s ease forwards;
}

/* Jembatan Tak Terlihat (Invisible Hover Bridge): Mencegah dropdown tertutup saat kursor bergeser */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
  display: block;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Khusus menu dropdown paling kanan (Lainnya) agar rata kanan */
.nav-item:last-child .dropdown-menu {
  left: auto;
  right: 0;
}

.dropdown-item {
  margin-bottom: 2px;
}

.dropdown-item:last-child {
  margin-bottom: 0;
}

.dropdown-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.dropdown-item a:hover {
  color: #16a34a;
  background: #f0fdf4;
  padding-left: 18px;
}

.dropdown-item a i {
  font-size: 0.95rem;
  color: #64748b;
  width: 18px;
  text-align: center;
  transition: color var(--transition-fast);
}

.dropdown-item a:hover i {
  color: #16a34a;
}

/* Mobile Nav Toggle Button */
.mobile-nav-toggle {
  display: none;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  padding: 8px 12px;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
  color: #0f172a;
  transition: all var(--transition-fast);
}

.mobile-nav-toggle:hover {
  background: #f0fdf4;
  color: var(--primary-green);
  border-color: var(--primary-green);
}

/* ==========================================================================
   TRANSPARENT-TO-SOLID NAVBAR & TOPBAR (MEDIXWEB STYLE UNTUK HOMEPAGE)
   ========================================================================== */
/* 1. Top Bar Transparan di Homepage */
body.home-transparent-nav .top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: transparent !important;
  border-top: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 8px 0;
}

body.home-transparent-nav .top-bar .topbar-item,
body.home-transparent-nav .top-bar .topbar-item a,
body.home-transparent-nav .top-bar .topbar-item span {
  color: #ffffff !important;
}

body.home-transparent-nav .top-bar .icon-svg {
  stroke: #ffffff !important;
}

body.home-transparent-nav .top-bar .emergency-text {
  color: #4ade80 !important;
  font-weight: 800;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* 2. Main Header Navbar di Bawah Topbar */
body.home-transparent-nav .main-header {
  position: absolute;
  top: 38px;
  left: 0;
  width: 100%;
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Saat di-scroll: Menjadi Solid Putih Bersih */
body.home-transparent-nav .main-header.header-scrolled {
  position: fixed !important;
  top: 0 !important;
  background: #ffffff !important;
  border-bottom: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* --- Header Scrolled State (Latar Putih) --- */
body.home-transparent-nav .main-header.header-scrolled .nav-link {
  color: #334155 !important;
}

body.home-transparent-nav .main-header.header-scrolled .nav-link i.nav-arrow {
  color: #94a3b8 !important;
}

/* Modifier saat dropdown dibuka di Scrolled Header (Touchscreen & Desktop) */
body.home-transparent-nav .main-header.header-scrolled .nav-item.open-dropdown > .nav-link {
  color: #16a34a !important;
}

body.home-transparent-nav .main-header.header-scrolled .nav-item.open-dropdown > .nav-link i.nav-arrow {
  color: #16a34a !important;
  transform: rotate(180deg) !important;
}

/* Hover Mouse Desktop khusus Header Scrolled */
@media (hover: hover) and (pointer: fine) {
  body.home-transparent-nav .main-header.header-scrolled .nav-item:hover > .nav-link {
    background: transparent !important;
    color: #16a34a !important;
  }

  body.home-transparent-nav .main-header.header-scrolled .nav-item:hover > .nav-link i.nav-arrow {
    color: #16a34a !important;
    transform: rotate(180deg);
  }
}

/* Khusus Desktop (Layar Lebar >= 992px): Transisi Navbar Transparan ke Solid */
@media (min-width: 992px) {
  /* Teks Menu Saat Transparan (Putih Bersih) */
  body.home-transparent-nav .main-header:not(.header-scrolled) .nav-link {
    color: #ffffff !important;
    transition: all 0.2s ease;
  }

  body.home-transparent-nav .main-header:not(.header-scrolled) .nav-link i.nav-arrow {
    color: rgba(255, 255, 255, 0.75) !important;
    transition: transform 0.2s ease, color 0.2s ease;
  }

  /* Modifier saat dropdown dibuka di Transparent Header (Touchscreen & Desktop) */
  body.home-transparent-nav .main-header:not(.header-scrolled) .nav-item.open-dropdown > .nav-link {
    color: #4ade80 !important;
  }

  body.home-transparent-nav .main-header:not(.header-scrolled) .nav-item.open-dropdown > .nav-link i.nav-arrow {
    color: #4ade80 !important;
    transform: rotate(180deg) !important;
  }

  /* Trigger Hover Mouse Desktop saat Transparan */
  @media (hover: hover) and (pointer: fine) {
    body.home-transparent-nav .main-header:not(.header-scrolled) .nav-item:hover > .nav-link {
      background: transparent !important;
      color: #4ade80 !important;
      box-shadow: none !important;
      border-radius: 0 !important;
    }

    body.home-transparent-nav .main-header:not(.header-scrolled) .nav-item:hover > .nav-link i.nav-arrow {
      color: #4ade80 !important;
      transform: rotate(180deg);
    }
  }

  /* Dropdown Menu Saat Navbar Transparan (Floating Clean Popover 12px) */
  body.home-transparent-nav .main-header:not(.header-scrolled) .dropdown-menu {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16) !important;
    padding: 8px !important;
    top: 100% !important;
    margin-top: 6px !important;
  }

  body.home-transparent-nav .main-header:not(.header-scrolled) .nav-item:last-child .dropdown-menu {
    border-radius: 12px !important;
  }
}

body.home-transparent-nav .main-header:not(.header-scrolled) .logo-img {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

/* ==========================================================================
   MEDIXWEB IMMERSIVE HERO SECTION (VIEWPORT FIT 100VH - GAGAH & BERWIBAWA)
   ========================================================================== */
.hero-medix-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 40px;
  overflow: hidden;
  background-color: #0f172a;
}

/* Background Carousel Slides */
.medix-carousel-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.medix-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 6s ease-out;
}

.medix-slide-bg.active {
  opacity: 1;
  transform: scale(1);
}

/* Solid Flat Dark Overlay (Teks Putih Selalu Terang & Tajam) */
.medix-overlay-solid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.45);
  z-index: 2;
}

/* Kontainer Konten Hero */
.medix-hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

.medix-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 0;
  padding-right: 40px; /* Ruang aman agar bebas tabrakan dengan floating widgets */
}

/* Sisi Kiri: Frame Bergaris Hijau Menyatu (Heading + Deskripsi) */
.medix-left-col {
  display: flex;
  flex-direction: column;
}

.medix-hero-content-frame {
  border-left: 4px solid #16a34a;
  padding-left: 18px;
  margin-bottom: 26px;
  max-width: 580px;
}

.medix-hero-title {
  font-size: clamp(2.2rem, 3.6vw, 3.35rem);
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.medix-hero-title .hero-line {
  display: block;
  color: #ffffff;
  white-space: nowrap;
}

.medix-hero-title .hero-line span,
.medix-hero-title span.hero-highlight,
.medix-hero-title span:not(.hero-line) {
  color: #4ade80;
}

/* Deskripsi Bawah Kiri */
.medix-left-desc-box {
  border-left: none;
  padding-left: 0;
  max-width: 100%;
}

.medix-desc-title {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.medix-desc-text {
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.medix-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.btn-medix-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #0f172a !important;
  padding: 13px 28px;
  border-radius: 30px;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none !important;
  border: 2px solid #ffffff;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-medix-primary:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff !important;
}

.btn-medix-primary i {
  width: 24px;
  height: 24px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  transition: all var(--transition-fast);
}

.btn-medix-primary:hover i {
  background: #ffffff;
  color: #16a34a;
}

.btn-medix-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  padding: 13px 24px;
  border-radius: 30px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  transition: all var(--transition-fast);
}

.btn-medix-outline:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #ffffff;
  color: #ffffff !important;
}

.btn-medix-outline i {
  font-size: 0.95rem;
}

/* Sisi Kanan: 2 Floating Cards (MedixWeb Signature Cards) */
.medix-right-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: flex-start;
}

.medix-glass-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 18px 18px;
  backdrop-filter: blur(8px);
  color: #ffffff;
}

.card-akreditasi {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  align-self: flex-start;
  height: auto;
}

.card-stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: block;
  margin-bottom: 2px;
  line-height: 1.2;
}

.card-stat-grade {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin: 0;
}

.card-stat-big {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.card-stat-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #facc15;
  font-size: 1.15rem;
  margin: 2px 0 4px 0;
  filter: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

.card-stat-stars i {
  color: #facc15 !important;
  filter: none !important;
  text-shadow: none !important;
}

.card-akreditasi-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 3px 10px;
  border-radius: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.2px;
  margin-top: 2px;
}

.card-stat-desc {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Grid Badge Nilai Pelayanan */
.medix-tags-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.medix-tag-item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 11px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
}

.medix-tag-item.tag-active {
  background: #ffffff;
  color: #0f172a;
}

.medix-tag-item i {
  font-size: 1.05rem;
  color: #4ade80;
}

.medix-tag-item.tag-active i {
  color: #16a34a;
}

.medix-tag-item span {
  font-size: 0.76rem;
  font-weight: 800;
}

/* Garis Indikator Carousel di Paling Bawah Layar */
.medix-carousel-bars {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: auto;
}

.medix-bar-btn {
  height: 4px;
  width: 60px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}

.medix-bar-btn.active {
  width: 110px;
  background: #ffffff;
}

/* Responsive Hero MedixWeb */
@media (max-width: 1024px) {
  .hero-medix-section {
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 135px 0 40px;
  }

  .medix-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-right: 0;
  }

  .medix-hero-title {
    font-size: clamp(1.9rem, 4vw, 2.45rem);
    line-height: 1.2;
  }

  .medix-hero-title .hero-line {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  /* 1. Top Bar disembunyikan di Mobile Homepage agar Navbar langsung di Paling Atas */
  body.home-transparent-nav .top-bar {
    display: none !important;
  }

  /* 2. Main Header Transparan di Mobile Homepage (Sama Persis Desktop) */
  body.home-transparent-nav .main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 12px 0;
    transition: all 0.3s ease;
  }

  /* Tombol Hamburger Kaca saat Navbar Transparan */
  body.home-transparent-nav .main-header:not(.header-scrolled) .mobile-nav-toggle {
    background: rgba(255, 255, 255, 0.18) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
    border-radius: 8px;
  }

  body.home-transparent-nav .main-header:not(.header-scrolled) .logo-img {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  }

  /* Saat Di-scroll: Menjadi Solid Putih Bersih */
  body.home-transparent-nav .main-header.header-scrolled {
    position: fixed !important;
    top: 0 !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    padding: 10px 0;
  }

  body.home-transparent-nav .main-header.header-scrolled .mobile-nav-toggle {
    background: #f8fafc !important;
    border: 1.5px solid #cbd5e1 !important;
    color: #0f172a !important;
  }

  /* 3. Hero Section Mobile Lengkap & Kaya Informasi (Immersive Flow) */
  .hero-medix-section {
    height: auto;
    min-height: 100vh;
    max-height: none;
    padding: 95px 0 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .medix-hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
    padding-right: 0 !important;
  }

  .medix-left-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* 1. Frame Bergaris Hijau Menyatu (Judul + Deskripsi Rata Kiri Sempurna) */
  .medix-hero-content-frame {
    display: block !important;
    border-left: 3.5px solid #16a34a !important;
    padding-left: 14px !important;
    margin-bottom: 0 !important;
  }

  .medix-hero-title {
    font-size: clamp(1.55rem, 5vw, 1.85rem) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 10px !important;
  }

  .medix-hero-title .hero-line {
    display: block !important;
    white-space: normal !important;
  }

  /* 2. Deskripsi Panjang Komprehensif (Di dalam frame yang sama, tanpa garis dobel) */
  .medix-left-desc-box {
    display: block !important;
    border-left: none !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
  }

  .medix-desc-title {
    font-size: 0.98rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 3px !important;
  }

  .medix-desc-text {
    font-size: 0.84rem !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  /* 3. Dua Tombol Aksi CTA (Mudah dijangkau jempol) */
  .medix-hero-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 2px !important;
    margin-bottom: 0 !important;
  }

  .btn-medix-primary {
    padding: 11px 10px !important;
    font-size: 0.86rem !important;
    justify-content: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
  }

  .btn-medix-primary i {
    width: 20px !important;
    height: 20px !important;
    font-size: 0.65rem !important;
  }

  .btn-medix-outline {
    padding: 11px 10px !important;
    font-size: 0.86rem !important;
    justify-content: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
  }

  /* 4. Dua Kartu Nilai (Akreditasi & Pilar) Sejajar Rata Atas */
  .medix-right-col {
    order: 4 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    align-items: flex-start !important;
    margin-top: 6px !important;
    margin-bottom: 0 !important;
  }

  .medix-glass-card {
    padding: 13px 12px !important;
    border-radius: 14px !important;
    display: flex !important;
    flex-direction: column !important;
    background: rgba(255, 255, 255, 0.14) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
  }

  .card-akreditasi {
    padding: 13px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 5px !important;
    align-self: flex-start !important;
    height: auto !important;
  }

  .card-stat-label {
    font-size: 0.66rem !important;
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
  }

  .card-stat-big {
    font-size: 2.3rem !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }

  .card-stat-grade {
    font-size: 1.15rem !important;
    line-height: 1.1 !important;
    margin-bottom: 2px !important;
  }

  .card-stat-stars {
    font-size: 1rem !important;
    gap: 3px !important;
    margin: 2px 0 4px !important;
    filter: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    color: #facc15 !important;
  }

  .card-stat-stars i {
    color: #facc15 !important;
    filter: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
  }

  .card-akreditasi-badge {
    font-size: 0.65rem !important;
    padding: 3px 8px !important;
    margin-top: 2px !important;
    align-self: flex-start !important;
  }

  .card-stat-desc {
    font-size: 0.72rem !important;
    line-height: 1.3 !important;
    margin: 0 !important;
  }

  .medix-right-col .medix-glass-card:nth-child(2) {
    display: flex !important;
  }

  .medix-tags-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 5px !important;
  }

  .medix-tag-item {
    padding: 6px 4px !important;
    border-radius: 8px !important;
    font-size: 0.66rem !important;
    gap: 3px !important;
  }

  .medix-tag-item i {
    font-size: 0.85rem !important;
  }

  .medix-tag-item span {
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
  }

  .medix-carousel-bars {
    bottom: 16px;
    gap: 8px;
    margin-top: 0;
  }

  .medix-bar-btn {
    width: 35px;
    height: 3.5px;
  }

  .medix-bar-btn.active {
    width: 65px;
  }
}

/* ==========================================================================
   4 PILAR AKSES CEPAT PASIEN (QUICK ACTION MEDICAL PILLARS - TANPA BADGE)
   ========================================================================== */
.quick-pillars-section {
  padding: 3.5rem 0 3.5rem;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pillar-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
  position: relative;
  box-shadow: none;
}

.pillar-main-content {
  display: flex;
  flex-direction: column;
}

.pillar-text-wrap {
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: #16a34a;
  box-shadow: none;
}

.pillar-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #dcfce7;
  transition: transform 0.2s ease;
}

.pillar-card:hover .pillar-icon-wrap {
  transform: scale(1.06);
}

.pillar-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.pillar-desc {
  font-size: 0.86rem;
  line-height: 1.55;
  color: #475569;
  margin-bottom: 20px;
  flex: 1;
}

.pillar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #16a34a;
  transition: gap 0.2s ease;
}

.pillar-card:hover .pillar-cta {
  gap: 12px;
}

@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* Mode Mobile: Opsi 1 (List Kartu Horisontal Kompak & Ergonomis) */
@media (max-width: 768px) {
  .quick-pillars-section {
    padding: 1.8rem 0;
  }

  .pillars-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .pillar-card {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 13px 16px !important;
    border-radius: 12px !important;
    gap: 12px !important;
  }

  .pillar-card:hover {
    transform: none !important;
  }

  .pillar-card:active {
    background: #f8fafc !important;
    border-color: #16a34a !important;
  }

  .pillar-main-content {
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
    flex: 1 !important;
    min-width: 0 !important;
  }

  .pillar-icon-wrap {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 10px !important;
    font-size: 1.15rem !important;
    margin-bottom: 0 !important;
  }

  .pillar-text-wrap {
    flex: 1 !important;
    min-width: 0 !important;
  }

  .pillar-title {
    font-size: 0.96rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 2px !important;
    line-height: 1.25 !important;
  }

  .pillar-desc {
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
    color: #64748b !important;
    margin-bottom: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .pillar-cta {
    margin-left: 6px !important;
  }

  .pillar-cta span {
    display: none !important;
  }

  .pillar-cta i {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 50% !important;
    background: #f0fdf4 !important;
    color: #16a34a !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.8rem !important;
    transition: all 0.2s ease !important;
  }

  .pillar-card:active .pillar-cta i {
    background: #16a34a !important;
    color: #ffffff !important;
  }
}

/* ==========================================================================
   SECTION TENTANG KAMI: CONTENT & VALUE-DRIVEN (TANPA FOTO, TANPA BADGE)
   ========================================================================== */
.about-commitment-section {
  padding: 4.5rem 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.about-commitment-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.about-sub-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: #15803d;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.about-main-title {
  font-size: 2.2rem;
  line-height: 1.25;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.about-main-title span {
  color: #16a34a;
}

.about-desc-p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 14px;
}

.about-cta-wrap {
  margin-top: 18px;
}

.btn-about-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #16a34a;
  border: 2px solid #16a34a;
  padding: 11px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-about-outline:hover {
  background: #16a34a;
  color: #ffffff;
}

/* Sisi Kanan: 3 Kartu Nilai & Pilar Komitmen */
.about-right-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.value-feature-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: none;
  transition: border-color 0.2s ease;
}

.value-feature-card:hover {
  border-color: #16a34a;
}

.value-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-feature-text h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.3;
}

.value-feature-text p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: #64748b;
  margin: 0;
}

@media (max-width: 1024px) {
  .about-commitment-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .about-commitment-section {
    padding: 2.2rem 0;
  }

  .about-commitment-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .about-sub-label {
    font-size: 0.74rem;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
  }

  .about-main-title {
    font-size: 1.55rem;
    line-height: 1.25;
    letter-spacing: -0.4px;
    margin-bottom: 12px;
  }

  .about-desc-p {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 8px;
  }

  .about-desc-p.about-desc-extra {
    display: none; /* Sembunyikan paragraf kedua di mobile agar ringkas */
  }

  .about-cta-wrap {
    margin-top: 14px;
  }

  .btn-about-outline {
    width: 100%;
    justify-content: center;
    padding: 11px 16px;
    font-size: 0.86rem;
  }

  .about-right-values {
    display: flex;
    flex-direction: column;
    gap: 9px;
  }

  .value-feature-card {
    padding: 11px 14px;
    border-radius: 12px;
    gap: 12px;
    align-items: center;
  }

  .value-feature-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 8px;
    font-size: 1rem;
    margin-top: 0;
  }

  .value-feature-text h4 {
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 2px;
    line-height: 1.25;
  }

  .value-feature-text p {
    font-size: 0.78rem;
    line-height: 1.38;
    color: #64748b;
    margin: 0;
  }
}

.rc-wa-phone-number {
  font-size: 1.35rem;
  font-weight: 800;
  color: #16a34a;
  letter-spacing: 0.4px;
}

.rc-wa-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.btn-wa-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #22c55e !important;
  color: #ffffff !important;
  border: 1px solid #16a34a !important;
  padding: 9px 16px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none !important;
  transition: all var(--transition-fast);
}

.btn-wa-solid:hover {
  background: #16a34a !important;
}

.btn-wa-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  color: #e11d48 !important;
  border: 1px solid #fda4af !important;
  padding: 9px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none !important;
  transition: all var(--transition-fast);
}

.btn-wa-outline:hover {
  border-color: #e11d48 !important;
  background: #fff1f2 !important;
}

.rc-wa-info-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}

.btn-humas-cyan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0284c7 !important;
  color: #ffffff !important;
  padding: 9px 16px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none !important;
  transition: all var(--transition-fast);
}

.btn-humas-cyan:hover {
  background: #0369a1 !important;
}

.card {
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  background: #ffffff;
  overflow: hidden;
  padding: 22px;
  transition: border-color var(--transition-fast);
}

.card:hover {
  border-color: var(--primary-green);
}

/* ==========================================================================
   SECTION STATISTIK COUNTER: CLEAN MINIMALIST STRIP (TANPA BOX, TANPA BADGE)
   ========================================================================== */
.rc-counter-section {
  padding: 3.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.rc-counter-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.rc-counter-col {
  text-align: center;
  padding: 10px 20px;
  position: relative;
}

.rc-counter-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #e2e8f0;
}

.rc-counter-icon {
  font-size: 1.4rem;
  color: #16a34a;
  margin-bottom: 8px;
  display: inline-block;
}

.rc-counter-number {
  font-size: 3rem;
  font-weight: 800;
  color: #16a34a;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.rc-counter-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #334155;
  margin: 0;
}

@media (max-width: 1024px) {
  .rc-counter-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }
  .rc-counter-col:nth-child(2)::after {
    display: none;
  }
}

/* Mode Mobile: Grid 2x2 Simetris & Sangat Rapi */
@media (max-width: 768px) {
  .rc-counter-section {
    padding: 2rem 0;
  }

  .rc-counter-strip {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px 0 !important;
    align-items: start !important;
  }

  .rc-counter-col {
    padding: 6px 12px !important;
    position: relative !important;
  }

  /* Garis Pemisah Vertikal di Tengah (Kolom Kiri) */
  .rc-counter-col:nth-child(odd)::after {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    top: 10% !important;
    height: 80% !important;
    width: 1px !important;
    background: #e2e8f0 !important;
  }

  /* Hilangkan Garis di Kolom Kanan */
  .rc-counter-col:nth-child(even)::after {
    display: none !important;
  }

  .rc-counter-icon {
    font-size: 1.15rem !important;
    margin-bottom: 4px !important;
  }

  .rc-counter-number {
    font-size: 2.1rem !important;
    font-weight: 800 !important;
    line-height: 1.05 !important;
    margin-bottom: 4px !important;
    letter-spacing: -0.5px !important;
  }

  .rc-counter-label {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #334155 !important;
  }
}

/* ==========================================================================
   SECTION POSTER INFORMASI TERBARU: CLEAN GALLERY GRID (TANPA BADGE, NO SHADOW)
   ========================================================================== */
.rc-poster-section {
  padding: 4.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.section-header-clean {
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-sub-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: #15803d;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.section-title-clean {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}

.section-desc-clean {
  font-size: 0.95rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.poster-slider-container {
  position: relative;
  width: 100%;
  padding: 0 54px;
  box-sizing: border-box;
}

.poster-slide-batch {
  display: none;
}

.poster-slide-batch.active {
  display: block;
}

.poster-slider-nav,
.poster-slider-nav:hover,
.poster-slider-nav:focus,
.poster-slider-nav:active {
  transform: translateY(-50%) !important;
  outline: none;
}

.poster-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 50;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  user-select: none;
  -webkit-user-select: none;
}

.poster-slider-nav:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
}

.poster-slider-nav:active {
  background: #15803d;
  border-color: #15803d;
  color: #ffffff;
  transform: translateY(-50%) !important;
}

.poster-slider-nav.prev-btn {
  left: 0;
}

.poster-slider-nav.next-btn {
  right: 0;
}

.poster-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.poster-page-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.poster-page-dot:hover {
  background: #94a3b8;
}

.poster-page-dot:active {
  transform: none !important;
}

.poster-page-dot.active {
  width: 30px;
  border-radius: 12px;
  background: #16a34a;
}

.rc-poster-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.poster-gallery-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
  position: relative;
  box-shadow: none;
}

.poster-gallery-card:hover {
  border-color: #16a34a;
  transform: translateY(-4px);
  box-shadow: none;
}

.poster-img-container {
  position: relative;
  width: 100%;
  height: 420px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.poster-img-fluid {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

.poster-zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.poster-gallery-card:hover .poster-zoom-overlay {
  opacity: 1;
}

.btn-zoom-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: 25px;
  border: 1.5px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.poster-mobile-dots {
  display: none;
}

@media (max-width: 1024px) {
  .poster-slider-container {
    padding: 0 48px;
  }
  .rc-poster-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .poster-img-container {
    height: 380px;
  }
}

/* Mode Mobile: Horizontal Swipeable Snap Carousel */
@media (max-width: 768px) {
  .rc-poster-section {
    padding: 2.2rem 0 2rem;
  }

  .poster-slider-container {
    padding: 0 !important;
    overflow: visible;
  }

  .poster-slider-nav {
    display: none !important;
  }

  .poster-slider-dots {
    display: none !important;
  }

  .poster-slider-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 14px !important;
    padding: 4px 16px 14px !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    scrollbar-width: none !important;
  }

  .poster-slider-track::-webkit-scrollbar {
    display: none !important;
  }

  .poster-slide-batch {
    display: contents !important;
  }

  .rc-poster-gallery-grid {
    display: contents !important;
  }

  .poster-gallery-card {
    flex: 0 0 80% !important;
    max-width: 80% !important;
    min-width: 80% !important;
    scroll-snap-align: center !important;
    border-radius: 14px !important;
  }

  .poster-img-container {
    height: 340px !important;
  }

  .poster-mobile-dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 6px !important;
  }

  .poster-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: all 0.25s ease;
  }

  .poster-dot.active {
    width: 18px;
    border-radius: 10px;
    background: #16a34a;
  }
}

/* ==========================================================================
   LIVE SEARCH TOOLBAR (LAYANAN RAWAT INAP, RAWAT JALAN, PENUNJANG, IGD)
   ========================================================================== */
.service-search-toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.service-search-box {
  display: flex;
  align-items: center;
  position: relative;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 50px;
  padding: 6px 10px 6px 16px;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.service-search-box:focus-within {
  border-color: var(--primary-green, #16a34a);
  box-shadow: none;
}

.service-search-box .search-icon {
  color: #64748b;
  font-size: 0.95rem;
  margin-right: 10px;
  position: static;
  pointer-events: auto;
}

.service-search-control {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 500;
  color: #0f172a;
  width: 100%;
  padding: 4px 0;
}

.service-search-control::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.service-search-box .btn-clear-search {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 2px 6px;
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
}

.service-search-box .btn-clear-search:hover {
  color: #0f172a;
  background: transparent;
}

@media (max-width: 640px) {
  .service-search-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .service-search-box {
    max-width: 100%;
  }
}

/* ==========================================================================
   SECTION LAYANAN UNGGULAN: CLEAN INTERACTIVE MEDICAL TABS (SERAGAM & NO SHADOW)
   ========================================================================== */
.rc-services-tabs-section {
  padding: 4.5rem 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}

/* Deretan 12 Tombol Tab Navigasi Poliklinik (Horizontal Scrollable Slider) */
.service-tabs-nav-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1.8rem;
  padding: 0 48px;
}

.service-tabs-nav {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 12px;
  padding: 6px 2px 8px 2px;
  width: 100%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.service-tabs-nav::-webkit-scrollbar {
  display: none;
}

.service-tab-btn {
  flex: 0 0 auto;
  width: auto;
  min-width: max-content;
  max-width: none;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  border-radius: 30px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  transition: all 0.2s ease;
  box-shadow: none;
  white-space: nowrap;
}

.service-tab-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
}

.service-tab-btn.active {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
  box-shadow: none;
}

.service-tab-btn span {
  white-space: nowrap;
}

.tabs-scroll-btn,
.tabs-scroll-btn:hover,
.tabs-scroll-btn:focus,
.tabs-scroll-btn:active {
  transform: translateY(-50%) !important;
  outline: none;
}

.tabs-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  font-size: 0.95rem;
  user-select: none;
  -webkit-user-select: none;
}

.tabs-scroll-btn:hover {
  background: #16a34a;
  color: #ffffff;
  border-color: #16a34a;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%) !important;
}

.tabs-scroll-btn:active {
  background: #15803d;
  border-color: #15803d;
  color: #ffffff;
  transform: translateY(-50%) !important;
}

.tabs-scroll-btn.scroll-left {
  left: 0;
}

.tabs-scroll-btn.scroll-right {
  right: 0;
}

@media (max-width: 768px) {
  .service-tabs-nav-wrapper {
    padding: 0;
  }
  .tabs-scroll-btn {
    display: none;
  }
}

.service-tab-btn i {
  font-size: 1.25rem;
  color: #64748b;
  transition: color 0.2s ease;
}

.service-tab-btn:hover:not(.active) {
  border-color: #16a34a;
  background: #f0fdf4;
  color: #16a34a;
  transform: none !important;
}

.service-tab-btn:hover:not(.active) i {
  color: #16a34a;
}

/* Status Tab Aktif (Hijau Solid, Teks Putih, Tanpa Segitiga) */
.service-tab-btn.active {
  background: #16a34a !important;
  border-color: #16a34a !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.service-tab-btn.active i {
  color: #ffffff !important;
}

.service-tab-btn.active::after {
  display: none !important; /* Hapus segitiga jadul */
}

/* Panel Konten Tab */
.service-tab-panel {
  display: none;
}

.service-tab-panel.active {
  display: block;
  animation: fadeInTab 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 32px;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 28px;
}

/* Frame Foto Persegi Modern */
.service-panel-img-box {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.service-panel-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-panel-desc h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.25;
}

.service-lead {
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
  line-height: 1.5;
}

.service-panel-desc p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-schedule-box {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  border-left: 4px solid #16a34a;
  padding: 10px 14px;
  border-radius: 8px;
  margin-top: 12px;
  font-size: 0.86rem;
  color: #1e293b;
}

.service-schedule-box strong {
  color: #16a34a;
  display: block;
  margin-bottom: 2px;
  font-weight: 700;
}

.service-schedule-box p {
  margin: 0 !important;
  color: #475569 !important;
  font-size: 0.86rem !important;
}

.btn-service-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #16a34a;
  color: #ffffff;
  padding: 9px 20px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid #16a34a;
  transition: all var(--transition-fast);
  margin-top: 14px;
}

.btn-service-action:hover {
  background: #15803d;
  border-color: #15803d;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .service-tabs-nav {
    grid-template-columns: repeat(4, 1fr);
  }
  .service-panel-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px;
  }
  .service-panel-img-box {
    height: 280px;
  }
}

/* Mode Mobile: Horizontal Scrollable Chip Tabs (Elegan, Cepat & Ramping) */
@media (max-width: 768px) {
  .rc-services-tabs-section {
    padding: 2rem 0 2.2rem;
  }

  .service-tabs-nav {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 8px !important;
    padding: 2px 16px 4px !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    margin-bottom: 8px !important;
    scrollbar-width: none !important;
  }

  .service-tabs-nav::-webkit-scrollbar {
    display: none !important;
  }

  .service-tab-btn {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 15px !important;
    border-radius: 30px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    font-size: 0.84rem !important;
    font-weight: 700 !important;
    border: 1.5px solid #e2e8f0 !important;
    background: #ffffff !important;
    color: #475569 !important;
  }

  .service-tab-btn i {
    font-size: 0.92rem !important;
    color: #16a34a !important;
    margin: 0 !important;
  }

  .service-tab-btn.active {
    background: #16a34a !important;
    border-color: #16a34a !important;
    color: #ffffff !important;
  }

  .service-tab-btn.active i {
    color: #ffffff !important;
  }

  .service-panel-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding: 14px !important;
    border-radius: 14px !important;
  }

  .service-panel-img-box {
    height: 180px !important;
    border-radius: 10px !important;
  }

  .service-panel-desc h3 {
    font-size: 1.2rem !important;
    margin-bottom: 4px !important;
    line-height: 1.25 !important;
  }

  .service-lead {
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
    color: #475569 !important;
    font-weight: 500 !important;
    margin-bottom: 6px !important;
  }

  /* Sembunyikan paragraf kedua yang terlalu panjang khusus di mobile */
  .service-desc-detail {
    display: none !important;
  }

  .service-schedule-box {
    background: #f0fdf4 !important;
    border: 1px solid #dcfce7 !important;
    border-left: 4px solid #16a34a !important;
    padding: 8px 12px !important;
    font-size: 0.78rem !important;
    margin-top: 4px !important;
    border-radius: 6px !important;
    display: block !important;
  }

  .service-schedule-box strong {
    font-size: 0.78rem !important;
    color: #16a34a !important;
    display: block !important;
    margin-bottom: 2px !important;
  }

  .service-schedule-box p {
    display: block !important;
    font-size: 0.76rem !important;
    color: #475569 !important;
    line-height: 1.35 !important;
    margin: 0 !important;
  }

  .btn-service-action {
    width: 100% !important;
    justify-content: center !important;
    padding: 9px 16px !important;
    font-size: 0.84rem !important;
    margin-top: 8px !important;
  }
}

/* ==========================================================================
/* ==========================================================================
   SECTION TESTIMONI PASIEN: AUTO-MOVING CAROUSEL (PAUSE ON HOVER, NO SHADOW)
   ========================================================================== */
.rc-testimonials-section {
  padding: 4.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.testi-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 8px 4px 16px;
}

.testi-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1); /* Animasi geser smooth & elegan */
  will-change: transform;
}

.testi-card-item {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  box-sizing: border-box;
}

.rc-testimonial-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.rc-testimonial-card:hover {
  border-color: #16a34a;
  transform: translateY(-3px);
  box-shadow: none;
}

.testimonial-rating {
  color: #eab308; /* Gold Star */
  font-size: 0.95rem;
  margin-bottom: 14px;
  display: flex;
  gap: 4px;
}

.testimonial-quote {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}

.testimonial-author-clean {
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-size: 0.98rem;
  color: #0f172a;
  font-weight: 800;
}

.author-status {
  font-size: 0.82rem;
  color: #16a34a;
  font-weight: 600;
}

/* Kontrol Navigasi Terpadu di Bawah Kartu (Bebas Tabrakan dengan Kartu) */
.testi-controls-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.testi-control-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: #0f172a;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: none;
}

.testi-control-btn:hover {
  background: #16a34a;
  color: #ffffff;
  border-color: #16a34a;
}

/* Dots Indikator */
.testi-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.testi-dot {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.testi-dot::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all 0.25s ease;
}

.testi-dot.active::before {
  width: 20px;
  border-radius: 10px;
  background: #15803d;
}

@media (max-width: 1024px) {
  .testi-card-item {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 640px) {
  .rc-testimonials-section {
    padding: 3rem 0;
  }
  .testi-card-item {
    flex: 0 0 100%;
  }
}
/* ==========================================================================
   SECTION FAQ: MODERN 2-COLUMN SPLIT (TANPA BADGE, NO BOX-SHADOW)
   ========================================================================== */
.rc-faq-section {
  padding: 4.5rem 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.rc-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 48px;
  align-items: start;
}

/* Kotak Bantuan Pasien di Kiri (Clean White, No Green BG) */
.rc-faq-contact-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px;
  box-shadow: none;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #16a34a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.contact-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  display: block;
  margin-bottom: 6px;
}

.contact-card-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 18px;
}

.btn-faq-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 20px;
  background: #16a34a;
  color: #ffffff;
  border: 1.5px solid #16a34a;
  border-radius: 25px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-faq-whatsapp:hover {
  background: #15803d;
  border-color: #15803d;
  color: #ffffff;
}

/* Kartu Accordion Terpisah di Kanan */
.faq-cards-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
  box-shadow: none;
}

.accordion-item.active {
  border-color: #16a34a;
}

.accordion-header {
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  background: #ffffff;
  border: none;
  font-size: 0.96rem;
  font-weight: 700;
  color: #1e293b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: all 0.2s ease;
}

.accordion-header:hover {
  background: #f8fafc;
  color: #16a34a;
}

.accordion-header::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 600;
  color: #64748b;
  margin-left: 14px;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.accordion-item.active .accordion-header {
  background: #ffffff;
  color: #16a34a;
  border-bottom: 1px solid #e2e8f0;
}

.accordion-item.active .accordion-header::after {
  content: "−";
  color: #16a34a;
}

.accordion-body {
  display: none;
  padding: 18px 20px;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.65;
  background: #ffffff;
}

.accordion-item.active .accordion-body {
  display: block;
}

@media (max-width: 1024px) {
  .rc-faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Mode Mobile: Alur FAQ-First Ramping (Judul -> 5 Accordion -> Kartu WhatsApp) */
@media (max-width: 768px) {
  .rc-faq-section {
    padding: 2.2rem 0 2.5rem;
  }

  .rc-faq-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .rc-faq-info-col {
    display: contents !important; /* Memungkinkan heading-box dan contact-card diatur urutannya */
  }

  .rc-faq-heading-box {
    order: 1 !important;
    width: 100% !important;
  }

  .rc-faq-heading-box .section-sub-label {
    font-size: 0.74rem !important;
    letter-spacing: 1.2px !important;
    margin-bottom: 6px !important;
  }

  .rc-faq-heading-box .section-title-clean {
    font-size: 1.55rem !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
    letter-spacing: -0.4px !important;
  }

  .rc-faq-heading-box .section-desc-clean {
    font-size: 0.84rem !important;
    line-height: 1.5 !important;
    margin-bottom: 4px !important;
  }

  .rc-faq-accordion-col {
    order: 2 !important;
    width: 100% !important;
  }

  .faq-cards-container {
    gap: 8px !important;
  }

  .accordion-item {
    border-radius: 10px !important;
  }

  .accordion-header {
    font-size: 0.86rem !important;
    padding: 12px 14px !important;
    line-height: 1.35 !important;
  }

  .accordion-header span i {
    font-size: 0.88rem !important;
    margin-right: 8px !important;
  }

  .accordion-header::after {
    font-size: 1.2rem !important;
    margin-left: 8px !important;
  }

  .accordion-body {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    padding: 12px 14px !important;
  }

  .rc-faq-contact-card {
    order: 3 !important;
    width: 100% !important;
    margin-top: 8px !important;
    padding: 16px !important;
    border-radius: 12px !important;
  }

  .contact-card-icon {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.1rem !important;
    border-radius: 8px !important;
    margin-bottom: 8px !important;
  }

  .contact-card-title {
    font-size: 1rem !important;
    margin-bottom: 4px !important;
  }

  .contact-card-desc {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
  }

  .btn-faq-whatsapp {
    padding: 9px 16px !important;
    font-size: 0.86rem !important;
  }
}

@keyframes fadeInAccordion {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   SECTION ARTIKEL & BERITA KESEHATAN: CLEAN EDITORIAL CARDS (NO BADGE, NO SHADOW)
   ========================================================================== */
.rc-articles-section {
  padding: 4.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.rc-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.rc-article-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  transition: border-color 0.2s ease;
}

.rc-article-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-4px) !important;
  transition: border-color 0.2s ease, transform 0.2s ease !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.rc-article-img-wrap {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
  background: #f8fafc;
  display: block;
}

.rc-article-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.rc-article-card:hover .rc-article-img-wrap img {
  transform: scale(1.05);
}

.rc-article-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rc-article-meta {
  display: flex;
  gap: 14px;
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 10px;
}

.rc-article-meta i {
  color: #16a34a;
  margin-right: 4px;
}

.rc-article-title {
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(1.4 * 1.12rem * 2);
}

.rc-article-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.rc-article-title a:hover {
  color: #16a34a;
}

.rc-article-excerpt {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(1.6 * 0.9rem * 2);
  flex: 1;
}

.rc-article-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
  margin-top: auto;
}

.rc-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #16a34a;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.rc-read-more:hover {
  color: #15803d;
  gap: 10px;
}

.btn-view-all-articles {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #16a34a;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 25px;
  border: 1.5px solid #16a34a;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-view-all-articles:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .rc-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mode Mobile: Opsi 1 (Kartu Berita Horisontal Kompak & Hemat Ruang) */
@media (max-width: 768px) {
  .rc-articles-section {
    padding: 2.2rem 0 2.5rem;
  }

  .rc-article-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .rc-article-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 10px !important;
    border-radius: 12px !important;
    gap: 12px !important;
    border: 1.5px solid #e2e8f0 !important;
  }

  .rc-article-card:hover {
    transform: none !important;
  }

  .rc-article-card:active {
    background: #f8fafc !important;
    border-color: #16a34a !important;
  }

  .rc-article-img-wrap {
    width: 90px !important;
    height: 90px !important;
    min-width: 90px !important;
    max-width: 90px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
  }

  .rc-article-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .rc-article-body {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    flex: 1 !important;
    min-width: 0 !important;
  }

  .rc-article-meta {
    font-size: 0.72rem !important;
    gap: 8px !important;
    margin-bottom: 3px !important;
    color: #64748b !important;
  }

  .rc-article-meta span:nth-child(2) {
    display: none !important; /* Sembunyikan nama dokter di kartu mini agar tidak sesak */
  }

  .rc-article-title {
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .rc-article-excerpt {
    display: none !important; /* Sembunyikan cuplikan teks di kartu mini beranda */
  }

  .rc-article-footer {
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 2px !important;
  }

  .rc-read-more {
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    color: #16a34a !important;
    gap: 4px !important;
  }

  .btn-view-all-articles {
    width: 100% !important;
    justify-content: center !important;
    padding: 10px 16px !important;
    font-size: 0.86rem !important;
    background: #ffffff !important;
    color: #16a34a !important;
    border: 1.5px solid #16a34a !important;
    margin-top: 0 !important;
  }

  .btn-view-all-articles:active {
    background: #16a34a !important;
    color: #ffffff !important;
  }
}

/* ==========================================================================
   HALAMAN VISI & MISI (PROFESSIONAL EDITORIAL CLEAN DESIGN - MEDIXWEB STYLE)
   ========================================================================== */

/* 1. Header Hero Editorial */
.vm-editorial-hero {
  background: #ffffff;
  padding: 3.25rem 0 2rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
}

.vm-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.vm-hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-top: 8px;
  margin-bottom: 14px;
}

.vm-hero-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0 auto;
}

/* 2. Visi Utama: Centerpiece Statement Card */
.vm-section-statement {
  padding: 4rem 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.vm-vision-card-center {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 34px 44px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vision-quote-icon {
  font-size: 1.45rem;
  color: #94a3b8;
  opacity: 0.5;
  margin-bottom: 6px;
  line-height: 1;
}

.vision-card-kicker {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #64748b;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
  line-height: 1.2;
}

.vision-quote-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.5;
  margin: 0 auto;
  padding: 0;
  letter-spacing: -0.2px;
  max-width: 760px;
}

/* 3. Section Misi: 5 Bento Grid Modern Clean Layout */
.vm-section-missions {
  padding: 4.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.vm-bento-container {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 20px;
  align-items: stretch;
}

/* Featured Left Bento Card (Misi 01) */
.vm-bento-featured {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 0.2s ease, transform 0.2s ease;
  box-shadow: none;
}

.vm-bento-featured:hover {
  border-color: #16a34a;
  transform: translateY(-3px);
  box-shadow: none;
}

.vm-bento-featured:hover .vm-card-num {
  color: #16a34a;
}

.vm-bento-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.vm-card-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: -0.5px;
  line-height: 1;
  transition: color 0.2s ease;
}

.vm-bento-featured .vm-card-num {
  font-size: 1.35rem;
}

.vm-bento-body {
  margin-bottom: 0;
}

.vm-featured-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.45;
  margin-bottom: 12px;
}

.vm-featured-sub {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* 4 Supporting Cards Right (2x2 Grid) */
.vm-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vm-bento-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 0.2s ease, transform 0.2s ease;
  box-shadow: none;
}

.vm-bento-card:hover {
  border-color: #16a34a;
  transform: translateY(-3px);
  box-shadow: none;
}

.vm-bento-card:hover .vm-card-num {
  color: #16a34a;
}

.vm-bento-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.vm-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 8px;
}

.vm-card-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Fallback Legacy Clean Grid */
.vm-mission-grid-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vm-mission-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.vm-mission-card:hover {
  border-color: #16a34a;
  transform: translateY(-3px);
}

.mission-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.mission-badge-num {
  font-size: 0.9rem;
  font-weight: 900;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-category-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #64748b;
  text-transform: uppercase;
}

.mission-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 8px;
}

.mission-card-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* 4. Section Nilai Budaya Kerja: 5 Prinsip "CITRA" */
.vm-section-culture {
  padding: 4.5rem 0 5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.vm-culture-grid-clean {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.culture-card-item {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.culture-card-item:hover {
  border-color: #16a34a;
  transform: translateY(-3px);
}

.culture-char-badge {
  font-size: 2.2rem;
  font-weight: 900;
  color: #16a34a;
  line-height: 1;
  margin-bottom: 12px;
  display: inline-block;
}

.culture-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.culture-desc {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* Responsif Mobile & Tablet untuk Halaman Visi Misi */
@media (max-width: 1024px) {
  .vm-bento-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vm-mission-grid-clean {
    grid-template-columns: repeat(2, 1fr);
  }
  .mission-card-wide {
    grid-column: span 2;
  }
  .vm-culture-grid-clean {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .vm-editorial-hero {
    padding: 3rem 0 2rem;
  }
  .vm-hero-title {
    font-size: 1.8rem;
    line-height: 1.25;
  }
  .vm-hero-subtitle {
    font-size: 0.88rem;
  }

  .vm-section-statement,
  .vm-section-missions,
  .vm-section-culture {
    padding: 2.2rem 0 2.5rem;
  }

  .vm-vision-card-center {
    padding: 24px 18px;
    border-radius: 12px;
  }
  .vision-quote-text {
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .vm-bento-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .vm-bento-featured {
    padding: 22px 18px;
  }
  .vm-bento-card {
    padding: 20px 16px;
  }

  .vm-mission-grid-clean {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .mission-card-wide {
    grid-column: auto !important;
  }
  .vm-mission-card {
    padding: 18px 16px;
    border-radius: 12px;
  }
  .mission-card-title {
    font-size: 1.05rem;
  }
  .mission-card-desc {
    font-size: 0.84rem;
  }

  .vm-culture-grid-clean {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .culture-card-item {
    padding: 16px;
    border-radius: 12px;
  }
}

/* ==========================================================================
   HALAMAN INDIKATOR MUTU PELAYANAN (CLEAN EDITORIAL)
   ========================================================================== */

/* 1. Metric Cards Section */
.mutu-metrics-section {
  padding: 3.5rem 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.mutu-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.metric-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--primary-green);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition-fast);
}

.metric-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  border-top-color: var(--primary-green);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.metric-icon-wrap {
  width: 46px;
  height: 46px;
  background: #f0fdf4;
  color: var(--primary-green);
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.metric-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1e293b;
  display: block;
  margin-bottom: 4px;
}

.metric-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* 2. Grid Dokumen / Poster Laporan Mutu */
.mutu-reports-section {
  padding: 4.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.mutu-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.mutu-report-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.mutu-report-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.mutu-preview-box {
  position: relative;
  height: 320px;
  background: #f8fafc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
}

.mutu-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.mutu-report-card:hover .mutu-img {
  transform: scale(1.03);
}

.mutu-hover-badge {
  position: absolute;
  bottom: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  opacity: 0;
  transition: all var(--transition-fast);
}

.mutu-preview-box:hover .mutu-hover-badge {
  opacity: 1;
}

/* Jadwal Dokter Poster Section (Tampilan Poster Besar, Jernih, & Megah) */
.jadwal-poster-section .mutu-report-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.jadwal-poster-section .mutu-preview-box {
  height: 640px;
  background: #f8fafc;
  padding: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.jadwal-poster-section .mutu-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

/* ==========================================================================
   GLOBAL REUSABLE POSTER ACTION BUTTONS (PREVIEW & DOWNLOAD)
   ========================================================================== */
.mutu-card-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.btn-poster-preview,
.btn-poster-download {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  height: 42px !important;
  padding: 0 16px !important;
  border-radius: 6px !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  transition: all var(--transition-fast) !important;
  line-height: 1 !important;
  width: 100% !important;
}

.btn-poster-preview {
  background: #ffffff !important;
  color: #334155 !important;
  border: 1.5px solid #cbd5e1 !important;
}

.btn-poster-preview:hover {
  background: #f8fafc !important;
  border-color: #94a3b8 !important;
  color: #0f172a !important;
}

.btn-poster-download {
  background: #16a34a !important;
  color: #ffffff !important;
  border: 1.5px solid #16a34a !important;
}

.btn-poster-download:hover {
  background: #15803d !important;
  border-color: #15803d !important;
  color: #ffffff !important;
}

/* Mutu Reports Section (Tampilan Poster Besar, Jernih, & Megah) */
.mutu-reports-section .mutu-report-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.mutu-reports-section .mutu-preview-box {
  height: 580px;
  background: #f8fafc;
  padding: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.mutu-reports-section .mutu-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.mutu-reports-section .mutu-card-footer {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  width: 100% !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
}

.mutu-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mutu-period-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #15803d;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  padding: 2px 10px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.mutu-period-tag.tag-orange {
  color: #c2410c;
  background: #ffedd5;
  border-color: #fed7aa;
}

.mutu-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.35;
  margin-bottom: 8px;
}

.mutu-card-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

/* ==========================================================================
   HALAMAN SASARAN KESELAMATAN PASIEN (SKP - MULTI-COLUMN & SHOWCASE POSTER)
   ========================================================================== */
.skp-main-section {
  padding: 4.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

/* Grid 3 Kolom Sejajar (2 Baris x 3 Kolom) */
.skp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.skp-item-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--primary-green);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.skp-item-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  border-top-color: var(--secondary-orange);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.skp-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.skp-num-badge {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-green);
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skp-item-card:hover .skp-num-badge {
  color: var(--secondary-orange);
  background: #fff7ed;
  border-color: #fed7aa;
}

.skp-icon-accent {
  font-size: 1.25rem;
  color: #94a3b8;
}

.skp-item-card:hover .skp-icon-accent {
  color: var(--secondary-orange);
}

.skp-item-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.35;
}

.skp-item-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* Section Showcase Poster Keselamatan Pasien (Poster Besar Terpusat dengan Deskripsi di Bawahnya) */
.skp-poster-section {
  padding: 3.5rem 0 5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.skp-poster-large-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.skp-poster-large-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.skp-poster-large-img-wrap {
  width: 100%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-bottom: 1px solid #e2e8f0;
  padding: 24px;
}

.skp-poster-large-img {
  max-width: 100%;
  height: auto;
  max-height: 650px;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.skp-poster-large-img-wrap:hover .skp-poster-large-img {
  transform: scale(1.02);
}

.skp-poster-large-body {
  padding: 32px 36px;
  background: #ffffff;
}

.skp-poster-large-body .mutu-period-tag {
  margin-bottom: 12px;
}

.skp-poster-large-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.35;
}

.skp-poster-large-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

.skp-poster-large-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   TABEL JADWAL DOKTER & BIAYA (CLEAN HEALTHCARE TABLE)
   ========================================================================== */
.table-container-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.custom-clean-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.custom-clean-table thead th {
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 800;
  padding: 16px 20px;
  border-bottom: 2px solid #e2e8f0;
  letter-spacing: -0.2px;
}

.custom-clean-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  vertical-align: middle;
}

.custom-clean-table tbody tr:last-child td {
  border-bottom: none;
}

.custom-clean-table tbody tr:hover {
  background: #f8fafc;
}

.poli-badge {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

/* ==========================================================================
   HALAMAN GALERI & DETAIL ALBUM RUANGAN / KEGIATAN (CLEAN HEALTHCARE)
   ========================================================================== */
.gallery-page-section {
  padding: 1.75rem 0 4.5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.gallery-detail-section {
  padding: 3.5rem 0 5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

/* 1. Filter Tab Bar & Live Search Galeri Utama */
.gallery-controls-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 3rem;
}

.gallery-search-wrap {
  width: 100%;
  max-width: 520px;
}

.search-input-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
}

.search-input-box:focus-within {
  border-color: var(--primary-green);
  box-shadow: none;
}

.search-input-box .search-icon {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-right: 12px;
  flex-shrink: 0;
}

.gallery-search-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1e293b;
  background: transparent;
}

.gallery-search-input::placeholder {
  color: #94a3b8;
}

.clear-search-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.clear-search-btn:hover {
  color: #ef4444;
}

.gallery-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-empty-state {
  text-align: center;
  padding: 4rem 1.5rem;
  background: #ffffff;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.gallery-empty-state .empty-icon {
  font-size: 2.8rem;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.gallery-empty-state .empty-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
}

.gallery-empty-state .empty-desc {
  font-size: 0.92rem;
  color: #64748b;
  max-width: 450px;
  margin: 0 auto 16px;
}

.gallery-filter-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.gallery-filter-btn:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.gallery-filter-btn.active {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: #ffffff;
}

/* 2. Grid Kartu Album Galeri */
.gallery-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-room-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-room-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.room-cover-box {
  position: relative;
  height: 220px;
  background: #0f172a;
  overflow: hidden;
  display: block;
}

.room-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-room-card:hover .room-cover-img {
  transform: scale(1.06);
}

.room-photo-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.8);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.room-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 163, 74, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.room-cover-box:hover .room-hover-overlay {
  opacity: 1;
}

.btn-overlay-view {
  background: #ffffff;
  color: #0f172a;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.room-card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.album-meta-tag {
  display: block;
  margin-bottom: 12px;
}

.album-meta-tag .tag-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.room-card-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.album-title-link {
  color: #0f172a;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.album-title-link:hover {
  color: var(--primary-green);
}

.room-card-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.room-card-footer {
  margin-top: auto;
}

/* ==========================================================================
   HALAMAN GALERI DETAIL (FOTO LENGKAP & CAPTION)
   ========================================================================== */
.gallery-back-wrap {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.btn-back-gallery {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 8px 18px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-fast);
}

.btn-back-gallery:hover {
  background: #f8fafc;
  color: var(--primary-green);
  border-color: var(--primary-green);
  transform: translateX(-2px);
}

.album-full-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

/* Grid Foto-Foto di Halaman Detail */
.album-photos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 4rem;
}

.photo-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.photo-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.photo-img-wrapper {
  position: relative;
  height: 280px;
  background: #0f172a;
  overflow: hidden;
  cursor: pointer;
}

.photo-actual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-card:hover .photo-actual-img {
  transform: scale(1.05);
}

.photo-hover-tag {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.photo-img-wrapper:hover .photo-hover-tag {
  opacity: 1;
}

.photo-number {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.8);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

.photo-info-box {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.photo-item-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.35;
}

.photo-item-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.photo-actions {
  margin-top: auto;
}

/* Rekomendasi Album Lainnya */
.other-albums-section {
  border-top: 1px solid #e2e8f0;
  padding-top: 3.5rem;
}

.other-albums-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.other-album-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.other-album-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.other-cover-wrap {
  position: relative;
  height: 150px;
  background: #0f172a;
  overflow: hidden;
  display: block;
}

.other-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.other-count {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(15, 23, 42, 0.8);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
}

.other-body {
  padding: 16px;
}

.other-cat {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary-green);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.other-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.35;
}

.other-title a {
  color: #0f172a;
  text-decoration: none;
}

/* ==========================================================================
   HALAMAN ARTIKEL & EDUKASI KESEHATAN (EDITORIAL CLEAN)
   ========================================================================== */
.article-page-section {
  padding: 1.75rem 0 4.5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.article-detail-section {
  padding: 3.5rem 0 5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.article-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.article-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.article-cover-wrap {
  position: relative;
  height: 210px;
  background: #0f172a;
  overflow: hidden;
  display: block;
}

.article-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .article-cover-img {
  transform: scale(1.06);
}

.article-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary-green);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.article-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 12px;
  font-weight: 600;
}

.article-title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(1.4 * 1.15rem * 2);
}

.article-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.article-title a:hover {
  color: var(--primary-green);
}

.article-summary {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(1.6 * 0.88rem * 2);
  flex: 1;
}

.article-card-footer {
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

.article-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-green);
  text-decoration: none;
  transition: gap var(--transition-fast);
}

.article-read-btn:hover {
  gap: 12px;
  color: #15803d;
}

/* ==========================================================================
   PUBLIC FE ARTICLE FILTER & SMART PAGINATION
   ========================================================================== */
.article-filter-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  margin-bottom: 24px;
}

.article-category-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  min-width: 0;
  padding-bottom: 2px;
}

.article-category-tabs::-webkit-scrollbar {
  display: none;
}

.article-cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.86rem;
  font-weight: 700;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: #475569;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-cat-pill:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  color: #0f172a;
}

.article-cat-pill.active {
  background: var(--primary-green, #16a34a);
  border-color: var(--primary-green, #16a34a);
  color: #ffffff;
  box-shadow: none;
}

.article-search-form {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.article-search-box {
  display: flex;
  align-items: center;
  position: relative;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 50px;
  padding: 6px 10px 6px 16px;
  transition: all 0.2s ease;
  width: 320px;
  max-width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.article-search-box:focus-within {
  border-color: var(--primary-green, #16a34a);
  box-shadow: none;
}

.article-search-box .search-icon {
  color: #64748b;
  font-size: 0.95rem;
  margin-right: 10px;
}

.article-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 500;
  color: #0f172a;
  width: 100%;
  padding: 4px 0;
}

.article-search-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.article-search-clear {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-right: 4px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.15s ease;
}

.article-search-clear:hover {
  color: #ef4444;
}

.article-search-btn {
  background: var(--primary-green, #16a34a);
  color: #ffffff;
  border: none;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.article-search-btn:hover {
  background: #15803d;
}

/* Frontend Pagination Bar */
.fe-pagination-container {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}

.fe-pagination-info {
  font-size: 0.88rem;
  color: #64748b;
}

.fe-pagination-info strong {
  color: #0f172a;
}

.fe-pagination-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fe-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
  box-shadow: none;
}

.fe-page-btn:hover:not(.active):not(.disabled) {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

.fe-page-btn.active {
  background: var(--primary-green, #16a34a);
  border-color: var(--primary-green, #16a34a);
  color: #ffffff;
  box-shadow: none;
  cursor: default;
}

.fe-page-btn.disabled {
  opacity: 0.38;
  cursor: not-allowed;
  background: #f8fafc;
  color: #94a3b8;
  border-color: #e2e8f0;
}

.fe-page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 38px;
  color: #94a3b8;
  font-size: 0.9rem;
}

@keyframes feCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.article-card.fe-article-item {
  animation: feCardFadeIn 0.25s ease-out;
}

@media (max-width: 768px) {
  .article-filter-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .article-search-box {
    width: 100%;
    min-width: unset;
  }
  .fe-pagination-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Halaman Detail Artikel (Unified Editorial Layout) */
.article-detail-section {
  padding: 3.5rem 0 5rem;
  background: #ffffff;
}

.article-read-container {
  max-width: 800px;
  margin: 0 auto;
}

.article-editorial-header {
  margin-bottom: 2rem;
}

.article-meta-cat {
  font-weight: 800;
  color: var(--primary-green);
  text-transform: uppercase;
}

.article-detail-h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin: 12px 0 16px;
  letter-spacing: -0.5px;
}

.article-author-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.88rem;
  color: #475569;
}

.doctor-author-icon {
  color: var(--primary-green);
  font-size: 1rem;
}

.article-featured-img-wrap {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  background: #0f172a;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.article-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-detail-content,
.article-rich-content,
.article-main-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 2.5rem;
}

.article-main-body p,
.article-detail-content p {
  margin-bottom: 1.35rem;
  line-height: 1.8;
  color: #334155;
}

.article-main-body h2,
.article-detail-content h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f172a;
  margin: 2.25rem 0 1rem;
  line-height: 1.35;
}

.article-main-body h3,
.article-detail-content h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin: 1.85rem 0 0.85rem;
  line-height: 1.35;
}

.article-main-body h4,
.article-detail-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 1.5rem 0 0.65rem;
}

.article-main-body strong,
.article-main-body b,
.article-detail-content strong,
.article-detail-content b {
  font-weight: 700;
  color: #0f172a;
}

.article-main-body em,
.article-main-body i,
.article-detail-content em,
.article-detail-content i {
  font-style: italic;
}

.article-main-body u,
.article-detail-content u {
  text-decoration: underline;
}

.article-main-body s,
.article-detail-content s {
  text-decoration: line-through;
}

.article-main-body ul,
.article-detail-content ul {
  list-style-type: disc;
  padding-left: 26px;
  margin-bottom: 1.65rem;
}

.article-main-body ol,
.article-detail-content ol {
  list-style-type: decimal;
  padding-left: 26px;
  margin-bottom: 1.65rem;
}

.article-main-body li,
.article-detail-content li {
  margin-bottom: 8px;
  line-height: 1.75;
  color: #334155;
}

.article-main-body blockquote,
.article-detail-content blockquote {
  border-left: 4px solid #16a34a;
  background: #f0fdf4;
  padding: 14px 20px;
  border-radius: 0 8px 8px 0;
  margin: 1.75rem 0;
  font-style: italic;
  color: #166534;
  line-height: 1.7;
}

.article-main-body a,
.article-detail-content a {
  color: #16a34a;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.article-main-body a:hover,
.article-detail-content a:hover {
  color: #15803d;
  text-decoration: none;
}

/* Quill text alignment helper classes */
.article-main-body .ql-align-center,
.article-detail-content .ql-align-center {
  text-align: center;
}

.article-main-body .ql-align-right,
.article-detail-content .ql-align-right {
  text-align: right;
}

.article-main-body .ql-align-justify,
.article-detail-content .ql-align-justify {
  text-align: justify;
}

.article-detail-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

/* --- Table Styles (Clean & Responsive) --- */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.custom-table th,
.custom-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
}

.custom-table th {
  background: #ffffff;
  color: var(--primary-green);
  font-weight: 700;
  border-bottom: 2px solid var(--border-medium);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.custom-table tr:hover td {
  background: #fafafa;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: #ffffff;
  color: var(--text-main);
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* --- Page Header Banner (Subpages) --- */
.page-banner {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 2.5rem 0;
  text-align: center;
}

.page-banner h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs span {
  margin: 0 6px;
}

/* ==========================================================================
   MODAL LIGHTBOX POSTER (CLEAN FLOATING IMAGE WITH FROSTED GLASS BLUR)
   ========================================================================== */
.modal-poster {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1100;
  justify-content: center;
  align-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-poster.show {
  display: flex;
  opacity: 1;
}

/* Tombol Tutup Bulat Mengambang di Kanan Atas */
.modal-poster-close-floating {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1110;
  transition: all 0.2s ease;
  outline: none;
  backdrop-filter: blur(8px);
}

.modal-poster-close-floating:hover {
  background: rgba(239, 68, 68, 0.9);
  border-color: #ef4444;
  transform: rotate(90deg) scale(1.05);
}

/* Wrapper Poster Melayang */
.modal-poster-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 88vh;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.modal-poster.show .modal-poster-wrapper {
  transform: scale(1);
}

/* Gambar Murni Bersih */
.modal-poster-img-clean {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.1);
  display: block;
}

/* Tombol Unduh Mengambang di Bawah Poster */
.modal-poster-footer-floating {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.btn-poster-download-floating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 163, 74, 0.92) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 25px;
  text-decoration: none !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.btn-poster-download-floating:hover {
  background: #15803d !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   HALAMAN PENDAFTARAN ONLINE (EXECUTIVE REGISTRATION HUB)
   ========================================================================== */
.pendaftaran-page-section {
  padding: 3.5rem 0 5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.pendaftaran-hub-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 35px;
  align-items: flex-start;
}

.pendaftaran-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 32px 30px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.form-step-section {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
}

.form-step-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.step-number {
  width: 26px;
  height: 26px;
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
  font-weight: 800;
  font-size: 0.82rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.radio-cards-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.radio-box-item {
  position: relative;
  display: flex;
  cursor: pointer;
}

.radio-box-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-box-content {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  background: #ffffff;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.radio-box-content strong {
  font-size: 0.88rem;
  color: #1e293b;
}

.radio-box-content span {
  font-size: 0.76rem;
  color: #64748b;
}

.radio-box-item input[type="radio"]:checked + .radio-box-content {
  border-color: #0f172a;
  background: #ffffff;
  box-shadow: 0 0 0 1.5px #0f172a;
}

.radio-box-item input[type="radio"]:checked + .radio-box-content strong {
  color: #0f172a;
}

.pendaftaran-side-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-info-card,
.side-wa-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px 22px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.03);
}

.side-wa-card {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.side-card-title,
.side-wa-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.side-wa-title {
  color: #166534;
}

.side-wa-desc {
  font-size: 0.86rem;
  color: #166534;
  line-height: 1.6;
  margin-bottom: 14px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-item-side {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
}

.step-item-side strong {
  display: block;
  color: #0f172a;
  margin-bottom: 2px;
}

.step-item-side p {
  margin: 0;
  color: #64748b;
  line-height: 1.5;
}

.step-badge-mini {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #334155;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Bukti Tiket Booking */
.booking-ticket-card {
  background: #ffffff;
  border: 1.5px solid #bbf7d0;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.08);
}

.ticket-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.ticket-icon-success {
  font-size: 2.2rem;
  color: var(--primary-green);
}

.ticket-kicker {
  font-size: 0.74rem;
  font-weight: 800;
  color: #15803d;
  letter-spacing: 0.8px;
  display: block;
}

.ticket-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin: 2px 0 0;
}

.ticket-code-banner {
  background: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.code-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.5px;
}

.code-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: #15803d;
  letter-spacing: 2px;
}

.ticket-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.ticket-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
}

.ticket-label {
  font-size: 0.78rem;
  color: #64748b;
}

.ticket-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
}

.ticket-note-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: #166534;
  line-height: 1.6;
}

.ticket-note-box p {
  margin: 0;
}

.ticket-actions {
  display: flex;
  gap: 12px;
}

/* ==========================================================================
   FLOATING ACTION WIDGET (DESKTOP: HOVER EXPAND; MOBILE: SPEED DIAL BULAT)
   ========================================================================== */
.fab-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.fab-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.fab-container {
  position: fixed;
  bottom: 28px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 999;
}

.fab-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Tombol Action Items di Desktop (Bulat Sempurna saat Diam, Melebar Halus ke Kiri saat Hover) */
.fab-action-item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end; /* Ikon selalu di sisi kanan */
  height: 48px;
  width: 48px;
  min-width: 48px;
  border-radius: 24px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  overflow: hidden;
  padding: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15) !important;
  transition: width 0.38s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease,
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  white-space: nowrap;
  will-change: width, transform;
}

.fab-icon-circle {
  width: 45px;
  height: 45px;
  min-width: 45px;
  max-width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fab-icon-circle i {
  font-size: 1.2rem;
  color: #ffffff !important;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.fab-btn-text {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
  transition: opacity 0.25s ease 0.05s,
              max-width 0.38s cubic-bezier(0.16, 1, 0.3, 1) !important;
  pointer-events: none;
}

/* Hover di Desktop: Melebar ke Kiri Menjadi Kapsul Oval dengan Jeda Lega */
.fab-action-item:hover {
  width: auto !important;
  padding-left: 18px !important;
  padding-right: 2px !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25) !important;
}

.fab-action-item:hover .fab-icon-circle i {
  transform: scale(1.12);
}

.fab-action-item:hover .fab-btn-text {
  opacity: 1 !important;
  max-width: 240px !important;
  margin-right: 8px !important; /* Jeda lega antara teks dan ikon */
}

.fab-action-item:active {
  transform: scale(0.96);
}

/* 5 Warna Solid */
.item-red, .btn-float-red { background: #dc2626 !important; }
.item-blue, .btn-float-blue { background: #2563eb !important; }
.item-black, .btn-float-black { background: #0f172a !important; }
.item-pink, .btn-float-pink { background: #db2777 !important; }
.item-green, .btn-float-green { background: #16a34a !important; }

/* Tombol Trigger Mobile (Disembunyikan di Desktop) */
.fab-mobile-trigger {
  display: none;
}

/* ==========================================================================
   KHUSUS MOBILE / HP (<= 768px): MODERN SPEED DIAL FAB (BULAT SEMPURNA & LABEL)
   ========================================================================== */
@media (max-width: 768px) {
  .fab-container {
    bottom: 22px;
    right: 18px;
    gap: 12px;
  }

  .fab-menu {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 2px;
  }

  .fab-container.active .fab-menu {
    display: flex !important;
    animation: fabPopIn 0.24s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes fabPopIn {
    from {
      opacity: 0;
      transform: translateY(14px) scale(0.92);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  /* Item Baris Mobile: Label Mengambang di Kiri + Ikon Bulat Sempurna di Kanan */
  .fab-action-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    border-radius: 0 !important;
    text-decoration: none !important;
    transform: none !important;
  }

  .fab-action-item:hover {
    transform: scale(1.03) !important;
    box-shadow: none !important;
  }

  /* Label Teks Mengambang di Kiri (Putih Bersih Berbingkai) */
  .fab-btn-text {
    display: inline-block !important;
    opacity: 1 !important;
    max-width: none !important;
    overflow: visible !important;
    transform: none !important;
    background: #ffffff !important;
    color: #0f172a !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.2px !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    border: 1.5px solid #e2e8f0 !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.16) !important;
    white-space: nowrap !important;
    pointer-events: auto !important;
    text-transform: none !important;
  }

  /* Ikon Bulat Sempurna 44px x 44px di Kanan */
  .fab-icon-circle {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    flex-shrink: 0 !important;
  }

  .item-red .fab-icon-circle { background: #dc2626 !important; }
  .item-blue .fab-icon-circle { background: #2563eb !important; }
  .item-green .fab-icon-circle { background: #16a34a !important; }
  .item-pink .fab-icon-circle { background: #db2777 !important; }
  .item-black .fab-icon-circle { background: #0f172a !important; }

  .fab-icon-circle i {
    font-size: 1.15rem !important;
    color: #ffffff !important;
    margin: 0 !important;
  }

  /* Master Trigger Button: Lingkaran Hijau 52px x 52px Nyaman Ditekan */
  .fab-mobile-trigger {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    background: #16a34a !important;
    color: #ffffff !important;
    border: 2.5px solid #ffffff !important;
    cursor: pointer !important;
    font-size: 1.25rem !important;
    transition: all 0.25s ease !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.45) !important;
    position: relative !important;
  }

  .fab-pulse-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid #16a34a;
    animation: fabPulse 2.2s infinite ease-out;
    pointer-events: none;
  }

  @keyframes fabPulse {
    0% { transform: scale(0.95); opacity: 0.9; }
    60% { transform: scale(1.28); opacity: 0; }
    100% { transform: scale(1.28); opacity: 0; }
  }

  .fab-mobile-trigger .fab-icon-close {
    display: none;
  }

  /* Saat Terbuka: Berubah Menjadi Tombol Close Gelap [X] */
  .fab-container.active .fab-mobile-trigger {
    background: #0f172a !important;
    border-color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.45) !important;
    transform: rotate(90deg);
  }

  .fab-container.active .fab-pulse-ring {
    display: none !important;
  }

  .fab-container.active .fab-mobile-trigger .fab-icon-open {
    display: none !important;
  }

  .fab-container.active .fab-mobile-trigger .fab-icon-close {
    display: block !important;
    font-size: 1.35rem !important;
  }
}

/* ==========================================================================
   FOOTER (EDITORIAL CLEAN MODERN - COMPACT & STREAMLINED)
   ========================================================================== */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 2.25rem 0 0;
  margin-top: auto;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.15fr 1fr 1.1fr;
  gap: 32px;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  margin-bottom: 12px;
  display: block;
}

.footer-desc {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 0.86rem;
}

.footer-desc strong {
  color: #0f172a;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1rem;
  color: #ffffff !important;
  border: none !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Instagram: Authentic Gradient */
.footer-social-btn.footer-social-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

/* Facebook: Authentic Blue */
.footer-social-btn.footer-social-fb {
  background: #1877f2;
}

/* TikTok: Authentic Black */
.footer-social-btn.footer-social-tt {
  background: #000000;
}

/* YouTube: Authentic Red */
.footer-social-btn.footer-social-yt {
  background: #ff0000;
}

/* WhatsApp: Authentic Green */
.footer-social-btn.footer-social-wa {
  background: #25d366;
}

.footer-col h4,
.footer-col-title {
  color: #0f172a;
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 2px solid #f1f5f9;
  letter-spacing: -0.2px;
}

.footer-col h4::after,
.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-green);
}

.footer-col-chevron {
  display: none;
}

/* Kontak List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #475569;
  font-size: 0.86rem;
}

.footer-contact-list i {
  font-size: 0.9rem;
  margin-top: 3px;
  color: var(--primary-green);
  flex-shrink: 0;
}

.footer-contact-list strong {
  color: #0f172a;
}

/* Links List */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 8px;
}

.footer-links-list a {
  color: #64748b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  transition: all var(--transition-fast);
}

.footer-links-list a i {
  font-size: 0.6rem;
  color: var(--secondary-orange);
}

.footer-links-list a:hover {
  color: var(--primary-green);
  transform: translateX(3px);
}

/* Jam Besuk Pasien */
.footer-visiting-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 10px 12px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.visiting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.visiting-session {
  font-weight: 700;
  color: #0f172a;
}

.visiting-time {
  font-weight: 800;
  color: var(--primary-green);
}

.visiting-note {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

/* Footer Bottom Copyright */
.footer-bottom {
  border-top: 1px solid #f1f5f9;
  padding: 14px 0 16px;
  text-align: center;
  font-size: 0.82rem;
  color: #64748b;
}

.footer-bottom p {
  margin: 0;
}

/* ==========================================================================
   HALAMAN STRUKTUR ORGANISASI (HIERARCHY FLOW DIAGRAM - PERSIS REFERENSI)
   ========================================================================== */
.org-tree-section {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

/* ==========================================================================
   STRUKTUR ORGANISASI 2026 (PRECISION VECTOR FLOWCHART SYSTEM)
   ========================================================================== */

.org26-controls-section {
  padding: 1.25rem 0 0.5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.org26-control-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.org26-tabs {
  display: inline-flex;
  background: #e2e8f0;
  padding: 4px;
  border-radius: 6px;
  gap: 4px;
}

.org26-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #475569;
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.org26-tab-btn i {
  font-size: 1rem;
}

.org26-tab-btn.active {
  background: #ffffff;
  color: #15803d;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.org26-tab-btn:hover:not(.active) {
  color: #0f172a;
}

.org26-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-org-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.btn-org-action.primary {
  background: #16a34a;
  color: #ffffff;
  border: 1.5px solid #15803d;
}

.btn-org-action.primary:hover {
  background: #15803d;
  color: #ffffff;
}

.btn-org-action.outline {
  background: #ffffff;
  color: #15803d;
  border: 1.5px solid #16a34a;
}

.btn-org-action.outline:hover {
  background: #f0fdf4;
  color: #15803d;
}

.org26-main-section {
  padding: 2.5rem 0 4rem;
  background: #f8fafc;
}

.org26-view-pane {
  display: none;
}

.org26-view-pane.active {
  display: block;
}

.org26-scroll-guide {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}

/* ========================================================
   STRUKTUR ORGANISASI: OFFICIAL POSTER PRESENTATION VIEW
   ======================================================== */
.org-official-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.org-official-card-header {
  padding: 24px 30px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: #f8fafc;
}

.org-official-card-header .header-left {
  flex: 1;
  min-width: 280px;
}

.badge-official {
  display: inline-block;
  background: #16a34a;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.org-poster-heading {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.org-poster-subheading {
  margin: 0;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.4;
}

.header-right-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-org-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-org-action.primary {
  background: #16a34a;
  color: #ffffff;
  border: 1.5px solid #16a34a;
}

.btn-org-action.primary:hover {
  background: #15803d;
  border-color: #15803d;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-org-action.outline {
  background: #ffffff;
  color: #16a34a;
  border: 1.5px solid #16a34a;
}

.btn-org-action.outline:hover {
  background: #f0fdf4;
  color: #15803d;
  border-color: #15803d;
  transform: translateY(-1px);
}

.org-official-card-body {
  position: relative;
  cursor: pointer;
  background: #ffffff;
  padding: 24px;
  text-align: center;
}

.org-poster-main-img {
  max-width: 100%;
  height: auto;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.org-official-card-body:hover .org-poster-main-img {
  border-color: #16a34a;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.12);
}

.org-img-zoom-overlay {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.zoom-pill {
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
}



/* OFFICIAL SCANNED DOCUMENT VIEW */
.org26-official-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.06);
}

.org26-official-img-wrap {
  position: relative;
  cursor: zoom-in;
  background: #ffffff;
  padding: 16px;
  text-align: center;
  display: block;
}

.org26-official-preview-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
  margin: 0 auto;
}

.org26-official-img-wrap:hover .org26-official-preview-img {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.org26-img-hover-overlay {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.88);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.org26-official-img-wrap:hover .org26-img-hover-overlay {
  transform: translateX(-50%) translateY(-3px);
}

/* LIGHTBOX MODAL FOR FULL-SIZE IMAGE */
.org26-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.85);
  z-index: 99999;
  padding: 20px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

.org26-modal.active {
  display: flex;
}

.org26-modal-content {
  background: #ffffff;
  border-radius: 8px;
  max-width: 1200px;
  width: 100%;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.org26-modal-header {
  padding: 16px 24px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
}

.modal-title-group h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.modal-title-group span {
  font-size: 0.78rem;
  color: #64748b;
}

.modal-btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-modal-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #16a34a;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
}

.btn-modal-close {
  background: transparent;
  border: none;
  font-size: 1.3rem;
  color: #64748b;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
}

.btn-modal-close:hover {
  color: #0f172a;
  background: #e2e8f0;
}

.org26-modal-body {
  padding: 16px;
  overflow: auto;
  text-align: center;
  background: #f1f5f9;
}

.modal-zoom-img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* ==========================================================================
   HALAMAN LAYANAN (ULTRA-MODERN CLEAN HEALTHCARE CARDS)
   ========================================================================== */
.service-page-section {
  padding: 1.75rem 0 4.5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

/* Grid 3 Kolom Kartu Layanan */
.service-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 3.5rem;
}

.service-item-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 30px 26px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

/* Baris Atas: Ikon Medis & Badge Status */
.service-card-top {
  background: transparent;
  padding: 0;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  background: #f0fdf4;
  color: var(--primary-green);
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.25s ease;
}

.service-item-card:hover .service-icon-box {
  background: var(--primary-green);
  color: #ffffff;
  border-color: var(--primary-green);
  transform: scale(1.05);
}

.service-icon-box.icon-red {
  background: #fef2f2;
  color: var(--danger-red);
  border-color: #fecaca;
}

.service-item-card.card-emergency:hover .service-icon-box.icon-red {
  background: var(--danger-red);
  color: #ffffff;
  border-color: var(--danger-red);
}

.service-icon-box.icon-orange {
  background: #fff7ed;
  color: var(--secondary-orange);
  border-color: #fed7aa;
}

.service-item-card:hover .service-icon-box.icon-orange {
  background: var(--secondary-orange);
  color: #ffffff;
  border-color: var(--secondary-orange);
}

.service-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: #15803d;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  padding: 5px 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 4px;
}

.service-tag.tag-red {
  color: #b91c1c;
  background: #fee2e2;
  border-color: #fca5a5;
}

.service-tag.tag-orange {
  color: #c2410c;
  background: #ffedd5;
  border-color: #fed7aa;
}

/* Body Teks */
.service-item-card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-item-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.35;
  letter-spacing: -0.4px;
  transition: color 0.2s ease;
}

.service-item-card:hover .service-item-title {
  color: var(--primary-green);
}

.service-item-card.card-emergency:hover .service-item-title {
  color: var(--danger-red);
}

.service-item-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

/* Info List: Floating Badges / Clean Pill List */
.service-info-list {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.86rem;
  color: #334155;
  font-weight: 600;
}

.service-info-list div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-info-list i {
  font-size: 0.95rem;
  flex-shrink: 0;
}

.service-card-action {
  padding-top: 18px;
  margin-top: auto;
}

/* Kotak Layanan Unggulan Ekstra */
.extra-service-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--secondary-orange);
  padding: 30px;
  margin-top: 3.5rem;
}

.extra-service-header {
  margin-bottom: 22px;
}

.extra-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.extra-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.extra-icon {
  width: 44px;
  height: 44px;
  background: #fff7ed;
  color: var(--secondary-orange);
  border: 1px solid #fed7aa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.extra-text strong {
  display: block;
  font-size: 0.98rem;
  color: #1e293b;
  margin-bottom: 4px;
}

.extra-text p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   HALAMAN PROFIL DOKTER (ULTRA-MODERN DOCTOR CARDS)
   ========================================================================== */
.doctor-page-section {
  padding: 1.75rem 0 4.5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.doctor-filter-toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.doctor-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #475569;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 7px 14px;
  border-radius: 30px;
}

.doctor-count-badge i {
  color: var(--primary-green, #16a34a);
}

.doctor-search-box {
  display: flex;
  align-items: center;
  position: relative;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 50px;
  padding: 6px 10px 6px 16px;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.doctor-search-box:focus-within {
  border-color: var(--primary-green, #16a34a);
  box-shadow: none;
}

.doctor-search-box .search-icon {
  color: #64748b;
  font-size: 0.95rem;
  margin-right: 10px;
}

.doctor-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 500;
  color: #0f172a;
  width: 100%;
  padding: 4px 0;
}

.doctor-search-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.doctor-search-clear {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 2px 6px;
  transition: color 0.15s ease;
}

.doctor-search-clear:hover {
  color: #0f172a;
}

@media (max-width: 640px) {
  .doctor-filter-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .doctor-search-box {
    max-width: 100%;
  }
}

.doctor-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 3.5rem;
}

.doctor-profile-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-profile-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.doc-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.doc-avatar-box {
  width: 58px;
  height: 58px;
  background: #f0fdf4;
  color: var(--primary-green);
  border: 1.5px solid #bbf7d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all 0.25s ease;
}

.doctor-profile-card:hover .doc-avatar-box {
  background: var(--primary-green);
  color: #ffffff;
  border-color: var(--primary-green);
  transform: scale(1.05);
}

.doc-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 4px 10px;
  border-radius: 20px;
}

.status-indicator.online {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
}

.doc-info-body {
  margin-bottom: 18px;
  flex: 1;
}

.doc-role-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: #15803d;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.doc-role-tag.tag-orange {
  color: #c2410c;
}

.doc-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.3;
}

.doc-sip {
  font-size: 0.8rem;
  color: #64748b;
  display: block;
  margin-bottom: 12px;
}

.doc-bio {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.doc-schedule-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 12px 14px;
  margin-bottom: 20px;
  font-size: 0.86rem;
}

.schedule-label {
  color: #1e293b;
  margin-bottom: 4px;
}

.schedule-time {
  color: #475569;
  font-weight: 700;
}

.doc-card-footer {
  margin-top: auto;
}

.penunjang-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--primary-green);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.penunjang-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  border-left-color: var(--secondary-orange);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.penunjang-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.penunjang-icon-wrap {
  width: 48px;
  height: 48px;
  background: #f0fdf4;
  color: var(--primary-green);
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.penunjang-card:hover .penunjang-icon-wrap {
  background: #fff7ed;
  color: var(--secondary-orange);
  border-color: #fed7aa;
}

.penunjang-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1e293b;
  margin: 4px 0 0;
}

.penunjang-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.penunjang-feature-list {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: #475569;
}

.visiting-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.visiting-item:last-child {
  margin-bottom: 0;
}

.visiting-session {
  color: #166534;
  font-weight: 700;
}

.visiting-time {
  color: #15803d;
  font-weight: 800;
}

.visiting-note {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 0;
}

/* Footer Bottom Copyright (Padding Pas Tanpa Extra Space) */
.footer-bottom {
  border-top: 1px solid #e2e8f0;
  padding: 20px 0;
  text-align: center;
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.5;
}

.footer-bottom strong {
  color: #0f172a;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (HP, TABLET, DESKTOP)
   ========================================================================== */

/* Tablet & Mobile Screens (<= 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-menu {
    gap: 12px;
  }
}

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .top-bar-contact {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 2px solid var(--border-medium);
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    gap: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  
  .nav-menu.show {
    display: flex;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-link {
    width: 100%;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-item.active > .nav-link::after {
    display: none;
  }
  
  .dropdown-menu {
    position: static;
    border: none;
    box-shadow: none;
    background: #f8fafc;
    padding-left: 20px;
  }
  
  .highlight-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content h1 {
    font-size: 1.85rem;
  }
  
  .floating-widget {
    bottom: 15px;
    right: 15px;
  }
  
  .floating-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   DOKTER ID BADGE / NAMETAG CARD (KONSEP 1 - EXECUTIVE CLINICAL BADGE)
   ========================================================================== */
.doctor-badge-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.doctor-badge-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

/* Top Lanyard Header Stripe */
.doc-badge-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
}

.doc-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #15803d;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.doc-status-pill .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
}

.doc-status-pill.pill-orange {
  color: #c2410c;
  background: #ffedd5;
  border-color: #fed7aa;
}

.doc-status-pill.pill-orange .pulse-dot {
  background: #ea580c;
}

.doc-id-code {
  font-size: 0.74rem;
  font-weight: 700;
  color: #64748b;
  font-family: monospace;
}

/* Portrait Photo Frame with Hover Scale */
.doc-photo-wrapper {
  position: relative;
  height: 250px;
  background: #f1f5f9;
  overflow: hidden;
  display: block;
}

.doc-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.doctor-badge-card:hover .doc-photo-img {
  transform: scale(1.06);
}

.doc-photo-ribbon {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* Body Content */
.doc-badge-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.doc-division-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary-green);
  margin-bottom: 6px;
  display: block;
}

.doc-division-tag.tag-orange {
  color: var(--secondary-orange);
}

.doc-badge-name {
  font-size: 1.22rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.3;
}

.doc-badge-sip {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 14px;
  display: block;
}

.doc-skills-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.doc-skills-list li {
  font-size: 0.85rem;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.doc-skills-list li i {
  margin-top: 3px;
  flex-shrink: 0;
}

/* Schedule Mini Box */
.doc-badge-schedule {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 10px 14px;
  margin-top: auto;
  margin-bottom: 16px;
}

.schedule-head {
  font-size: 0.75rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.schedule-body-text {
  font-size: 0.86rem;
  font-weight: 700;
  color: #334155;
  margin: 0;
}

/* Footer Action */
.doc-badge-footer {
  padding-top: 4px;
}

/* ==========================================================================
   DOKTER KARTU OPSI 2: SPLIT HORIZONTAL MEDICAL PASSPORT CARD
   ========================================================================== */
.doctor-grid-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.doctor-split-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.doctor-split-card:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

/* Kolom Kiri: Foto Dokter Vertikal */
.doc-split-left {
  position: relative;
  background: #0f172a;
  overflow: hidden;
  display: flex;
}

.doc-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.doctor-split-card:hover .doc-split-img {
  transform: scale(1.06);
}

.doc-split-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.5px;
}

/* Kolom Kanan: Rincian Profil & Jadwal */
.doc-split-right {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
}

.doc-split-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.doc-split-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-green);
  letter-spacing: 0.6px;
}

.doc-split-tag.tag-orange {
  color: var(--secondary-orange);
}

.doc-split-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.3;
}

.doc-split-focus {
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 10px;
  line-height: 1.4;
}

.doc-split-bio {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}

.doc-split-schedule {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 8px 12px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.doc-split-schedule i {
  font-size: 1.1rem;
}

.doc-split-schedule div strong {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
  text-transform: uppercase;
}

.doc-split-schedule div span {
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f172a;
}

.doc-split-btn {
  margin-top: auto;
}

@media (max-width: 992px) {
  .doctor-grid-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .doctor-split-card {
    grid-template-columns: 125px 1fr;
  }
  .doc-split-left {
    height: auto;
    min-height: 100%;
  }
  .doc-split-right {
    padding: 14px 12px;
  }
  .doc-split-name {
    font-size: 1.05rem;
  }
  .doc-split-bio {
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 10px;
  }
  .doc-split-schedule {
    padding: 6px 10px;
    margin-bottom: 10px;
  }
}

@media (max-width: 380px) {
  .doctor-split-card {
    grid-template-columns: 110px 1fr;
  }
  .doc-split-right {
    padding: 12px 8px;
  }
  .doc-split-name {
    font-size: 0.98rem;
  }
}

/* ==========================================================================
   KARTU LAYANAN OPSI A: HOSPITAL FACILITY VISUAL CARD (CLEAN & NO BADGE)
   ========================================================================== */
.facility-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.facility-visual-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.facility-visual-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.facility-img-wrap {
  position: relative;
  height: 200px;
  background: #0f172a;
  overflow: hidden;
  display: block;
}

.facility-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.facility-visual-card:hover .facility-cover-img {
  transform: scale(1.06);
}

.facility-card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.facility-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.35;
}

.facility-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 12px;
}

.facility-desc-wrapper {
  margin-bottom: 0;
}

.facility-desc-wrapper > :last-child {
  margin-bottom: 0 !important;
}

.facility-desc-intro {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.6;
}

.facility-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
}

.facility-bullet-list li {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  min-width: 0;
  word-break: break-word;
}

.facility-bullet-list li.bullet-item-full {
  grid-column: 1 / -1;
}

.facility-bullet-list li.bullet-item-half {
  grid-column: span 1;
}

.facility-bullet-list li .bullet-icon {
  font-size: 0.76rem;
  color: #16a34a;
  margin-top: 3px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .facility-bullet-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .facility-bullet-list li.bullet-item-half {
    grid-column: 1 / -1;
  }
}

.facility-desc-outro {
  font-size: 0.83rem;
  color: #64748b;
  margin-top: 8px;
  margin-bottom: 6px;
  line-height: 1.5;
}

.facility-bullets-hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.facility-bullets-hidden.is-open {
  opacity: 1;
}

.btn-toggle-bullets {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: all 0.2s ease;
  margin-top: 6px;
  margin-bottom: 0;
}

.btn-toggle-bullets:hover {
  background: #f0fdf4;
  color: #16a34a;
  border-color: #bbf7d0;
}

.btn-toggle-bullets .toggle-icon {
  font-size: 0.72rem;
  transition: transform 0.25s ease;
}

.btn-toggle-bullets.active {
  background: #f1f5f9;
  color: #475569;
  border-color: #cbd5e1;
}

.facility-schedule-row {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: #334155;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.facility-schedule-row i {
  color: var(--primary-green);
  font-size: 0.95rem;
}

.facility-card-btn {
  margin-top: auto;
}

@media (max-width: 992px) {
  .facility-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .facility-card-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   Rawat Inap Dual Section (Opsi 2: Distinct Solid Surface & Minimalist Header)
   ========================================================================== */
.rawat-inap-section-block {
  margin-bottom: 20px;
}

.rawat-inap-section-header {
  margin-bottom: 32px;
}

.rawat-inap-section-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 10px;
  padding-left: 14px;
  border-left: 4px solid #008837;
}

.rawat-inap-section-desc {
  font-size: 0.96rem;
  color: #64748b;
  line-height: 1.65;
  max-width: 820px;
  margin: 0;
  padding-left: 14px;
}

/* Section 2: Kamar Rawat Inap (Permukaan Abu-Abu Netral Solid Bersih) */
.rawat-inap-kamar-section {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 64px 0 76px;
}

.rawat-inap-kamar-section .facility-visual-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.rawat-inap-kamar-section .facility-visual-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
  .rawat-inap-section-title {
    font-size: 1.4rem;
    padding-left: 12px;
  }
  .rawat-inap-section-desc {
    font-size: 0.88rem;
    padding-left: 12px;
  }
  .rawat-inap-kamar-section {
    padding: 44px 0 54px;
  }
}

/* ==========================================================================
   KARTU LAYANAN OPSI B: MINIMALIST MONOGRAM & STRUCTURED SERVICE CARD
   ========================================================================== */
.specialist-service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.specialist-service-card:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.specialist-icon-header {
  width: 50px;
  height: 50px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: var(--primary-green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
  transition: all var(--transition-fast);
}

.specialist-service-card:hover .specialist-icon-header {
  background: var(--primary-green);
  color: #ffffff;
  border-color: var(--primary-green);
  transform: scale(1.05);
}

.specialist-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.35;
}

.specialist-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
}

.specialist-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
  flex: 1;
}

.specialist-features-list li {
  font-size: 0.84rem;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.specialist-features-list li i {
  color: var(--primary-green);
  margin-top: 3px;
  flex-shrink: 0;
}

.specialist-action-btn {
  margin-top: auto;
}

/* ==========================================================================
   HALAMAN PENDAFTARAN ONLINE (2-COLUMN EXECUTIVE REGISTRATION HUB)
   ========================================================================== */
.pendaftaran-hub-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  align-items: flex-start;
}

.pendaftaran-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 32px 30px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.form-step-section {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid #f1f5f9;
}

.form-step-section:last-of-type {
  border-bottom: none;
  margin-bottom: 10px;
  padding-bottom: 0;
}

.form-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.step-number {
  width: 26px;
  height: 26px;
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.radio-cards-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.radio-box-item {
  position: relative;
  display: block;
  cursor: pointer;
}

.radio-box-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-box-content {
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  padding: 12px 14px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all var(--transition-fast);
}

.radio-box-content strong {
  font-size: 0.86rem;
  color: #0f172a;
}

.radio-box-content span {
  font-size: 0.74rem;
  color: #64748b;
}

.radio-box-item input[type="radio"]:checked + .radio-box-content {
  border-color: #0f172a;
  background: #ffffff;
  box-shadow: 0 0 0 1.5px #0f172a;
}

.radio-box-item input[type="radio"]:checked + .radio-box-content strong {
  color: #0f172a;
}

/* Sisi Kanan: Help & Guidelines Card */
.pendaftaran-side-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.side-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 26px 24px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

.side-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-item-side {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-badge-mini {
  width: 26px;
  height: 26px;
  background: #f1f5f9;
  color: #475569;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-item-side strong {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
  margin-bottom: 2px;
}

.step-item-side p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.side-wa-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 26px 24px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

.side-wa-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.side-wa-desc {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

@media (max-width: 992px) {
  .pendaftaran-hub-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .radio-cards-wrap {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HALAMAN KONTAK & PENGADUAN (2-COLUMN EDITORIAL CONTACT HUB)
   ========================================================================== */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr;
  gap: 36px;
  align-items: flex-start;
}

.contact-card-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 30px 28px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  margin-bottom: 24px;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 32px 30px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: #f0fdf4;
  color: var(--primary-green);
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.contact-item:hover .contact-icon {
  background: var(--primary-green);
  color: #ffffff;
  border-color: var(--primary-green);
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-lbl {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-val {
  font-size: 0.96rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  line-height: 1.45;
  transition: color var(--transition-fast);
}

a.contact-val:hover {
  color: var(--primary-green);
}

.map-container-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

.alert-success-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #166534;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .contact-layout-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS LENGKAP DI PALING BAWAH (MOBILE & TABLET <= 991px)
   ========================================================================== */
@media (max-width: 991px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 1. Header & Navigation Mobile (Fixed Smart Reveal Navbar) */
  .top-bar {
    display: none !important;
  }

  body:not(.home-transparent-nav) {
    padding-top: 56px !important;
  }

  body.home-transparent-nav {
    padding-top: 0 !important;
  }

  .main-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: #ffffff !important;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, background-color 0.3s ease !important;
    will-change: transform;
  }

  /* Khusus Homepage Mobile: Transparan 100% Saat di Atas Hero (Jika Menu Tertutup) */
  body.home-transparent-nav .main-header:not(.header-scrolled):not(.menu-open) {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: none !important;
  }

  body.home-transparent-nav .main-header:not(.header-scrolled):not(.menu-open) .mobile-nav-toggle {
    background: rgba(255, 255, 255, 0.18) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
  }

  /* Saat Menu Mobile Terbuka / Saat Di-scroll: Otomatis Putih Solid Menyatu Sempurna dengan Drawer */
  body.home-transparent-nav .main-header.menu-open,
  body.home-transparent-nav .main-header.header-scrolled {
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08) !important;
  }

  body.home-transparent-nav .main-header.menu-open .mobile-nav-toggle,
  body.home-transparent-nav .main-header.header-scrolled .mobile-nav-toggle {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #1e293b !important;
  }

  body.home-transparent-nav .main-header.menu-open .logo-img {
    filter: none !important;
  }

  .main-header.header-hidden {
    transform: translateY(-100%) !important;
    box-shadow: none !important;
  }

  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    font-size: 1.15rem;
    cursor: pointer;
    outline: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
  }

  .mobile-nav-toggle:active {
    transform: scale(0.92);
  }

  .mobile-nav-toggle .hamburger-icon-close {
    display: none;
  }

  .mobile-nav-toggle.is-active {
    background: #f0fdf4 !important;
    color: var(--primary-green) !important;
    border-color: #bbf7d0 !important;
  }

  .mobile-nav-toggle.is-active .hamburger-icon-open {
    display: none;
  }

  .mobile-nav-toggle.is-active .hamburger-icon-close {
    display: block;
    animation: rotateClose 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes rotateClose {
    from {
      opacity: 0;
      transform: rotate(-90deg) scale(0.8);
    }
    to {
      opacity: 1;
      transform: rotate(0) scale(1);
    }
  }

  /* Drawer Navigasi Mobile yang Sangat Halus (Fluid Slide & Fade) */
  .nav-menu {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 2px solid #e2e8f0;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.12);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 18px;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    z-index: 999;
    transform: translateY(-12px);
    transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0.38s cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform, opacity, max-height;
  }

  .nav-menu.show {
    max-height: 84vh;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Stagger Animasi Item Menu Saat Terbuka */
  .nav-menu.show .nav-item {
    animation: navItemSlideIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  .nav-menu.show .nav-item:nth-child(1) { animation-delay: 0.03s; }
  .nav-menu.show .nav-item:nth-child(2) { animation-delay: 0.06s; }
  .nav-menu.show .nav-item:nth-child(3) { animation-delay: 0.09s; }
  .nav-menu.show .nav-item:nth-child(4) { animation-delay: 0.12s; }
  .nav-menu.show .nav-item:nth-child(5) { animation-delay: 0.15s; }
  .nav-menu.show .nav-item:nth-child(6) { animation-delay: 0.18s; }
  .nav-menu.show .nav-item:nth-child(7) { animation-delay: 0.21s; }

  @keyframes navItemSlideIn {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    padding: 11px 12px;
    width: 100%;
    justify-content: space-between;
    font-size: 0.92rem;
    color: #1e293b !important;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-link i.nav-arrow {
    color: #64748b !important;
    font-size: 0.75rem !important;
    transition: transform 0.25s ease, color 0.2s ease !important;
  }

  .nav-item.open-mobile > .nav-link {
    color: #16a34a !important;
    background: #f0fdf4 !important;
  }

  .nav-item.open-mobile > .nav-link i.nav-arrow {
    color: #16a34a !important;
    transform: rotate(180deg);
  }

  .nav-item.active > .nav-link::after {
    display: none;
  }

  .nav-item.active > .nav-link {
    background: #f0fdf4 !important;
    color: #16a34a !important;
  }

  /* Sub-menu Dropdown dengan Transisi Akordeon Lembut di Mobile */
  .dropdown-menu {
    position: static !important;
    display: block !important;
    width: 100% !important;
    box-shadow: none !important;
    border: 1px solid #e2e8f0 !important;
    background: #f8fafc !important;
    border-radius: 8px !important;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    padding: 0 6px !important;
    margin: 0 !important;
    transition: max-height 0.32s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.25s ease,
                padding 0.25s ease,
                margin 0.25s ease,
                visibility 0.25s ease !important;
  }

  .dropdown-menu::before {
    display: none !important; /* Nonaktifkan invisible hover bridge di mobile */
  }

  .nav-item.open-mobile .dropdown-menu {
    max-height: 400px !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 6px !important;
    margin: 6px 0 10px !important;
  }

  .dropdown-item {
    display: block !important;
    width: 100% !important;
    margin-bottom: 2px !important;
  }

  .dropdown-item:last-child {
    margin-bottom: 0 !important;
  }

  .dropdown-item a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 9px 12px !important;
    font-size: 0.86rem !important;
    color: #334155 !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    background: transparent !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
  }

  .dropdown-item a i {
    color: #16a34a !important;
    font-size: 0.9rem !important;
    width: 18px !important;
    text-align: center !important;
  }

  .dropdown-item a:hover {
    color: #16a34a !important;
    background: #ffffff !important;
    padding-left: 16px !important;
  }

  /* 2. Hero Section */
  .hero-rc-section {
    min-height: auto;
    padding: 2.5rem 0 3.5rem;
  }

  .hero-rc-content {
    max-width: 100%;
    padding: 1rem 0;
  }

  .hero-rc-title {
    font-size: 2.1rem;
  }

  .hero-rc-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .hero-rc-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-rc-buttons .btn {
    text-align: center;
    justify-content: center;
  }

  .hero-carousel-dots {
    bottom: 12px;
    right: 15px;
  }

  /* 3. Highlight 3 Feature Cards (Horizontal Compact) */
  .highlight-section {
    padding: 2rem 0;
  }

  .highlight-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .rc-feature-card {
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    padding: 16px 18px !important;
    gap: 16px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  }

  .rc-feature-icon {
    width: 52px !important;
    height: 52px !important;
    font-size: 1.35rem !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }

  .rc-feature-content-mobile {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }

  .rc-feature-title {
    font-size: 1.02rem !important;
    margin-bottom: 4px !important;
    line-height: 1.3 !important;
  }

  .rc-feature-desc {
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
    margin-bottom: 6px !important;
  }

  .rc-feature-link {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
  }

  /* 4. Section Tentang Kami & Registrasi WA (1 Kolom Penuh Rapi) */
  .rc-about-section {
    padding: 2.5rem 0 !important;
  }

  .grid-about-rc {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 28px !important;
    grid-template-columns: 1fr !important;
  }

  .rc-about-text {
    width: 100% !important;
    max-width: 100% !important;
  }

  .rc-about-title {
    font-size: 1.35rem !important;
    line-height: 1.35 !important;
    margin-bottom: 1rem !important;
  }

  .rc-about-text p {
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
    margin-bottom: 1rem !important;
  }

  .btn-learn-more {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 10px 16px !important;
    font-size: 0.88rem !important;
  }

  .rc-wa-box {
    width: 100% !important;
    max-width: 100% !important;
    padding: 22px 18px !important;
    box-sizing: border-box !important;
  }

  .rc-wa-box-title {
    font-size: 1.15rem !important;
  }

  .rc-wa-box {
    padding: 18px 16px !important;
    margin-top: 20px !important;
  }

  .rc-wa-status {
    margin-bottom: 12px !important;
  }

  .rc-wa-phone-group {
    margin-bottom: 14px !important;
    gap: 12px !important;
  }

  .rc-wa-phone-icon {
    font-size: 1.6rem !important;
  }

  .rc-wa-phone-number {
    font-size: 1.25rem !important;
  }

  .rc-wa-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    width: 100% !important;
    margin-bottom: 14px !important;
  }

  .rc-wa-actions .btn-wa-solid,
  .rc-wa-actions .btn-wa-outline,
  .btn-humas-cyan {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 9px 14px !important;
  }

  .rc-wa-info-footer {
    padding-top: 10px !important;
  }

  /* 5. Statistik Counter */
  .rc-counter-section {
    padding: 2.5rem 0 !important;
  }

  .rc-counter-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .rc-counter-item {
    padding: 20px 14px !important;
  }

  .rc-counter-number {
    font-size: 1.8rem !important;
  }

  .rc-counter-label {
    font-size: 0.82rem !important;
  }

  /* 6. Poster Informasi */
  .rc-poster-section {
    padding: 2.5rem 0 !important;
  }

  .rc-poster-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .rc-poster-box .poster-preview {
    height: 320px !important;
  }

  /* 7. 7 Tab Layanan Unggulan */
  .rc-services-tabs-section {
    padding: 2.5rem 0 !important;
  }

  .service-tabs-nav {
    display: flex !important;
    overflow-x: auto !important;
    gap: 8px !important;
    padding-bottom: 12px !important;
    margin-bottom: 2rem !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .service-tab-btn {
    flex: 0 0 auto !important;
    min-width: 105px !important;
    padding: 12px 10px !important;
    font-size: 0.78rem !important;
  }

  .service-tab-btn i {
    font-size: 1.3rem !important;
  }

  .service-panel-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .service-img-blob {
    height: 240px !important;
    max-width: 100% !important;
  }

  .service-panel-desc h3 {
    font-size: 1.4rem !important;
  }

  /* 8. Testimoni */
  .rc-testimonials-section {
    padding: 2.5rem 0 !important;
  }

  .rc-testimonial-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* 9. FAQ Accordion */
  .rc-faq-section {
    padding: 2.5rem 0 !important;
  }

  .rc-faq-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* 10. Artikel */
  .rc-articles-section {
    padding: 2.5rem 0 !important;
  }

  .rc-article-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* 11. Footer Mobile Accordion (Super Ringkas & Rapi) */
  .site-footer {
    padding: 2.5rem 0 0 !important;
  }

  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    margin-bottom: 2rem !important;
  }

  .footer-col-brand {
    padding-bottom: 20px !important;
    margin-bottom: 8px !important;
    border-bottom: 1px solid #e2e8f0 !important;
  }

  .footer-accordion-col {
    border-bottom: 1px solid #e2e8f0 !important;
    width: 100% !important;
  }

  .footer-col-title {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
    padding: 16px 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
    font-size: 1rem !important;
    color: #0f172a !important;
    user-select: none;
  }

  .footer-col-title::after {
    display: none !important;
  }

  .footer-col-chevron {
    display: inline-block !important;
    font-size: 0.85rem !important;
    color: var(--primary-green) !important;
    transition: transform 0.25s ease !important;
  }

  .footer-accordion-col.open .footer-col-chevron {
    transform: rotate(180deg) !important;
  }

  .footer-col-content {
    display: none;
    padding-bottom: 18px !important;
    animation: fadeInAccordion 0.25s ease !important;
  }

  .footer-accordion-col.open .footer-col-content {
    display: block !important;
  }

  /* 12. Halaman Visi & Misi di Layar Mobile (100% Rapi & Tidak Terpotong) */
  .vm-editorial-hero {
    padding: 3rem 0 2rem !important;
  }

  .vm-hero-title {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }

  .vm-hero-subtitle {
    font-size: 0.92rem !important;
  }

  .vm-section-statement {
    padding: 2.2rem 0 !important;
  }

  .vm-vision-statement-card {
    padding: 22px 18px !important;
    border-left-width: 4px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .statement-quote {
    font-size: 1.12rem !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
  }

  .statement-pillars {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding-top: 16px !important;
  }

  .pillar-item {
    font-size: 0.9rem !important;
  }

  .vm-section-missions {
    padding: 2.5rem 0 !important;
  }

  .vm-section-header {
    margin-bottom: 2rem !important;
  }

  .vm-heading {
    font-size: 1.55rem !important;
    line-height: 1.3 !important;
  }

  .vm-mission-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .vm-mission-item {
    padding: 20px 18px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .mission-index {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.05rem !important;
  }

  .mission-title {
    font-size: 1.05rem !important;
  }

  .mission-desc {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
  }

  .vm-section-culture {
    padding: 2.5rem 0 !important;
  }

  .vm-culture-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .culture-block {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    padding: 16px 18px !important;
    gap: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .culture-char {
    font-size: 1.7rem !important;
    width: 48px !important;
    height: 48px !important;
    background: #f0fdf4 !important;
    color: var(--primary-green) !important;
    border: 1px solid #bbf7d0 !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }

  .culture-text-wrap {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    min-width: 0 !important;
  }

  .culture-word {
    font-size: 0.98rem !important;
    margin-bottom: 4px !important;
  }

  .culture-explanation {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }

  /* 13. Halaman Indikator Mutu di Layar Mobile (100% Rapi 1 Kolom) */
  .mutu-metrics-section {
    padding: 2.2rem 0 !important;
  }

  .mutu-metrics-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .metric-card {
    padding: 16px 18px !important;
    gap: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .metric-icon-wrap {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.15rem !important;
  }

  .metric-title {
    font-size: 0.98rem !important;
  }

  .metric-desc {
    font-size: 0.82rem !important;
  }

  .mutu-reports-section {
    padding: 2.5rem 0 !important;
  }

  .mutu-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
  }

  .mutu-report-card {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .mutu-preview-box {
    height: 280px !important;
  }

  .jadwal-poster-section .mutu-preview-box {
    height: auto !important;
    padding: 0 !important;
    background: #ffffff !important;
    display: block !important;
  }

  .jadwal-poster-section .mutu-img {
    height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
  }

  .mutu-card-body {
    padding: 18px 16px !important;
  }

  .mutu-card-title {
    font-size: 1.1rem !important;
  }

  .mutu-card-desc {
    font-size: 0.85rem !important;
  }

  .mutu-card-footer {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .mutu-card-footer .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* 14. Halaman Sasaran Keselamatan Pasien (SKP) di Layar Mobile */
  .skp-main-section {
    padding: 2.5rem 0 !important;
  }

  .skp-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .skp-item-card {
    padding: 20px 18px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .skp-num-badge {
    width: 36px !important;
    height: 36px !important;
    font-size: 1rem !important;
  }

  .skp-item-title {
    font-size: 1.05rem !important;
  }

  .skp-item-desc {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
  }

  .skp-poster-section {
    padding: 2.5rem 0 !important;
  }

  .skp-poster-showcase-box {
    display: flex !important;
    flex-direction: column !important;
    padding: 20px 16px !important;
    gap: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .showcase-img-wrap {
    width: 100% !important;
    height: 320px !important;
  }

  .showcase-content {
    width: 100% !important;
  }

  .showcase-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .showcase-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* 15. Halaman Struktur Organisasi di Layar Mobile (Precision Vector Flowchart) */
  .org26-control-bar {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .org26-tabs {
    width: 100% !important;
    display: flex !important;
  }

  .org26-tab-btn {
    flex: 1 !important;
    justify-content: center !important;
    padding: 10px 8px !important;
    font-size: 0.82rem !important;
  }

  .org26-actions {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .btn-org-action {
    width: 100% !important;
    justify-content: center !important;
    padding: 10px 14px !important;
  }

  .org26-scroll-guide {
    display: flex !important;
  }

  .org26-canvas-outer {
    padding: 24px 14px 20px !important;
    border-radius: 6px !important;
  }

  .org26-canvas {
    min-width: 1100px !important;
  }

  .org26-official-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 18px 20px !important;
  }

  .org26-official-header .header-right {
    width: 100% !important;
  }

  .org26-official-header .btn-org-action {
    width: 100% !important;
  }

  .org26-modal {
    padding: 10px !important;
  }

  .org26-modal-content {
    max-height: 96vh !important;
  }

  .org26-modal-header {
    padding: 12px 16px !important;
  }

  .modal-title-group h4 {
    font-size: 0.92rem !important;
  }

  /* 16. Halaman Jadwal Dokter di Mobile (Poster Vertikal Penuh, Jernih, & Lega) */
  .jadwal-poster-section {
    padding: 2rem 0 !important;
  }

  .jadwal-poster-section .mutu-preview-box {
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    background: #ffffff !important;
    padding: 0 !important;
    display: block !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .jadwal-poster-section .mutu-img {
    height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
  }

  .table-container-card {
    border-radius: 6px !important;
    width: 100% !important;
    border: 1px solid #e2e8f0 !important;
  }

  .table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100% !important;
  }

  .custom-clean-table {
    min-width: 600px !important;
    font-size: 0.85rem !important;
  }

  .custom-clean-table thead th,
  .custom-clean-table tbody td {
    padding: 12px 14px !important;
    white-space: nowrap !important;
  }

  /* 17. Halaman Galeri di Layar Mobile (1 Kolom Penuh Megah & Search Bar Rapi) */
  .gallery-page-section {
    padding: 2.5rem 0 !important;
  }

  .gallery-controls-wrap {
    gap: 14px !important;
    margin-bottom: 2rem !important;
    width: 100% !important;
  }

  .gallery-search-wrap {
    max-width: 100% !important;
    width: 100% !important;
  }

  .search-input-box {
    padding: 10px 14px !important;
  }

  .gallery-search-input {
    font-size: 0.88rem !important;
  }

  .gallery-filter-bar {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100% !important;
    justify-content: flex-start !important;
    padding-bottom: 6px !important;
    gap: 8px !important;
  }

  .gallery-filter-btn {
    white-space: nowrap !important;
    padding: 8px 16px !important;
    font-size: 0.82rem !important;
    flex-shrink: 0 !important;
  }

  .gallery-rooms-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
  }

  .gallery-room-card {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .room-cover-box {
    height: 210px !important;
  }

  .room-card-body {
    padding: 18px 16px !important;
  }

  .room-card-title {
    font-size: 1.15rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .room-card-desc {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* 18. Halaman Detail Galeri di Layar Mobile */
  .gallery-detail-section {
    padding: 1.75rem 0 3.5rem !important;
  }

  .gallery-back-wrap {
    margin-bottom: 1.5rem !important;
    display: flex !important;
    justify-content: flex-start !important;
  }

  .btn-back-gallery {
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
    border-radius: 6px !important;
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    color: #334155 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
  }

  .btn-back-gallery:hover,
  .btn-back-gallery:active {
    color: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
    background: #f0fdf4 !important;
  }

  .album-photos-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 3rem !important;
    width: 100% !important;
  }

  .photo-card {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .photo-img-wrapper {
    height: 220px !important;
  }

  .photo-info-box {
    padding: 18px 16px !important;
  }

  .photo-item-title {
    font-size: 1.15rem !important;
    line-height: 1.35 !important;
  }

  .photo-item-desc {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
  }

  .photo-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .other-albums-section {
    padding-top: 2.5rem !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .other-albums-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 14px !important;
    padding: 0 4px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .other-album-card {
    flex: 0 0 78% !important;
    max-width: 290px !important;
    scroll-snap-align: start !important;
    border-radius: 6px !important;
    box-sizing: border-box !important;
  }

  .other-cover-wrap {
    height: 160px !important;
  }

  .other-body {
    padding: 14px 16px !important;
  }

  .other-title {
    font-size: 0.98rem !important;
    line-height: 1.35 !important;
  }

  /* 19. Halaman Informasi Tarif & Biaya di Layar Mobile */
  .service-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .service-item-card {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 22px 18px !important;
  }

  .service-info-list {
    margin-top: 14px !important;
    padding: 12px 16px !important;
    border-radius: 6px !important;
  }

  /* 20. Halaman Artikel Kesehatan di Layar Mobile (1 Kolom Penuh Megah) */
  .article-page-section {
    padding: 2.5rem 0 !important;
  }

  .article-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
  }

  .article-card {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .article-cover-wrap {
    height: 200px !important;
  }

  .article-body {
    padding: 18px 16px !important;
  }

  .article-meta-row {
    font-size: 0.78rem !important;
    gap: 10px !important;
    margin-bottom: 8px !important;
  }

  .article-title {
    font-size: 1.15rem !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
  }

  .article-summary {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
  }

  /* 21. Halaman Detail Artikel di Layar Mobile (Unified Editorial Flow) */
  .article-detail-section {
    padding: 1.75rem 0 3.5rem !important;
  }

  .article-editorial-header {
    margin-bottom: 1.5rem !important;
  }

  .article-detail-h1 {
    font-size: 1.45rem !important;
    line-height: 1.35 !important;
    margin: 10px 0 14px !important;
  }

  .article-author-box {
    font-size: 0.82rem !important;
    padding: 6px 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .article-featured-img-wrap {
    height: 230px !important;
    margin-bottom: 1.75rem !important;
    border-radius: 6px !important;
  }

  .article-detail-content {
    font-size: 0.95rem !important;
    line-height: 1.75 !important;
    margin-bottom: 2.5rem !important;
  }

  .article-detail-content .lead-paragraph {
    font-size: 1rem !important;
    line-height: 1.75 !important;
    margin-bottom: 1.25rem !important;
  }

  .article-detail-content h3 {
    font-size: 1.2rem !important;
    margin: 1.75rem 0 0.8rem !important;
  }

  .article-detail-content ul {
    padding-left: 18px !important;
    margin-bottom: 1.25rem !important;
  }

  .article-detail-nav {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .article-detail-nav .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* 22. Halaman Pendaftaran Online di Layar Mobile */
  .pendaftaran-page-section {
    padding: 1.75rem 0 3.5rem !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .pendaftaran-hub-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .pendaftaran-form-card {
    padding: 20px 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 8px !important;
  }

  .pendaftaran-form,
  .form-step-section,
  .form-group {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .form-control {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    font-size: 0.9rem !important;
  }

  select.form-control {
    width: 100% !important;
    max-width: 100% !important;
    text-overflow: ellipsis !important;
  }

  .form-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .radio-cards-wrap {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .radio-box-item {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .radio-box-content {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .pendaftaran-side-col,
  .side-info-card,
  .side-wa-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .ticket-details-grid {
    grid-template-columns: 1fr !important;
  }

  .ticket-actions {
    flex-direction: column !important;
  }

  .ticket-actions .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* 23. Halaman Kontak & Lokasi di Layar Mobile */
  .contact-page-section {
    padding: 1.75rem 0 3.5rem !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .contact-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: 100% !important;
  }

  .contact-info-col,
  .contact-form-col {
    width: 100% !important;
    max-width: 100% !important;
  }

  .contact-card-box,
  .contact-form-card {
    padding: 20px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 8px !important;
  }

  .contact-card-title,
  .form-title {
    font-size: 1.25rem !important;
  }

  .map-container-box {
    width: 100% !important;
    box-sizing: border-box !important;
    margin-top: 16px !important;
    border-radius: 8px !important;
  }
}

@media (max-width: 480px) {
  .hero-rc-title {
    font-size: 1.8rem !important;
  }
  .logo-img {
    height: 34px !important;
  }
  .rc-feature-card {
    padding: 14px 15px !important;
    gap: 14px !important;
  }
  .rc-feature-icon {
    width: 46px !important;
    height: 46px !important;
    font-size: 1.2rem !important;
  }
  .rc-feature-title {
    font-size: 0.95rem !important;
  }
  .rc-feature-desc {
    font-size: 0.78rem !important;
  }
}

/* ==========================================================================
   MODAL POP-UP BANNER PENGUMUMAN BERANDA (Clean Modern Frosted Backdrop)
   ========================================================================== */
.web-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 16px;
  box-sizing: border-box;
}

.web-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.web-popup-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  position: relative;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.web-popup-overlay.show .web-popup-card {
  transform: scale(1);
}

.web-popup-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  border: none;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
}

.web-popup-close-btn:hover {
  background: #ef4444;
  transform: rotate(90deg);
}

.web-popup-link {
  display: block;
  line-height: 0;
  text-decoration: none;
}

.web-popup-img {
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

.web-popup-footer {
  padding: 10px 16px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #64748b;
}

.web-popup-dont-show {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  margin: 0;
  font-size: 0.78rem;
  color: #475569;
  user-select: none;
}

.web-popup-dont-show input[type="checkbox"] {
  cursor: pointer;
  accent-color: #16a34a;
}

/* ==========================================================================
   HALAMAN DETAIL GALERI (Clean Modern 3-Column Photo Grid)
   ========================================================================== */
.gallery-detail-section {
  padding: 3rem 0 5rem 0;
  background: #ffffff;
}

.gallery-detail-header-box {
  margin-bottom: 2.5rem;
  max-width: 850px;
}

.btn-back-gallery {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 7px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 1.25rem;
}

.btn-back-gallery:hover {
  background: #16a34a;
  color: #ffffff;
  border-color: #16a34a;
}

.gallery-album-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin: 0 0 0.65rem 0;
}

.gallery-album-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Grid Foto 3 Kolom Murni */
.gallery-clean-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 3.5rem;
}

.clean-photo-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.clean-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.clean-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.clean-photo-card:hover .clean-photo-img {
  transform: scale(1.05);
}

.clean-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.clean-photo-card:hover .clean-photo-overlay {
  opacity: 1;
}

.clean-photo-zoom-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(0.85);
  transition: transform 0.2s ease;
}

.clean-photo-card:hover .clean-photo-zoom-icon {
  transform: scale(1);
}

/* Responsif Galeri */
@media (max-width: 900px) {
  .gallery-clean-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .gallery-album-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 540px) {
  .gallery-clean-photo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery-album-title {
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   BUKU PROFIL DIGITAL INTERAKTIF (3D FLIPBOOK BERANDA)
   ========================================================================== */
.home-profile-book-section {
  padding: 70px 0 90px;
  background-color: #f8fafc;
  background-image: 
    radial-gradient(circle at 50% 45%, rgba(22, 163, 74, 0.08) 0%, transparent 65%),
    radial-gradient(#e2e8f0 1.2px, transparent 1.2px);
  background-size: 100% 100%, 24px 24px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.home-profile-book-section .section-header-clean {
  position: relative;
  z-index: 2;
}

.home-profile-book-section .book-viewport-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 20px 0 42px;
  width: 100%;
  min-height: 620px;
  overflow: visible;
}

/* Bayangan meja 3D lembut di bawah buku fisik yang sedang terbuka */
.home-profile-book-section .book-viewport-container::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 920px;
  max-width: 92%;
  height: 32px;
  background: radial-gradient(
    ellipse at 50% 50%, 
    rgba(15, 23, 42, 0.18) 0%, 
    rgba(15, 23, 42, 0.07) 45%, 
    rgba(15, 23, 42, 0.01) 70%, 
    transparent 85%
  );
  filter: blur(12px);
  pointer-events: none;
  z-index: 1;
}

.home-profile-book-section .flipbook-wrap {
  margin: 0 auto;
  position: relative;
  max-width: 100%;
  min-height: 580px;
  filter: drop-shadow(0 20px 30px rgba(15, 23, 42, 0.15)) drop-shadow(0 8px 14px rgba(15, 23, 42, 0.08));
  transition: filter 0.3s ease;
}

/* Penanda Poros & Lekukan Punggung Buku Tengah (Center Spine Fold & Ribbon) */
.home-profile-book-section .book-spine-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 580px;
  max-height: calc(100% - 16px);
  pointer-events: none;
  z-index: 25;
  display: none;
}

@media (min-width: 769px) {
  .home-profile-book-section .book-spine-divider {
    display: block;
    background: linear-gradient(
      to right,
      rgba(15, 23, 42, 0.08) 0%,
      rgba(15, 23, 42, 0.3) 30%,
      rgba(15, 23, 42, 0.82) 50%,
      rgba(15, 23, 42, 0.3) 70%,
      rgba(15, 23, 42, 0.08) 100%
    );
    box-shadow: 0 0 10px rgba(15, 23, 42, 0.45);
    border-radius: 1px;
  }

  /* Ujung atas dan bawah jilidan buku (Spine Headband & Tailband) */
  .home-profile-book-section .book-spine-divider::before,
  .home-profile-book-section .book-spine-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 6px;
    background: #0f172a;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  }
  .home-profile-book-section .book-spine-divider::before {
    top: -3px;
  }
  .home-profile-book-section .book-spine-divider::after {
    bottom: -3px;
  }
}

/* Safeguard: Sembunyikan lembaran tambahan sebelum StPageFlip aktif agar tidak bertumpuk vertikal */
.home-profile-book-section .flipbook-wrap:not(.stf__parent) {
  min-height: 540px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-profile-book-section .flipbook-wrap:not(.stf__parent) .book-page:not(:first-child) {
  display: none !important;
}

.home-profile-book-section .flipbook-wrap:not(.stf__parent) .book-cover {
  max-width: 430px;
  width: 100%;
  height: 570px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Kunci batas area flipbook agar potongan halaman di bawah lipatan tidak bocor/nongol ke bawah */
.home-profile-book-section .stf__parent,
.home-profile-book-section .stf__wrapper,
.home-profile-book-section .stf__block {
  overflow: hidden !important;
  contain: paint !important;
  border-radius: 8px;
}

.home-profile-book-section .book-page,
.home-profile-book-section .stf__item {
  background-color: #ffffff;
  padding: 28px 26px 48px 26px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden !important;
  user-select: none;
  height: 100% !important;
  max-height: 100% !important;
}

.home-profile-book-section .book-page > div:first-child {
  max-height: calc(100% - 38px);
  overflow: hidden;
}

/* ==========================================================================
   EFEK REALISTIS BUKU 3D: HALAMAN KIRI (LEFT SPREAD PAGE)
   ========================================================================== */
.home-profile-book-section .stf__item.--left {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: 
    -3px 1px 0 #f8fafc,
    -6px 2px 0 #e2e8f0,
    -9px 3px 0 #cbd5e1,
    -12px 4px 0 #94a3b8,
    -18px 16px 28px rgba(15, 23, 42, 0.16) !important;
}

.home-profile-book-section .stf__item.--left .book-page:not(.book-cover):not(.book-cover-back) {
  border-left: 2px solid #e2e8f0;
  border-top: 1.5px solid #e2e8f0;
  border-bottom: 2px solid #cbd5e1;
  border-right: 1px solid rgba(15, 23, 42, 0.35) !important;
  border-top-left-radius: 6px !important;
  border-bottom-left-radius: 6px !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  padding-right: 36px;
  padding-left: 28px;
  background: linear-gradient(
    to right,
    #f8fafc 0%,
    #fdfdfd 10%,
    #ffffff 65%,
    #f8f9fa 82%,
    #edf2f7 93%,
    #cbd5e1 100%
  ) !important;
  box-shadow: 
    inset -36px 0 28px -12px rgba(15, 23, 42, 0.3),
    inset -14px 0 12px -2px rgba(15, 23, 42, 0.45),
    inset 6px 0 8px -3px rgba(0, 0, 0, 0.04) !important;
}

/* Overlay Bayangan Lekukan Lipatan Poros Halaman Kiri */
.home-profile-book-section .stf__item.--left .book-page:not(.book-cover):not(.book-cover-back)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48px;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 0.04) 30%,
    rgba(15, 23, 42, 0.16) 65%,
    rgba(15, 23, 42, 0.35) 88%,
    rgba(15, 23, 42, 0.65) 97%,
    rgba(15, 23, 42, 0.85) 100%
  );
  z-index: 10;
}

/* ==========================================================================
   EFEK REALISTIS BUKU 3D: HALAMAN KANAN (RIGHT SPREAD PAGE)
   ========================================================================== */
.home-profile-book-section .stf__item.--right {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  box-shadow: 
    3px 1px 0 #f8fafc,
    6px 2px 0 #e2e8f0,
    9px 3px 0 #cbd5e1,
    12px 4px 0 #94a3b8,
    18px 16px 28px rgba(15, 23, 42, 0.16) !important;
}

.home-profile-book-section .stf__item.--right .book-page:not(.book-cover):not(.book-cover-back) {
  border-right: 2px solid #e2e8f0;
  border-top: 1.5px solid #e2e8f0;
  border-bottom: 2px solid #cbd5e1;
  border-left: 1px solid rgba(15, 23, 42, 0.35) !important;
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding-left: 36px;
  padding-right: 28px;
  background: linear-gradient(
    to left,
    #f8fafc 0%,
    #fdfdfd 10%,
    #ffffff 65%,
    #f8f9fa 82%,
    #edf2f7 93%,
    #cbd5e1 100%
  ) !important;
  box-shadow: 
    inset 36px 0 28px -12px rgba(15, 23, 42, 0.3),
    inset 14px 0 12px -2px rgba(15, 23, 42, 0.45),
    inset -6px 0 8px -3px rgba(0, 0, 0, 0.04) !important;
}

/* Petunjuk Lipatan Kertas di Sudut Kanan Bawah (Page Curl / Dog-Ear) */
.home-profile-book-section .stf__item.--right .book-page:not(.book-cover):not(.book-cover-back)::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 22px 22px;
  border-color: transparent transparent #cbd5e1 transparent;
  filter: drop-shadow(-2px -2px 3px rgba(15, 23, 42, 0.18));
  pointer-events: none;
  z-index: 15;
}

/* Overlay Bayangan Lekukan Lipatan Poros Halaman Kanan */
.home-profile-book-section .stf__item.--right .book-page:not(.book-cover):not(.book-cover-back)::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 48px;
  pointer-events: none;
  background: linear-gradient(
    to left,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 0.04) 30%,
    rgba(15, 23, 42, 0.16) 65%,
    rgba(15, 23, 42, 0.35) 88%,
    rgba(15, 23, 42, 0.65) 97%,
    rgba(15, 23, 42, 0.85) 100%
  );
  z-index: 10;
}


/* ==========================================================================
   STYLING REALISTIS SAMPUL BUKU SAAT TERTUTUP (HARDCOVER 3D)
   ========================================================================== */
.home-profile-book-section .book-cover {
  background: #ffffff !important;
  border: 1px solid #cbd5e1;
  border-radius: 4px 14px 14px 4px !important;
  box-shadow: 
    inset 8px 0 12px -4px rgba(15, 23, 42, 0.14),
    inset -2px 0 6px rgba(0, 0, 0, 0.02),
    4px 2px 0 #f8fafc,
    8px 4px 0 #e2e8f0,
    12px 6px 0 #cbd5e1,
    18px 14px 32px rgba(15, 23, 42, 0.18) !important;
}

.home-profile-book-section .book-cover-back {
  background: #ffffff !important;
  border: 1px solid #cbd5e1;
  border-radius: 14px 4px 4px 14px !important;
  box-shadow: 
    inset -8px 0 12px -4px rgba(15, 23, 42, 0.14),
    inset 2px 0 6px rgba(0, 0, 0, 0.02),
    -4px 2px 0 #f8fafc,
    -8px 4px 0 #e2e8f0,
    -12px 6px 0 #cbd5e1,
    -18px 14px 32px rgba(15, 23, 42, 0.18) !important;
}

/* ==========================================================================
   COVER BUKU PROFIL EDITORIAL MODERN (SESUAI CONTOH GAMBAR 1)
   ========================================================================== */
.home-profile-book-section .book-cover {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  padding: 24px 24px 20px 24px;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.home-profile-book-section .book-cover-back {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  padding: 24px 24px 22px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Header Cover: Logo Resmi Tanpa Badge */
.home-profile-book-section .cover-header-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
  z-index: 5;
  position: relative;
}

.home-profile-book-section .cover-brand-logo-img {
  max-width: 165px;
  height: auto;
  display: block;
}

/* Stage Grafis: Frame Foto yang Lebih Proporsional & Mengisi Ruang Vertikal */
.home-profile-book-section .cover-graphic-stage {
  position: relative;
  width: 100%;
  height: 245px;
  margin: 6px 0 16px 0;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f1f5f9;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.home-profile-book-section .cover-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-profile-book-section .cover-svg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Bagian Bawah: Tipografi Bersih & Seimbang Mengisi Sisi Bawah */
.home-profile-book-section .cover-content-bottom {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-profile-book-section .cover-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.home-profile-book-section .cover-title-words {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.home-profile-book-section .word-company {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.home-profile-book-section .word-profile {
  font-size: 1.65rem;
  font-weight: 800;
  color: #F27A1A;
  letter-spacing: -0.5px;
}

.home-profile-book-section .cover-vertical-divider {
  width: 3px;
  height: 48px;
  background-color: #F27A1A;
  border-radius: 2px;
}

.home-profile-book-section .cover-year-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-profile-book-section .cover-year-text {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: #0f172a;
}

.home-profile-book-section .cover-year-text span {
  color: #16a34a;
}

.home-profile-book-section .cover-year-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.home-profile-book-section .cover-desc-paragraph {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 16px 0;
  text-align: left;
}

.home-profile-book-section .cover-turn-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 8px 18px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.home-profile-book-section .cover-turn-hint i {
  font-size: 0.76rem;
  transition: transform 0.2s ease;
}

.home-profile-book-section .cover-turn-hint:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   HALAMAN ISI BUKU (FOOTER TERKUNCI SEJAJAR DI SEMUA HALAMAN)
   ========================================================================== */
.home-profile-book-section .page-header-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.home-profile-book-section .page-header-mini span {
  font-size: 0.76rem;
  font-weight: 700;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.home-profile-book-section .page-header-mini i {
  color: #cbd5e1;
  font-size: 0.85rem;
}

.home-profile-book-section .page-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.home-profile-book-section .book-subheading {
  font-size: 0.86rem;
  font-weight: 700;
  color: #0f172a;
  margin: 8px 0 4px 0;
  line-height: 1.35;
}

.home-profile-book-section .page-text {
  font-size: 0.84rem;
  color: #334155;
  line-height: 1.55;
  margin-bottom: 8px;
  text-align: justify;
}

/* KUNCI FOOTER NOMOR HALAMAN PALING DASAR & SEJAJAR 100% DI SEMUA HALAMAN */
.home-profile-book-section .page-footer-mini {
  position: absolute;
  bottom: 16px;
  left: 26px;
  right: 26px;
  border-top: 1px solid #e2e8f0;
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
  color: #94a3b8;
  font-weight: 600;
  background: transparent;
  z-index: 5;
}

.home-profile-book-section .book-quote-box {
  background: #f0fdf4;
  border-left: 3.5px solid #16a34a;
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  margin: 14px 0;
  font-size: 0.85rem;
  font-style: italic;
  color: #166534;
  line-height: 1.55;
}

.home-profile-book-section .director-sign-card {
  margin-top: 16px;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-profile-book-section .director-sign-text {
  display: flex;
  flex-direction: column;
}

.home-profile-book-section .director-sign-text strong {
  font-size: 0.86rem;
  color: #0f172a;
}

.home-profile-book-section .director-sign-text span {
  font-size: 0.74rem;
  color: #64748b;
}

.home-profile-book-section .director-badge-kars {
  font-size: 0.72rem;
  font-weight: 700;
  color: #16a34a;
  background: #ffffff;
  border: 1px solid #bbf7d0;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.home-profile-book-section .book-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0;
}

.home-profile-book-section .book-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: #334155;
  line-height: 1.5;
}

.home-profile-book-section .book-feature-item i {
  color: #16a34a;
  margin-top: 3px;
  font-size: 0.9rem;
}

/* Gambar Halaman Standar Buku Profil & Zoom Hint */
.home-profile-book-section .book-page-image-box {
  position: relative;
  width: 100%;
  max-height: 165px;
  margin: 8px 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
}

.home-profile-book-section .book-page-image-box:hover {
  border-color: #16a34a;
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.15);
}

.home-profile-book-section .book-page-image-box img {
  max-width: 100%;
  max-height: 155px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.home-profile-book-section .book-page-image-box:hover img {
  transform: scale(1.025);
}

/* Mode Medium: Ketika teks hanya 1 paragraf ringkas (tanpa quote & tanpa P2) */
.home-profile-book-section .book-page-image-box.is-medium-featured {
  max-height: 270px;
  margin: 10px 0;
}
.home-profile-book-section .book-page-image-box.is-medium-featured img {
  max-height: 260px;
}

/* Mode Full Page: Ketika TANPA teks (Hanya Judul + Gambar/Bagan Struktur Organisasi Penuh) */
.home-profile-book-section .book-page-image-box.is-full-featured {
  max-height: 380px;
  height: 375px;
  margin: 8px 0 4px 0;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
}
.home-profile-book-section .book-page-image-box.is-full-featured img {
  max-height: 365px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Styling Poin-Poin / Bullet List Editorial di Lembaran Buku */
.home-profile-book-section .book-bullet-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.home-profile-book-section .book-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.81rem;
  line-height: 1.42;
  color: #334155;
}

.home-profile-book-section .book-bullet-list li i {
  color: #16a34a;
  font-size: 0.80rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.home-profile-book-section .book-bullet-list li span {
  flex: 1;
}

.home-profile-book-section .book-bullet-list li span strong {
  color: #0f172a;
  font-weight: 700;
}

/* Styling Poin-Poin 2 Kolom (Editorial Clean List: Tanpa Card Background, Mengalir ke bawah lalu ke samping) */
.home-profile-book-section .book-bullet-list.grid-2-col {
  display: block;
  column-count: 2;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-gap: 14px;
  -webkit-column-gap: 14px;
  -moz-column-gap: 14px;
  margin: 4px 0 8px 0;
  padding: 0;
  list-style: none;
}

.home-profile-book-section .book-bullet-list.grid-2-col li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 2px 0;
  font-size: 0.80rem;
  line-height: 1.38;
  margin-bottom: 5px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  box-shadow: none;
  color: #334155;
  transition: none;
}

.home-profile-book-section .book-bullet-list.grid-2-col li:hover {
  background: transparent;
  border-color: transparent;
  transform: none;
}

.home-profile-book-section .book-bullet-list.grid-2-col li i {
  color: #16a34a;
  font-size: 0.78rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.home-profile-book-section .book-bullet-list.grid-2-col li span {
  flex: 1;
  word-break: break-word;
}

.home-profile-book-section .book-page-image-hint {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.25s ease;
  pointer-events: none;
}

.home-profile-book-section .book-page-image-box:hover .book-page-image-hint {
  opacity: 1;
  transform: translateY(0);
}

.home-profile-book-section .book-controls-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

.home-profile-book-section .btn-book-control {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.home-profile-book-section .btn-book-control:hover {
  background: #16a34a;
  color: #ffffff;
  border-color: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
}

.home-profile-book-section .book-page-indicator {
  color: #334155;
  font-size: 0.88rem;
  font-weight: 700;
  min-width: 130px;
  text-align: center;
  background: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid #cbd5e1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.home-profile-book-section .btn-text-short {
  display: none;
}

.home-profile-book-section .btn-text-full {
  display: inline;
}

@media (max-width: 768px) {
  .home-profile-book-section {
    padding: 30px 0 44px;
  }
  .home-profile-book-section .section-header-clean {
    margin-bottom: 12px !important;
  }
  .home-profile-book-section .section-sub-label {
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
  }
  .home-profile-book-section .section-title-clean {
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 6px;
  }
  .home-profile-book-section .section-desc-clean {
    font-size: 0.8rem;
    line-height: 1.45;
    padding: 0 8px;
    margin-bottom: 8px;
  }
  .home-profile-book-section .book-viewport-container {
    min-height: unset;
    padding: 0;
    overflow: hidden !important;
  }
  .home-profile-book-section .book-page {
    padding: 16px 16px 42px 16px;
    height: 100%;
    position: relative;
    box-sizing: border-box;
  }
  .home-profile-book-section .book-cover {
    padding: 16px 16px 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .home-profile-book-section .cover-header-brand {
    margin-bottom: 6px;
  }
  .home-profile-book-section .cover-brand-logo-img {
    max-width: 130px;
  }
  .home-profile-book-section .cover-graphic-stage {
    height: 175px;
    margin: 6px 0 10px 0;
    border-radius: 8px;
  }
  .home-profile-book-section .cover-title-row {
    gap: 10px;
    margin-bottom: 6px;
  }
  .home-profile-book-section .word-company,
  .home-profile-book-section .word-profile {
    font-size: 1.25rem;
  }
  .home-profile-book-section .cover-vertical-divider {
    height: 36px;
    width: 2.5px;
  }
  .home-profile-book-section .cover-year-text {
    font-size: 1.15rem;
  }
  .home-profile-book-section .cover-year-label {
    font-size: 0.6rem;
    margin-top: 2px;
  }
  .home-profile-book-section .cover-desc-paragraph {
    font-size: 0.72rem;
    line-height: 1.4;
    margin: 0 0 10px 0;
  }
  .home-profile-book-section .cover-turn-hint {
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 16px;
  }
  .home-profile-book-section .page-header-mini {
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
  .home-profile-book-section .page-header-mini span {
    font-size: 0.7rem;
  }
  .home-profile-book-section .page-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .home-profile-book-section .page-text {
    font-size: 0.78rem;
    line-height: 1.55;
    margin-bottom: 10px;
  }
  .home-profile-book-section .book-quote-box {
    padding: 8px 12px;
    margin: 8px 0;
    font-size: 0.76rem;
    line-height: 1.45;
    border-left-width: 3px;
    border-radius: 0 6px 6px 0;
  }
  .home-profile-book-section .book-feature-list {
    gap: 8px;
    margin: 8px 0;
  }
  .home-profile-book-section .book-feature-item {
    gap: 10px;
    font-size: 0.78rem;
    line-height: 1.4;
  }
  .home-profile-book-section .book-feature-item i {
    font-size: 0.8rem;
    margin-top: 2px;
  }
  .home-profile-book-section .page-footer-mini {
    position: absolute;
    bottom: 12px;
    left: 16px;
    right: 16px;
    border-top: 1px solid #f1f5f9;
    padding-top: 6px;
    font-size: 0.7rem;
    background: #ffffff;
    z-index: 5;
  }
  .home-profile-book-section .book-controls-bar {
    margin-top: 14px;
    gap: 8px;
    padding: 0 10px;
    width: 100%;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
  .home-profile-book-section .btn-text-full {
    display: none;
  }
  .home-profile-book-section .btn-text-short {
    display: inline;
  }
  .home-profile-book-section .btn-book-control {
    padding: 7px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 25px;
    gap: 6px;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }
  .home-profile-book-section .btn-book-control i {
    font-size: 0.72rem;
  }
  .home-profile-book-section .book-page-indicator {
    font-size: 0.76rem;
    font-weight: 700;
    padding: 7px 12px;
    min-width: unset;
    white-space: nowrap;
    border-radius: 25px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  }
}

/* ==========================================================================
   PORTAL LAYANAN UTAMA PASIEN (CLEAN MEDICAL EXECUTIVE THEME - 3x2)
   ========================================================================== */
.portal-services-section {
  padding: 60px 0 75px;
  background-color: #ffffff;
  position: relative;
  border-bottom: 1px solid #f1f5f9;
  overflow: hidden;
}

.portal-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.portal-service-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none !important;
  color: inherit;
  transition: border-color 0.2s ease;
  box-shadow: none; /* Bersih murni tanpa shadow */
  position: relative;
  box-sizing: border-box;
}

/* Hover: Murni tanpa shadow gradient / glow, border hijau solid tegas */
.portal-service-card:hover {
  transform: translateY(-3px) !important;
  border-color: #16a34a;
  transition: transform 0.2s ease, border-color 0.2s ease !important;
}

.portal-card-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portal-icon-wrapper {
  width: 52px;
  height: 52px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  font-size: 1.45rem;
  transition: all 0.2s ease;
}

.portal-service-card:hover .portal-icon-wrapper {
  background: #16a34a;
  color: #ffffff;
  border-color: #16a34a;
}

.portal-service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.portal-service-card:hover .portal-service-title {
  color: #16a34a;
}

.portal-service-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.portal-card-footer {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

/* Tombol Aksi Nyata (Bukan Sekadar Teks Biasa) */
.btn-portal-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.btn-portal-action i {
  font-size: 0.82rem;
  color: #64748b;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Saat kartu disentuh/hover, tombol aksi aktif menjadi hijau solid */
.portal-service-card:hover .btn-portal-action {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
}

.portal-service-card:hover .btn-portal-action i {
  color: #ffffff;
  transform: translateX(4px);
}

/* Responsif Layanan Utama */
@media (max-width: 992px) {
  .portal-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .portal-services-section {
    padding: 38px 0 45px;
  }
  .portal-services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .portal-service-card {
    padding: 18px 16px;
  }
  .portal-card-main {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
  }
  .portal-icon-wrapper {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
    flex-shrink: 0;
  }
  .portal-service-title {
    font-size: 1.05rem;
    margin-bottom: 4px;
  }
  .portal-service-desc {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  .portal-card-footer {
    margin-top: 14px;
    padding-top: 12px;
  }
  .btn-portal-action {
    padding: 9px 14px;
    font-size: 0.82rem;
  }
}

