:root {
  --maroon: #0E29CD;
  --maroon-dark: #091a82;
  --maroon-light: #176CEA;
  --gold: #D4872A;
  --gold-light: #E8A84A;
  --cream: #FDF8F0;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E0E0E0;
  --gray-400: #9E9E9E;
  --gray-600: #616161;
  --gray-800: #212121;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(14, 41, 205, 0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background: #eaeaea;
  /* Latar luar keabuan */
  color: var(--gray-800);
  overflow-x: hidden;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ BOXED LAYOUT WRAPPER Ã¢â€â‚¬Ã¢â€â‚¬ */
.site-wrapper {
  max-width: 1366px;
  /* Lebar maksimal konten */
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: clip;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ HEADER Ã¢â€â‚¬Ã¢â€â‚¬ */
.sticky-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  animation: slideDown 0.5s ease;
  box-shadow: var(--shadow-md);
}

.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  transition: all 0.3s ease;
}

.sticky-header-wrapper.scrolled .site-header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 16px;
  transition: all 0.3s ease;
}



.logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-block img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: all 0.3s ease;
}



.logo-text h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}



.download-btn {
  display: inline-flex;
  align-items: center;
}

.search-title {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--maroon);
  text-decoration: none;
  margin-bottom: 10px;
  font-family: 'Merriweather', serif;
  line-height: 1.5;
  transition: var(--transition);
}

.logo-text h1 {
  font-family: 'Merriweather', serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--maroon);
  line-height: 1.1;
  transition: all 0.3s ease;
}



.logo-text p {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 2px;
  transition: all 0.3s ease;
}



.header-badges {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-img {
  height: 38px;
  object-fit: contain;
  transition: all 0.3s ease;
}



/* Placeholder logo SVG */
.logo-svg {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ NAVBAR Ã¢â€â‚¬Ã¢â€â‚¬ */
.navbar {
  background: var(--maroon);
  position: relative;
  transition: all 0.3s ease;
}

.sticky-header-wrapper.scrolled .navbar {
  background: transparent;
}

/*
 * backdrop-filter dipindah ke ::before agar tidak menjadi containing block
 * bagi elemen position:fixed di dalamnya (seperti .dropdown-menu-right).
 * Hanya elemen yang LANGSUNG memiliki backdrop-filter yang membuat containing block
 * untuk fixed children-nya Ã¢â‚¬â€ pseudo-element tidak mempengaruhi sibling/child lainnya.
 */
.sticky-header-wrapper.scrolled .navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 41, 205, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  position: relative;
  /* Pastikan nav-inner di atas ::before */
  z-index: 1;
}

.nav-item {
  position: relative;
  flex: 1;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  text-decoration: none;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  background: var(--gold);
  color: var(--white);
}

.nav-item:last-child .nav-link {
  border-right: none;
}

/* Dropdown */
/* Dropdown utama Ã¢â‚¬â€ scrollable agar item panjang tetap terjangkau */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
  z-index: 9999;
  border-radius: 0 0 var(--radius) var(--radius);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  /* Scrollbar tipis berwarna gold */
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.dropdown::-webkit-scrollbar {
  width: 4px;
}

.dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.nav-item:hover .dropdown,
.nav-item.dropdown-active .dropdown {
  display: block;
  animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown a,
.dropdown-menu-right a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--gray-800);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.dropdown a:hover,
.dropdown-menu-right a:hover {
  background: var(--cream);
  color: var(--maroon);
  padding-left: 22px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ DROPDOWN SUBMENU BERTINGKAT Ã¢â€â‚¬Ã¢â€â‚¬ */
.dropdown-submenu {
  position: relative;
}

/* Panah indikator submenu */
.dropdown-submenu>a.has-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-submenu>a.has-child::after {
  content: '\25B8';
  font-size: 18px;
  line-height: 1;
  margin-left: 8px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.dropdown-submenu.submenu-open>a.has-child::after {
  transform: rotate(90deg);
}

/*
 * .dropdown-menu-right menggunakan position:fixed agar muncul di luar
 * batas overflow parent .dropdown.
 * Koordinat top/left dihitung oleh JavaScript (initSubmenuFixed).
 * Tidak perlu di-portal ke body karena backdrop-filter sudah dipindah
 * ke ::before sehingga tidak lagi membuat containing block untuk fixed children.
 */
.dropdown-menu-right {
  display: none;
  position: fixed;
  background: var(--white);
  min-width: 240px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  z-index: 10001;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.dropdown-menu-right::-webkit-scrollbar {
  width: 4px;
}

.dropdown-menu-right::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

/* Tampilkan saat kelas aktif ditambahkan via JS */
.dropdown-menu-right.submenu-visible {
  display: block;
  animation: fadeInRight 0.18s ease;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 20px;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ HERO / SLIDER Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero {
  background: linear-gradient(135deg, #091a82, #0E29CD 100%);
  padding: 0;
  overflow: hidden;
  position: relative;
}

#hero-mesh-canvas {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  pointer-events: none !important;
  display: block !important;
}

.slider-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 40px;
  padding: 60px 20px 50px;
  position: relative;
  z-index: 1;
  min-height: 450px;
}

.slide {
  display: none;
  animation: fadeIn 0.6s ease;
}

.slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.slide h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.slide p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
}

.slide-image-box {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  /* border-radius: var(--radius-lg); */
  aspect-ratio: 4/3;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide-image-box svg {
  width: 80px;
  opacity: 0.3;
}

/* Slider dots */
.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ STRIP LAYANAN UTAMA (12 APLIKASI) Ã¢â€â‚¬Ã¢â€â‚¬ */
.utility-strip {
  background: var(--white);
  padding: 50px 20px;
  position: relative;
  z-index: 10;
}

.utility-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.utility-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.utility-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 20px;
  padding: 35px 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
}

.utility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--maroon-light), var(--maroon));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.utility-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(14, 41, 205, 0.08), rgba(14, 41, 205, 0.02));
  color: var(--maroon);
  font-size: 32px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  box-shadow: inset 0 0 0 1px rgba(14, 41, 205, 0.1);
}

.utility-title {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-800);
  text-align: center;
  line-height: 1.4;
  transition: color 0.4s ease;
}

.utility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(138, 21, 56, 0.2);
}

.utility-card:hover::before {
  opacity: 1;
}

.utility-card:hover .utility-icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: scale(1.15);
}

.utility-card:hover .utility-title {
  color: var(--white);
}

@media (max-width: 1024px) {
  .utility-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .utility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ SERVICE ICONS ROW Ã¢â€â‚¬Ã¢â€â‚¬ */

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid-2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.service-card:hover {
  background: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-card .icon {
  font-size: 24px;
}

.service-card .label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-600);
  line-height: 1.2;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ MAIN CONTENT AREA Ã¢â€â‚¬Ã¢â€â‚¬ */
.main-section {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}

/* Left col */
.left-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
  min-width: 0;
  /* Cegah overflow pada grid */
  grid-column: 1;
  grid-row: 1;
}

/* Right col */
.right-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
}

/* Bottom widgets */
.bottom-widgets {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}


/* Kotak Konten Utama */
.content-paper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--gray-200);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0;
  overflow: hidden;
}

/* Metadata Konten */
.content-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray-200);
}

.content-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.content-meta .meta-item svg {
  color: var(--maroon);
}

.content-meta .meta-divider {
  color: var(--gray-400);
}

/* Info panels row */
.info-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--gray-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.panel-header {
  background: transparent;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  display: flex;
  align-items: center;
}

.panel-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--maroon);
  border-radius: 0 4px 4px 0;
}

.panel-body {
  background: var(--white);
  min-height: 200px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 13px;
}

.panel-body img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Section heading */
.section-heading {
  background: transparent;
  color: var(--maroon);
  padding: 8px 0 12px 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--gray-200);
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--maroon);
}

.section-heading i {
  color: var(--gold);
  margin-right: 8px;
  font-size: 18px;
}

/* News grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.news-thumb {
  background: var(--gray-200);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--gray-400);
  overflow: hidden;
}

.news-body {
  padding: 14px;
}

.news-title {
  font-family: 'Merriweather', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
  line-height: 1.4;
}

.news-detail-title {
  font-family: 'Merriweather', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 15px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .news-detail-title {
    font-size: 22px;
  }
}

.news-date {
  font-size: 11px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.news-excerpt {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--maroon);
  text-decoration: none;
}

.news-more:hover {
  color: var(--gold);
}

/* Announcement */
.announcement-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.announcement-list {
  padding: 8px 0;
}

.announcement-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
  cursor: pointer;
}

.announcement-item:last-child {
  border-bottom: none;
}

.announcement-item:hover {
  background: var(--white);
}

.ann-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.ann-title {
  font-family: 'Merriweather', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 2px;
}

.ann-date {
  font-size: 11px;
  color: var(--gray-400);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ RIGHT SIDEBAR Ã¢â€â‚¬Ã¢â€â‚¬ */
.right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.widget-header {
  background: var(--maroon);
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.widget-body {
  padding: 14px;
}

/* Language switcher */
.lang-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  transition: var(--transition);
}

.lang-btn:hover {
  border-color: var(--gold);
  background: var(--white);
}

.flag {
  font-size: 20px;
}

/* Search */
.search-row {
  display: flex;
  gap: 8px;
}

.search-input {
  flex: 1;
  padding: 9px 12px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 13px;
  font-family: 'Source Sans 3', sans-serif;
  transition: var(--transition);
  outline: none;
}

.search-input:focus {
  border-color: var(--maroon);
}

.search-btn {
  padding: 9px 14px;
  background: var(--maroon);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--gold);
}

/* Working hours */
.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--gray-100);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .day {
  color: var(--gray-600);
}

.hours-list .time {
  font-weight: 600;
  color: var(--maroon);
}

.hours-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--gray-400);
  font-style: italic;
}

/* IPP widget */
.ipp-box {
  background: linear-gradient(135deg, #e8f4fd, #c9e4f7);
  border-radius: var(--radius);
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 10px;
}

.ipp-box-2 {
  background: linear-gradient(135deg, #fef9e7, #fde8b0);
  border-radius: var(--radius);
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gray-600);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ FOOTER Ã¢â€â‚¬Ã¢â€â‚¬ */
.site-footer {
  background: var(--maroon-dark);
  color: var(--white);
  padding: 40px 20px 20px;
  margin-top: 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 10px;
}

.footer-brand .logo-text h1 {
  font-size: 16px;
  color: var(--white);
}

.footer-brand .logo-text h3 {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand .logo-text p {
  color: rgba(255, 255, 255, 0.4);
}

.footer-brand>p {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a,
.footer-col ul li span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  /* padding-left: 6px; */
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ TOP ACCENT BAR Ã¢â€â‚¬Ã¢â€â‚¬ */
.top-bar {
  background: var(--gold);
  height: 5px;
  background: linear-gradient(90deg, var(--maroon) 0%, var(--gold) 50%, var(--maroon) 100%);
  animation: shimmer 3s ease infinite;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ SCROLL REVEAL Ã¢â€â‚¬Ã¢â€â‚¬ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 1024px) {

  .services-grid,
  .services-grid-2 {
    grid-template-columns: repeat(4, 1fr);
  }

  .main-section {
    grid-template-columns: 1fr;
  }

  .left-col,
  .right-col,
  .bottom-widgets {
    grid-column: 1;
    grid-row: auto;
  }

  .right-col {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

  .right-col>* {
    flex: 1 1 calc(50% - 12px);
  }

  .right-col .sidebar-widget {
    flex: 1 1 calc(50% - 12px);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .header-badges {
    display: none;
  }

  .logo-text h1 {
    font-size: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-inner {
    display: none;
    flex-direction: column;
  }

  .nav-inner.open {
    display: flex;
  }

  .nav-link {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-item {
    flex: none;
    width: 100%;
  }

  .slider-wrapper {
    grid-template-columns: 1fr;
    padding: 36px 20px;
  }

  .slide-image-box {
    display: none;
  }

  .services-grid,
  .services-grid-2 {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-panels {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .right-col {
    flex-direction: column;
  }

  .right-col>* {
    flex: 1 1 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  .services-grid,
  .services-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .slider-wrapper {
    padding: 28px 16px;
  }
}

/* Sembunyikan banner dan elemen bawaan Google Translate */
.VIpgJd-Zvi9od-ORHb-OEVmcd {
  display: none !important;
}

.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-tooltip {
  display: none !important;
}

.goog-tooltip:hover {
  display: none !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ CUSTOM WIDGET ALIH BAHASA Ã¢â€â‚¬Ã¢â€â‚¬ */
.custom-lang-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 0px;
}

.custom-lang-widget:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.custom-lang-header {
  background: linear-gradient(135deg, var(--maroon), #061cb6cc);
  color: var(--gold);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--gold);
}

.custom-lang-header i {
  font-size: 16px;
}

.custom-lang-body {
  background: var(--white);
}

.lang-item {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.lang-item:last-child {
  border-bottom: none;
}

.lang-item:hover {
  background: #f8f9fa;
  color: var(--maroon);
  padding-left: 20px;
}

.lang-item .lang-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-item .flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.lang-item .flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selected-lang {
  justify-content: space-between;
  border-bottom: none;
}

.selected-lang .chevron {
  color: var(--gray-400);
  font-size: 12px;
  transition: transform 0.3s ease;
}

.selected-lang.open .chevron {
  transform: rotate(180deg);
}

.selected-lang:hover .chevron {
  color: var(--maroon);
}

.lang-dropdown-list {
  max-height: 180px;
  overflow-y: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

/* Kustomisasi Scrollbar untuk Dropdown */
.lang-dropdown-list::-webkit-scrollbar {
  width: 6px;
}

.lang-dropdown-list::-webkit-scrollbar-track {
  background: var(--gray-100);
}

.lang-dropdown-list::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 4px;
}

.lang-dropdown-list::-webkit-scrollbar-thumb:hover {
  background: var(--gray-600);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ WIDGET SOSIAL MEDIA Ã¢â€â‚¬Ã¢â€â‚¬ */
.sosmed-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  margin-top: 20px;
  /* Jarak dengan widget IPP di atasnya */
}

.sosmed-header {
  background: var(--maroon);
  color: var(--white);
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 3px solid var(--gold);
  /* Garis emas sesuai gambar */
}

.sosmed-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Jarak antar kotak sosial media */
}

.sosmed-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: #f4f7fb;
  /* Latar belakang rona biru muda seperti gambar */
  border: 1px solid #dbe3ed;
  border-radius: 6px;
  text-decoration: none;
  color: #333333;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}

.sosmed-item:hover {
  background: #e9eef5;
  border-color: #c0ccdb;
  transform: translateY(-2px);
  /* Efek sedikit melayang saat diklik */
}

.sosmed-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ SOCIAL MEDIA FOOTER (FTCO) Ã¢â€â‚¬Ã¢â€â‚¬ */
.ftco-footer-social {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ftco-footer-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  /* Minimalist semi-transparent */
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* Elegant thin border */
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  /* Slightly smaller for minimalism */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Bouncy smooth transition */
  text-decoration: none;
  backdrop-filter: blur(4px);
  /* Glassmorphism effect */
}

.ftco-footer-social li a:hover {
  background: var(--gold, #f59e0b);
  border-color: var(--gold, #f59e0b);
  color: var(--maroon, #7f1d1d);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 15px rgba(245, 158, 11, 0.3);
  /* Soft glow */
}

/* Custom CSS Tooltip Elegant */
.ftco-footer-social li a {
  position: relative;
}

.ftco-footer-social li a::before,
.ftco-footer-social li a::after {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
  z-index: 100;
}



@media (max-width: 480px) {
  .ftco-footer-social {
    gap: 10px;
  }

  .ftco-footer-social li a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

.mobile-social-container {
  display: none;
  padding: 0 20px 20px 20px;
  justify-content: center;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ FOOTER CUSTOM LIST (ALAMAT & SIPP) Ã¢â€â‚¬Ã¢â€â‚¬ */
.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background-color: #f59e0b;
  /* Garis bawah kuning/orange seperti di gambar */
}

.footer-custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-custom-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  /* Garis pemisah halus */
}

.footer-custom-list li:last-child {
  border-bottom: none;
}

.footer-custom-list li a {
  display: block;
  padding: 12px 0;
  color: #e5e7eb;
  /* Warna teks abu terang elegan */
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
}

.footer-custom-list li a:hover {
  color: #f59e0b;
  /* Warna hover orange */
  padding-left: 8px;
  /* Efek bergeser sedikit saat hover */
}

.desktop-social {
  display: flex;
}

@media (max-width: 768px) {
  .desktop-social {
    display: none !important;
  }

  .mobile-social-container {
    display: flex;
  }

  .mobile-social-container .ftco-footer-social {
    justify-content: center;
    margin-top: 0;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ WIDGET SLIDER PENGHARGAAN Ã¢â€â‚¬Ã¢â€â‚¬ */
.awards-slider-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.awards-slider-header {
  background: var(--maroon);
  color: var(--white);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.awards-slider-track-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 15px 0;
  background: #f8fafc;
}

.awards-slider-track-wrap::before,
.awards-slider-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  z-index: 2;
}

.awards-slider-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.awards-slider-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.awards-slider-track {
  display: flex;
  gap: 15px;
  width: max-content;
  animation: scrollAwards 20s linear infinite;
}

.awards-slider-track:hover {
  animation-play-state: paused;
}

.award-slide {
  width: 220px;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  cursor: pointer;
}

.award-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.award-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scrollAwards {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-220px * 6 - 15px * 6));
  }
}

@media (max-width: 768px) {
  .award-slide {
    width: 180px;
    height: 115px;
  }

  @keyframes scrollAwards {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-180px * 6 - 15px * 6));
    }
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ WIDGET STATISTIK SITUS (MINIMALIS) Ã¢â€â‚¬Ã¢â€â‚¬ */
.stat-widget-minimal {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  margin-top: 0px;
}

.stat-minimal-header {
  background: var(--maroon);
  color: var(--white);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 3px solid var(--gold);
}

.stat-minimal-body {
  padding: 0;
}

.stat-minimal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stat-minimal-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  color: #4b5563;
  /* Warna abu-abu gelap kebiruan */
  font-weight: 500;
  border-bottom: 1px solid #f3f4f6;
  /* Garis pemisah yang sangat halus */
}

.stat-minimal-list li:last-child {
  border-bottom: none;
}

/* Badges ala ribbon/pill di pojok kanan */
.stat-val {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  /* Pill shape */
  color: #fff;
  min-width: 35px;
  text-align: center;
}

/* Skema warna badge sesuai gambar */
.badge-blue {
  background-color: #3b82f6;
}

.badge-gray {
  background-color: #6b7280;
}

.badge-blue-dark {
  background-color: #2563eb;
}

.badge-teal {
  background-color: #14b8a6;
}

.badge-green {
  background-color: #10b981;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ WIDGET TAUTAN WEBSITE Ã¢â€â‚¬Ã¢â€â‚¬ */
.tautan-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  margin-top: 20px;
  /* Jarak dari widget IPP di atasnya */
}

.tautan-header {
  background: var(--maroon);
  color: var(--white);
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 3px solid var(--gold);
  /* Garis emas bawah judul */
}

.tautan-body {
  padding: 12px 16px;
}

.tautan-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tautan-list li {
  border-bottom: 1px solid var(--gray-100);
}

.tautan-list li:last-child {
  border-bottom: none;
}

.tautan-list a {
  display: block;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
  color: #1a6b9c;
  /* Warna biru profesional menyerupai rujukan */
  text-decoration: none;
  transition: var(--transition);
}

/* Efek saat kursor diarahkan ke tautan */
.tautan-list a:hover {
  color: var(--maroon);
  padding-left: 6px;
  /* Teks sedikit bergeser ke kanan */
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ WIDGET ROLE MODEL & AGEN PERUBAHAN Ã¢â€â‚¬Ã¢â€â‚¬ */
.role-model-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  margin-top: 20px;
}

.role-model-header {
  background: var(--maroon);
  color: var(--white);
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 3px solid var(--gold);
}

.role-model-body {
  padding: 12px;
}

/* Kotak Slider Portrait */
.role-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  /* Mengatur bentuk memanjang ke bawah (portrait) */
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gray-100);
}

.role-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  /* Efek transisi memudar (fade) */
}

.role-slide.active {
  opacity: 1;
  z-index: 1;
}

.role-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Memastikan foto penuh tanpa mengubah proporsi wajah */
}

.role-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(14, 41, 205, 0.85);
  /* Warna maroon transparan */
  color: var(--white);
  text-align: left;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(2px);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ WIDGET JADWAL SIDANG (PREMIUM REDESIGN) Ã¢â€â‚¬Ã¢â€â‚¬ */
.jadwal-widget {
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
}

/* Header Utama dengan Gradient Maroon Mewah */
.jadwal-main-header {
  text-align: center;
  padding: 30px 20px 20px;
  background: linear-gradient(135deg, #091a82 0%, #0E29CD 50%, #176CEA 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

/* Efek cahaya/kilap di header */
.jadwal-main-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  transform: rotate(30deg);
  pointer-events: none;
}

.jadwal-main-header h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.jadwal-main-header h3 i {
  color: #ffc107;
  /* Warna emas untuk palu hakim */
  font-size: 24px;
}

.jadwal-date {
  color: #091a82;
  background: linear-gradient(to right, #fdfbfb, #ebedee);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Body Widget */
.jadwal-body {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: #f4f6f8;
  /* Abu-abu sangat muda agar kartu putih menonjol */
}

/* Kartu Kolom */
.jadwal-col {
  flex: 1;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

/* Header Kolom */
.jadwal-col-header {
  background: #ffffff;
  color: #2c3e50;
  text-align: center;
  padding: 16px;
  font-weight: 800;
  font-size: 15px;
  border-bottom: 2px solid #f0f2f5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.jadwal-col-header i {
  color: #176CEA;
  margin-right: 8px;
  font-size: 18px;
}

/* Daftar Jadwal */
.jadwal-list {
  background: #ffffff;
  min-height: 150px;
  max-height: 380px;
  overflow-y: auto;
  padding: 12px;
  flex: 1;
}

/* Custom Scrollbar */
.jadwal-list::-webkit-scrollbar {
  width: 6px;
}

.jadwal-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.jadwal-list::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.jadwal-list::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Item Jadwal - Desain Card Modern */
.jadwal-item {
  background: #ffffff;
  border: 1px solid #f0f2f5;
  padding: 16px;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 12px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* Pita warna di kiri item */
.jadwal-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #176CEA;
  border-radius: 4px 0 0 4px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.jadwal-item:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 8px 20px rgba(23, 108, 234, 0.1);
  border-color: rgba(23, 108, 234, 0.2);
}

.jadwal-item:hover::before {
  width: 6px;
  opacity: 1;
}

.jadwal-item:last-child {
  margin-bottom: 0;
}

.jadwal-item strong {
  color: #091a82;
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 800;
}

.jadwal-item div {
  margin-bottom: 4px;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.jadwal-item div::before {
  content: "\f054";
  /* Ikon chevron kanan */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #176CEA;
  font-size: 10px;
  margin-top: 4px;
}

/* Status Kosong */
.jadwal-empty {
  text-align: left;
  color: #95a5a6;
  padding: 40px 20px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.jadwal-empty i {
  font-size: 32px;
  color: #bdc3c7;
  margin-bottom: 8px;
}

.jadwal-col-footer {
  background: #ffffff;
  padding: 15px;
  text-align: center;
  border-top: 1px dashed #e2e8f0;
  margin-top: auto;
}

/* Tombol Outline Mewah */
.jadwal-btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #0E29CD !important;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  border: 2px solid #0E29CD;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.jadwal-btn-sm::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: transform 0.3s ease;
}

.jadwal-btn-sm:hover {
  background: #0E29CD;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(14, 41, 205, 0.2);
}

.jadwal-btn-sm:hover::after {
  transform: translateX(4px);
}

/* Responsif untuk HP */
@media (max-width: 768px) {
  .jadwal-body {
    flex-direction: column;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ WIDGET VIDEO UTAMA Ã¢â€â‚¬Ã¢â€â‚¬ */
.video-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.video-header {
  background: var(--maroon);
  color: var(--white);
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.video-body {
  padding: 20px;
}

/* Elegant YouTube Gallery */
.yt-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.yt-main {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: #000;
}

.yt-main iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.yt-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

/* Custom minimal scrollbar */
.yt-thumbs::-webkit-scrollbar {
  height: 6px;
}

.yt-thumbs::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 4px;
}

.yt-thumbs::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 4px;
}

.yt-thumbs::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

.yt-thumb {
  position: relative;
  display: block;
  flex: 0 0 calc(20% - 9.6px);
  scroll-snap-align: start;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: #232366;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.yt-thumb:hover {
  border-color: var(--gold);
  transform: translateY(0px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.yt-thumb:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* Efek tombol play di tengah video saat kursor diarahkan */
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  padding-left: 4px;
  /* Menyesuaikan agar segitiga play pas di tengah */
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.yt-thumb:hover .play-overlay {
  opacity: 1;
}

/* Area tombol bawah */
.video-footer {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-bottom: 8px;
}

.video-btn {
  background: var(--maroon);
  color: var(--white);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-btn.subscribe-btn {
  background: #176CEA;
  /* Warna merah khas YouTube */
}

.video-btn:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  /* Tombol sedikit terangkat */
}

/* Penyesuaian layar HP (Responsive) untuk video thumb */
@media (max-width: 1024px) {
  .yt-thumb {
    flex: 0 0 calc(33.333% - 8px);
  }
}

@media (max-width: 768px) {
  .yt-thumbs {
    gap: 10px;
  }

  .yt-thumb {
    flex: 0 0 calc(50% - 5px);
  }
}

@media (max-width: 480px) {
  .yt-thumbs {
    gap: 8px;
  }

  .yt-thumb {
    flex: 0 0 calc(85% - 4px);
    /* Show one full item and a hint of the next */
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ PERBAIKAN DROPDOWN (MEMANJANG, MULTI-LEVEL & ANTI-OVERFLOW) Ã¢â€â‚¬Ã¢â€â‚¬ */
.dropdown {
  min-width: 260px;
  /* Memberikan lebar minimum yang proporsional agar enak dilihat */
  white-space: nowrap;
  /* Mencegah teks terpotong ke baris baru */
}

.dropdown a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Sub-Menu Tingkat Lanjut (Level 3) */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu-right {
  display: none;
  position: absolute;
  top: -3px;
  left: 100%;
  /* Default: Muncul tepat di sebelah kanan */
  background: var(--white);
  min-width: 260px;
  /* Lebar minimum untuk sub-menu */
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 1000;
}

.dropdown-submenu:hover>.dropdown-menu-right {
  display: block;
}

/* Ikon Panah Kanan untuk menu yang memiliki anak */
.has-child::after {
  content: '\203A';
  /* Panah kanan (Ã¢â‚¬Âº) */
  font-size: 18px;
  margin-left: 16px;
  color: var(--gray-400);
}

.dropdown-submenu:hover>.has-child::after {
  color: var(--maroon);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ SOLUSI MENU UJUNG LAYAR (2 Menu Terakhir: Hubungi Kami & Reformasi) Ã¢â€â‚¬Ã¢â€â‚¬ */

/* 1. Dropdown utama dibuat rata kanan */
.nav-item:nth-last-child(1) .dropdown,
.nav-item:nth-last-child(2) .dropdown {
  left: auto;
  right: 0;
}

/* 2. Sub-menu level 3 meluncur ke KIRI (bukan ke kanan) agar tidak keluar layar */
.nav-item:nth-last-child(1) .dropdown-submenu .dropdown-menu-right,
.nav-item:nth-last-child(2) .dropdown-submenu .dropdown-menu-right {
  left: auto;
  right: 100%;
}

/* 3. Memindahkan posisi panah ke sebelah kiri teks dan menunjuk ke kiri (Ã¢â‚¬Â¹) */
.nav-item:nth-last-child(1) .has-child::after,
.nav-item:nth-last-child(2) .has-child::after {
  /* content: '\2039'; */
  /* Panah kiri */
  /* margin-left: 0; */
  /* margin-right: 16px; */
  /* order: -1; */
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ WIDGET JAM KERJA REAL-TIME Ã¢â€â‚¬Ã¢â€â‚¬ */
.jk-widget {
  background: #f8fbff;
  /* Biru sangat muda */
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.jk-header {
  background: var(--maroon);
  color: var(--white);
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 3px solid var(--gold);
}

.jk-body {
  padding: 20px 16px;
}

/* Status Indikator */
.jk-status-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.jk-status-row:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.jk-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  position: relative;
}

.jk-dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: pulse-dot 2s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: -1;
}

@keyframes pulse-dot {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.dot-red {
  background: #ff5252 !important;
  box-shadow: 0 0 8px rgba(255, 82, 82, 0.6);
}

.dot-green {
  background: #4caf50 !important;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

.dot-orange {
  background: #ffb142 !important;
  box-shadow: 0 0 8px rgba(255, 177, 66, 0.6);
}

.jk-status-text {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.jk-badge {
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Bar Hari */
.jk-days-bar {
  display: flex;
  background: #091a82;
  /* Maroon */
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

.jk-day {
  flex: 1;
  text-align: left;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.jk-day:last-child {
  border-right: none;
}

.jk-day.active {
  background: #fbc02d;
  /* Emas / Kuning terang */
  color: #0E29CD;
  /* Teks Maroon */
}

/* Tabel Jam */
.jk-table-title {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  margin-bottom: 6px;
}

.jk-table-row {
  display: flex;
  justify-content: space-between;
  text-align: left;
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}

.jk-table-row div {
  flex: 1;
}

.jk-table-row strong {
  color: #333;
}

/* Banner Libur Nasional */
.jk-holiday-banner {
  background: #fefaf0;
  border: 1px solid #f7dfa4;
  border-radius: 20px;
  text-align: left;
  padding: 10px;
  margin-top: 14px;
}

.jk-holiday-banner strong {
  color: #8c6d1f;
  /* Coklat Emas */
  font-size: 13px;
}

.jk-note {
  text-align: left;
  font-size: 11px;
  color: #777;
  margin-top: 16px;
  line-height: 1.5;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ PERBAIKAN TAMPILAN MOBILE (HEADER & WIDGET FULL WIDTH) Ã¢â€â‚¬Ã¢â€â‚¬ */

@media (max-width: 1024px) {

  /* Di layar Tablet: Semua widget di kolom kanan disejajarkan rapi */
  .right-col>div {
    flex: 1 1 240px;
    margin-top: 0 !important;
    /* Menghapus jarak manual agar seragam */
  }
}

@media (max-width: 768px) {

  /* 1. Membuat Header Lebih Proporsional di Layar HP */
  .logo-block {
    gap: 10px;
  }

  .logo-svg {
    width: 44px !important;
    height: 44px !important;
  }

  .logo-text h3 {
    font-size: 8px !important;
    letter-spacing: 0.5px !important;
  }

  .logo-text h1 {
    font-size: 15px !important;
    line-height: 1.2 !important;
    margin-top: 2px;
  }

  .logo-text p {
    font-size: 9px !important;
    line-height: 1.4;
  }

  /* 2. Memaksa SEMUA Widget di Sidebar menjadi Lebar Penuh (Full Width) */
  .right-col {
    flex-direction: column !important;
    display: flex !important;
    gap: 20px !important;
    /* Memberikan jarak seragam antar kotak */
  }

  .right-col>div {
    width: 100% !important;
    /* Menyamakan lebar seperti kotak pencarian */
    flex: none !important;
    margin-bottom: 0 !important;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ PERBAIKAN RUANG KOSONG HEADER & TOMBOL MENU MOBILE Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 768px) {

  /* 1. Mencegah elemen terdorong ke bawah yang menyebabkan ruang kosong */
  .header-inner {
    flex-wrap: nowrap !important;
    align-items: center !important;
    padding: 10px 16px !important;
  }

  /* 2. Memberi batasan pada blok logo agar berbagi ruang dengan tombol menu */
  .logo-block {
    flex: 1;
  }

  /* 3. Mewarnai tombol menu garis tiga menjadi maroon agar terlihat jelas */
  .nav-toggle span {
    background: var(--maroon) !important;
  }

  /* 4. Menyesuaikan area klik tombol menu agar lebih proporsional */
  .nav-toggle {
    padding: 10px !important;
    margin-left: 10px;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ WIDGET PEMBACA LAYAR (SCREEN READER) Ã¢â€â‚¬Ã¢â€â‚¬ */
.sr-widget-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 54px;
  height: 54px;
  background-color: var(--white);
  border: 4px solid var(--maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Animasi denyut halus agar menarik perhatian difabel */
.sr-widget-btn {
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(14, 41, 205, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(14, 41, 205, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(14, 41, 205, 0);
  }
}

/* Saat Pembaca Layar Aktif */
.sr-widget-btn.aktif {
  background-color: var(--maroon);
  color: var(--white);
  border-color: var(--gold);
  animation: none;
  /* Matikan denyut setelah aktif */
  box-shadow: 0 0 15px var(--gold);
}

@media (max-width: 768px) {
  .sr-widget-btn {
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    border-width: 3px;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ WIDGET AKSESIBILITAS Ã¢â€â‚¬Ã¢â€â‚¬ */
.acc-widget {
  position: fixed;
  top: 15%;
  /* Berada di kanan atas */
  right: 0;
  z-index: 10000;
}

/* Tombol Biru Melayang */
.acc-main-btn {
  background: #0062cc;
  /* Warna biru sesuai referensi */
  color: white;
  border: none;
  padding: 12px 14px;
  border-radius: 8px 0 0 8px;
  /* Lengkung hanya di sisi kiri */
  cursor: pointer;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acc-main-btn:hover {
  background: #004bb5;
}

/* Panel Menu */
.acc-menu-panel {
  display: none;
  position: absolute;
  top: 0;
  right: 60px;
  /* Muncul di sebelah kiri tombol biru */
  background: #ffffff;
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
  overflow: hidden;
}

.acc-menu-panel.show {
  display: block;
  animation: fadeInAcc 0.2s ease-in-out;
}

@keyframes fadeInAcc {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.acc-header {
  font-weight: 700;
  font-size: 15px;
  color: #333;
  padding: 12px 16px;
  border-bottom: 1px solid #eaeaea;
}

.acc-body {
  padding: 12px;
  max-height: 70vh;
  overflow-y: auto;
}

/* Kustomisasi Scrollbar Menu Aksesibilitas */
.acc-body::-webkit-scrollbar {
  width: 5px;
}

.acc-body::-webkit-scrollbar-track {
  background: transparent;
}

.acc-body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

/* Item Menu / Tombol */
.acc-item {
  display: flex;
  align-items: center;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e0b4b4;
  /* Garis tepi kemerahan */
  padding: 10px 14px;
  margin-bottom: 8px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #212529;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Source Sans 3', sans-serif;
}

.acc-item:last-child {
  margin-bottom: 0;
}

.acc-item:hover {
  background: #fdfdfd;
  border-color: #0E29CD;
}

/* Saat fitur diaktifkan */
.acc-item.active {
  background: #fcf0f0;
  border-color: #0E29CD;
  color: #0E29CD;
}

.acc-icon {
  width: 24px;
  color: #0062cc;
  /* Warna ikon biru */
  font-weight: bold;
  font-size: 16px;
  margin-right: 8px;
  text-align: left;
  display: inline-block;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ EFEK FUNGSIONAL AKSESIBILITAS PADA SISTEM (OVERRIDE CSS) Ã¢â€â‚¬Ã¢â€â‚¬ */

/* 1. Mode Disleksia (Font ramah Disleksia / Comic Sans sebagai fallback umum) */
body.acc-disleksia,
body.acc-disleksia * {
  font-family: "Comic Sans MS", "Comic Sans", cursive !important;
  letter-spacing: 1px !important;
}

/* 2. Font Ramah Baca (San-Serif murni) */
body.acc-readable,
body.acc-readable * {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* 3. Skala Abu-abu (Grayscale) */
html.acc-grayscale {
  filter: grayscale(100%) !important;
}

/* 4. Mode Invers (Kebalikan warna) */
html.acc-invert {
  filter: invert(100%) hue-rotate(180deg) !important;
}

html.acc-invert img,
html.acc-invert video {
  /* Membalikkan ulang gambar agar warna foto tetap asli */
  filter: invert(100%) hue-rotate(180deg) !important;
}

/* 5. Kontras Tinggi (Hitam & Kuning) */
body.acc-high-contrast {
  background-color: #000000 !important;
  color: #ffffff !important;
}

body.acc-high-contrast * {
  background-color: transparent !important;
  color: #ffffff !important;
  border-color: #ffff00 !important;
}

body.acc-high-contrast a,
body.acc-high-contrast button {
  color: #ffff00 !important;
}

/* 6. Latar Putih */
body.acc-white-bg {
  background-color: #ffffff !important;
  color: #000000 !important;
  background-image: none !important;
}

body.acc-white-bg * {
  background-color: #ffffff !important;
  color: #000000 !important;
}

/* 7. Garis Bawah Link */
body.acc-underline a {
  text-decoration: underline !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ STYLE METADATA KONTEN (OLEH: ADMIN) Ã¢â€â‚¬Ã¢â€â‚¬ */
.content-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--gray-600);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-item svg {
  color: var(--maroon-light);
}

.meta-divider {
  color: var(--gray-200);
  font-weight: 300;
}

/* Responsif untuk HP */
@media (max-width: 768px) {
  .content-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .meta-divider {
    display: none;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ PENANGKAL KONTEN WYSIWYG (AGAR RESPONSIP & TIDAK RUSAK DI HP) Ã¢â€â‚¬Ã¢â€â‚¬ */

/* 1. Memaksa Gambar WYSIWYG agar tidak keluar batas layar */
.sejarah-text img,
.page-content img,
.content-paper img,
.inner-page img,
.static-page-content img,
.isi_content img,
.profil img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 8px;
  /* Memberikan efek lengkung agar selaras dengan desain situs */
  margin: 15px 0;
}

/* 2. Memaksa Tabel WYSIWYG agar bisa di-scroll ke samping (tidak terpotong) */
.sejarah-text table,
.page-content table,
.content-paper table,
.inner-page table,
.static-page-content table,
.isi_content table,
.profil table {
  width: 100% !important;
  max-width: 100% !important;
  display: block;
  overflow-x: auto;
  /* Memunculkan scrollbar horizontal jika tabel terlalu lebar */
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
}

/* 3. Merapikan garis pada Tabel WYSIWYG */
.sejarah-text td,
.sejarah-text th,
.content-paper td,
.content-paper th,
.inner-page td,
.inner-page th,
.static-page-content td,
.static-page-content th,
.isi_content td,
.isi_content th,
.profil td,
.profil th {
  border: 1px solid var(--gray-200);
  padding: 8px 12px;
}

/* 4. Memaksa Iframe (Video YouTube/Maps dari WYSIWYG) agar proporsional */
.sejarah-text iframe,
.page-content iframe,
.content-paper iframe {
  max-width: 100% !important;
}

.struktur-img:hover {
  transform: scale(1.02);
  cursor: zoom-in;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ TOMBOL KEMBALI KE ATAS (SCROLL TO TOP) Ã¢â€â‚¬Ã¢â€â‚¬ */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--maroon);
  /* Warna dasar Maroon Kebanggaan */
  color: var(--white);
  border: 2px solid var(--gold);
  /* Bingkai Emas Mewah */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  /* Memastikan berada di atas konten lain */

  /* Efek Sembunyi Awal */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Muncul saat pengunjung menggeser layar ke bawah (dipicu oleh script.js) */
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: var(--gold);
  /* Berubah menjadi Emas saat disentuh */
  color: var(--maroon);
  border-color: var(--maroon);
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(14, 41, 205, 0.4);
}

/* Penyesuaian untuk Layar HP agar tidak menghalangi konten */
@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ SEARCH RESULT STYLE Ã¢â€â‚¬Ã¢â€â‚¬ */

.search-result-list {
  margin-top: 24px;
}

.search-group {
  margin-bottom: 40px;
}

/* Judul kategori hasil */
.search-group-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--maroon);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-family: 'Merriweather', serif;
}

/* Card hasil pencarian */
.search-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 5px solid var(--maroon);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

/* Hover card */
.search-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--gold);
}

/* Judul hasil */
.search-title {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--maroon);
  text-decoration: none;
  margin-bottom: 10px;
  font-family: 'Merriweather', serif;
  line-height: 1.5;
  transition: var(--transition);
}

.search-title:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* Cuplikan isi */
.search-excerpt {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
}

/* Highlight keyword */
.search-excerpt mark {
  background: rgba(212, 135, 42, 0.2);
  color: var(--maroon);
  padding: 1px 4px;
  border-radius: 4px;
  font-weight: 700;
}

/* Metadata kecil */
.search-meta {
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Jika tidak ada hasil */
.search-empty {
  background: var(--white);
  border: 1px dashed var(--gray-400);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: left;
  color: var(--gray-600);
  font-size: 14px;
}

/* Responsif HP */
@media (max-width: 768px) {

  .search-group-title {
    font-size: 18px;
  }

  .search-item {
    padding: 16px;
  }

  .search-title {
    font-size: 16px;
  }

  .search-excerpt {
    font-size: 13px;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ DETAIL PENCARIAN Ã¢â€â‚¬Ã¢â€â‚¬ */

.page-title {
  font-family: 'Merriweather', serif;
  font-size: 34px;
  line-height: 1.4;
  color: var(--maroon);
  margin-bottom: 24px;
  font-weight: 900;
}

.page-content {
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray-700);
}

.page-content p {
  margin-bottom: 18px;
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

@media(max-width:768px) {

  .page-title {
    font-size: 26px;
  }

  .page-content {
    font-size: 14px;
  }

}

/* =====================================================
   DETAIL PENCARIAN
===================================================== */

.detail-search-wrapper {
  width: 100%;
}

.detail-search-header {
  margin-bottom: 30px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 20px;
}

.detail-search-badge {
  display: inline-block;
  background: #0f766e;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  margin-bottom: 15px;
  letter-spacing: .5px;
}

.detail-search-header h1 {
  font-size: 32px;
  line-height: 1.4;
  color: #111827;
  margin: 0;
}

.detail-search-image {
  margin-bottom: 30px;
}

.detail-search-image img {
  width: 220px;
  border-radius: 18px;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.detail-search-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 20px;
  transition: .3s;
}

.detail-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
  transform: translateY(-2px);
}

.detail-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0f766e;
  margin-bottom: 10px;
  letter-spacing: .5px;
}

.detail-value {
  color: #374151;
  line-height: 1.8;
  font-size: 15px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f766e;
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  transition: .3s;
}

.download-btn:hover {
  background: #115e59;
  transform: translateY(-2px);
}

.detail-link {
  color: #0f766e;
  font-weight: 600;
  word-break: break-all;
}

.search-empty {
  padding: 40px;
  text-align: left;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #eee;
}

/* WYSIWYG Content Editor Styles */
.wysiwyg-content,
.isi-artikel,
.announcement-detail-body {
  color: var(--gray-800);
  text-align: justify;
  line-height: 1.8;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
}

.wysiwyg-content *,
.isi-artikel *,
.announcement-detail-body * {
  font-family: Arial, Helvetica, sans-serif !important;
  line-height: inherit !important;
}

.wysiwyg-content ul,
.isi-artikel ul,
.announcement-detail-body ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.wysiwyg-content ol,
.isi-artikel ol,
.announcement-detail-body ol {
  list-style-type: decimal;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.wysiwyg-content ul ul,
.isi-artikel ul ul,
.announcement-detail-body ul ul,
.wysiwyg-content ol ul,
.isi-artikel ol ul,
.announcement-detail-body ol ul {
  list-style-type: circle;
  margin-bottom: 0;
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

.wysiwyg-content ul ul ul,
.isi-artikel ul ul ul,
.announcement-detail-body ul ul ul {
  list-style-type: square;
  padding-left: 1.5rem;
}

.wysiwyg-content ol ol,
.isi-artikel ol ol,
.announcement-detail-body ol ol,
.wysiwyg-content ul ol,
.isi-artikel ul ol,
.announcement-detail-body ul ol {
  list-style-type: lower-alpha;
  margin-bottom: 0;
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

.wysiwyg-content ol ol ol,
.isi-artikel ol ol ol,
.announcement-detail-body ol ol ol {
  list-style-type: lower-roman;
  padding-left: 1.5rem;
}

.wysiwyg-content li,
.isi-artikel li,
.announcement-detail-body li {
  margin-bottom: 0.5rem;
  display: list-item;
}

.wysiwyg-content p,
.isi-artikel p,
.announcement-detail-body p {
  margin-bottom: 1rem;
}

.wysiwyg-content strong,
.wysiwyg-content b,
.isi-artikel strong,
.isi-artikel b,
.announcement-detail-body strong,
.announcement-detail-body b {
  font-weight: bold;
}

.wysiwyg-content em,
.wysiwyg-content i,
.isi-artikel em,
.isi-artikel i,
.announcement-detail-body em,
.announcement-detail-body i {
  font-style: italic;
}

.wysiwyg-content a,
.isi-artikel a,
.announcement-detail-body a {
  color: var(--maroon);
  text-decoration: underline;
}

/* Hide content meta on home page explicitly */
body.page-home .content-meta {
  display: none !important;
}

body.page- .content-meta {
  display: none !important;
}

/* State normal */
.logo-text .logo-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin: 0;
}

.logo-text .logo-title {
  font-family: 'Merriweather', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--maroon);
  line-height: 1.1;
  transition: all 0.3s ease;
  margin: 0;
}

/* State header di-scroll (sticky mengecil) */




/* Breakpoint tablet/HP */
@media (max-width: 1024px) {
  .logo-text .logo-title {
    font-size: 16px;
  }
}

/* Breakpoint HP kedua */
@media (max-width: 1024px) {
  .logo-text .logo-eyebrow {
    font-size: 8px !important;
    letter-spacing: 0.5px !important;
  }

  .logo-text .logo-title {
    font-size: 15px !important;
    line-height: 1.2 !important;
    margin-top: 2px;
  }
}

@media (max-width: 1024px) {
  .nav-inner {
    max-height: 80vh;
    overflow-y: auto;
    background: var(--maroon);
    box-shadow: var(--shadow-lg);
  }

  .dropdown,
  .dropdown-submenu .dropdown-menu-right {
    position: static !important;
    display: none;
    box-shadow: none;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    min-width: 100%;
    margin: 0;
    padding-left: 10px;
  }

  .dropdown.mobile-open,
  .dropdown-menu-right.mobile-open {
    display: block !important;
  }

  .dropdown a,
  .dropdown-menu-right a {
    white-space: normal;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white) !important;
  }

  .dropdown a:hover,
  .dropdown-menu-right a:hover {
    background: rgba(0, 0, 0, 0.15) !important;
    color: var(--white) !important;
  }

  .nav-item:hover .dropdown,
  .nav-item.dropdown-active .dropdown,
  .dropdown-submenu:hover>.dropdown-menu-right {
    display: none;
  }

  .dropdown.mobile-open,
  .dropdown-submenu>.dropdown-menu-right.mobile-open {
    display: block !important;
  }

  .dropdown-submenu>a.has-child {
    justify-content: flex-start;
    gap: 8px;
  }

  .dropdown-submenu>a.has-child::after {
    margin-left: auto;
    margin-right: 0;
    order: 1;
    content: '\203A' !important;
  }

  .dropdown-submenu.mobile-open>a.has-child::after {
    transform: rotate(90deg);
  }
}

/* Sticky Header Shrink Logic */
.sticky-header-wrapper.scrolled .header-inner {
  padding: 5px 20px;
}

.sticky-header-wrapper.scrolled .logo-block img {
  width: 48px;
  height: 48px;
}

.sticky-header-wrapper.scrolled .logo-text h1 {
  font-size: 16px;
}

.sticky-header-wrapper.scrolled .logo-text h3 {
  font-size: 8px;
}

.sticky-header-wrapper.scrolled .logo-text p {
  display: none;
}

@media (max-width: 768px) {
  .sticky-header-wrapper.scrolled .logo-text h1 {
    font-size: 14px;
  }
}


/* Extracted Block */
.site-footer .footer-inner {
  grid-template-columns: 2fr repeat(2, 1fr) !important;
}

@media (max-width: 1024px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr !important;
  }
}

/* --- Migrated Inline CSS --- */
.breadcrumb-wrapper {
  background: #f8f9fa;
  border-bottom: 1px solid #eaeaea;
  padding: 12px 0;
  margin-bottom: 10px;
}

.breadcrumb-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* for responsiveness */
  gap: 8px;
  /* space between items */
}

.breadcrumb-custom a.breadcrumb-link {
  color: #0e29cd;
  /* brand color */
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.breadcrumb-custom a.breadcrumb-link:hover {
  color: var(--maroon, #800000);
}

.breadcrumb-custom .breadcrumb-separator {
  color: #aaa;
  font-size: 12px;
}

.breadcrumb-custom .breadcrumb-current {
  color: #333;
  font-weight: 600;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Tambahan CSS (tidak mengubah yang sudah ada) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */

/*
 * FIX: Pindahkan animation ke .slide.active agar re-trigger setiap ganti slide.
 * CSS asli menaruh animation di .slide (display:none) sehingga tidak pernah
 * jalan ulang. Override di sini sudah cukup tanpa edit style.css asli.
 */
.slide {
  animation: none !important;
  /* matikan dari .slide */
}

.slide.active {
  animation: slideSmooth 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both !important;
}

@keyframes slideSmooth {
  from {
    opacity: 0;
    transform: translateX(40px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

/* Gambar di frame kanan */
.slide-image-box {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  transition: opacity 0.35s ease;
}

.slider-photo.fading {
  opacity: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.custom-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999999;
  align-items: center;
  justify-content: center;
}

.custom-modal-overlay.active {
  display: flex;
}

.custom-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.custom-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}

.custom-modal-close:hover {
  color: #176CEA;
}

.custom-modal-header {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  padding-right: 30px;
  /* Space for close button */
}

.custom-modal-body {
  flex-grow: 1;
  overflow-y: auto;
  text-align: left;
}

/* --- MOTTO SECTION CSS --- */
.motto {
  background: linear-gradient(rgb(25 25 112 / 95%), var(--maroon-dark)), url(../PTSP1.jpg) fixed center center;
  background-size: cover;
  padding: 25px 0px 0px 0px;
  margin-top: 30px;
}

.motto+.site-footer {
  margin-top: 0 !important;
}

.motto h3 {
  color: #e0e0e0;
  font-family: inherit;
  /* Matches body font */
  font-size: clamp(0.65rem, 2vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  white-space: normal;
}

.sign {
  display: block;
  text-align: center;
  font-family: 'Teko', sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 4vw, 3rem);
  color: #e6e6e6;
  letter-spacing: 1px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  line-height: 1.4;
  animation: shine 2s forwards;
  white-space: normal;
}

@keyframes blink {

  0%,
  22%,
  36%,
  75% {
    color: #ffe680;
    text-shadow: 0 0 10px #ffb700, 0 0 20px #ffb700, 0 0 30px #ff8000;
  }

  28%,
  33% {
    color: #8a6300;
    text-shadow: none;
  }

  82%,
  97% {
    color: #8a6300;
    text-shadow: none;
  }
}

.flicker {
  animation: shine 2s forwards, blink 3s 2s infinite;
}

.fast-flicker {
  animation: shine 2s forwards, blink 10s 1s infinite;
  font-size: 1.3em;
  color: #ffb700;
}

@keyframes shine {
  0% {}

  100% {}
}

/* News Meta Styling */
.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #0e29cd;
}

.news-meta-item {
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-meta-item i {
  color: #0e29cd;
}

.news-meta-item a {
  color: #0e29cd;
  text-decoration: none;
  font-weight: 600;
}

.news-meta-item a:hover {
  text-decoration: underline;
}

/* Related News Section */
.related-news-wrapper {
  max-width: 1200px;
  margin: 0 83px 50px 83px;
  padding: 0 20px;
}

@media (max-width: 991px) {
  .related-news-wrapper {
    margin: 0 auto 50px auto;
  }
}

/* Related News Heading */
.related-news-heading {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  font-size: 24px;
  border-bottom: 3px solid #0e29cd;
  padding-bottom: 8px;
  margin-bottom: 25px;
  display: inline-block;
}

.related-news-heading span {
  color: #9c0f0f;
}

/* Related News Cards */
.related-news-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.related-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-news-image {
  height: 150px;
  overflow: hidden;
}

.related-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-news-card:hover .related-news-image img {
  transform: scale(1.05);
}

.related-news-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.related-news-date {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.related-news-date i {
  color: #0e29cd;
}

.related-news-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.related-news-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.related-news-title a:hover {
  color: #0e29cd;
}

/* FIX LAYOUT SHIFT SAAT SLIDER BERGANTI */
.slider-wrapper .slide {
  display: block !important;
  grid-column: 1 / 2 !important;
  grid-row: 1 / 2 !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.slider-wrapper .slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ NEW JAM KERJA CALENDAR WIDGET STYLES Ã¢â€â‚¬Ã¢â€â‚¬ */
.jk-calendar-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(103, 58, 183, 0.08);
  border: 1px solid #eef0f6;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #333333;
}

.jk-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 10px 20px;
}

.jk-calendar-nav-btn {
  background: transparent;
  border: none;
  color: #6C5CE7;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jk-calendar-nav-btn:hover {
  background: #f1edf9;
}

.jk-calendar-selects {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jk-select-custom {
  appearance: none;
  -webkit-appearance: none;
  background: #ffffff;
  border: 1px solid #e2e4ed;
  border-radius: 8px;
  padding: 6px 26px 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236C5CE7' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.jk-select-custom:focus {
  border-color: #6C5CE7;
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}

.jk-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: left;
  padding: 10px 16px 6px 16px;
  font-size: 11.5px;
  font-weight: 600;
  color: #8e8e93;
  letter-spacing: 0.5px;
}

.jk-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 6px;
  padding: 4px 16px 16px 16px;
  text-align: left;
}

.jk-day-cell {
  position: relative;
  font-size: 13.5px;
  font-weight: 400;
  color: #444;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}

.jk-day-cell.empty {
  cursor: default;
}

/* Range background shading */
.jk-day-cell.in-range {
  background: #f1edf9;
  color: #4b3bb3;
  font-weight: 500;
}

.jk-day-cell.in-range-first {
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  background: #f1edf9;
}

.jk-day-cell.in-range-last {
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  background: #f1edf9;
}

/* Solid Purple Circle highlight for start and end dates */
.jk-day-cell .jk-date-num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.jk-day-cell.active-start .jk-date-num,
.jk-day-cell.active-end .jk-date-num {
  background: #6C5CE7;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(108, 92, 231, 0.35);
}

.jk-day-cell:not(.empty):hover .jk-date-num {
  background: #e8ccab;
}

.jk-day-cell.active-start:hover .jk-date-num,
.jk-day-cell.active-end:hover .jk-date-num {
  background: #e8ccab;
}

.jk-calendar-divider {
  height: 1px;
  background: #eceef5;
  margin: 0 20px;
}

.jk-schedule-details {
  padding: 18px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.jk-schedule-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.jk-schedule-label {
  font-size: 11px;
  font-weight: 700;
  color: #8e8e93;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.jk-schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}

.jk-schedule-date-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.jk-schedule-day-num {
  font-size: 36px;
  font-weight: 300;
  color: #6C5CE7;
  line-height: 0.95;
  font-family: inherit;
}

.jk-schedule-date-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jk-schedule-month-year {
  font-size: 14.5px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.jk-schedule-day-name {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 400;
  margin-top: 2px;
}

.jk-schedule-time-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jk-clock-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.8px solid #6C5CE7;
  color: #6C5CE7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background: #ffffff;
  flex-shrink: 0;
}

.jk-time-pill {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  min-width: 95px;
  text-align: left;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
  line-height: 1.25;
}

.jk-live-status-bar {
  padding: 10px 20px;
  background: #f9fafe;
  border-bottom: 1px solid #edf0f7;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Live Today & Active Date Selection */
.jk-day-cell.is-today .jk-date-num {
  border: 2px solid #0E29CD;
  font-weight: 700;
  color: #0E29CD;
}

.jk-day-cell.active-selected .jk-date-num {
  background: #d4872a !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.4);
}

.jk-day-info-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 6px;
}

.jk-day-info-header {
  font-size: 11px;
  font-weight: 700;
  color: #8e8e93;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.jk-day-info-title {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.jk-day-info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #334155;
}

.jk-day-info-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.jk-day-info-label {
  color: #64748b;
  font-weight: 500;
  flex-shrink: 0;
}

.jk-day-info-val {
  font-weight: 700;
  color: #0f172a;
  text-align: right;
  word-break: break-word;
}

/* --- Extracted Inline Styles from beranda.php --- */
.panel-img-wrapper {
  text-align: left;
  padding: 10px;
}

.panel-img-preview {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  cursor: pointer;
}

#maklumatPreviewOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#maklumatPreviewImg {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.jadwal-widget {
  margin-top: 0px !important;
}

.section-mt-28 {
  margin-top: 28px;
}

.mr-2 {
  margin-right: 8px;
}

.news-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.news-thumb-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 2rem;
}

.panel-header-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}

.announcement-item-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ann-icon-shrink {
  flex-shrink: 0;
}

.flex-1 {
  flex: 1;
}

.card-footer-right {
  padding: 12px;
  border-top: 1px solid #eee;
  text-align: right;
}

.btn-link-emerald {
  font-size: 13px;
  color: #10b981;
  font-weight: bold;
  text-decoration: none;
}

.announcement-col-full {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.panel-header-gold {
  border-bottom: 3px solid var(--gold);
}

.flex-grow-1 {
  flex-grow: 1;
}

.announcement-item-dashed {
  padding: 8px 12px;
  margin-bottom: 0;
  border-bottom: 1px dashed #e0e0e0;
}

.ann-icon-top {
  margin-top: 2px;
}

.ann-title-custom {
  color: #0066cc;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13.5px;
  line-height: 1.25;
  margin-bottom: 2px;
}

.link-inherit {
  text-decoration: none;
  color: inherit;
}

.card-footer-sm {
  padding: 10px;
  border-top: 1px solid #eee;
  text-align: right;
}

.btn-link-blue {
  font-size: 12px;
  color: #176CEA;
  font-weight: bold;
  text-decoration: none;
  font-family: 'Source Sans 3', sans-serif;
}

#google_translate_element {
  display: none;
}

#langDropdownList {
  display: none;
}

.jk-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mb-0 {
  margin-bottom: 0;
}

.jk-status-text-custom {
  font-size: 13px;
  color: #fff;
}

#jkBadge {
  display: none;
}

.hide-element {
  display: none;
}

.jk-info-icon {
  color: #6C5CE7;
  font-size: 15px;
}

#jkHolidayBanner {
  display: none;
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
  border-radius: 8px;
  padding: 10px;
  font-size: 0.9rem;
}

.widget-header-blue {
  background-color: #0E29CD;
  color: white;
  text-transform: uppercase;
}

.p-15 {
  padding: 15px;
}

.survey-card {
  border: 1px solid #e0e0e0;
  padding: 25px 15px;
  margin-bottom: 15px;
  background: #f4f8fc;
  border-radius: 4px;
  text-align: left;
}

.survey-card-last {
  border: 1px solid #e0e0e0;
  padding: 25px 15px;
  background: #f4f8fc;
  border-radius: 4px;
  text-align: left;
}

.survey-num-ikm {
  font-size: 48px;
  font-weight: 900;
  color: #00897B;
  line-height: 1;
}

.survey-num-ipak {
  font-size: 48px;
  font-weight: 900;
  color: #558B2F;
  line-height: 1;
}

.survey-label {
  font-size: 22px;
  font-weight: 700;
  color: #666;
  margin-top: 10px;
}

.survey-sub {
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

.survey-btn {
  background: #176CEA;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.cursor-pointer {
  cursor: pointer;
}

#posterFullModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 100000;
  line-height: 1;
}

.modal-content-wrapper {
  text-align: left;
  max-width: 90%;
  max-height: 90%;
}

#posterFullImg {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

#posterFullCaption {
  color: #fff;
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.icon-green {
  color: #10b981;
}

/* --- TAMPILAN BANNER HARI LIBUR --- */
.jk-holiday-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #fff0f3 0%, #ffe4e8 100%);
  border: 1px solid #ffccd5;
  color: #e63946;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.1);
  margin: 10px 20px 20px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jk-holiday-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 57, 70, 0.15);
}

.jk-holiday-banner i {
  font-size: 16px;
  color: #e63946;
}

/* --- TAMPILAN KONTEN BERITA (content_isi.php) --- */
.news-image-wrapper {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.news-image-wrapper img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  margin: 0px;
}

.news-image-wrapper:hover img {
  transform: scale(1.02);
}

.news-content {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #334155;
  padding: 10px 0;
}

.news-content p {
  margin-bottom: 20px;
  text-align: justify;
}

.news-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.news-content h2,
.news-content h3,
.news-content h4,
.news-content h5 {
  color: var(--maroon);
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.news-content a {
  color: #176CEA;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s ease;
}

.news-content a:hover {
  border-bottom: 1px solid #176CEA;
}

.news-content ul,
.news-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.news-content li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .news-content {
    font-size: 15px;
    line-height: 1.7;
  }

  .news-content h2 {
    font-size: 22px;
  }

  .news-content h3 {
    font-size: 18px;
  }

  .news-content img {
    border-radius: 8px;
    margin: 16px auto;
  }
}

/* --- TAMPILAN HALAMAN DALAM (INNER PAGE) --- */
.inner-page.content-paper {
  padding: 40px 48px !important;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  position: relative;
}

/* Elemen teks dalam inner page */
.inner-page .news-detail-title {
  font-family: 'Merriweather', serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--maroon);
  line-height: 1.35;
  margin-bottom: 24px;
}

.inner-page h2.mt-4,
.inner-page h2 {
  font-family: 'Merriweather', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--maroon);
  margin-bottom: 16px;
  border-bottom: 2px solid #f8fafc;
  padding-bottom: 16px;
}

.inner-page hr {
  border-top: 1px solid #e2e8f0;
  margin: 32px 0;
  opacity: 1;
}

/* Tabel pada inner page */
.inner-page table {
  width: 100%;
  margin-bottom: 24px;
  border-collapse: collapse;
}

.inner-page table th,
.inner-page table td {
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
}

.inner-page table th {
  background: #f8fafc;
  font-weight: 600;
  color: var(--gray-800);
}

@media (max-width: 768px) {
  .inner-page.content-paper {
    padding: 24px 20px !important;
    border-radius: 12px;
  }

  .inner-page .news-detail-title {
    font-size: 26px;
  }

  .inner-page h2.mt-4,
  .inner-page h2 {
    font-size: 22px;
  }
}

/* --- SURVEY SLIDER (Indeks Pelayanan Publik) --- */
.survey-slider-container {
  position: relative;
  width: 100%;
}

.survey-slide {
  display: none;
  animation: surveyFade 0.6s ease-in-out;
}

.survey-slide.active {
  display: block;
}

@keyframes surveyFade {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.survey-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.survey-dot:hover {
  background: #94a3b8;
}

.survey-dot.active {
  background: #176CEA;
  width: 24px;
  border-radius: 6px;
}

/* --- 5 GRID RELATED NEWS --- */
.related-news-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.related-news-card-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.related-news-card {
  display: flex !important;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.related-news-body {
  display: flex !important;
  flex-direction: column;
  flex-grow: 1;
}

.related-news-title a {
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  line-clamp: 3 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.4em * 3) !important;
}

@media (max-width: 1024px) {
  .related-news-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .related-news-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .related-news-grid-5 {
    grid-template-columns: 1fr;
  }
}

/* --- CUSTOM TOOLTIP ELEGANT --- */
.related-news-card {
  overflow: visible !important;
}

.related-news-image img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.related-news-title {
  position: relative;
  cursor: pointer;
}

.related-news-title::after {
  content: attr(data-custom-tooltip);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15, 23, 42, 0.95);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: normal;
  width: max-content;
  max-width: 250px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 999;
  pointer-events: none;
  line-height: 1.5;
  text-align: left;
}

.related-news-title::before {
  content: '';
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(15, 23, 42, 0.95) transparent transparent transparent;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 999;
  pointer-events: none;
}

.related-news-title:hover::after,
.related-news-title:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* --- SURVEY SLIDER CARD STYLES --- */
.survey-card {
  border: 1px solid #e0e0e0;
  padding: 25px 15px;
  background: #f4f8fc;
  border-radius: 4px;
  text-align: left;
}

.survey-score {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.survey-score.ikm {
  color: #00897B;
}

.survey-score.ipak {
  color: #558B2F;
}

.survey-title-text {
  font-size: 22px;
  font-weight: 700;
  color: #666;
  margin-top: 10px;
}

.survey-period {
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

.survey-btn {
  background: #176CEA;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.survey-btn:hover {
  background: #0e29cd;
}

/* --- CATEGORY NEWS GRID & PAGINATION --- */
.category-news-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  align-items: stretch;
}

.news-card-modern {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.news-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.news-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.news-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card-modern:hover .news-thumbnail {
  transform: scale(1.05);
}

.news-content-modern {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-meta-modern {
  font-size: 13px;
  color: #777;
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}

.news-meta-modern i {
  color: var(--maroon, #800000);
}

.news-title-modern {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.news-title-modern a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.4em * 2);
}

.news-title-modern a:hover {
  color: var(--maroon, #800000);
}

.news-excerpt-modern {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.btn-readmore-modern {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--maroon, #800000);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--maroon, #800000);
  border-radius: 6px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-readmore-modern i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-readmore-modern:hover {
  background: var(--maroon, #800000);
  color: #fff;
  text-decoration: none;
}

.btn-readmore-modern:hover i {
  transform: translateX(4px);
}

.page-navigate-modern {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.page-navigate-modern a,
.page-navigate-modern span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  background: #fff;
  color: #444;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.page-navigate-modern span.dots {
  background: transparent;
  border: none;
  box-shadow: none;
  min-width: auto;
  padding: 0 5px;
  color: #777;
}

.page-navigate-modern a:hover {
  background: var(--maroon, #800000);
  color: #fff;
  border-color: var(--maroon, #800000);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(128, 0, 0, 0.15);
}

.page-navigate-modern span.current,
.page-navigate-modern a.active {
  background: var(--maroon, #800000);
  color: #fff;
  font-weight: 700;
  border: 1px solid var(--maroon, #800000);
  box-shadow: 0 4px 10px rgba(128, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .category-news-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* --- STATIC PAGE MODERN --- */
.static-page-modern {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
}

.static-page-title-modern {
  font-size: 26px;
  font-weight: 700;
  color: #333;
  margin-top: 0;
  margin-bottom: 15px;
}

.static-page-divider {
  height: 3px;
  width: 60px;
  background: var(--maroon, #800000);
  margin-bottom: 25px;
  border-radius: 2px;
}

.static-page-img-wrapper {
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 8px;
}

.static-page-img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- SEARCH HEADER MODERN --- */
.search-header-modern {
  margin-bottom: 30px;
  padding: 10px 0 20px 0;
  border-bottom: 1px solid #eaeaea;
}

.search-header-modern .search-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a202c;
  /* Warna hitam elegan/dark charcoal */
  margin-top: 0;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.search-header-modern .search-subtitle {
  font-size: 16px;
  color: #2d3748;
  /* Warna abu-abu gelap elegan */
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.search-header-modern .search-subtitle b,
.search-header-modern .search-subtitle strong {
  color: #1a202c;
  /* Hitam tebal untuk highlight keyword & count */
  font-weight: 700;
}

.static-page-body {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.static-page-body img {
  max-width: 100%;
  height: auto;
}

/* Wrapper Responsif untuk Tabel WYSIWYG */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 25px;
}

/* Tabel Elegan di Halaman Statis (seperti SAKIP) */
.static-page-modern table {
  width: 100% !important;
  max-width: 100% !important;
  border-collapse: collapse;
  margin-bottom: 0;
  display: table;
  /* Kembalikan ke format tabel agar kolom terbagi proporsional */
}



.static-page-modern table td {
  padding: 12px;
  vertical-align: top;
  border: 1px solid #e0e0e0 !important;
  /* Garis pembatas sel abu-abu */
  text-align: left;
  color: #444;
}

.static-page-modern table td img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .static-page-modern {
    padding: 20px;
  }

  .static-page-title-modern {
    font-size: 22px;
  }
}

/* --- PROFIL PAGE MODERN (Tabel Hakim / Pejabat) --- */
.profil-page-modern {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
}

.profil-page-modern .static-page-title-modern {
  font-size: 26px;
  font-weight: 700;
  color: #333;
  margin-top: 0;
  margin-bottom: 15px;
}

.profil-page-modern .static-page-divider {
  height: 3px;
  width: 60px;
  background: var(--maroon, #800000);
  margin-bottom: 25px;
  border-radius: 2px;
}

.profil-page-modern table {
  width: 100% !important;
  border-collapse: collapse;
  margin-bottom: 30px;
  border: none !important;
}

/* Memaksa baris pertama tabel (atau th) menjadi header biru */
.profil-page-modern table tr:first-child td,
.profil-page-modern table tr:first-child th,
.profil-page-modern table th {
  background-color: #1123ca !important;
  /* Biru elegan mirip screenshot */
  color: #fff !important;
  text-align: center !important;
  font-weight: bold !important;
  font-size: 16px;
  text-transform: uppercase;
  padding: 8px 15px !important;
  border: none !important;
}

/* Sel data */
.profil-page-modern table td {
  padding: 10px 10px;
  vertical-align: top;
  border: none !important;
  /* Hilangkan border seperti di gambar */
  border-bottom: 1px solid #f0f0f0 !important;
  /* Garis bawah halus pemisah row */
  font-size: 15px;
  color: #333;
  text-align: left !important;
}

.profil-page-modern table img {
  width: 100% !important;
  max-width: 150px !important;
  height: auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .profil-page-modern {
    padding: 20px;
  }

  .profil-page-modern table td {
    display: block;
    width: 100% !important;
    text-align: left !important;
  }

  .profil-page-modern table td:first-child {
    text-align: center !important;
    margin-bottom: 10px;
  }
}

/* Bottom Widgets (Full Width) */
.bottom-widgets-section {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}


.bottom-section {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* FIX MOBILE MENU & FOOTER */
@media (max-width: 768px) {
  .nav-inner.open {
    display: flex !important;
    animation: fadeInAcc 0.2s ease-in-out;
  }

  .dropdown.show {
    display: block !important;
    position: static;
    min-width: 100%;
    box-shadow: none;
    padding-left: 15px;
    background: transparent;
  }

  .footer-bottom {
    justify-content: center;
    text-align: left;
    flex-direction: column;
    gap: 5px;
  }
}

/* =========================================
   STATISTIK PERKARA CARDS
========================================= */
.stat-list {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  overflow: hidden !important;
  /* Hilangkan scrollbar */
  justify-content: center;
  height: 100%;
  min-height: auto !important;
}

.stat-card {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
}

.stat-masuk::before {
  background: #3498db;
}

.stat-putus::before {
  background: #2ecc71;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 20px;
  margin-right: 16px;
  flex-shrink: 0;
}

.stat-masuk .stat-icon {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
}

.stat-putus .stat-icon {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 13px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1;
}

/* =========================================
   CARIYANLIK BANNER
========================================= */
.cariyanlik-banner {
  background: linear-gradient(135deg, #d31027 0%, #ea384d 100%);
  border-radius: 16px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  box-shadow: 0 10px 25px rgba(211, 16, 39, 0.25);
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cariyanlik-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cariyanlik-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

.btn-cariyanlik {
  background: #ffffff;
  border-radius: 50px;
  padding: 12px 32px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.btn-cariyanlik:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.btn-cariyanlik .icon-search {
  color: #d31027;
  font-size: 22px;
  margin-right: 12px;
  font-weight: 900;
}

.btn-cariyanlik .cari-text {
  color: #c0392b;
  font-weight: 900;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  letter-spacing: -0.5px;
}

.btn-cariyanlik .yanlik-text {
  color: #ff7675;
  font-weight: 600;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  letter-spacing: -0.5px;
}

/* Responsive for Cariyanlik Banner */
@media (max-width: 991px) {
  .cariyanlik-banner {
    flex-direction: column;
    text-align: left;
    padding: 24px 20px;
    gap: 16px;
  }

  .cariyanlik-title {
    font-size: 24px;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  .btn-cariyanlik {
    font-size: 20px;
    padding: 12px 24px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cariyanlik-title {
    font-size: 18px;
  }

  .btn-cariyanlik {
    font-size: 18px;
    padding: 10px 20px;
  }

  .btn-cariyanlik .icon-search {
    font-size: 18px;
  }
}

/* =========================================
   SLIDER BUTTON ELEGANT
========================================= */
.slider-btn-group {
  margin-top: 24px;
  margin-bottom: 24px;
}

.btn-slider-elegant {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, #D4AF37 100%);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-slider-elegant:hover {
  background: transparent;
  color: var(--gold) !important;
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
  transform: translateY(-3px);
}

.btn-slider-elegant i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-slider-elegant:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .btn-slider-elegant {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* =========================================
   FULL COVER SLIDER BACKGROUND
========================================= */
.hero .slide-image-box {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100% !important;
  z-index: 0 !important;
  display: block !important;
  overflow: hidden;
}

.hero .slider-photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: opacity 0.8s ease-in-out !important;
}

.hero .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(9, 26, 130, 0.95) 0%, rgba(9, 26, 130, 0.85) 40%, rgba(9, 26, 130, 0.2) 100%);
  z-index: 1;
}

@media (max-width: 991px) {
  .hero .slide-overlay {
    background: linear-gradient(180deg, rgba(9, 26, 130, 0.8) 0%, rgba(9, 26, 130, 0.95) 100%);
  }
}

/* =========================================
   ELEGANT SURVEI CARDS
========================================= */
.elegant-survei-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(14, 41, 205, 0.08);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(14, 41, 205, 0.05);
  padding: 25px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.elegant-survei-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(14, 41, 205, 0.12);
}

.elegant-survei-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.elegant-survei-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #091a82;
  margin-bottom: 5px;
  line-height: 1.3;
}

.elegant-survei-period {
  font-size: 0.85rem;
  color: #6c757d;
  background: #f4f7fa;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}

.elegant-survei-icon {
  width: 40px;
  height: 40px;
  opacity: 0.15;
}

.elegant-survei-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 15px;
}

.elegant-survei-score-box {
  display: flex;
  flex-direction: column;
}

.elegant-survei-score {
  font-size: 2.5rem;
  font-weight: 800;
  color: #091a82;
  line-height: 1;
}

.elegant-survei-predicate {
  font-size: 0.9rem;
  font-weight: 600;
  color: #10b981;
  /* green for good */
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.elegant-survei-percent {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0E29CD;
  background: rgba(14, 41, 205, 0.1);
  padding: 5px 12px;
  border-radius: 8px;
}

.elegant-survei-progress-container {
  width: 100%;
  height: 8px;
  background: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
}

.elegant-survei-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #091a82 0%, #0E29CD 100%);
  border-radius: 10px;
  position: relative;
}

/* =========================================
   ELEGANT SURVEY CARD (INDEKS PELAYANAN PUBLIK)
========================================= */
.elegant-survey-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.elegant-survey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(14, 41, 205, 0.15);
}

/* A subtle gradient border at the top */
.elegant-survey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #091a82, #0E29CD);
}

.elegant-survey-card.spak-theme::before {
  background: linear-gradient(90deg, #d35400, #f39c12);
}

.esc-header {
  text-align: center;
  margin-bottom: 15px;
  border-bottom: 1px dashed #eee;
  padding-bottom: 10px;
}

.esc-title {
  font-size: 14px;
  font-weight: 700;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.esc-period {
  font-size: 12px;
  color: #7f8c8d;
}

.esc-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.esc-score-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f4f7fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #0E29CD;
  color: #0E29CD;
}

.elegant-survey-card.spak-theme .esc-score-circle {
  border-color: #f39c12;
  color: #d35400;
}

.esc-score-value {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.esc-score-scale {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.6;
}

.esc-details {
  text-align: right;
  flex: 1;
  padding-left: 15px;
}

.esc-percentage {
  font-size: 22px;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 2px;
}

.esc-predicate {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: #27ae60;
  padding: 3px 8px;
  border-radius: 20px;
  display: inline-block;
}

.elegant-survey-card.spak-theme .esc-predicate {
  background: #27ae60;
}

.esc-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: #f4f7fa;
  color: #2c3e50;
  font-weight: 600;
  font-size: 13px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.esc-btn:hover {
  background: #0E29CD;
  color: #ffffff;
  text-decoration: none;
}

.elegant-survey-card.spak-theme .esc-btn:hover {
  background: #f39c12;
}

/* =========================================
   HEADER CONTACT INFO
========================================= */
.header-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 8px;
  font-size: 13px;
}

.header-contact-info .contact-item {
  display: inline-flex;
  align-items: center;
  color: #2c3e50;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(14, 41, 205, 0.1);
  transition: all 0.3s ease;
}

.header-contact-info .contact-item i {
  color: #0E29CD;
  margin-right: 6px;
  font-size: 12px;
}

.header-contact-info .contact-item:hover {
  background-color: #0E29CD;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(14, 41, 205, 0.2);
  transform: translateY(-2px);
}

.header-contact-info .contact-item:hover i {
  color: #ffffff;
}

@media (max-width: 768px) {
  .header-contact-info {
    justify-content: center;
    gap: 10px;
  }
}

/* =========================================
   HEADER CONTACT INFO
========================================= */
.header-contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 5px;
  font-size: 13px;
  color: #bdc3c7;
}

.header-contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-contact-info .contact-item i {
  font-size: 12px;
  color: #3498db;
}

@media (max-width: 768px) {
  .header-contact-info {
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    margin-top: 8px;
  }
}

/* Header Contact Info */
.header-contact {
  font-size: 13px;
  margin-top: 5px;
  opacity: 0.9;
}

.header-contact i.fa {
  margin-right: 5px;
}

.header-contact-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.header-contact-link:hover {
  opacity: 0.7;
  color: inherit;
  text-decoration: none;
}

/* =========================================
   ELEGANT NEWS CARD (BERANDA)
========================================= */
.elegant-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 15px;
}

.elegant-news-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.elegant-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(14, 41, 205, 0.12);
}

.enc-thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.enc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.elegant-news-card:hover .enc-thumb img {
  transform: scale(1.05);
}

.enc-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.enc-meta {
  font-size: 12px;
  color: #7f8c8d;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.enc-meta i {
  color: #0E29CD;
  margin-right: 4px;
}

.enc-title {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.4;
  flex-grow: 1;
}

.enc-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.enc-title a:hover {
  color: #0E29CD;
}

.enc-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #0E29CD;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
  position: relative;
}

.enc-btn::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #0E29CD;
  transition: width 0.3s ease;
}

.enc-btn:hover::after {
  width: 100%;
}

@media (max-width: 991px) {
  .elegant-news-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .elegant-news-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================
   ELEGANT PENGUMUMAN GRID
========================================= */
.elegant-announcement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.elegant-ann-card {
  background: #ffffff;
  border-left: 5px solid #f39c12;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.3s ease;
  text-decoration: none !important;
  color: inherit;
  margin: 0px 10px;
}

.elegant-ann-card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.1);
  border-left-color: #0E29CD;
}

.elegant-ann-icon {
  font-size: 28px;
  color: #f39c12;
  transition: color 0.3s ease;
  margin-top: 2px;
}

.elegant-ann-card:hover .elegant-ann-icon {
  color: #0E29CD;
}

.elegant-ann-body {
  flex-grow: 1;
}

.elegant-ann-title {
  font-weight: 700;
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 1.4;
}

.elegant-ann-date {
  font-size: 12px;
  color: #7f8c8d;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 768px) {
  .elegant-announcement-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================
   SIDE IMAGE IN SLIDER FIX
========================================= */
.slider-wrapper .slide {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.slider-wrapper .slide:not(.active) {
  display: none !important;
}

.slide-content-left {
  flex: 1;
  max-width: 600px;
}

.slide-content-right {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .slider-wrapper .slide {
    flex-direction: column;
    text-align: left;
  }

  .slide-content-left {
    max-width: 100%;
  }

  .slide-content-right {
    justify-content: center;
    margin-top: 0px;
  }
}

.slider-wrapper {
  display: block !important;
  padding: 80px 40px 60px !important;
}

.slider-wrapper .slide {
  grid-column: 1 / -1 !important;
}

@media (min-width: 992px) {
  .slide-content-right {
    padding-left: 20px;
  }
}

/* =========================================
   ELEGANT FLOATING SLIDER IMAGE
========================================= */
.slide-floating-img {
  width: 100%;
  max-width: 550px;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15);
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
  animation: floatImage 6s ease-in-out infinite;
  display: block;
}

.slide-floating-img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.25);
}

@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 991px) {
  .slide-floating-img {
    max-width: 90%;
    margin: 0 auto;
    aspect-ratio: 16/9;
    animation: none;
    /* Disable animation on mobile for better performance */
    transform: none !important;
  }
}

@media (max-width: 991px) {
  .slider-wrapper {
    padding: 40px 20px 40px !important;
  }

  .slider-wrapper .slide {
    text-align: left;
  }

  .slide-floating-img {
    max-width: 100%;
    margin: 0;
  }

  .slide-content-right {
    justify-content: flex-start;
  }
}

/* ==========================================================================
   GLOBAL ELEGANT TOOLTIP (JS + CSS)
   ========================================================================== */
#elegant-global-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999999;
  background: rgba(14, 41, 205, 0.95);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  box-shadow: 0 8px 20px rgba(14, 41, 205, 0.25);
  letter-spacing: 0.3px;
}

#elegant-global-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(14, 41, 205, 0.95);
}

#elegant-global-tooltip.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

@media (max-width: 768px) {
  #elegant-global-tooltip {
    display: none !important;
  }
}

/* --- MARQUEE INFORMASI --- */
.marquee {
  background: var(--maroon-dark);
  color: var(--white);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 3px solid var(--gold);
  z-index: 10;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.marquee>span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-slide 35s linear infinite;
  padding-left: 100%;
}

.marquee:hover>span {
  animation-play-state: paused;
}

.marquee img.img-1 {
  height: 32px;
  margin-right: 20px;
  object-fit: contain;
}

.marquee .marquee-text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.marquee .marquee-text strong {
  color: var(--gold-light);
  font-weight: 700;
}

.marquee .marquee-text a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
  margin-left: 5px;
  transition: color 0.3s ease;
}

.marquee .marquee-text a:hover {
  color: var(--white);
  text-decoration: underline;
}

@keyframes marquee-slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
  .marquee {
    padding: 8px 0;
  }

  .marquee img.img-1 {
    height: 24px;
    margin-right: 12px;
  }

  .marquee .marquee-text {
    font-size: 13px;
  }
}

/* --- LIVE CLOCK JAM KERJA --- */
.live-clock {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  margin-top: 2px;
  display: inline-block;
}

/* =========================================
   LATEST NEWS WIDGET (CONTENT SIDEBAR)
========================================= */
.latest-news-widget {
  margin-bottom: 0px;
}

.ln-controls-header {
  display: flex;
  gap: 4px;
}

.ln-btn-header {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.2s ease;
  font-size: 11px;
}

.ln-btn-header:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.ln-carousel {
  background: #ffffff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.ln-track-container {
  overflow: hidden;
  position: relative;
  height: 100px;
}

.ln-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ln-slide {
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.ln-card {
  display: flex;
  gap: 16px;
  width: 100%;
  padding: 5px 0;
}

.ln-thumb {
  width: 75px;
  height: 75px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.ln-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ln-thumb:hover img {
  transform: scale(1.05);
}

.ln-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ln-news-title {
  margin: 0 0 8px 0;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
  color: #1f2937;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ln-news-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ln-news-title a:hover {
  color: var(--blue, #0E29CD);
}

.ln-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
}

.ln-badge {
  background: rgba(14, 41, 205, 0.08);
  color: var(--blue, #0E29CD);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
  display: inline-block;
  vertical-align: middle;
}

.ln-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
}

.ln-progress-fill {
  height: 100%;
  background: var(--blue, #0E29CD);
  width: 0%;
  transition: width 0.1s linear;
  opacity: 0.8;
}

/* ==== CUSTOM PDF VIEWER WIDGET ==== */
.pdf-viewer-widget {
  width: 100%;
  box-sizing: border-box;
  display: block;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  margin: 20px 0;
  font-family: 'Inter', sans-serif;
}

.pdf-viewer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.pdf-title-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdf-title-area::before {
  content: '\f1c1';
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  color: #ff3333;
  font-size: 24px;
}

.pdf-title-area .pdf-title {
  font-size: 15px;
  font-weight: 600;
  color: #333333;
}

.pdf-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #007bff;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s;
}

.pdf-download-btn::before {
  content: '\f019';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.pdf-download-btn:hover {
  background: rgba(0, 123, 255, 0.1);
  color: #0056b3;
}

.pdf-viewer-body {
  position: relative;
  width: 100%;
  height: 600px;
  background: #323639;
  /* Standard PDF reader dark background */
}

.pdf-viewer-body iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .pdf-viewer-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .pdf-download-btn {
    align-self: flex-start;
    padding: 0;
  }

  .pdf-download-btn:hover {
    background: transparent;
  }

  .pdf-viewer-body {
    padding-bottom: 100%;
  }
}

/* --- ELEGANT ZI POPUP MODAL --- */
.custom-zi-modal {
  display: none;
  /* Initial hidden state for script to control */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.custom-zi-modal.show {
  opacity: 1;
}

.custom-zi-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background-color: transparent;
  width: 90%;
  max-width: 700px;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-zi-modal.show .custom-zi-modal-content {
  transform: translate(-50%, -50%) scale(1);
}

.custom-zi-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: #ff3b30;
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
  transition: all 0.2s ease;
  padding-bottom: 4px;
}

.custom-zi-close:hover {
  background: #e60000;
  transform: scale(1.1);
}

.custom-zi-body {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.zi-popup-img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

/* PRELOADER CSS */
.loading {
  position: fixed;
  z-index: 9999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../image/loading-web-optimized.gif) center center no-repeat, -webkit-radial-gradient(rgba(20, 20, 20), rgba(0, 0, 0, 85%));
}

.loading:not(:required) {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

/* --- News Tags Styles --- */
.news-tags-container {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.news-tags-label {
  font-weight: 600;
  color: var(--gray-600);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-tag-link {
  background-color: var(--gray-100);
  color: var(--maroon);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.news-tag-link:hover {
  background-color: var(--maroon);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(14, 41, 205, 0.2);
  transform: translateY(-2px);
}

.news-tag-empty {
  color: #999;
  font-size: 13px;
  font-style: italic;
}

/* --- STATISTIK PERKARA --- */
.stat-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.stat-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid #3498db;
}
.stat-box.banding {
    border-top: 5px solid #e67e22;
}
.stat-title {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}
.stat-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    border: 1px solid #e9ecef;
}
.stat-item-full {
    grid-column: 1 / -1;
}
.stat-item .label {
    font-size: 13px;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
}
.stat-item .value {
    font-size: 36px;
    font-weight: 900;
    color: #2c3e50;
    line-height: 1;
}
.kinerja-wrap {
    background: #f1f8ff;
    border: 1px dashed #3498db;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}
.kinerja-wrap.banding {
    background: #fff4eb;
    border-color: #e67e22;
}
.kinerja-label {
    font-size: 15px;
    color: #34495e;
    font-weight: 700;
    margin-bottom: 10px;
}
.kinerja-value {
    font-size: 48px;
    font-weight: 900;
}
@media (max-width: 768px) {
    .stat-container {
        grid-template-columns: 1fr;
    }
}

/* Full Width Empty Category Section */
.empty-category-section-fw {
    padding: 40px 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.empty-state-card-fw {
    background: #ffffff;
    border-radius: 8px;
    padding: 60px 20px;
    border: 1px dashed #ced4da;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 350px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.empty-state-content-fw {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.empty-state-icon-fw i {
    font-size: 56px;
    color: #e2e8f0;
}
.empty-state-title-fw {
    color: #334155;
    font-weight: 600;
    font-size: 1.5rem;
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
    margin-bottom: 15px;
}
.empty-state-desc-fw {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 100%;
    margin: 0 auto 25px auto;
    white-space: normal !important;
}
.btn-back-home-fw {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    color: #0e29cd;
    background-color: transparent;
    border: 2px solid #0e29cd;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: none;
}

.btn-back-home-fw i {
    transition: transform 0.3s ease;
}

.btn-back-home-fw:hover {
    background-color: #0e29cd;
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(14, 41, 205, 0.25);
    transform: translateY(-3px);
    text-decoration: none;
}

.btn-back-home-fw:hover i {
    transform: scale(1.15);
}

.btn-back-home-fw:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(14, 41, 205, 0.2);
}