/* ============================================
   RSMH Profile Website - Kemenkes Standard
   Design System & Styles
   ============================================ */

/* ---------- CSS Custom Properties (Design Tokens) ---------- */
:root {
  /* Warna Utama */
  --color-primary: #0e9f8d;
  --color-primary-dark: #0b8a7a;
  --color-primary-light: #6cc4a1;
  --color-gradient-start: #0e9f8d;
  --color-gradient-end: #6cc4a1;

  /* Warna Netral */
  --color-black: #111111;
  --color-dark-gray: #6b7280;
  --color-light-gray: #e5e7eb;
  --color-background: #f9fafb;
  --color-white: #ffffff;

  /* Warna Semantik */
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  /* Typography */
  --font-primary:
    "Inter", "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font Sizes */
  --fs-h1: 48px;
  --fs-h2: 40px;
  --fs-h3: 32px;
  --fs-h4: 28px;
  --fs-body1: 16px;
  --fs-body2: 14px;
  --fs-body3: 12px;

  /* Font Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing (8pt grid) */
  --space-xs: 4px;
  --space-s: 8px;
  --space-m: 16px;
  --space-l: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  --space-section: 80px;

  /* Border Radius */
  --radius-button: 8px;
  --radius-card: 12px;
  --radius-large: 16px;

  /* Shadows */
  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.12);
  --shadow-elevated: 0 8px 24px rgba(0, 0, 0, 0.15);

  /* Layout */
  --max-width: 100%;
  --gutter: 24px;
  --margin-desktop: 60px;
  --margin-mobile: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-light-gray);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--color-gradient-start), var(--color-gradient-end));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--color-primary-dark), var(--color-gradient-start));
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body1);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-black);
  background-color: var(--color-background);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-primary);
}

ul,
ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1,
.h1 {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: 1.2;
}

h2,
.h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
}

h3,
.h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
}

h4,
.h4 {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
}

/* ---------- Layout Utilities ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--margin-desktop);
}

.section-padding {
  padding: var(--space-section) 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-s);
  padding: 12px 24px;
  border-radius: var(--radius-button);
  font-size: var(--fs-body1);
  font-weight: var(--fw-semibold);
  transition: all var(--transition-normal);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* ============================================
   SECTION 1: TOP BAR
   ============================================ */
.top-bar {
  /* background: linear-gradient(135deg,
      var(--color-gradient-start),
      var(--color-gradient-end)); */
  background-color: #0e9f8d;
  color: var(--color-white);
  padding: var(--space-s) 0;
  font-size: var(--fs-body3);
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-s);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: var(--space-l);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: var(--space-m);
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
  transition: opacity var(--transition-fast);
}

.top-bar-item:hover {
  opacity: 0.85;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.4);
}

.lang-flag {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  margin-right: 4px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3px 4px;
}

.lang-btn {
  padding: 2px 10px;
  border-radius: 16px;
  font-size: var(--fs-body3);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
}

.lang-btn.active {
  background: var(--color-white);
  color: var(--color-primary);
}

.lang-btn:hover:not(.active) {
  color: var(--color-white);
}

/* --- Google Translate Integration --- */
/* Hide the Google Translate tooltip and balloon */
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-text-highlight {
  display: none !important;
}

/* Prevent Google Translate from pushing body down */
body {
  top: 0 !important;
}

html.translated-ltr body,
html.translated-rtl body {
  top: 0 !important;
}

.goog-te-gadget {
  font-size: 0 !important;
  line-height: 0 !important;
}

/* Keep the widget container alive — positioned offscreen so GT can render */
#google_translate_element {
  position: fixed;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  z-index: -1;
}

/* Globe button for more languages */
.lang-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 2px 10px !important;
  font-size: 13px !important;
  cursor: pointer;
  white-space: nowrap;
}

.lang-more-btn i {
  font-size: 13px;
}

/* Language dropdown panel */
.lang-switch {
  position: relative;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 300px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elevated);
  padding: var(--space-m);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-normal);
  z-index: 2000;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: var(--color-white);
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.04);
}

.lang-dropdown-title {
  font-size: var(--fs-body3);
  font-weight: var(--fw-semibold);
  color: var(--color-dark-gray);
  margin-bottom: var(--space-s);
  padding-bottom: var(--space-s);
  border-bottom: 1px solid var(--color-light-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-button);
  font-size: var(--fs-body2);
  font-weight: var(--fw-medium);
  color: var(--color-black);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-primary);
}

.lang-dropdown-item:hover {
  background: rgba(14, 159, 141, 0.08);
  color: var(--color-primary);
}

.lang-dropdown-item.active {
  background: rgba(14, 159, 141, 0.12);
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
}

.lang-flag {
  font-size: 18px;
  line-height: 1;
}

.lang-name {
  font-size: 13px;
  white-space: nowrap;
}

/* Translated text indicator - remove Google's yellow highlight */
font[style] {
  background: none !important;
  box-shadow: none !important;
}

/* ============================================
   SECTION 1: HEADER / NAVIGATION
   ============================================ */
.header {
  background: var(--color-white);
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition-normal);
}

.header.scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-xl);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-m);
  flex-shrink: 0;
}

.header-logo img {
  height: 44px;
  width: auto;
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: var(--fs-body2);
  font-weight: var(--fw-medium);
  color: var(--color-black);
  padding: 8px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-normal);
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* Active nav link (current page) */
.nav-item.active>.nav-link,
.nav-link.active {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
}

.nav-item.active>.nav-link::after,
.nav-link.active::after {
  width: 100%;
  background: var(--color-primary);
}

.nav-link .fa-2xs {
  padding-top: 4px;
}

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 200px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elevated);
  padding: var(--space-s) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-normal);
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: var(--fs-body2);
  color: var(--color-black);
  transition: all var(--transition-fast);
}

.nav-dropdown a:hover {
  background: rgba(14, 159, 141, 0.08);
  color: var(--color-primary);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-m);
  /* margin-left: auto; */
}

.btn-search {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark-gray);
  transition: all var(--transition-fast);
}

.btn-search:hover {
  background: rgba(14, 159, 141, 0.08);
  color: var(--color-primary);
}

.btn-search svg {
  width: 20px;
  height: 20px;
}

.btn-daftar {
  padding: 10px 24px;
  font-size: var(--fs-body2);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  z-index: 2001;
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-button);
  transition: background var(--transition-fast);
}

.hamburger:hover {
  background: rgba(14, 159, 141, 0.08);
}

.header-actions {
  position: relative;
  z-index: 2002;
}

.hamburger i {
  font-size: 24px;
  color: var(--color-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger:hover i {
  color: var(--color-primary-dark);
}

.hamburger .icon-close {
  display: none;
}

.hamburger.active .icon-menu {
  display: none;
}

.hamburger.active .icon-close {
  display: block;
}

/* ============================================
   SECTION 2: HERO
   ============================================ */
.hero {
  position: relative;
  height: 650px;
  overflow: hidden;
  background: var(--color-black);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Radial: clear out the top-right corner completely */
    radial-gradient(ellipse at 100% 0%,
      transparent 0%,
      transparent 35%,
      rgba(14, 159, 141, 0.15) 55%,
      rgba(14, 159, 141, 0.5) 80%),
    /* Yellow-green accent at top-left — more prominent */
    radial-gradient(ellipse at 0% 0%,
      rgba(180, 195, 50, 0.92) 0%,
      rgba(163, 177, 62, 0.7) 15%,
      rgba(163, 177, 62, 0.45) 28%,
      rgba(163, 177, 62, 0.15) 42%,
      rgba(163, 177, 62, 0) 55%),
    /* Main teal gradient from left to right */
    linear-gradient(to right,
      rgba(14, 159, 141, 0.95) 0%,
      rgba(14, 159, 141, 0.85) 30%,
      rgba(14, 159, 141, 0.55) 50%,
      rgba(108, 196, 161, 0.2) 70%,
      transparent 85%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 100px;
}

.hero-tagline {
  font-size: var(--fs-body2);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-m);
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-l);
  max-width: 600px;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

/* Hero Bottom Section */
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 0 var(--margin-desktop);
  padding-bottom: 100px;
}

.hero-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: var(--space-m);
}

/* Search Bar */
.hero-search {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 8px var(--space-xl);
  gap: var(--space-m);
  background: var(--color-white);
  border-radius: 12px;
  border: 1.5px solid var(--color-light-gray);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero-search-icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

.hero-search-icon svg {
  width: 24px;
  height: 24px;
}

.hero-search-wrapper {
  flex: 1;
}

.hero-search-label {
  font-size: var(--fs-body3);
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.hero-search input {
  width: 100%;
  border: none;
  outline: none;
  font-size: var(--fs-body1);
  color: var(--color-black);
  font-family: var(--font-primary);
  background: transparent;
}

.hero-search input::placeholder {
  color: var(--color-dark-gray);
}

/* Quick Actions */
.quick-actions {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}

.quick-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  padding: 14px 14px;
  width: 120px;
  height: 110px;
  min-width: 100px;
  text-align: left;
  transition: all var(--transition-normal);
  position: relative;
  cursor: pointer;
  border: none;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.quick-action:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.quick-action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all var(--transition-normal);
  font-size: 24px;
}

.quick-action:hover .quick-action-icon {
  color: var(--color-primary-dark);
  transform: scale(1.1);
}

.quick-action-icon svg {
  width: 24px;
  height: 24px;
}

.quick-action-icon i {
  font-size: 24px;
}

.quick-action-label {
  font-size: var(--fs-body3);
  font-weight: var(--fw-medium);
  color: var(--color-dark-gray);
  line-height: 1.3;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: auto;
}

.quick-action:hover .quick-action-label {
  color: var(--color-primary);
}

/* Slider Indicators */
.hero-indicators {
  position: absolute;
  bottom: 230px;
  left: 0;
  z-index: 5;
  display: flex;
  justify-content: flex-start;
  padding: 0 var(--margin-desktop);
  gap: var(--space-s);
}

.hero-indicators .container {
  display: flex;
  gap: var(--space-s);
  padding: 0;
}

.hero-dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.hero-dot.active {
  background: var(--color-white);
  width: 48px;
}

/* ============================================
   SECTION 3: PROFILE / ABOUT
   ============================================ */
.profile-section {
  background: var(--color-white);
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.profile-image {
  border-radius: var(--radius-large);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-card);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.profile-image:hover img {
  transform: scale(1.03);
}

.profile-content {
  padding: var(--space-l) 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-s);
  font-size: var(--fs-body3);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-m);
}

.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--color-primary);
}

.profile-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-black);
  margin-bottom: var(--space-l);
  line-height: 1.2;
}

.profile-text {
  font-size: var(--fs-body1);
  color: var(--color-dark-gray);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.profile-links {
  display: flex;
  align-items: center;
  gap: var(--space-l);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-s);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  transition: gap var(--transition-fast);
}

.link-arrow:hover {
  gap: var(--space-m);
}

.link-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

/* ============================================
   SECTION 4: LAYANAN UNGGULAN
   ============================================ */
/* .layanan-section {
  background: var(--color-background);
} */

.layanan-section {
  padding: 80px 0;
  background: #ecf6f7;
}

.layanan-row {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* KIRI */
.section-header {
  flex: 0 0 35%;
}

/* KANAN */
.carousel-wrapper {
  flex: 1;
  overflow: hidden;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-xxl);
}

.section-header-left {
  max-width: 800px;
  /* margin-left: var(--margin-desktop); */
  padding-bottom: 5px;
}

.section-subtitle {
  font-size: var(--fs-body1);
  color: var(--color-dark-gray);
  line-height: 1.6;
}

/* .carousel-nav {
  display: flex;
  align-items: center;
  gap: var(--space-m);
} */

/* Biar nav tetap rapi */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

/* grouping tombol */
.carousel-buttons {
  display: flex;
  gap: 10px;
}

/* tombol bulat soft */
.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn span {
  font-size: 16px;
  color: #6b7280;
}

/* hover */
.carousel-btn:hover {
  background: #10b981;
  border-color: #10b981;
}

.carousel-btn:hover span {
  color: #fff;
}

.carousel-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* garis background */
.indicator-track {
  width: 50px;
  height: 4px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

/* progress hijau */
.indicator-progress {
  width: 40% !important;
  /* paksa muncul dulu */
  height: 100%;
  background: #10b981;
  display: block;
}

/* dot di ujung */
.indicator-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
}

.indicator-track {
  width: 60px;
  height: 3px;
}

.indicator-dot {
  width: 6px;
  height: 6px;
}

/* Responsive */
@media (max-width: 992px) {
  .layanan-section {
    padding: 60px 0;
  }

  .layanan-row {
    flex-direction: column;
    gap: 24px;
    padding: 0 24px;
  }

  .section-header {
    flex: 100%;
    margin-bottom: 16px;
    align-items: flex-start;
  }

  .section-header-left {
    margin-left: 0;
    padding-bottom: 0;
    max-width: 100%;
  }

  .carousel-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark-gray);
  transition: all var(--transition-normal);
  background: var(--color-white);
}

.carousel-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: var(--shadow-card);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

/* Carousel Track */
.carousel-wrapper {
  overflow: hidden;
  margin: 0 calc(-1 * var(--space-m));
  padding: 0 var(--space-m);
}

.carousel-track {
  display: flex;
  gap: var(--space-l);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: var(--space-s);
  margin-top: var(--space-xl);
}

.carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-light-gray);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.carousel-indicator.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

/* Layanan Card */
.layanan-card {
  position: relative;
  min-width: 260px;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  display: block;
}

.layanan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.layanan-card-image {
  position: absolute;
  width: 100%;
  height: 100%;
}

.layanan-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.layanan-card:hover .layanan-card-image img {
  transform: scale(1.08);
}

.layanan-card-content {
  position: absolute;
  bottom: 0;
  padding: 20px;
  z-index: 2;
}

.layanan-card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
}

.layanan-card-desc {
  font-size: var(--fs-body2);
  color: #f6f7f9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

/* OVERLAY GRADIENT */
.layanan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(14, 159, 141, 0.9) 0%,
      rgba(14, 159, 141, 0.6) 40%,
      rgba(14, 159, 141, 0.1) 70%,
      transparent 100%);
}

/* ============================================
   SECTION 5: PROMOSI LAYANAN
   ============================================ */
.promo-section {
  background: var(--color-white);
}

.promo-card {
  flex: 0 0 calc(25% - var(--space-l) * 3 / 4);
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.promo-card-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.promo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.promo-card:hover .promo-card-image img {
  transform: scale(1.05);
}

.promo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: var(--fs-body3);
  font-weight: var(--fw-semibold);
}

.promo-card-content {
  padding: 16px 20px;
}

.promo-card-title {
  font-size: var(--fs-body1);
  font-weight: var(--fw-semibold);
  color: var(--color-black);
  margin-bottom: var(--space-s);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.promo-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-body3);
  color: var(--color-dark-gray);
}

.promo-card-date svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

/* ============================================
   SECTION 6: POLI EKSEKUTIF
   ============================================ */
.poli-section {
  position: relative;
  min-height: 695px;
  overflow: hidden;
  /* display: flex; */
  align-items: center;
  padding: var(--space-section) 0;
}

.poli-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.poli-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poli-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* Clear out the top-right corner */
    radial-gradient(ellipse at 100% 0%,
      transparent 0%,
      transparent 35%,
      rgba(14, 159, 141, 0.15) 55%,
      rgba(14, 159, 141, 0.5) 80%),
    /* Yellow-green accent at top-left */
    radial-gradient(ellipse at 0% 0%,
      rgba(180, 195, 50, 0.92) 0%,
      rgba(163, 177, 62, 0.7) 15%,
      rgba(163, 177, 62, 0.45) 28%,
      rgba(163, 177, 62, 0) 42%),
    /* Main teal gradient from left to right */
    linear-gradient(to right,
      rgba(14, 159, 141, 0.95) 0%,
      rgba(14, 159, 141, 0.85) 30%,
      rgba(14, 159, 141, 0.55) 50%,
      rgba(108, 196, 161, 0.2) 70%,
      transparent 85%);
}

.poli-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  /* max-width: 700px; */
}

.poli-label {
  font-size: var(--fs-body3);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-m);
  opacity: 0.9;
  margin-top: 20px;
}

.poli-title {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  margin-bottom: var(--space-l);
}

.poli-desc {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: var(--space-xxl);
}

.poli-features {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.poli-feature {
  display: flex;
  align-items: center;
  gap: var(--space-m);
}

.poli-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.poli-feature-icon svg {
  width: 24px;
  height: 24px;
}

.poli-feature-text {
  font-size: var(--fs-body2);
  font-weight: var(--fw-medium);
}

/* Feature Cards */
.poli-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-l);
  margin-top: var(--space-xxl);
}

.poli-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-card);
  padding: var(--space-l);
  transition: all var(--transition-normal);
}

.poli-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.poli-card-label {
  font-size: var(--fs-body3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
  margin-bottom: var(--space-s);
}

.poli-card-title {
  font-size: var(--fs-body1);
  font-weight: var(--fw-semibold);
  line-height: 1.4;
}

/* ============================================
   SECTION 7: TESTIMONI
   ============================================ */
.testimoni-section {
  background: var(--color-background);
}

.testimoni-card {
  flex: 0 0 calc(50% - var(--space-l) / 2);
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  transition: all var(--transition-normal);
}

.testimoni-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.testimoni-card-image {
  flex: 0 0 200px;
  overflow: hidden;
}

.testimoni-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

.testimoni-card-content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimoni-quote-icon {
  color: var(--color-primary);
  margin-bottom: var(--space-m);
  opacity: 0.3;
  font-size: 48px;
  line-height: 1;
}

.testimoni-text {
  font-size: var(--fs-body1);
  color: var(--color-dark-gray);
  line-height: 1.7;
  margin-bottom: var(--space-l);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimoni-author {
  font-size: var(--fs-body2);
  font-weight: var(--fw-semibold);
  color: var(--color-black);
}

.testimoni-role {
  font-size: var(--fs-body3);
  color: var(--color-dark-gray);
  margin-top: 2px;
}

/* ============================================
   SECTION 8: INFORMASI TERKINI
   ============================================ */
.info-section {
  background: var(--color-white);
}

.info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xxl);
}

.info-tabs {
  display: flex;
  gap: var(--space-s);
}

.info-tab {
  padding: 8px 20px;
  border-radius: 24px;
  font-size: var(--fs-body2);
  font-weight: var(--fw-medium);
  color: var(--color-dark-gray);
  background: var(--color-background);
  transition: all var(--transition-fast);
  border: 1.5px solid transparent;
  cursor: pointer;
}

.info-tab.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.info-tab:hover:not(.active) {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-l);
}

.info-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.info-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.info-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.info-card:hover .info-card-image img {
  transform: scale(1.05);
}

.info-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: var(--fw-semibold);
}

.info-card-content {
  padding: var(--space-m) 20px 20px;
}

.info-card-category {
  font-size: var(--fs-body3);
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
}

.info-card-date {
  font-size: var(--fs-body3);
  color: var(--color-dark-gray);
  margin-bottom: var(--space-s);
}

.info-card-title {
  font-size: var(--fs-body1);
  font-weight: var(--fw-semibold);
  color: var(--color-black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

/* ============================================
   SECTION 9: UMPAN BALIK
   ============================================ */
.feedback-section {
  background: #F0F8F8;
  padding: 0;
}

.feedback-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feedback-card {
  display: flex;
  align-items: center;
  gap: var(--space-m);
  padding: var(--space-l) var(--space-xl);
  background: #F0F8F8;
  cursor: pointer;
  transition: all var(--transition-normal);
  border-bottom: 3px solid transparent;
}

.feedback-card:not(:last-child) {
  border-right: 1px solid var(--color-light-gray);
}

.feedback-card:hover {
  background: rgba(14, 159, 141, 0.05);
  border-bottom-color: var(--color-primary);
}

.feedback-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-card);
  background: rgba(14, 159, 141, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.feedback-icon svg {
  width: 24px;
  height: 24px;
}

.feedback-text {
  flex: 1;
}

.feedback-title {
  font-size: var(--fs-body1);
  font-weight: var(--fw-semibold);
  color: var(--color-black);
  margin-bottom: 2px;
}

.feedback-desc {
  font-size: var(--fs-body3);
  color: var(--color-dark-gray);
}

.feedback-arrow {
  color: var(--color-dark-gray);
  transition: all var(--transition-fast);
}

.feedback-card:hover .feedback-arrow {
  color: var(--color-primary);
  transform: translateX(4px);
}

.feedback-arrow svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   SECTION 10: FOOTER
   ============================================ */
.footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-section) 0 var(--space-xl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xxl);
  margin-bottom: var(--space-xxl);
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-m);
  margin-bottom: var(--space-l);
}

.footer-logo img {
  height: 48px;
}

.footer-address {
  font-size: var(--fs-body2);
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: var(--space-l);
}

.footer-label {
  font-size: var(--fs-body3);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: var(--space-s);
}

.footer-socials {
  display: flex;
  gap: var(--space-m);
  margin-top: var(--space-m);
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-app-badges {
  display: flex;
  gap: var(--space-m);
  margin-top: var(--space-m);
}

.app-badge {
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background var(--transition-fast);
}

.app-badge:hover {
  background: rgba(255, 255, 255, 0.25);
}

.app-badge svg {
  width: 18px;
  height: 18px;
}

.app-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.app-badge-text small {
  font-size: 8px;
  opacity: 0.8;
}

.app-badge-text span {
  font-weight: var(--fw-semibold);
  font-size: 11px;
}

/* Footer columns */
.footer-col-title {
  font-size: var(--fs-body1);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-l);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}

.footer-link {
  font-size: var(--fs-body2);
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: var(--space-s);
  transition: all var(--transition-fast);
}

.footer-link:hover {
  opacity: 1;
  transform: translateX(4px);
}

.footer-link svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--space-l);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-body3);
  opacity: 0.8;
}

/* ============================================
   CHATBOT WIDGET
   ============================================ */
.chatbot-iframe-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 700px;
  border: none;
  z-index: 999;
  background: transparent;
  pointer-events: all;
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-modal {
  background: var(--color-white);
  border-radius: var(--radius-large);
  padding: var(--space-xl);
  width: 600px;
  max-width: 90%;
  box-shadow: var(--shadow-elevated);
  transform: translateY(-20px);
  transition: transform var(--transition-normal);
}

.search-overlay.active .search-modal {
  transform: translateY(0);
}

.search-modal-input {
  display: flex;
  align-items: center;
  gap: var(--space-m);
  padding-bottom: var(--space-m);
  border-bottom: 2px solid var(--color-light-gray);
}

.search-modal-input svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.search-modal-input input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  font-family: var(--font-primary);
  color: var(--color-black);
}

.search-modal-input input::placeholder {
  color: var(--color-dark-gray);
}

.search-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark-gray);
  transition: all var(--transition-fast);
}

.search-close:hover {
  background: var(--color-background);
  color: var(--color-black);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--color-white);
  z-index: 1500;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right var(--transition-normal);
  padding: var(--space-xxl) var(--space-l);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: var(--space-m);
  right: var(--space-m);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark-gray);
}

.mobile-menu-close:hover {
  background: var(--color-background);
}

.mobile-nav-link {
  display: block;
  padding: var(--space-m) 0;
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: var(--color-black);
  border-bottom: 1px solid var(--color-light-gray);
}

.mobile-nav-link:hover {
  color: var(--color-primary);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1499;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.mobile-menu-overlay.active {
  opacity: 1;
}

/* ============================================
   RESPONSIVE: TABLET (< 1024px)
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --fs-h1: 36px;
    --fs-h2: 32px;
    --fs-h3: 26px;
    --margin-desktop: 32px;
  }

  .nav-menu {
    display: none;
    z-index: 2000;
    /* lebih tinggi dari header */
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu-overlay {
    display: block;
  }

  .hero {
    height: 550px;
  }

  .hero-bottom {
    padding: 0 var(--margin-desktop);
    padding-bottom: 40px;
  }

  .hero-bottom-inner {
    flex-direction: column;
    gap: 10px;
  }

  .hero-search {
    padding: 10px var(--space-l);
    border-radius: 12px;
  }

  .quick-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .quick-action {
    width: calc(33.333% - 6px);
    height: auto;
    min-width: unset;
    flex-shrink: 0;
    padding: 14px 10px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
  }

  .quick-action-label {
    margin-top: 0;
    text-align: center;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .layanan-card {
    flex: 0 0 calc(50% - var(--space-l) / 2);
  }

  .promo-card {
    flex: 0 0 calc(50% - var(--space-l) / 2);
  }

  .poli-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .poli-features {
    flex-wrap: wrap;
  }

  .testimoni-card {
    flex: 0 0 100%;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feedback-cards {
    grid-template-columns: 1fr;
  }

  .feedback-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--color-light-gray);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* ============================================
   RESPONSIVE: MOBILE (< 768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --fs-h1: 28px;
    --fs-h2: 24px;
    --fs-h3: 20px;
    --fs-h4: 18px;
    --margin-desktop: 20px;
    --space-section: 48px;
  }

  .top-bar-left {
    flex-wrap: wrap;
    gap: var(--space-s);
  }

  .top-bar-item span {
    display: none;
  }

  .header {
    height: 60px;
  }

  .header-logo img {
    height: 36px;
  }

  .btn-daftar {
    padding: 8px 16px;
    font-size: var(--fs-body3);
  }

  .hero {
    height: 500px;
  }

  .hero-indicators {
    bottom: 295px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: var(--fs-body1);
  }

  .quick-action-label {
    font-size: 11px;
  }

  .quick-action {
    width: calc(33.333% - 6px);
    height: auto;
    min-width: unset;
    padding: 12px 8px;
  }

  .quick-action-icon {
    font-size: 20px;
  }

  .quick-action-icon i {
    font-size: 20px;
  }

  .quick-action-icon svg {
    width: 20px;
    height: 20px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-m);
  }

  .layanan-card {
    flex: 0 0 calc(80%);
  }

  .promo-card {
    flex: 0 0 calc(70%);
  }

  .poli-section {
    min-height: auto;
    padding: var(--space-section) 0;
  }

  .poli-features {
    gap: var(--space-m);
  }

  .poli-cards {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-m);
  }

  .testimoni-card {
    flex-direction: column;
  }

  .testimoni-card-image {
    flex: 0 0 auto;
    height: 200px;
  }

  .testimoni-card-image img {
    min-height: 200px;
  }

  .testimoni-card-content {
    padding: var(--space-l);
  }

  .testimoni-quote-icon {
    font-size: 32px;
    margin-bottom: var(--space-s);
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-tabs {
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-m);
    text-align: center;
  }

  .chatbot-iframe-fixed {
    width: 100%;
    height: 600px;
  }

  .info-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-m);
  }
}

/* ============================================
   RESPONSIVE: SMALL MOBILE (< 480px)
   ============================================ */
@media (max-width: 480px) {
  :root {
    --margin-desktop: 16px;
  }

  .hero {
    height: 450px;
  }

  .quick-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .quick-action {
    width: calc(33.333% - 5px);
    height: auto;
    min-width: unset;
    flex-shrink: 0;
    padding: 10px 6px;
  }

  .quick-action-label {
    font-size: 9px;
  }

  .quick-action-icon {
    font-size: 18px;
  }

  .quick-action-icon i {
    font-size: 18px;
  }

  .quick-action-icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-bottom {
    padding-bottom: 30px;
  }

  .poli-cards {
    grid-template-columns: 1fr;
  }

  .poli-features {
    flex-direction: column;
  }

  .hero-indicators {
    bottom: 265px;
  }

  /* modal */
  /* BACKDROP */
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);

    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* BOX */
  .modal-box {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
  }

  /* HEADER */
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
  }

  .close {
    font-size: 22px;
    cursor: pointer;
  }

  /* BODY */
  .modal-body {
    padding: 20px;
  }

  /* GRID */
  .layanan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* CARD */
  .layanan-card {
    background: #f4f6f9;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
  }

  .layanan-card:hover {
    background: #0e9f8d;
    color: white;
  }

  /* HOVER EFFECT */
  .layanan-card:hover img {
    transform: scale(1.1);
  }

  /* ANIMASI */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* MOBILE */
  @media (max-width: 480px) {
    .layanan-grid {
      grid-template-columns: 1fr;
    }
  }
}

/* modal */
/* overlay */
/* MODAL BOX */

.custom-modal {
  display: none;
  /* ⛔ default harus hidden */
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);

  align-items: center;
  justify-content: center;
}

/* CONTENT */
.custom-modal-content {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 700px;
  padding: 25px;
  position: relative;

  animation: modalFade 0.3s ease;
}

/* CLOSE BUTTON */
/* CLOSE BUTTON */
.custom-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

/* HEADER */
.modal-header-modern {
  text-align: center;
  margin-bottom: 20px;
}

.modal-header-modern h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.modal-header-modern p {
  font-size: 14px;
  color: #777;
}

/* GRID */
.modal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

/* ITEM */
.modal-item {
  background: #f8fafc;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

/* ICON */
.modal-item i {
  font-size: 22px;
  color: #0e9f8d;
  margin-bottom: 8px;
}

/* TEXT */
.modal-item span {
  display: block;
  font-size: 13px;
  font-weight: 500;
}

/* HOVER */
.modal-item:hover {
  background: #0e9f8d;
  color: #fff;
  transform: translateY(-3px);
}

.modal-item:hover i {
  color: #fff;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .modal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* animasi */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-search {
  margin-bottom: 20px;
}

.modal-search input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

.modal-search input:focus {
  border-color: #0e9f8d;
  box-shadow: 0 0 0 2px rgba(14, 159, 141, 0.1);
}

/*============================ end modal =========================== */

/* Menu to Mobile */
/* ===== MOBILE ===== */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: white;
    /* tidak ubah warna utama */
    flex-direction: column;
    padding: 80px 20px;
    transition: 0.3s ease;
    z-index: 2000;
    /* lebih tinggi dari header */
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    width: 100%;
  }

  /* Dropdown jadi accordion */
  .nav-dropdown {
    display: none;
    flex-direction: column;
    padding-left: 10px;
  }

  .nav-item.active .nav-dropdown {
    display: flex;
  }

  /* hamburger tampil */
  .hamburger {
    display: block;
  }
}

/* ===== DESKTOP ===== */
@media (min-width: 993px) {
  .hamburger {
    display: none;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .nav-dropdown {
    position: absolute;
    display: none;
  }

  .nav-item:hover .nav-dropdown {
    display: block;
  }
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* === SEJARAH ENHANCEMENT === */

.profile-image {
  position: relative;
  overflow: hidden;
}

.profile-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 159, 141, 0.3), transparent);
}

.profile-image img {
  transition: transform 0.6s ease;
}

.profile-image:hover img {
  transform: scale(1.05);
}

/* animasi teks */
.profile-content {
  animation: fadeInUp 0.8s ease;
}

/* spacing lebih enak */
.profile-text {
  text-align: justify;
}

.sejarah-highlight {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.highlight-item {
  background: rgba(14, 159, 141, 0.08);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: #0e9f8d;
}

.profile-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sejarah-btn {
  display: inline-block;
  margin-top: 10px;
  color: var(--color-primary);
  font-weight: 600;
}

.profile-title {
  position: relative;
  padding-left: 16px;
}

.profile-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 70%;
  background: var(--color-primary);
  border-radius: 2px;
}

.visi-image-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.visi-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* overlay */
.visi-overlay {
  position: absolute;
  inset: 0;
  /* background: hwb(173 76% 4% / 0.75); */
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
  text-align: center;
}

.visi-image-box:hover img {
  transform: scale(1.05);
}

.visi-image-box:hover .visi-overlay {
  opacity: 1;
}

/* ================================ DIRECTOR ============================== */
/* profil direktur */
.director-section {
  padding: 60px 15px;
  background-color: #f8f9fa;
}

.director-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

/* Direktur utama */
.director-utama-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.director-utama-card {
  max-width: 280px;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.director-utama-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.director-utama-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #0d6efd;
  margin-bottom: 15px;
}

.director-utama-card h5 {
  font-size: 20px;
  color: #0d6efd;
  margin-bottom: 8px;
  font-weight: 600;
}

.director-utama-card span {
  font-size: 18px;
  color: #555;
}

/* Direktur lain dengan flexbox */
.director-lain-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  /* jarak antar kartu */
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

/* Wrapper tiap kartu direktur bawah, fix width supaya konsisten */
.director-card-wrapper {
  flex: 0 0 250px;
  /* fixed width 250px */
  display: flex;
  justify-content: center;
}

/* Kartu direktur bawah */
.director-card {
  max-width: 250px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.director-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.director-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #0d6efd;
  margin-bottom: 15px;
}

.director-card h5 {
  font-size: 18px;
  color: #0d6efd;
  margin-bottom: 5px;
  font-weight: 600;
}

.director-card span {
  font-size: 16px;
  color: #555;
}

.director-card,
.director-utama-card {
  will-change: transform, box-shadow;
  cursor: pointer;
  border: 4px solid #0a9396;
  /* border hijau tosca */
}

.director-card:hover,
.director-utama-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow:
    0 12px 24px rgba(10, 147, 150, 0.4),
    /* glow hijau tosca */
    0 8px 16px rgba(0, 95, 115, 0.25);
  /* shadow biru tua */
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.director-card img,
.director-utama-card img {
  box-shadow: 0 6px 12px rgba(10, 147, 150, 0.25);
  transition: transform 0.35s ease;
  border: 4px solid #0a9396;
  /* border hijau tosca */
}

.director-card:hover img,
.director-utama-card:hover img {
  transform: scale(1.1);
}

.director-card h5 {
  font-size: 18px;
  color: #005f73;
  /* biru tua */
  margin-bottom: 5px;
  font-weight: 600;
}

.director-card span {
  font-size: 16px;
  color: #333333;
  /* abu-abu gelap */
}

.director-utama-card h5 {
  font-size: 20px;
  color: #005f73;
  /* biru tua */
  margin-bottom: 8px;
  font-weight: 600;
}

.director-utama-card span {
  font-size: 18px;
  color: #333333;
  /* abu-abu gelap */
}

/* =================================== Profil Dewan Pengawas ======================= */
.director-section {
  padding: 60px 15px;
  background-color: #f8f9fa;
}

.director-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

/* Ketua Dewan Pengawas (mirip direktur utama) */
.director-utama-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.director-utama-card {
  max-width: 280px;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 4px solid #0a9396;
  /* warna hijau tosca Kemenkes */
  cursor: pointer;
}

.director-utama-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow:
    0 12px 24px rgba(10, 147, 150, 0.4),
    0 8px 16px rgba(0, 95, 115, 0.25);
}

.director-utama-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 15%;
  border: 4px solid #0a9396;
  margin-bottom: 15px;
  box-shadow: 0 6px 12px rgba(10, 147, 150, 0.25);
  transition: transform 0.35s ease;
  margin-left: 25px;
}

.director-utama-card:hover img {
  transform: scale(1.1);
}

.director-utama-card h5 {
  font-size: 20px;
  color: #005f73;
  margin-bottom: 8px;
  font-weight: 600;
  margin-left: 25px;
}

.director-utama-card span {
  font-size: 18px;
  color: #333333;
}

/* Anggota Dewan Pengawas (mirip direktur lainnya) */
.director-lain-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding-left: 0;
  padding-right: 0;
}

.director-card-wrapper {
  flex: 0 0 250px;
  display: flex;
  justify-content: center;
}

.director-card {
  max-width: 250px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 4px solid #0a9396;
  cursor: pointer;
}

.director-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow:
    0 12px 24px rgba(10, 147, 150, 0.4),
    0 8px 16px rgba(0, 95, 115, 0.25);
}

.director-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 15%;
  border: 4px solid #0a9396;
  margin-bottom: 15px;
  box-shadow: 0 6px 12px rgba(10, 147, 150, 0.25);
  transition: transform 0.35s ease;
  margin-left: 25px;
}

.director-card:hover img {
  transform: scale(1.1);
}

.director-card h5 {
  font-size: 18px;
  color: #005f73;
  margin-bottom: 5px;
  font-weight: 600;
}

.director-card span {
  font-size: 16px;
  color: #333333;
}

/* ================== Pelayanan & Sub Pelayanan */
/* =========================
   DETAIL PELAYANAN
========================= */
.service-detail {
  margin-top: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.service-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.service-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-content p {
  color: #555;
  line-height: 1.7;
}

.service-highlight {
  margin-top: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 500;
}

.highlight-item span {
  color: #0e9f8d;
  margin-right: 10px;
}

/* =========================
   CARD SUB PELAYANAN
========================= */
.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card-body {
  padding: 20px;
}

.service-card-body h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card-body a {
  color: #0e9f8d;
  font-weight: 600;
  text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   GRID
========================= */
.service-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

/* =========================
   CARD
========================= */
.service-premium-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  transition: all 0.35s ease;
  position: relative;

  /* efek premium */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* =========================
   IMAGE (RATIO SAMA)
========================= */
.card-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* overlay gradient elegan */
.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
}

/* =========================
   CONTENT
========================= */
.card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.card-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* link kecil elegan */
.card-link {
  font-size: 13px;
  color: #0e9f8d;
  font-weight: 500;
  opacity: 0.8;
}

/* =========================
   HOVER (HALUS & PREMIUM)
========================= */
.service-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.service-premium-card:hover img {
  transform: scale(1.08);
}

/* efek glow halus */
.service-premium-card:hover .card-link {
  color: #0e9f8d;
  opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .service-premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-image {
    height: 140px;
  }
}

/* ================ PROFIL DOKTER ================= */
/* =========================
   SEARCH
========================= */
.doctor-search {
  max-width: 500px;
  margin: 20px auto;
}

.doctor-search input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 30px;
  border: 1px solid #ddd;
  outline: none;
}

/* =========================
   FILTER
========================= */
.doctor-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.doctor-filter button {
  padding: 8px 16px;
  border-radius: 20px;
  border: none;
  background: #eee;
  cursor: pointer;
}

.doctor-filter .active {
  background: #0e9f8d;
  color: #fff;
}

/* =========================
   GRID
========================= */
.doctor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* =========================
   CARD
========================= */
.doctor-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.doctor-card:hover {
  transform: translateY(-6px);
}

.doctor-img {
  width: 100%;
  height: 220px;
  /* tinggi konsisten */
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.doctor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ini yang bikin pas */
  object-position: top;
  /* fokus ke wajah */
  display: block;
}

.doctor-avatar {
  width: 100%;
  height: 100%;
  /* lebih besar */
  overflow: hidden;
  border-radius: 16px;
  background: #f5f5f5;
}

.doctor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transform: scale(1.2);
}

/* BODY */
.doctor-body {
  padding: 16px;
}

.doctor-body h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.doctor-body p {
  font-size: 13px;
  color: #777;
}

.doctor-body a {
  display: inline-block;
  margin-top: 10px;
  color: #0e9f8d;
  font-weight: 600;
}

.doctor-tools {
  text-align: center;
  margin-bottom: 30px;
}

#searchDoctor {
  width: 400px;
  max-width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid #ddd;
}

.alphabet-filter {
  margin-top: 15px;
}

.alphabet-filter button {
  margin: 3px;
  padding: 6px 10px;
  border: none;
  border-radius: 6px;
  background: #eee;
  cursor: pointer;
}

.alphabet-filter .active {
  background: #0e9f8d;
  color: #fff;
}

.pagination-modern {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* tombol umum */
.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  background: #f1f3f5;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.25s;
}

/* hover */
.page-btn:hover {
  background: #0e9f8d;
  color: #fff;
  transform: translateY(-2px);
}

/* active */
.page-btn.active {
  background: #0e9f8d;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(14, 159, 141, 0.3);
}

/* prev next */
.page-btn.prev,
.page-btn.next {
  font-size: 18px;
  font-weight: bold;
}

/* ================= PROFIL DOKTER ================ */
/* CARD */
.doctor-profile-card {
  display: flex;
  gap: 30px;
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

/* IMAGE */
.doctor-profile-left img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

/* CONTENT */
.doctor-profile-right h2 {
  font-size: 24px;
  font-weight: 700;
}

.spesialis {
  color: #0e9f8d;
  font-weight: 600;
  margin-bottom: 10px;
}

/* INFO */
.doctor-info {
  display: flex;
  gap: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

/* DESC */
.doctor-desc {
  color: #555;
  line-height: 1.6;
}

.sidebar-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.ksm-item {
  display: block;
  padding: 10px;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  transition: 0.2s;
}

.ksm-item:hover {
  background: #0e9f8d;
  color: #fff;
}

.doctor-profile-modern {
  display: flex;
  gap: 30px;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

/* NAMA */
.doctor-main h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* BADGE */
.badge-spesialis {
  display: inline-block;
  background: rgba(14, 159, 141, 0.1);
  color: #0e9f8d;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 12px;
}

/* META */
.doctor-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

/* DESKRIPSI */
.doctor-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* BUTTON */
.btn-daftar {
  background: #0e9f8d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
}

.btn-daftar:hover {
  background: #0c8576;
}

/* WRAPPER */
.doctor-detail-wrapper {
  max-width: 1900px;
  margin: auto;
}

/* PROFILE */
.doctor-profile-modern {
  display: flex;
  gap: 30px;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

/* TEXT */
.doctor-main h1 {
  font-size: 26px;
  font-weight: 700;
}

.badge-spesialis {
  display: inline-block;
  background: rgba(14, 159, 141, 0.1);
  color: #0e9f8d;
  padding: 6px 14px;
  border-radius: 20px;
  margin: 10px 0;
}

/* META */
.doctor-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

/* DESC */
.doctor-description {
  color: #555;
  line-height: 1.6;
}

/* BUTTON */
.btn-daftar {
  display: inline-block;
  background: #0e9f8d;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
}

/* GRID */
.doctor-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* CARD */
.doctor-card-info {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border-left: 5px solid #0e9f8d;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .doctor-profile-modern {
    flex-direction: column;
    text-align: center;
  }

  .doctor-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Berita ========== */
/* CARD */
.news-section {
  padding: 60px 0;
}

/* LAYOUT */
.news-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* LIST */
.news-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* IMAGE */
.news-thumb {
  width: 180px;
  height: 120px;
  overflow: hidden;
  border-radius: 10px;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.news-body h3 {
  font-size: 16px;
  margin: 5px 0;
}

.news-body a {
  text-decoration: none;
  color: #333;
}

.news-category {
  font-size: 12px;
  color: #0e9f8d;
  font-weight: 600;
}

.news-meta {
  font-size: 12px;
  color: #777;
  margin-bottom: 6px;
}

.read-more {
  color: #0e9f8d;
  font-size: 13px;
}

/* SIDEBAR */
.sidebar-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-card h4 {
  margin-bottom: 12px;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
}

.sidebar-card li {
  margin-bottom: 8px;
}

.sidebar-card a {
  text-decoration: none;
  color: #333;
}

/* POPULER */
.popular-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.popular-item img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}

/* PAGINATION */
.pagination-modern {
  margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-item {
    flex-direction: column;
  }

  .news-thumb {
    width: 100%;
    height: 180px;
  }
}

.pagination-modern {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.pagination-modern li a,
.pagination-modern li span {
  display: block;
  padding: 8px 14px;
  border-radius: 10px;
  background: #f1f3f5;
  color: #333;
  text-decoration: none;
  transition: 0.2s;
}

.pagination-modern li a:hover {
  background: #0e9f8d;
  color: #fff;
}

.pagination-modern .active span {
  background: #0e9f8d;
  color: #fff;
  font-weight: 600;
}

.sidebar-card.kategori ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-card.kategori li {
  margin-bottom: 8px;
}

.sidebar-card.kategori a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  background: #f8f9fa;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: 0.2s;
}

/* hover */
.sidebar-card.kategori a:hover {
  background: #0e9f8d;
  color: #fff;
  transform: translateX(5px);
}

/* efek garis kiri */
.sidebar-card.kategori a::before {
  content: "";
  width: 4px;
  height: 100%;
  background: #0e9f8d;
  border-radius: 4px;
  margin-right: 10px;
  opacity: 0;
  transition: 0.2s;
}

.sidebar-card.kategori a:hover::before {
  opacity: 1;
}

/* ============== DETAIL BERITA =============== */
/* SECTION */
.news-section {
  padding: 50px 0;
  background: #f6f8fb;
}

/* CARD */
.news-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* IMAGE */
.news-image {
  height: 380px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TITLE */
.news-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* META */
.news-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

/* CONTENT */
.news-content {
  line-height: 1.8;
  color: #444;
}

/* =======================
   SIDEBAR
   ======================= */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* BOX */
.sidebar-box {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

/* ITEM */
.sidebar-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.sidebar-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.sidebar-item a {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

.sidebar-item a:hover {
  color: #0e9f8d;
}

.sidebar-item span {
  font-size: 12px;
  color: #888;
}

/* KATEGORI */
.kategori-list {
  list-style: none;
  padding: 0;
}

.kategori-list li {
  margin-bottom: 10px;
}

.kategori-list a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f1f3f5;
  text-decoration: none;
  color: #333;
  transition: 0.2s;
}

.kategori-list a:hover {
  background: #0e9f8d;
  color: #fff;
}

/* STICKY SIDEBAR */
@media (min-width: 992px) {
  .sidebar {
    position: sticky;
    top: 100px;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .news-image {
    height: 220px;
  }
}

/* FORCE GRID (ANTI ERROR FRAMEWORK) */
.news-section .row {
  display: flex;
  gap: 24px;
}

/* KONTEN */
.news-section .col-lg-8 {
  width: 70%;
}

/* SIDEBAR */
.news-section .col-lg-4 {
  width: 30%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .news-section .row {
    flex-direction: column;
  }

  .news-section .col-lg-8,
  .news-section .col-lg-4 {
    width: 100%;
  }
}

.news-card {
  width: 100%;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 992px) {
  .sidebar {
    position: sticky;
    top: 120px;
  }
}

/* ==================== PENGUMUMAN HALAMAN DEPAN ==================== */
/* SECTION */
.careplus-main-section {
  padding: 60px 0;
  background: #f6f8fb;
}

/* SEARCH */
.search-wrapper {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.search-wrapper input {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border-radius: 30px;
  border: 1px solid #ddd;
  outline: none;
  margin: 20px 10px;
}

.search-wrapper i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

/* LIST */
.announcement-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ITEM */
.announcement-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #eef2f7;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  position: relative;
}

/* GARIS KIRI (BRAND) */
.announcement-item::before {
  content: "";
  width: 4px;
  height: 70%;
  background: #0e9f8d;
  border-radius: 4px;
  position: absolute;
  left: 0;
}

/* HOVER */
/* HOVER EFFECT */
.announcement-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #d6ebe8;
}

/* DATE */
.announcement-date {
  min-width: 60px;
  text-align: center;
  background: #f0f9f7;
  border-radius: 10px;
  padding: 6px 0;
}

.announcement-date .day {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #0e9f8d;
}

.announcement-date .month {
  font-size: 11px;
  color: #888;
}

/* CONTENT */
.announcement-content h4 {
  font-size: 15px;
  margin: 0;
  color: #222;
  font-weight: 600;
}

/* LINK */
.announcement-content a {
  font-size: 13px;
  color: #0e9f8d;
  text-decoration: none;
}

.announcement-content a:hover {
  text-decoration: underline;
}

/* BUTTON */
.btn-detail {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: #0e9f8d;
  text-decoration: none;
}

.btn-detail:hover {
  text-decoration: underline;
}

.announcement-item::before {
  content: "";
  width: 4px;
  height: 100%;
  background: #0e9f8d;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .announcement-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .announcement-date {
    font-size: 12px;
  }
}

/* BADGE */
.badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: 6px;
  font-weight: 600;
}

/* BARU */
.badge-new {
  background: #e6f7f4;
  color: #0e9f8d;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 20px;
  margin-left: 6px;
}

/* PENTING */
.badge-important {
  background: #ffeaea;
  color: #e53935;
}

/* SEARCH */
.search-wrapper {
  position: relative;
}

.search-wrapper input {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border-radius: 30px;
  border: 1px solid #ddd;
}

.search-wrapper i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/* HIDDEN */
.hidden {
  display: none !important;
}

/* ================= DETAIL PENGUMUMAN ================ */
/* WRAPPER */
.announcement-detail {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f7;
}

/* HEADER */
.detail-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 16px;
}

/* DATE BOX */
.detail-date {
  background: linear-gradient(135deg, #0e9f8d, #1fbba6);
  color: white;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  min-width: 70px;
}

.detail-date .day {
  font-size: 20px;
  font-weight: bold;
  display: block;
}

.detail-date .month {
  font-size: 12px;
}

/* TITLE */
.detail-title h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #222;
}

/* BADGE */
.badge-info {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: #0e9f8d;
  background: #e6f7f4;
  padding: 4px 10px;
  border-radius: 20px;
}

/* CONTENT */
.detail-content {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

/* DOWNLOAD */
.detail-download {
  margin-top: 20px;
}

.detail-download a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  background: #0e9f8d;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.detail-download a:hover {
  background: #0b7f71;
}

/* ================== INFORMASI PUBLIK ================== */
/* WRAPPER */
.accordion-modern {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ITEM */
.accordion-item {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  margin-bottom: 14px;
  transition: all 0.25s ease;
}

.accordion-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* HEADER */
.accordion-header {
  padding: 16px 20px;
  background: #f9fafb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header:hover {
  background: #eef7f6;
}

/* TITLE */
.accordion-header h3 {
  font-size: 14px;
  font-weight: 600;
  color: #0e9f8d;
  letter-spacing: 0.3px;
}

/* ICON */
.accordion-header .icon {
  width: 26px;
  height: 26px;
  background: #0e9f8d;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* CONTENT */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 18px;
}

/* ACTIVE */
.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 16px 18px;
}

/* FILE LIST */
.file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  background: #f6f8fb;
  font-size: 13px;
  color: #374151;
  transition: 0.2s;
}

.file-item:hover {
  background: #e6f7f4;
  color: #0e9f8d;
  transform: translateX(4px);
}

.section-akuntabilitas {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 16px;
}

.careplus-main-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.badge-publik {
  background: #e6f7f4;
  color: #0e9f8d;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  margin-left: 6px;
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-black);
  margin-bottom: var(--space-s);
}

/* ==================================== PMKP ====================================== */
/* ===== PMKP TABLE MODERN ===== */

.pmkp-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  margin: 40px auto;
  max-width: 95%;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.pmkp-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
}

.pmkp-header p {
  font-size: 14px;
  color: #64748b;
}

.pmkp-table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
}

/* TABLE */
.pmkp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 1200px;
}

/* HEADER */
.pmkp-table thead {
  background: linear-gradient(90deg, #0e9f8d, #14b8a6);
  color: white;
}

.pmkp-table th {
  padding: 12px;
  font-weight: 600;
  text-align: center;
}

/* BODY */
.pmkp-table td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
}

.pmkp-table tbody tr:hover {
  background: #f8fafc;
  transition: 0.2s;
}

/* ZEBRA */
.pmkp-table tbody tr:nth-child(even) {
  background: #fcfcfc;
}

/* INDIKATOR WARNA */
.good {
  color: #16a34a;
  font-weight: 600;
}

.warning {
  color: #f59e0b;
  font-weight: 600;
}

.bad {
  color: #dc2626;
  font-weight: 600;
}

/* TARGET BADGE */
.target-badge {
  background: #e0f2fe;
  color: #0369a1;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* ====================== TARIF PELAYANAN =================== */
/* ===== GRID ===== */
.tarif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

/* ===== CARD ===== */
.tarif-card-modern {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid #eef1f5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.tarif-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ===== HEADER ===== */
.tarif-card-header {
  display: flex;
  gap: 15px;
  align-items: center;
}

.tarif-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0e9f8d, #17c3b2);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* ===== TITLE ===== */
.tarif-card-header h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.tarif-card-header h4 {
  font-size: 18px;
  font-weight: bold;
  color: #0e9f8d;
  margin: 5px 0 0;
}

/* ===== BODY ===== */
.tarif-card-body {
  margin-top: 15px;
}

.tarif-card-body p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* ===== BADGE ===== */
.tarif-card-body .badge {
  background: #e6f7f5;
  color: #0e9f8d;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 11px;
}

/* ===== FOOTER ===== */
.tarif-card-footer {
  margin-top: 15px;
}

.btn-detail-modern {
  display: inline-block;
  padding: 10px 16px;
  background: #0e9f8d;
  color: #fff;
  border-radius: 30px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-detail-modern:hover {
  background: #0b7d70;
  color: #fff;
}

/* =================== DETAIL TARIF PELAYANAN ================== */
/* CONTAINER */
.tarif-detail-modern {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* HEADER */
.tarif-detail-header {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

/* IMAGE */
.tarif-image img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

.no-image {
  width: 220px;
  height: 220px;
  background: #f3f6f9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 40px;
  color: #0e9f8d;
}

/* INFO */
.tarif-info h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.tarif-price {
  font-size: 28px;
  font-weight: bold;
  color: #0e9f8d;
  margin-bottom: 10px;
}

/* BADGE */
.badge-modern {
  background: #e6f7f5;
  color: #0e9f8d;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* SECTION */
.tarif-section {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.tarif-section h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.tarif-section i {
  color: #0e9f8d;
  margin-right: 6px;
}

.tarif-section p {
  color: #666;
  line-height: 1.6;
}

/* BUTTON */
.tarif-action {
  margin-top: 30px;
}

.btn-back {
  padding: 12px 20px;
  background: #0e9f8d;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-back:hover {
  background: #0b7d70;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .tarif-detail-header {
    flex-direction: column;
    text-align: center;
  }

  .tarif-image img,
  .no-image {
    width: 100%;
    height: 200px;
  }
}

/* ================= TATA TERTIB ================= */
/* WRAPPER */
.tata-tertib-modern {
  max-width: 900px;
  margin: auto;
}

/* SECTION TITLE */
.tata-tertib-modern h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0e9f8d;
}

/* CARD STYLE */
.careplus-section-heading {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

/* LIST SK */
.sk-list {
  padding-left: 18px;
}

.sk-list li {
  margin-bottom: 8px;
  color: #444;
}

/* LIST UTAMA */
.tata-tertib-list {
  counter-reset: item;
  list-style: none;
  padding: 0;
}

/* ITEM UTAMA */
.tata-tertib-list>li {
  background: #ffffff;
  padding: 18px;
  margin-bottom: 12px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  position: relative;
  padding-left: 50px;
}

/* NUMBER CUSTOM */
.tata-tertib-list>li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 15px;
  top: 18px;
  width: 26px;
  height: 26px;
  background: #0e9f8d;
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SUB LIST */
.tata-tertib-list ul {
  margin-top: 10px;
  padding-left: 20px;
}

.tata-tertib-list ul li {
  margin-bottom: 6px;
  color: #555;
  position: relative;
}

/* BULLET CUSTOM */
.tata-tertib-list ul li::before {
  content: "•";
  color: #0e9f8d;
  font-weight: bold;
  position: absolute;
  left: -12px;
}

/* TEXT */
.tata-tertib-list li {
  line-height: 1.6;
  font-size: 14px;
}

/* BACKGROUND SECTION */
.careplus-main-section {
  background: #f6f8fb;
}

/* ===== TITLE MODERN ===== */
.title-modern {
  text-align: center;
  margin-bottom: 40px;
}

/* ICON */
.title-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  background: linear-gradient(135deg, #0e9f8d, #14b8a6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title-icon i {
  color: #fff;
  font-size: 22px;
}

/* TITLE */
.title-modern h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

/* LINE */
.title-line {
  width: 60px;
  height: 4px;
  background: #0e9f8d;
  margin: 10px auto 0;
  border-radius: 10px;
}

/* ====================== survey kepuasan =================== */
/* WRAPPER */
.survey-card-modern {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* TITLE */
.survey-title-modern h2 {
  text-align: center;
  font-weight: 600;
}

.survey-title-modern p {
  text-align: center;
  color: #777;
  margin-bottom: 20px;
}

/* GRID */
.survey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* FIELD */
.survey-field label {
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

.survey-field input,
.survey-field select {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

/* INPUT GROUP */
.input-group-modern {
  display: flex;
}

.input-group-modern input {
  border-radius: 10px 0 0 10px;
}

.input-group-modern span {
  background: #0e9f8d;
  color: #fff;
  padding: 10px;
  border-radius: 0 10px 10px 0;
}

/* FULL WIDTH */
.survey-field.full {
  grid-column: span 2;
}

/* BUTTON */
.survey-action {
  margin-top: 20px;
}

.btn-modern-primary {
  background: #0e9f8d;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
}

.btn-modern-outline {
  border: 1px solid #ccc;
  padding: 12px 18px;
  border-radius: 10px;
  background: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .survey-grid {
    grid-template-columns: 1fr;
  }

  .survey-field.full {
    grid-column: span 1;
  }
}

/* ========== pertanyaan survey ============= */
/* ================= SURVEY MODERN ================= */
/* WRAPPER */
#view_survey .form-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* RADIO BOX */
#view_survey .radio-box {
  width: calc(50% - 5px);
  background: #f8fafc;
  border: 1px solid #dbe2ea;
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

/* HIDE RADIO */
#view_survey .radio-box input[type="radio"] {
  display: none;
}

/* TEXT */
#view_survey .radio-box span {
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  width: 100%;
}

/* HOVER */
#view_survey .radio-box:hover {
  border-color: #0e9f8d;
  transform: translateY(-2px);
}

/* ACTIVE */
#view_survey .radio-box:has(input[type="radio"]:checked) {
  background: #0e9f8d;
  border-color: #0e9f8d;
}

#view_survey .radio-box:has(input[type="radio"]:checked) span {
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  #view_survey .radio-box {
    width: 100%;
  }
}

/* OPTION */
#view_survey .survey-option {
  width: calc(50% - 5px);
  background: #f8fafc;
  border: 1px solid #dbe2ea;
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  margin: 0;
}

/* HIDE RADIO */
#view_survey .survey-option input[type="radio"] {
  display: none;
}

/* TEXT */
#view_survey .survey-option span {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
}

/* HOVER */
#view_survey .survey-option:hover {
  border-color: #0e9f8d;
  transform: translateY(-2px);
}

/* ACTIVE */
#view_survey .survey-option:has(input[type="radio"]:checked) {
  background: #0e9f8d;
  border-color: #0e9f8d;
}

#view_survey .survey-option:has(input[type="radio"]:checked) span {
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  #view_survey .survey-option {
    width: 100%;
  }
}

.cardin-survey {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #edf2f7;
}

/* =========================
   BOX
========================= */
#view_survey .kritik-box {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #edf2f7;
}

/* =========================
   HEADER
========================= */
#view_survey .kritik-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* ICON */
#view_survey .kritik-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0e9f8d, #14b8a6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(14, 159, 141, 0.25);
}

/* TITLE */
#view_survey .kritik-title h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

/* DESC */
#view_survey .kritik-title p {
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
}

/* =========================
   TEXTAREA
========================= */
#view_survey .kritik-textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #dbe2ea;
  background: #f8fafc;
  padding: 16px;
  font-size: 14px;
  line-height: 1.7;
  resize: none;
  transition: all 0.25s ease;
  min-height: 140px;
}

/* PLACEHOLDER */
#view_survey .kritik-textarea::placeholder {
  color: #94a3b8;
}

/* FOCUS */
#view_survey .kritik-textarea:focus {
  background: #fff;
  border-color: #0e9f8d;
  box-shadow: 0 0 0 4px rgba(14, 159, 141, 0.12);
  outline: none;
}

/* MOBILE */
@media (max-width: 768px) {
  #view_survey .kritik-header {
    flex-direction: column;
  }

  #view_survey .kritik-icon {
    width: 45px;
    height: 45px;
  }
}

/* =========================
   BOX
========================= */
#view_survey .ruang-box {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid #edf2f7;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* =========================
   HEADER
========================= */
#view_survey .ruang-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* =========================
   ICON
========================= */
#view_survey .ruang-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.25);
}

/* =========================
   TITLE
========================= */
#view_survey .ruang-title h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

/* DESC */
#view_survey .ruang-title p {
  margin-top: 6px;
  margin-bottom: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

/* =========================
   TEXTAREA
========================= */
#view_survey .ruang-textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #dbe2ea;
  background: #f8fafc;
  padding: 15px 16px;
  font-size: 14px;
  line-height: 1.7;
  resize: none;
  min-height: 120px;
  transition: all 0.25s ease;
}

/* PLACEHOLDER */
#view_survey .ruang-textarea::placeholder {
  color: #94a3b8;
}

/* FOCUS */
#view_survey .ruang-textarea:focus {
  background: #fff;
  border-color: #25e5eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  outline: none;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  #view_survey .ruang-header {
    flex-direction: column;
  }

  #view_survey .ruang-icon {
    width: 45px;
    height: 45px;
  }
}

/* =========================
   ACTION WRAPPER
========================= */
#view_survey .survey-action {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}

/* =========================
   BUTTON UMUM
========================= */
#view_survey .survey-action .btn {
  border: none;
  border-radius: 14px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ICON */
#view_survey .survey-action .btn i {
  font-size: 15px;
}

/* =========================
   BUTTON KIRIM
========================= */
#view_survey .btn-survey-kirim {
  background: linear-gradient(135deg, #0e9f8d, #14b8a6) !important;
  color: #fff !important;
}

/* HOVER */
#view_survey .btn-survey-kirim:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(14, 159, 141, 0.25);
}

/* ACTIVE */
#view_survey .btn-survey-kirim:active {
  transform: scale(0.98);
}

/* =========================
   BUTTON BATAL
========================= */
#view_survey .btn-survey-batal {
  background: #f8fafc !important;
  color: #475569 !important;
  border: 1px solid #dbe2ea !important;
}

/* HOVER */
#view_survey .btn-survey-batal:hover {
  background: #fff !important;
  border-color: #cbd5e1 !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  #view_survey .survey-action {
    flex-direction: column;
    align-items: stretch;
  }

  #view_survey .survey-action .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========== berhasil survey ======= */
/* =========================
   WRAPPER
========================= */
.success-wrapper {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   CARD
========================= */
.success-card {
  max-width: 850px;
  margin: auto;
  text-align: center;
  padding: 60px 40px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
  animation: fadeSuccess 0.8s ease;
}

/* =========================
   BACKGROUND EFFECT
========================= */
.success-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(14, 159, 141, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -120px;
}

.success-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
}

/* =========================
   ICON
========================= */
.success-icon {
  width: 110px;
  height: 110px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e9f8d, #14b8a6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 46px;
  box-shadow: 0 15px 35px rgba(14, 159, 141, 0.3);
  animation: floatIcon 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

/* =========================
   TITLE
========================= */
.success-title {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
}

/* =========================
   SUBTITLE
========================= */
.success-subtitle {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 35px;
}

/* =========================
   MESSAGE
========================= */
.success-message {
  background: #f8fafc;
  border-radius: 22px;
  padding: 30px;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.success-message h2 {
  font-size: 28px;
  line-height: 1.5;
  color: #0e9f8d;
  font-weight: 700;
  margin-bottom: 18px;
}

.success-message p {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  margin: 0;
}

/* =========================
   EMOJI
========================= */
.success-love {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 30px;
  margin-bottom: 35px;
  animation: floatEmoji 4s ease-in-out infinite;
}

/* =========================
   BUTTON
========================= */
.btn-success-home {
  background: linear-gradient(135deg, #0e9f8d, #14b8a6);
  border: none;
  color: #fff;
  padding: 16px 30px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 12px 30px rgba(14, 159, 141, 0.25);
}

.btn-success-home:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(14, 159, 141, 0.35);
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeSuccess {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIcon {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes floatEmoji {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .success-card {
    padding: 40px 25px;
  }

  .success-title {
    font-size: 32px;
  }

  .success-message h2 {
    font-size: 22px;
  }

  .success-subtitle {
    font-size: 15px;
  }
}

/* ===================== KELUHAN ==================== */
/* =====================================
   WRAPPER
===================================== */
#modul_keluhan {
  padding: 20px 10px;
}

/* =====================================
   CARD
===================================== */
.keluhan-card {
  border: none !important;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 15px 50px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.keluhan-card .card-body {
  padding: 35px;
}

/* =====================================
   ROW SPACING
===================================== */
#form-keluhan .row.clearfix {
  margin-bottom: 10px;
}

/* =====================================
   FORM BOX
===================================== */
#form-keluhan .col-lg-5 {
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  border: 1px solid #edf2f7;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  transition: 0.25s ease;
}

#form-keluhan .col-lg-5:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

/* =====================================
   LABEL
===================================== */
#form-keluhan label {
  display: block;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

#form-keluhan label li {
  list-style: none;
}

/* =====================================
   INPUT & SELECT
===================================== */
#form-keluhan .form-control {
  height: 54px !important;
  border-radius: 16px !important;
  border: 1px solid #dbe2ea !important;
  background: #f8fafc !important;
  box-shadow: none !important;
  font-size: 14px !important;
  color: #0f172a !important;
  padding: 12px 16px !important;
  transition: all 0.25s ease;
}

/* REMOVE INLINE STYLE */
#form-keluhan input,
#form-keluhan select,
#form-keluhan textarea {
  border: 1px solid #dbe2ea !important;
  color: #0f172a !important;
}

/* PLACEHOLDER */
#form-keluhan .form-control::placeholder {
  color: #94a3b8;
}

/* FOCUS */
#form-keluhan .form-control:focus {
  background: #fff !important;
  border-color: #0e9f8d !important;
  box-shadow: 0 0 0 4px rgba(14, 159, 141, 0.12) !important;
}

/* =====================================
   TEXTAREA
===================================== */
#form-keluhan textarea.form-control {
  min-height: 180px;
  resize: none;
  line-height: 1.7;
  padding-top: 16px !important;
}

/* =====================================
   SELECT
===================================== */
#form-keluhan select.form-control {
  cursor: pointer;
}

/* =====================================
   RADIO TABLE
===================================== */
#show1,
#show2,
#show3,
#show4,
#show5 {
  width: 100%;
  margin-top: 15px;
  border-collapse: separate;
  border-spacing: 10px;
}

#show1 td,
#show2 td,
#show3 td,
#show4 td,
#show5 td {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px;
  transition: 0.25s;
}

#show1 td:hover,
#show2 td:hover,
#show3 td:hover,
#show4 td:hover,
#show5 td:hover {
  border-color: #0e9f8d;
  background: #f0fdfa;
}

/* RADIO */
#show1 input[type="radio"],
#show2 input[type="radio"],
#show3 input[type="radio"],
#show4 input[type="radio"],
#show5 input[type="radio"] {
  transform: scale(1.15);
  accent-color: #0e9f8d;
  margin-right: 10px;
}

/* =====================================
   RANGE
===================================== */
#range_keluhan {
  width: 100%;
  accent-color: #0e9f8d;
}

#rangevalue {
  background: linear-gradient(135deg, #0e9f8d, #14b8a6);
  color: #fff;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 12px;
  margin-left: 12px;
  min-width: 55px;
  text-align: center;
  display: inline-block;
}

/* =====================================
   BUTTON AREA
===================================== */
#form-keluhan .form-line:last-child {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTON */
#btn-kirim {
  background: linear-gradient(135deg, #0e9f8d, #14b8a6) !important;
  border: none !important;
  border-radius: 16px !important;
  height: 56px;
  font-size: 15px;
  font-weight: 700;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(14, 159, 141, 0.25);
  transition: 0.25s;
}

#btn-kirim:hover {
  transform: translateY(-3px);
}

/* BATAL */
#form-keluhan .btn-default {
  border-radius: 16px !important;
  height: 56px;
  border: 1px solid #dbe2ea !important;
  background: #fff !important;
  font-weight: 600;
  color: #475569 !important;
}

/* =====================================
   MOBILE
===================================== */
@media (max-width: 768px) {
  .keluhan-card .card-body {
    padding: 20px;
  }

  #form-keluhan .col-lg-5 {
    margin-bottom: 15px;
  }

  #form-keluhan .form-line:last-child {
    flex-direction: column;
  }

  #btn-kirim,
  #form-keluhan .btn-default {
    width: 100% !important;
  }
}

/* =========================================
   FIX LAYOUT FORM KELUHAN
========================================= */

#modul_keluhan .card-body {
  padding: 10px !important;
  background: #f8fafc;
}

/* ROW */
#modul_keluhan .row.clearfix {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 1px;
}

/* CARD INPUT */
#modul_keluhan .col-lg-5 {
  width: 48% !important;
  max-width: 48% !important;
  flex: 0 0 48% !important;

  background: #ffffff;
  border-radius: 20px;
  padding: 12px !important;

  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);

  margin-bottom: 15px;
}

/* SPACE TENGAH */
#modul_keluhan .col-lg-2 {
  width: 4% !important;
  flex: 0 0 4% !important;
}

/* LABEL */
#modul_keluhan label {
  display: block;
  margin-bottom: 12px !important;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.6;
}

#modul_keluhan label li {
  list-style: none;
}

/* GROUP */
#modul_keluhan .form-group,
#modul_keluhan .form-line {
  width: 100%;
  margin: 0 !important;
}

/* INPUT */
#modul_keluhan .form-control {
  width: 100% !important;
  height: 52px !important;

  border-radius: 14px !important;
  border: 1px solid #dbe2ea !important;

  background: #f8fafc !important;

  padding: 12px 16px !important;

  font-size: 14px !important;
  color: #0f172a !important;

  box-shadow: none !important;
}

/* REMOVE STYLE INLINE */
#modul_keluhan input,
#modul_keluhan select,
#modul_keluhan textarea {
  border: 1px solid #dbe2ea !important;
}

/* FOCUS */
#modul_keluhan .form-control:focus {
  background: #fff !important;
  border-color: #0e9f8d !important;
  box-shadow: 0 0 0 4px rgba(14, 159, 141, 0.12) !important;
}

/* TEXTAREA */
#modul_keluhan textarea.form-control {
  min-height: 180px !important;
  resize: none;
  line-height: 1.7;
}

/* SELECT */
#modul_keluhan select.form-control {
  cursor: pointer;
}

/* =========================================
   RADIO TABLE
========================================= */

#show1,
#show2,
#show3,
#show4,
#show5 {
  width: 100%;
  margin-top: 15px;
  border-collapse: separate;
  border-spacing: 10px;
}

#show1 td,
#show2 td,
#show3 td,
#show4 td,
#show5 td {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px;
  transition: 0.25s;
}

#show1 td:hover,
#show2 td:hover,
#show3 td:hover,
#show4 td:hover,
#show5 td:hover {
  border-color: #0e9f8d;
  background: #f0fdfa;
}

/* RADIO */
#show1 input[type="radio"],
#show2 input[type="radio"],
#show3 input[type="radio"],
#show4 input[type="radio"],
#show5 input[type="radio"] {
  transform: scale(1.15);
  margin-right: 8px;
  accent-color: #0e9f8d;
}

/* INPUT LAINNYA */
#kel_lainnya1,
#kel_lainnya2,
#kel_lainnya3 {
  margin-top: 10px;
  width: 100%;
  height: 45px;

  border-radius: 12px;
  border: 1px solid #dbe2ea;
  padding: 10px 14px;
}

/* =========================================
   RANGE
========================================= */

#range_keluhan {
  width: 100%;
  accent-color: #0e9f8d;
}

#rangevalue {
  background: #0e9f8d;
  color: #fff;
  border-radius: 10px;
  padding: 6px 12px;
  font-weight: 700;
  margin-left: 10px;
}

/* =========================================
   BUTTON
========================================= */

#modul_keluhan .form-line:last-child {
  display: flex;
  justify-content: center;
  gap: 15px;
}

#btn-kirim {
  background: linear-gradient(135deg, #0e9f8d, #14b8a6) !important;

  border: none !important;
  border-radius: 14px !important;

  height: 54px !important;
  width: 200px !important;

  color: #fff !important;
  font-weight: 700;

  box-shadow: 0 12px 25px rgba(14, 159, 141, 0.25);
}

#btn-kirim:hover {
  transform: translateY(-3px);
}

#modul_keluhan .btn-default {
  height: 54px !important;
  width: 200px !important;

  border-radius: 14px !important;
  border: 1px solid #dbe2ea !important;

  background: #fff !important;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  #modul_keluhan .row.clearfix {
    display: block;
  }

  #modul_keluhan .col-lg-5 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }

  #modul_keluhan .col-lg-2 {
    display: none;
  }

  #modul_keluhan .form-line:last-child {
    flex-direction: column;
  }

  #btn-kirim,
  #modul_keluhan .btn-default {
    width: 100% !important;
  }
}

/* =====================================
   WRAPPER
===================================== */

.cek-balasan-wrapper {
  padding: 25px 10px;
}

/* =====================================
   CARD
===================================== */

.cek-balasan-card {
  max-width: 850px;
  margin: auto;

  border: none !important;
  border-radius: 28px;

  overflow: hidden;

  background: #fff;

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

/* BODY */
.cek-balasan-card .card-body {
  padding: 45px;
}

/* =====================================
   HEADER
===================================== */

.cek-balasan-header {
  text-align: center;
  margin-bottom: 35px;
}

/* ICON */
.cek-balasan-icon {
  width: 90px;
  height: 90px;

  margin: auto auto 20px;

  border-radius: 24px;

  background: linear-gradient(135deg, #0e9f8d, #14b8a6);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 38px;

  box-shadow: 0 15px 35px rgba(14, 159, 141, 0.25);
}

/* TITLE */
.cek-balasan-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;

  margin-bottom: 12px;
}

/* DESC */
.cek-balasan-title p {
  font-size: 15px;
  line-height: 1.8;
  color: #64748b;

  max-width: 600px;
  margin: auto;
}

/* =====================================
   LABEL
===================================== */

#form-balasan label {
  display: block;

  margin-bottom: 12px;

  font-size: 15px;
  font-weight: 700;

  color: #0f172a;
}

/* =====================================
   INPUT GROUP
===================================== */

.input-icon-group {
  position: relative;
}

/* ICON */
.input-icon {
  position: absolute;

  left: 18px;
  top: 50%;

  transform: translateY(-50%);

  color: #0e9f8d;
  font-size: 18px;

  z-index: 2;
}

/* INPUT */
#form-balasan .form-control {
  width: 100%;
  height: 60px !important;

  border-radius: 18px !important;

  border: 1px solid #dbe2ea !important;

  background: #f8fafc !important;

  padding-left: 55px !important;
  padding-right: 18px !important;

  font-size: 15px !important;

  box-shadow: none !important;

  transition: 0.25s;
}

/* REMOVE INLINE */
#form-balasan input {
  border: 1px solid #dbe2ea !important;
}

/* FOCUS */
#form-balasan .form-control:focus {
  background: #fff !important;

  border-color: #0e9f8d !important;

  box-shadow: 0 0 0 4px rgba(14, 159, 141, 0.12) !important;
}

/* =====================================
   BUTTON AREA
===================================== */

.cek-balasan-action {
  display: flex;
  justify-content: center;
  gap: 15px;

  margin-top: 20px;

  flex-wrap: wrap;
}

/* BUTTON */
#btn-cek {
  width: 220px !important;
  height: 56px !important;

  border: none !important;
  border-radius: 16px !important;

  background: linear-gradient(135deg, #0e9f8d, #14b8a6) !important;

  color: #fff !important;

  font-size: 15px;
  font-weight: 700;

  box-shadow: 0 12px 28px rgba(14, 159, 141, 0.25);

  transition: 0.25s;
}

/* HOVER */
#btn-cek:hover {
  transform: translateY(-3px);
}

/* BATAL */
#form-balasan .btn-default {
  width: 220px !important;
  height: 56px !important;

  border-radius: 16px !important;

  border: 1px solid #dbe2ea !important;

  background: #fff !important;

  color: #475569 !important;

  font-weight: 600;
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 768px) {
  .cek-balasan-card .card-body {
    padding: 25px;
  }

  .cek-balasan-title h2 {
    font-size: 26px;
  }

  .cek-balasan-action {
    flex-direction: column;
  }

  #btn-cek,
  #form-balasan .btn-default {
    width: 100% !important;
  }
}

/* =========================================
   CUSTOM MODAL
========================================= */

.custom-modal {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;

  display: none;

  align-items: center;
  justify-content: center;

  z-index: 999999;
}

/* SHOW */
.custom-modal.show {
  display: flex;
}

/* OVERLAY */
.custom-modal-overlay {
  position: absolute;

  width: 100%;
  height: 100%;

  background: rgba(15, 23, 42, 0.55);

  backdrop-filter: blur(5px);
}

/* WRAPPER */
.custom-modal-wrapper {
  position: relative;

  width: 95%;
  max-width: 1400px;

  max-height: 92vh;

  overflow-y: auto;

  border-radius: 28px;

  animation: modalFade 0.3s ease;
}

/* CONTENT */
.custom-modal .modal-content {
  border: none !important;

  border-radius: 28px;

  overflow: hidden;

  background: #f8fafc;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* HEADER */
.custom-modal .modal-header {
  background: linear-gradient(135deg, #0e9f8d, #14b8a6);

  color: #fff;

  padding: 24px 30px;

  border: none;
}

/* TITLE */
.custom-modal .modal-title {
  font-size: 24px;
  font-weight: 700;
}

/* CLOSE */
.custom-modal .close {
  background: none;
  border: none;

  color: #fff;

  font-size: 34px;

  cursor: pointer;

  opacity: 1;
}

/* BODY */
.custom-modal .modal-body {
  padding: 35px;
}

/* FOOTER */
.custom-modal .modal-footer {
  padding: 24px 35px;

  background: #fff;

  border: none;

  display: flex;
  justify-content: flex-end;
}

/* BUTTON */
.custom-modal .btn {
  border: none;

  border-radius: 14px;

  padding: 12px 24px;

  background: #0e9f8d;

  color: #fff;

  font-weight: 600;
}

/* SCROLL */
.custom-modal-wrapper::-webkit-scrollbar {
  width: 8px;
}

.custom-modal-wrapper::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

/* ANIMATION */
@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .custom-modal-wrapper {
    width: 98%;
    max-height: 95vh;
  }

  .custom-modal .modal-body {
    padding: 20px;
  }
}

/* =========================================
   MODAL WRAPPER
========================================= */

.custom-modal-wrapper {
  width: 92%;
  max-width: 1100px;
}

/* =========================================
   MODAL CONTENT
========================================= */

.custom-modal .modal-content {
  border: none !important;
  border-radius: 28px;
  overflow: hidden;
  background: #f8fafc;
}

/* =========================================
   HEADER
========================================= */

.custom-modal .modal-header {
  background: linear-gradient(135deg, #0e9f8d, #14b8a6);

  padding: 28px 35px;

  border: none;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* TITLE */
.custom-modal .modal-title {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  margin: 0;
}

/* CLOSE */
.custom-modal .close {
  background: none;
  border: none;

  color: #fff;

  font-size: 38px;
  cursor: pointer;
}

/* =========================================
   BODY
========================================= */

.custom-modal .modal-body {
  padding: 0;
}

/* =========================================
   CARD
========================================= */

.detail-keluhan-card {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.detail-keluhan-card .card-body {
  padding: 35px;
}

/* =========================================
   FORM GRID
========================================= */

.detail-keluhan-form .row.clearfix {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;

  margin-bottom: 18px;
}

/* HILANGKAN COL 2 */
.detail-keluhan-form .col-lg-2 {
  display: none !important;
}

/* CARD ITEM */
.detail-keluhan-form .col-lg-5,
.detail-keluhan-form .col-lg-12 {
  flex: 1 1 calc(50% - 10px);

  max-width: calc(50% - 10px);

  background: #fff;

  border-radius: 22px;

  padding: 24px;

  border: 1px solid #e2e8f0;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* FULL */
.detail-keluhan-form .col-lg-12 {
  flex: 100%;
  max-width: 100%;
}

/* =========================================
   LABEL
========================================= */

.detail-keluhan-form label {
  display: block;

  margin-bottom: 14px;

  font-size: 15px;
  font-weight: 700;

  color: #0f172a;

  line-height: 1.7;
}

/* =========================================
   INPUT
========================================= */

.detail-keluhan-form .form-control {
  width: 100% !important;

  min-height: 56px;

  border-radius: 16px !important;

  border: 1px solid #dbe2ea !important;

  background: #f8fafc !important;

  padding: 14px 18px !important;

  font-size: 14px !important;

  color: #0f172a !important;

  box-shadow: none !important;
}

/* REMOVE INLINE */
.detail-keluhan-form input,
.detail-keluhan-form textarea,
.detail-keluhan-form select {
  border: 1px solid #dbe2ea !important;
}

/* FOCUS */
.detail-keluhan-form .form-control:focus {
  background: #fff !important;

  border-color: #0e9f8d !important;

  box-shadow: 0 0 0 4px rgba(14, 159, 141, 0.12) !important;
}

/* =========================================
   TEXTAREA
========================================= */

.detail-keluhan-form textarea.form-control {
  min-height: 170px !important;

  resize: none;

  line-height: 1.8;
}

/* =========================================
   RANGE
========================================= */

#range_keluhan2 {
  width: 100%;
  accent-color: #0e9f8d;
}

#rangevalue2 {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 60px;
  height: 40px;

  border-radius: 12px;

  background: #0e9f8d;

  color: #fff;

  font-weight: 700;

  margin-left: 12px;
}

/* =========================================
   BALASAN ADMIN
========================================= */

#balasan_admin {
  background: #fff5f5 !important;

  border: 2px solid #fecaca !important;

  color: #991b1b !important;

  font-weight: 500;
}

/* =========================================
   FOOTER
========================================= */

.custom-modal .modal-footer {
  border: none;

  background: #fff;

  padding: 25px 35px;

  display: flex;
  justify-content: flex-end;
}

/* BUTTON */
.custom-modal .modal-footer .btn {
  min-width: 180px;
  height: 52px;

  border: none;

  border-radius: 14px;

  background: linear-gradient(135deg, #0e9f8d, #14b8a6);

  color: #fff;

  font-weight: 700;

  box-shadow: 0 12px 28px rgba(14, 159, 141, 0.2);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .custom-modal-wrapper {
    width: 98%;
  }

  .custom-modal .modal-header {
    padding: 20px;
  }

  .custom-modal .modal-title {
    font-size: 22px;
  }

  .detail-keluhan-card .card-body {
    padding: 20px;
  }

  .detail-keluhan-form .row.clearfix {
    display: block;
  }

  .detail-keluhan-form .col-lg-5,
  .detail-keluhan-form .col-lg-12 {
    max-width: 100%;
    margin-bottom: 15px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PROMKES PAGE — Clean Redesign
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Page ─── */
.pk-page {
  padding: 40px 0 80px;
  background: #f8fafc;
}

/* -----------------------------------------
   PAGE HEADER
   ----------------------------------------- */
.pk-header {
  background: linear-gradient(135deg, #0e9f8d 0%, #6cc4a1 50%, #a3b13e 100%);
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 28px;
  border-left: none;
  box-shadow: 0 8px 30px rgba(14, 159, 141, 0.2);
}

/* Breadcrumb */
.pk-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.pk-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.pk-breadcrumb a:hover {
  color: #fff;
}

.pk-breadcrumb strong {
  color: #fff;
  font-weight: 600;
}

/* Row */
.pk-header__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.pk-header__text {
  flex: 1;
  min-width: 0;
}

.pk-header__title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.25;
}

.pk-header__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 600px;
}

/* Stats */
.pk-header__stats {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.pk-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  min-width: 80px;
}

.pk-stat__num {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.pk-stat__label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─────────────────────────────────────────
   TAB NAVIGATION
   ───────────────────────────────────────── */
.pk-tabs {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.pk-tabs::-webkit-scrollbar {
  display: none;
}

.pk-tabs__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  height: 52px;
  padding: 0 22px;
  border: none;
  border-radius: 14px;
  background: transparent;
  color: #64748b;
  font-family: "Inter", "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.pk-tabs__btn i {
  font-size: 16px;
  transition: color 0.25s;
}

.pk-tabs__btn:hover {
  background: #f0fdf9;
  color: #0d9488;
}

.pk-tabs__btn:hover i {
  color: #0d9488;
}

.pk-tabs__btn.is-active {
  background: linear-gradient(135deg, #0e9f8d, #14b8a6);
  color: #fff;
  box-shadow: 0 8px 24px rgba(14, 159, 141, 0.28);
}

.pk-tabs__btn.is-active i {
  color: #fff;
}

/* ─────────────────────────────────────────
   PANELS
   ───────────────────────────────────────── */
.pk-panel {
  display: none;
  animation: pkFadeIn 0.35s ease;
}

.pk-panel.is-active {
  display: block;
}

@keyframes pkFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Panel Head */
.pk-panel__head {
  margin-bottom: 28px;
}

.pk-panel__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #0d9488;
  margin-bottom: 6px;
}

.pk-panel__title {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

/* ─────────────────────────────────────────
   VIDEO GRID
   ───────────────────────────────────────── */
.pk-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.pk-vcard {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.pk-vcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.pk-vcard__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 */
  background: #0f172a;
}

.pk-vcard__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.pk-vcard__frame--ig {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  height: 200px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.pk-vcard__frame--ig a {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}

.pk-vcard__info {
  padding: 18px 20px;
}

.pk-vcard__info h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.6;
  margin: 0;
}

/* ─────────────────────────────────────────
   MATERI LIST
   ───────────────────────────────────────── */
.pk-materi-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pk-materi-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.pk-materi-row:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.pk-materi-row__num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #047857;
  font-size: 13px;
  font-weight: 800;
}

.pk-materi-row__body {
  flex: 1;
  min-width: 0;
}

.pk-materi-row__body h4 {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 4px;
  line-height: 1.5;
}

.pk-materi-row__date {
  font-size: 12px;
  color: #94a3b8;
}

.pk-materi-row__date i {
  margin-right: 4px;
}

/* Button */
.pk-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  height: 38px;
  padding: 0 16px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #0e9f8d, #14b8a6);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.pk-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 159, 141, 0.3);
  color: #fff;
  text-decoration: none;
}

.pk-btn--sm {
  height: 34px;
  padding: 0 14px;
  font-size: 12px;
}

/* ─────────────────────────────────────────
   ARTICLE GRID
   ───────────────────────────────────────── */
.pk-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.pk-acard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-decoration: none !important;
  color: inherit !important;
}

.pk-acard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  text-decoration: none !important;
}

.pk-acard__img {
  position: relative;
  overflow: hidden;
}

.pk-acard__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}

.pk-acard:hover .pk-acard__img img {
  transform: scale(1.06);
}

.pk-acard__body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pk-acard__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f59e0b;
  margin-bottom: 10px;
}

.pk-acard__body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.55;
  margin: 0 0 14px;
  flex: 1;
}

.pk-acard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: #94a3b8;
}

.pk-acard__meta i {
  margin-right: 4px;
}

/* ─────────────────────────────────────────
   KALENDER
   ───────────────────────────────────────── */
.pk-cal {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
}

.pk-cal__months {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  justify-content: center;
}

.pk-cal__btn {
  width: 52px;
  height: 44px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  color: #475569;
  font-family: "Inter", "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  outline: none;
}

.pk-cal__btn:hover {
  background: #ecfdf5;
  border-color: #0d9488;
  color: #0d9488;
}

.pk-cal__btn.is-active {
  background: linear-gradient(135deg, #0e9f8d, #14b8a6);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(14, 159, 141, 0.3);
}

/* Calendar images */
.pk-cal__img {
  display: none;
  animation: pkFadeIn 0.3s ease;
}

.pk-cal__img.is-active {
  display: block;
}

.pk-cal__img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.pk-cal__empty {
  padding: 60px 20px;
  text-align: center;
  color: #94a3b8;
  font-size: 15px;
}

.pk-cal__empty i {
  display: block;
  font-size: 36px;
  margin-bottom: 12px;
  color: #cbd5e1;
}

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */
@media (max-width: 992px) {
  .pk-header {
    padding: 24px 28px;
  }

  .pk-header__row {
    flex-direction: column;
    gap: 20px;
  }

  .pk-header__title {
    font-size: 26px;
  }

  .pk-header__stats {
    width: 100%;
    justify-content: flex-start;
  }

  .pk-tabs__btn {
    height: 46px;
    padding: 0 16px;
    font-size: 13px;
  }

  .pk-article-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 640px) {
  .pk-page {
    padding: 30px 0 50px;
  }

  .pk-header {
    padding: 20px 22px;
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .pk-header__title {
    font-size: 22px;
  }

  .pk-header__desc {
    font-size: 14px;
  }

  .pk-header__stats {
    gap: 12px;
  }

  .pk-stat {
    padding: 10px 14px;
    min-width: 65px;
  }

  .pk-stat__num {
    font-size: 20px;
  }

  .pk-tabs {
    margin-bottom: 24px;
    border-radius: 14px;
    gap: 6px;
  }

  .pk-tabs__btn {
    height: 42px;
    padding: 0 14px;
    font-size: 12px;
    border-radius: 10px;
  }

  .pk-tabs__btn i {
    font-size: 14px;
  }

  .pk-panel__title {
    font-size: 22px;
  }

  .pk-video-grid {
    grid-template-columns: 1fr;
  }

  .pk-article-grid {
    grid-template-columns: 1fr;
  }

  .pk-materi-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .pk-materi-row .pk-btn {
    width: 100%;
    justify-content: center;
  }

  .pk-cal {
    padding: 18px;
  }

  .pk-cal__months {
    gap: 6px;
  }

  .pk-cal__btn {
    width: 44px;
    height: 38px;
    font-size: 11px;
    border-radius: 10px;
  }
}

/* ─────────────────────────────────────────
   PAGINATION
   ───────────────────────────────────────── */
.pk-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.pk-pg__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  color: #475569;
  font-family: "Inter", "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.pk-pg__btn:hover:not(.is-disabled):not(.is-active) {
  background: #f0fdf9;
  border-color: #0d9488;
  color: #0d9488;
}

.pk-pg__btn.is-active {
  background: linear-gradient(135deg, #0e9f8d, #14b8a6);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(14, 159, 141, 0.28);
}

.pk-pg__btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pk-pg__dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 40px;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 600;
  user-select: none;
}

@media (max-width: 640px) {
  .pk-pagination {
    margin-top: 24px;
    gap: 4px;
  }

  .pk-pg__btn {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
    border-radius: 10px;
  }
}

/* ======================== DETAIL SUB PELAYANAN ===================== */
/* =========================================
   PAGE
========================================= */

.detail-pelayanan-modern {
  padding: 50px 0 80px;

  background: #f8fafc;
}

/* =========================================
   SIDEBAR
========================================= */

.detail-sidebar {
  position: sticky;
  top: 30px;

  background: #fff;

  border-radius: 28px;

  padding: 28px;

  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
}

/* =========================================
   BUTTON BACK
========================================= */

.btn-kembali-modern {
  width: 100%;

  height: 56px;

  border: none;

  border-radius: 18px;

  background: linear-gradient(135deg, #0e9f8d, #14b8a6);

  color: #fff;

  font-size: 15px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  transition: 0.3s ease;

  box-shadow: 0 15px 30px rgba(14, 159, 141, 0.2);
}

/* HOVER */
.btn-kembali-modern:hover {
  transform: translateY(-3px);
}

/* =========================================
   TITLE
========================================= */

.sidebar-title {
  margin: 30px 0 20px;
}

.sidebar-title span {
  color: #0e9f8d;

  font-size: 13px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.sidebar-title h3 {
  font-size: 24px;
  font-weight: 800;

  color: #0f172a;

  margin-top: 8px;
}

/* =========================================
   MENU
========================================= */

.sidebar-menu-modern {
  list-style: none;

  padding: 0;
  margin: 0;
}

/* ITEM */
.sidebar-menu-modern li {
  margin-bottom: 12px;
}

/* LINK */
.sidebar-menu-modern li a {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 15px;

  padding: 16px 18px;

  border-radius: 18px;

  background: #f8fafc;

  border: 1px solid #e2e8f0;

  color: #0f172a;

  font-size: 15px;
  font-weight: 600;

  text-decoration: none;

  transition: 0.25s;
}

/* ICON */
.sidebar-menu-modern li a i {
  color: #0e9f8d;
}

/* HOVER */
.sidebar-menu-modern li a:hover {
  background: #0e9f8d;

  color: #fff;

  transform: translateX(4px);

  box-shadow: 0 10px 25px rgba(14, 159, 141, 0.15);
}

.sidebar-menu-modern li a:hover i {
  color: #fff;
}

/* =========================================
   CONTENT CARD
========================================= */

.detail-content-card {
  background: #fff;

  border-radius: 32px;

  overflow: hidden;

  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

/* =========================================
   IMAGE
========================================= */

.detail-image-wrapper {
  position: relative;

  overflow: hidden;
}

/* IMAGE */
.detail-image-modern {
  width: 100%;

  max-height: 480px;

  object-fit: cover;

  display: block;
}

/* =========================================
   CONTENT BODY
========================================= */

.detail-content-body {
  padding: 40px;
}

/* TYPOGRAPHY */
.detail-content-body h1,
.detail-content-body h2,
.detail-content-body h3,
.detail-content-body h4 {
  color: #0f172a;

  font-weight: 800;

  margin-top: 30px;
  margin-bottom: 18px;

  line-height: 1.4;
}

/* PARAGRAPH */
.detail-content-body p {
  font-size: 16px;

  line-height: 2;

  color: #475569;

  margin-bottom: 22px;
}

/* LIST */
.detail-content-body ul,
.detail-content-body ol {
  padding-left: 22px;

  margin-bottom: 24px;
}

.detail-content-body li {
  margin-bottom: 12px;

  line-height: 1.8;

  color: #475569;
}

/* TABLE */
.detail-content-body table {
  width: 100%;

  border-collapse: collapse;

  margin-top: 20px;
  margin-bottom: 30px;

  overflow: hidden;

  border-radius: 18px;
}

/* TH */
.detail-content-body th {
  background: #0e9f8d;

  color: #fff;

  padding: 16px;

  font-size: 15px;
}

/* TD */
.detail-content-body td {
  padding: 16px;

  border: 1px solid #e2e8f0;

  color: #475569;
}

/* IMAGE CONTENT */
.detail-content-body img {
  max-width: 100%;

  border-radius: 20px;

  margin: 25px 0;
}

/* BLOCKQUOTE */
.detail-content-body blockquote {
  background: #f0fdfa;

  border-left: 5px solid #0e9f8d;

  padding: 24px;

  border-radius: 18px;

  margin: 30px 0;

  color: #0f172a;

  font-style: italic;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .detail-pelayanan-modern {
    padding: 20px 0 50px;
  }

  .detail-sidebar {
    margin-bottom: 25px;

    position: relative;
    top: auto;
  }

  .detail-content-body {
    padding: 24px;
  }

  .detail-content-body p {
    font-size: 15px;
  }

  .sidebar-title h3 {
    font-size: 20px;
  }
}

/* =========================================
   SIDEBAR MODERN
========================================= */

.detail-sidebar-modern {
  position: sticky;

  top: 30px;

  background: #fff;

  border-radius: 32px;

  padding: 28px;

  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);

  overflow: hidden;
}

/* EFFECT */
.detail-sidebar-modern::before {
  content: "";

  position: absolute;

  top: -120px;
  right: -120px;

  width: 220px;
  height: 220px;

  border-radius: 50%;

  background: linear-gradient(135deg,
      rgba(14, 159, 141, 0.08),
      rgba(20, 184, 166, 0.04));
}

/* =========================================
   TOP
========================================= */

.sidebar-top {
  margin-bottom: 28px;
}

/* =========================================
   BUTTON
========================================= */

.btn-kembali-modern {
  width: 100%;

  height: 58px;

  border: none;

  border-radius: 18px;

  background: linear-gradient(135deg, #0e9f8d, #14b8a6);

  color: #fff;

  font-size: 15px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  transition: 0.3s ease;

  box-shadow: 0 15px 35px rgba(14, 159, 141, 0.18);
}

/* HOVER */
.btn-kembali-modern:hover {
  transform: translateY(-3px);
}

/* =========================================
   HEADER
========================================= */

.sidebar-header-modern {
  margin-bottom: 28px;

  position: relative;
  z-index: 2;
}

/* MINI */
.sidebar-mini-title {
  display: inline-flex;

  padding: 8px 14px;

  border-radius: 50px;

  background: #f0fdfa;

  color: #0e9f8d;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.5px;

  margin-bottom: 14px;
}

/* TITLE */
.sidebar-header-modern h3 {
  font-size: 30px;

  font-weight: 800;

  line-height: 1.2;

  color: #0f172a;

  margin-bottom: 14px;
}

/* DESC */
.sidebar-header-modern p {
  font-size: 14px;

  line-height: 1.8;

  color: #64748b;
}

/* =========================================
   MENU
========================================= */

.sidebar-menu-modern {
  list-style: none;

  padding: 0;
  margin: 0;

  position: relative;
  z-index: 2;
}

/* ITEM */
.sidebar-menu-modern li {
  margin-bottom: 14px;
}

/* LINK */
.sidebar-menu-modern li a {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 14px;

  padding: 18px 20px;

  border-radius: 20px;

  background: #f8fafc;

  border: 1px solid #e2e8f0;

  text-decoration: none;

  transition: 0.3s ease;
}

/* MENU TEXT */
.menu-text {
  display: flex;

  align-items: center;

  gap: 14px;
}

/* ICON */
.menu-text i {
  width: 42px;
  height: 42px;

  border-radius: 14px;

  background: #e6fffb;

  color: #0e9f8d;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  transition: 0.3s;
}

/* TEXT */
.menu-text span {
  color: #0f172a;

  font-size: 15px;
  font-weight: 700;

  line-height: 1.6;
}

/* ARROW */
.arrow-right {
  color: #94a3b8;

  transition: 0.3s;
}

/* HOVER */
.sidebar-menu-modern li a:hover {
  background: #0e9f8d;

  border-color: #0e9f8d;

  transform: translateX(4px);

  box-shadow: 0 15px 30px rgba(14, 159, 141, 0.15);
}

/* HOVER ICON */
.sidebar-menu-modern li a:hover .menu-text i {
  background: rgba(255, 255, 255, 0.18);

  color: #fff;
}

/* HOVER TEXT */
.sidebar-menu-modern li a:hover .menu-text span,
.sidebar-menu-modern li a:hover .arrow-right {
  color: #fff;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .detail-sidebar-modern {
    position: relative;

    top: auto;

    margin-bottom: 28px;

    padding: 22px;
  }

  .sidebar-header-modern h3 {
    font-size: 24px;
  }

  .sidebar-menu-modern li a {
    padding: 16px;
  }
}

/* =========================================
   MAIN LAYOUT
========================================= */

.detail-layout-modern {
  display: grid;

  grid-template-columns: 340px minmax(0, 1fr);

  gap: 32px;

  align-items: start;
}

/* =========================================
   SIDEBAR COLUMN
========================================= */

.detail-sidebar-column {
  min-width: 0;
}

/* =========================================
   CONTENT COLUMN
========================================= */

.detail-content-column {
  min-width: 0;
}

/* =========================================
   SIDEBAR
========================================= */

.detail-sidebar-modern {
  position: sticky;

  top: 30px;

  background: #fff;

  border-radius: 32px;

  padding: 28px;

  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);

  overflow: hidden;
}

/* =========================================
   CONTENT CARD
========================================= */

.detail-content-card {
  background: #fff;

  border-radius: 32px;

  overflow: hidden;

  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
}

/* =========================================
   IMAGE
========================================= */

.detail-image-wrapper {
  position: relative;

  overflow: hidden;

  background: #f8fafc;
}

/* IMAGE */
.detail-image-modern {
  width: 100%;

  height: 460px;

  object-fit: cover;

  display: block;
}

/* =========================================
   CONTENT
========================================= */

.detail-content-body {
  padding: 40px;
}

/* =========================================
   TYPOGRAPHY
========================================= */

.detail-content-body h1,
.detail-content-body h2,
.detail-content-body h3 {
  font-weight: 800;

  color: #0f172a;

  line-height: 1.4;

  margin-top: 28px;
  margin-bottom: 18px;
}

.detail-content-body p {
  font-size: 16px;

  line-height: 2;

  color: #475569;

  margin-bottom: 22px;
}

/* =========================================
   TABLE
========================================= */

.detail-content-body table {
  width: 100%;

  border-collapse: collapse;

  margin-top: 24px;
  margin-bottom: 30px;

  overflow: hidden;

  border-radius: 18px;
}

.detail-content-body th {
  background: #0e9f8d;

  color: #fff;

  padding: 16px;
}

.detail-content-body td {
  padding: 16px;

  border: 1px solid #e2e8f0;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {
  .detail-layout-modern {
    grid-template-columns: 1fr;
  }

  .detail-sidebar-modern {
    position: relative;

    top: auto;
  }

  .detail-image-modern {
    height: 300px;
  }

  .detail-content-body {
    padding: 24px;
  }
}

/* ============================================
   RESPONSIVE HEADER & MOBILE MENU
   ============================================ */

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* --- Mobile Menu Panel --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 310px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--color-white);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.mobile-menu.active {
  right: 0;
}

/* --- Mobile Menu Header --- */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-light-gray);
  flex-shrink: 0;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mobile-menu-logo span {
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1.2;
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  color: var(--color-dark-gray);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-error);
}

.mobile-menu-close svg {
  width: 20px;
  height: 20px;
}

/* --- Mobile Menu Body (scrollable) --- */
.mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
  -webkit-overflow-scrolling: touch;
}

/* --- Mobile Nav Item --- */
.mobile-nav-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

/* Toggle button for items with sub-menus */
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: var(--fw-semibold);
  color: var(--color-black);
  transition: all var(--transition-fast);
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus-visible {
  background: rgba(14, 159, 141, 0.05);
  color: var(--color-primary);
}

.mobile-nav-toggle[aria-expanded="true"] {
  color: var(--color-primary);
  background: rgba(14, 159, 141, 0.05);
}

.mobile-nav-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-dark-gray);
}

.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-arrow {
  transform: rotate(180deg);
  color: var(--color-primary);
}

/* Sub-menu (hidden by default) */
.mobile-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0, 0, 0, 0.02);
}

.mobile-nav-sub.open {
  max-height: 600px;
}

.mobile-nav-sub a {
  display: block;
  padding: 11px 20px 11px 36px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--color-dark-gray);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
}

.mobile-nav-sub a::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-light-gray);
  transition: background var(--transition-fast);
}

.mobile-nav-sub a:hover {
  color: var(--color-primary);
  background: rgba(14, 159, 141, 0.06);
}

.mobile-nav-sub a:hover::before {
  background: var(--color-primary);
}

/* Single link item (no sub-menu) */
.mobile-nav-link-single {
  display: block;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: var(--fw-semibold);
  color: var(--color-black);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-nav-link-single:hover {
  background: rgba(14, 159, 141, 0.05);
  color: var(--color-primary);
}

/* Active state for mobile menu */
.mobile-nav-item.active>.mobile-nav-toggle {
  color: var(--color-primary);
  background: rgba(14, 159, 141, 0.06);
}

.mobile-nav-sub a.active {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
}

.mobile-nav-sub a.active::before {
  background: var(--color-primary);
}

.mobile-nav-link-single.active {
  color: var(--color-primary);
  background: rgba(14, 159, 141, 0.06);
}

/* --- Mobile Menu Footer --- */
.mobile-menu-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--color-light-gray);
  flex-shrink: 0;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet & below: show hamburger, hide desktop nav */
@media (max-width: 1024px) {
  .nav-menu {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .btn-daftar {
    display: none !important;
  }

  .header .container {
    padding: 0 var(--margin-mobile);
  }

  /* Hero bottom responsive */
  .hero-bottom {
    padding: 0 var(--margin-mobile);
    padding-bottom: 60px;
  }

  .hero-bottom-inner {
    flex-direction: column;
    gap: 10px;
  }

  .hero-search {
    border-radius: 12px;
    padding: 10px var(--space-l);
  }

  .quick-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .quick-action {
    min-width: unset;
    width: calc(33.333% - 6px);
    height: auto;
    flex-shrink: 0;
    padding: 14px 10px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
  }

  .quick-action-label {
    margin-top: 0;
    text-align: center;
  }

  .quick-action-icon {
    font-size: 22px;
  }

  .quick-action-icon svg {
    width: 22px;
    height: 22px;
  }

  .hero {
    height: 600px;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .hero-indicators {
    bottom: 275px;
  }
}

/* Small tablets */
@media (max-width: 768px) {
  .hero {
    height: 580px;
  }

  .hero-title {
    font-size: 28px;
    max-width: 400px;
  }

  .section-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 15px;
    max-width: 360px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .section-label {
    font-size: 11px;
  }

  .hero-bottom {
    padding-bottom: 40px;
  }

  .hero-content {
    padding-bottom: 120px;
  }

  .hero-indicators {
    bottom: 285px;
  }

  .quick-action {
    min-width: 80px;
    padding: var(--space-s) var(--space-xs);
    gap: 4px;
  }

  .quick-action-label {
    font-size: 11px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .mobile-menu {
    width: 100%;
    max-width: 100vw;
    right: -100%;
  }

  .top-bar-left {
    gap: var(--space-s);
    flex-wrap: wrap;
  }

  .header {
    height: 64px;
  }

  .hero {
    height: 560px;
  }

  .hero-title {
    font-size: 24px;
    max-width: 280px;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 14px;
    max-width: 280px;
    margin-bottom: var(--space-m);
  }

  .section-subtitle {
    font-size: 14px;
  }

  .section-label {
    font-size: 10px;
  }

  .hero-tagline {
    font-size: 12px;
  }

  .hero-bottom {
    padding: 0 12px;
    padding-bottom: 24px;
  }

  .hero-bottom-inner {
    border-radius: 12px;
  }

  .hero-search {
    padding: 12px 16px;
  }

  .hero-search-label {
    font-size: 10px;
  }

  .hero-search input {
    font-size: 14px;
  }

  .hero-search-icon svg {
    width: 20px;
    height: 20px;
  }

  .quick-action {
    min-width: 70px;
    padding: 8px 4px;
    gap: 4px;
  }

  .quick-action-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .quick-action-icon svg {
    width: 16px;
    height: 16px;
  }

  .quick-action-label {
    font-size: 10px;
  }

  .hero-content {
    padding-bottom: 120px;
  }

  .hero-indicators {
    bottom: 255px;
  }
}

/* ============================================
   PENAWARAN DETAIL PAGE — Clean Design
   ============================================ */
.promo-detail-section {
  padding: var(--space-xxl) 0 var(--space-section);
  background: var(--color-white);
}

/* --- Breadcrumb --- */
.promo-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-xxl);
  font-size: var(--fs-body3);
  color: var(--color-dark-gray);
}

.promo-breadcrumb a {
  color: var(--color-dark-gray);
  font-weight: var(--fw-medium);
  transition: color var(--transition-fast);
}

.promo-breadcrumb a:hover {
  color: var(--color-primary);
}

.promo-breadcrumb span {
  color: var(--color-light-gray);
}

.promo-breadcrumb strong {
  color: var(--color-black);
  font-weight: var(--fw-medium);
}

/* --- Top Grid (Image + Info) --- */
.promo-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  margin-bottom: var(--space-section);
  align-items: start;
}

.promo-image {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.promo-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-card);
  transition: transform var(--transition-slow);
}

.promo-image:hover img {
  transform: scale(1.03);
}

/* --- Info Panel (no card bg — flat clean) --- */
.promo-info {
  padding: var(--space-s) 0;
}

.promo-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(14, 159, 141, 0.08);
  color: var(--color-primary);
  border-radius: 100px;
  font-size: var(--fs-body3);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-l);
  letter-spacing: 0.2px;
}

.promo-title {
  font-size: var(--fs-h3);
  line-height: 1.25;
  margin-bottom: var(--space-m);
  color: var(--color-black);
  font-weight: var(--fw-bold);
}

.promo-period {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-dark-gray);
  font-size: var(--fs-body2);
  font-weight: var(--fw-regular);
  margin-bottom: var(--space-l);
}

.promo-period i {
  color: var(--color-primary);
}

.promo-desc {
  font-size: var(--fs-body1);
  line-height: 1.75;
  color: var(--color-dark-gray);
  margin-bottom: var(--space-xl);
}

/* --- Price Box — accent left border --- */
.promo-price-box {
  padding: var(--space-l) var(--space-l);
  background: var(--color-background);
  border-radius: var(--radius-button);
  margin-bottom: var(--space-xl);
  border-left: 4px solid var(--color-primary);
}

.promo-price-box small {
  display: block;
  margin-bottom: 4px;
  color: var(--color-dark-gray);
  font-size: var(--fs-body3);
  font-weight: var(--fw-medium);
  letter-spacing: 0.3px;
}

.promo-price-box h2 {
  font-size: var(--fs-h3);
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  margin: 0;
  line-height: 1.2;
}

/* --- Action Buttons --- */
.promo-action {
  display: flex;
  gap: var(--space-s);
}

.btn-promo-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-s);
  padding: 14px var(--space-l);
  border-radius: var(--radius-button);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--fs-body2);
  font-weight: var(--fw-semibold);
  transition: all var(--transition-normal);
}

.btn-promo-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(14, 159, 141, 0.3);
}

.btn-promo-secondary {
  flex: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-s);
  padding: 14px var(--space-l);
  border-radius: var(--radius-button);
  background: transparent;
  color: var(--color-dark-gray);
  font-size: var(--fs-body2);
  font-weight: var(--fw-medium);
  border: 1px solid var(--color-light-gray);
  transition: all var(--transition-normal);
}

.btn-promo-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* --- Divider --- */
.promo-divider {
  width: 100%;
  height: 1px;
  background: var(--color-light-gray);
  margin: 0;
  border: none;
}

/* --- Content Grid (Description + Sidebar) --- */
.promo-content-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xxl);
  align-items: start;
}

.promo-content-card {
  padding: 0;
}

.promo-sidebar-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
}

.promo-sidebar {
  background: var(--color-background);
  border-radius: var(--radius-card);
  padding: var(--space-l);
}

/* --- Section Titles --- */
.promo-section-title {
  font-size: 18px;
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-l);
  color: var(--color-black);
  display: flex;
  align-items: center;
  gap: var(--space-s);
}

.promo-section-title i {
  color: var(--color-primary);
  font-size: 16px;
}

.promo-content-desc {
  font-size: var(--fs-body1);
  line-height: 1.8;
  color: var(--color-dark-gray);
  margin-bottom: var(--space-xl);
}

/* --- List Items --- */
.promo-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.promo-list-item,
.promo-check-item {
  display: flex;
  gap: var(--space-m);
  align-items: center;
  padding: 14px 0;
  font-size: var(--fs-body2);
  color: var(--color-black);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  line-height: 1.5;
}

.promo-list-item:last-child,
.promo-check-item:last-child {
  border-bottom: none;
}

.promo-list-item span,
.promo-check-item span {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(14, 159, 141, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: var(--fw-bold);
}

/* Sidebar check items keep bg */
.promo-sidebar .promo-check-item {
  padding: 12px var(--space-m);
  border-bottom: none;
  border-radius: var(--radius-button);
  margin-bottom: var(--space-xs);
  background: var(--color-white);
}

/* --- Help CTA Box --- */
.promo-help-box {
  background: linear-gradient(135deg,
      var(--color-primary-dark) 0%,
      var(--color-primary) 100%);
  color: var(--color-white);
  border-radius: var(--radius-card);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.promo-help-box::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.promo-help-box small {
  font-size: var(--fs-body3);
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-help-box h3 {
  font-size: 20px;
  font-weight: var(--fw-bold);
  line-height: 1.35;
  margin: var(--space-s) 0 var(--space-m);
}

.promo-help-box p {
  font-size: var(--fs-body2);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: var(--space-l);
}

.btn-help {
  display: inline-flex;
  align-items: center;
  gap: var(--space-s);
  padding: 11px 20px;
  border-radius: var(--radius-button);
  background: var(--color-white);
  color: var(--color-primary-dark);
  font-size: var(--fs-body2);
  font-weight: var(--fw-semibold);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
}

.btn-help:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* --- Penawaran Responsive: Tablet (≤992px) --- */
@media (max-width: 992px) {
  .promo-detail-section {
    padding: var(--space-xl) 0 var(--space-xxl);
  }

  .promo-top {
    grid-template-columns: 1fr;
    gap: var(--space-l);
    margin-bottom: var(--space-xxl);
  }

  .promo-image img {
    aspect-ratio: 16 / 9;
  }

  .promo-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .promo-title {
    font-size: var(--fs-h4);
  }
}

/* --- Penawaran Responsive: Mobile (≤768px) --- */
@media (max-width: 768px) {
  .promo-detail-section {
    padding: var(--space-l) 0 var(--space-xl);
  }

  .promo-top {
    gap: var(--space-m);
    margin-bottom: var(--space-xl);
  }

  .promo-title {
    font-size: 22px;
  }

  .promo-price-box h2 {
    font-size: var(--fs-h4);
  }

  .promo-action {
    flex-direction: column;
  }

  .btn-promo-secondary {
    flex: 1;
  }

  .promo-help-box {
    padding: var(--space-l);
  }

  .promo-help-box h3 {
    font-size: 18px;
  }
}

/* --- Penawaran Responsive: Small Mobile (≤480px) --- */
@media (max-width: 480px) {
  .promo-breadcrumb {
    margin-bottom: var(--space-l);
  }

  .promo-title {
    font-size: 20px;
  }

  .promo-desc {
    font-size: var(--fs-body2);
  }

  .promo-content-grid {
    gap: var(--space-l);
  }

  .promo-sidebar {
    padding: var(--space-m);
  }

  .promo-help-box {
    padding: var(--space-m);
  }

  .promo-price-box {
    padding: var(--space-m);
  }
}

/* ============ loader ================ */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999;

  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 150px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: .7;
  }