/* ════════════════════════════════════════════════════════════════
   Si PDLKWS — Utility Framework
   Inspired by Bootstrap/Tailwind — reusable atomic classes
   ════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────
   DISPLAY
───────────────────────────────────────── */
.d-block        { display: block; }
.d-inline-block { display: inline-block; }
.d-inline       { display: inline; }
.d-inline-flex  { display: inline-flex; }
.d-flex         { display: flex; }
.d-grid         { display: grid; }
.d-none         { display: none; }

/* ─────────────────────────────────────────
   FLEX
───────────────────────────────────────── */
.flex-row       { flex-direction: row; }
.flex-col       { flex-direction: column; }
.flex-wrap      { flex-wrap: wrap; }
.flex-nowrap    { flex-wrap: nowrap; }
.flex-1         { flex: 1; }
.flex-shrink-0  { flex-shrink: 0; }
.flex-grow-1    { flex-grow: 1; }

.align-start    { align-items: flex-start; }
.align-end      { align-items: flex-end; }
.align-center   { align-items: center; }
.align-stretch  { align-items: stretch; }
.align-baseline { align-items: baseline; }
.align-self-start  { align-self: flex-start; }

.justify-start    { justify-content: flex-start; }
.justify-end      { justify-content: flex-end; }
.justify-center   { justify-content: center; }
.justify-between  { justify-content: space-between; }
.justify-around   { justify-content: space-around; }
.justify-evenly   { justify-content: space-evenly; }

/* ─────────────────────────────────────────
   GRID
───────────────────────────────────────── */
.grid-cols-1      { grid-template-columns: 1fr; }
.grid-cols-2      { grid-template-columns: 1fr 1fr; }
.grid-cols-3      { grid-template-columns: 1fr 1fr 1fr; }
.grid-cols-4      { grid-template-columns: repeat(4, 1fr); }
.grid-cols-2-1    { grid-template-columns: 2fr 1fr; }
.grid-cols-1-2    { grid-template-columns: 1fr 2fr; }
.grid-cols-1-1-5  { grid-template-columns: 1fr 1.5fr; }

.align-items-start { align-items: start; }

/* ─────────────────────────────────────────
   GAP
───────────────────────────────────────── */
.gap-0    { gap: 0; }
.gap-1    { gap: 4px; }
.gap-2    { gap: 6px; }
.gap-3    { gap: 8px; }
.gap-4    { gap: 10px; }
.gap-5    { gap: 12px; }
.gap-6    { gap: 14px; }
.gap-7    { gap: 16px; }
.gap-8    { gap: 20px; }
.gap-9    { gap: 2rem; }
.gap-10   { gap: 1.5rem; }

/* ─────────────────────────────────────────
   PADDING
───────────────────────────────────────── */
.p-0    { padding: 0; }
.p-1    { padding: 4px; }
.p-2    { padding: 8px; }
.p-3    { padding: 10px; }
.p-4    { padding: 12px; }
.p-5    { padding: 16px; }
.p-6    { padding: 20px; }
.p-7    { padding: 24px; }

.px-1   { padding-left: 4px; padding-right: 4px; }
.px-2   { padding-left: 7px; padding-right: 7px; }
.px-3   { padding-left: 10px; padding-right: 10px; }
.px-4   { padding-left: 12px; padding-right: 12px; }
.px-5   { padding-left: 14px; padding-right: 14px; }
.px-6   { padding-left: 16px; padding-right: 16px; }
.px-7   { padding-left: 18px; padding-right: 18px; }
.px-8   { padding-left: 20px; padding-right: 20px; }
.px-9   { padding-left: 24px; padding-right: 24px; }

.py-1   { padding-top: 2px;  padding-bottom: 2px; }
.py-2   { padding-top: 3px;  padding-bottom: 3px; }
.py-3   { padding-top: 7px;  padding-bottom: 7px; }
.py-4   { padding-top: 8px;  padding-bottom: 8px; }
.py-5   { padding-top: 9px;  padding-bottom: 9px; }
.py-6   { padding-top: 10px; padding-bottom: 10px; }
.py-7   { padding-top: 12px; padding-bottom: 12px; }
.py-8   { padding-top: 13px; padding-bottom: 13px; }
.py-9   { padding-top: 16px; padding-bottom: 16px; }
.py-10  { padding-top: 20px; padding-bottom: 20px; }

.pt-1   { padding-top: 12px; }
.pt-2   { padding-top: 14px; }

.pb-1   { padding-bottom: 14px; }

/* ─────────────────────────────────────────
   MARGIN
───────────────────────────────────────── */
.m-0       { margin: 0; }
.m-auto    { margin: auto; }
.mx-auto   { margin-left: auto; margin-right: auto; }

.mb-0   { margin-bottom: 0; }
.mb-1   { margin-bottom: 2px; }
.mb-2   { margin-bottom: 4px; }
.mb-3   { margin-bottom: 6px; }
.mb-4   { margin-bottom: 8px; }
.mb-5   { margin-bottom: 10px; }
.mb-6   { margin-bottom: 12px; }
.mb-7   { margin-bottom: 14px; }
.mb-8   { margin-bottom: 16px; }
.mb-9   { margin-bottom: 18px; }
.mb-10  { margin-bottom: 1rem; }
.mb-11  { margin-bottom: 1.5rem; }
.mb-12  { margin-bottom: 2rem; }
.mb-13  { margin-bottom: 3rem; }
.mb-14  { margin-bottom: 20px; }
.mb-15  { margin-bottom: 24px; }

.mt-1   { margin-top: 2px; }
.mt-2   { margin-top: 4px; }
.mt-3   { margin-top: 6px; }
.mt-4   { margin-top: 8px; }
.mt-5   { margin-top: 1rem; }
.mt-6   { margin-top: 1.5rem; }

.mr-1   { margin-right: 4px; }

/* ─────────────────────────────────────────
   SIZING
───────────────────────────────────────── */
.w-full     { width: 100%; }
.w-auto     { width: auto; }
.h-full     { height: 100%; }
.min-w-0    { min-width: 0; }
.min-w-200  { min-width: 200px; }
.min-w-240  { min-width: 240px; }
.min-w-300  { min-width: 300px; }
.max-w-560  { max-width: 560px; margin-left: auto; margin-right: auto; }
.max-w-900  { max-width: 900px; margin-left: auto; margin-right: auto; }
.max-w-480  { max-width: 480px; }

/* Icon boxes: size variants */
.icon-box     { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-box-sm  { width: 28px; height: 28px; border-radius: 50%; font-size: 12px; }
.icon-box-md  { width: 32px; height: 32px; border-radius: 50%; font-size: 13px; font-weight: 700; }
.icon-box-lg  { width: 40px; height: 40px; border-radius: 10px; font-size: 18px; }
.icon-box-xl  { width: 44px; height: 44px; border-radius: 10px; font-size: 20px; margin-bottom: 14px; }
.icon-box-2xl { width: 80px; height: 80px; border-radius: 10px; font-size: 2.2rem; }

/* Publication card thumbnail */
.pub-thumb      { border-radius: 10px; height: 120px; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; margin-bottom: 14px; }
/* Bulletin card cover */
.bul-cover      { border-radius: 12px; width: 90px; height: 110px; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; font-size: 2rem; }

/* ─────────────────────────────────────────
   BACKGROUND COLORS
───────────────────────────────────────── */
.bg-green-pale  { background: #e8f5e9; }
.bg-blue-pale   { background: #e3f2fd; }
.bg-orange-pale { background: #fff3e0; }
.bg-pink-pale   { background: #fce4ec; }
.bg-purple-pale { background: #f3e5f5; }
.bg-cyan-pale   { background: #e0f7fa; }
.bg-gray-pale   { background: #f0f7f3; }
.bg-white       { background: var(--white); }
.bg-green-dark  { background: var(--green-dark); }
.bg-green-accent{ background: var(--green-accent); }
.bg-gold        { background: var(--gold); }
.bg-gray-200    { background: #eee; }
.bg-progress    { background: #40916c; height: 100%; border-radius: 4px; }

/* ─────────────────────────────────────────
   TEXT COLOR
───────────────────────────────────────── */
.text-primary    { color: var(--text-primary); }
.text-secondary  { color: var(--text-secondary); }
.text-muted      { color: var(--text-muted); }
.text-green      { color: var(--green-accent); }
.text-green-dark { color: var(--green-dark); }
.text-gold       { color: #7a5c00; }
.text-white      { color: white; }
.text-white-50   { color: rgba(255,255,255,0.5); }
.text-orange     { color: var(--orange); }

/* ─────────────────────────────────────────
   FONT SIZE
───────────────────────────────────────── */
.fs-10  { font-size: 10px; }
.fs-11  { font-size: 11px; }
.fs-12  { font-size: 12px; }
.fs-13  { font-size: 13px; }
.fs-14  { font-size: 14px; }
.fs-15  { font-size: 15px; }
.fs-16  { font-size: 16px; }
.fs-xl  { font-size: 2rem; }
.fs-2xl { font-size: 2.2rem; }
.fs-3xl { font-size: 2.5rem; }
.fs-4xl { font-size: 2.8rem; }

/* ─────────────────────────────────────────
   FONT WEIGHT
───────────────────────────────────────── */
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ─────────────────────────────────────────
   LINE HEIGHT
───────────────────────────────────────── */
.lh-13  { line-height: 1.3; }
.lh-135 { line-height: 1.35; }
.lh-16  { line-height: 1.6; }
.lh-165 { line-height: 1.65; }

/* ─────────────────────────────────────────
   TEXT ALIGN
───────────────────────────────────────── */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

/* ─────────────────────────────────────────
   TEXT DECORATION
───────────────────────────────────────── */
.no-underline  { text-decoration: none; }

/* ─────────────────────────────────────────
   LETTER SPACING
───────────────────────────────────────── */
.ls-wide { letter-spacing: 1px; }

/* ─────────────────────────────────────────
   BORDER RADIUS
───────────────────────────────────────── */
.rounded-sm  { border-radius: 4px; }
.rounded     { border-radius: 6px; }
.rounded-md  { border-radius: 8px; }
.rounded-lg  { border-radius: 10px; }
.rounded-xl  { border-radius: 12px; }
.rounded-2xl { border-radius: 14px; }
.rounded-full{ border-radius: 50%; }
.rounded-pill{ border-radius: 100px; }

/* ─────────────────────────────────────────
   BORDER
───────────────────────────────────────── */
.border          { border: 1px solid var(--border); }
.border-top      { border-top: 1px solid var(--border); }
.border-bottom   { border-bottom: 1px solid var(--border); }
.border-0        { border: none; }

/* ─────────────────────────────────────────
   OVERFLOW
───────────────────────────────────────── */
.overflow-hidden { overflow: hidden; }

/* ─────────────────────────────────────────
   POSITION
───────────────────────────────────────── */
.position-relative { position: relative; }
.position-absolute { position: absolute; }

/* ─────────────────────────────────────────
   CURSOR
───────────────────────────────────────── */
.cursor-pointer { cursor: pointer; }

/* ─────────────────────────────────────────
   TRANSITION
───────────────────────────────────────── */
.transition-fast { transition: all .15s; }

/* ─────────────────────────────────────────
   PROGRESS BAR
───────────────────────────────────────── */
.progress-track {
  background: #eee;
  border-radius: 4px;
  height: 6px;
  overflow: hidden;
}
.progress-bar {
  background: #40916c;
  height: 100%;
  border-radius: 4px;
}
.progress-bar-gold { background: var(--gold); }

/* ─────────────────────────────────────────
   DIVIDER ROW (border-bottom + padding)
───────────────────────────────────────── */
.row-divider {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.row-divider-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

/* ─────────────────────────────────────────
   TIMELINE (status-klhs)
───────────────────────────────────────── */
.timeline-row    { display: flex; gap: 14px; margin-bottom: 14px; }
.timeline-col    { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.timeline-line   { width: 2px; flex: 1; background: var(--border); }
.timeline-dot    { display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 12px; flex-shrink: 0; }
.timeline-dot-green  { width: 28px; height: 28px; background: var(--green-dark); }
.timeline-dot-gold   { width: 28px; height: 28px; background: var(--gold); }
.timeline-dot-gray   { width: 28px; height: 28px; background: #eee; }
.timeline-body   { padding-bottom: 14px; }

/* ─────────────────────────────────────────
   SIDEBAR FILTER LINK (peraturan)
───────────────────────────────────────── */
.filter-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  color: var(--text-secondary);
  transition: all .15s;
  margin-bottom: 2px;
}
.filter-link.active {
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 600;
}
.filter-link-badge {
  background: #eee;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 10px;
}

/* ─────────────────────────────────────────
   CARD ACTION ROW (border-top + flex + gap)
───────────────────────────────────────── */
.card-actions {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.card-actions-lg {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ─────────────────────────────────────────
   FORM TOOLBAR (search + filter bar)
───────────────────────────────────────── */
.form-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.form-toolbar-end {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ─────────────────────────────────────────
   SURVEY HEADER BANNER
───────────────────────────────────────── */
.survey-banner {
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.survey-banner-green  { background: #e8f5e9; }
.survey-banner-blue   { background: #e3f2fd; }
.survey-banner-orange { background: #fff3e0; }

/* ─────────────────────────────────────────
   PAGINATION ROW
───────────────────────────────────────── */
.pagination-row {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}
.pagination-btn {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  color: var(--text-secondary);
}
.pagination-btn-active {
  padding: 6px 12px;
  background: var(--green-dark);
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
}

/* ─────────────────────────────────────────
   MISC HELPERS
───────────────────────────────────────── */
.img-center  { display: block; margin: auto; width: 50%; }
.flex-end-row { display: flex; gap: 12px; justify-content: flex-end; margin-top: 6px; }
.btn-no-border { border: none; cursor: pointer; }
.section-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 12px; }
.contact-info-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 20px; }
.meta-label { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.meta-value-lg { font-size: 15px; font-weight: 700; margin-bottom: 14px; color: var(--green-dark); }
.meta-value    { font-size: 14px; font-weight: 500; margin-bottom: 10px; }
.sidebar-panel { width: 220px; flex-shrink: 0; }
.content-panel { flex: 1; min-width: 300px; }

/* ─────────────────────────────────────────
   PADDING — extended
───────────────────────────────────────── */
.p-10x0   { padding: 10px 0; }
.p-7x0    { padding: 7px 0; }
.p-7x14   { padding: 7px 14px; }
.p-7x12   { padding: 7px 12px; }
.p-8x14   { padding: 8px 14px; }
.p-9x14   { padding: 9px 14px; }
.p-9x18   { padding: 9px 18px; }
.p-6x12   { padding: 6px 12px; }
.p-2x7    { padding: 2px 7px; }
.p-12x16  { padding: 12px 16px; }
.p-13     { padding: 13px; }
.p-14x18  { padding: 14px 18px; }
.p-16x20  { padding: 16px 20px; }

.pb-14    { padding-bottom: 14px; }

/* ─────────────────────────────────────────
   MARGIN — extended
───────────────────────────────────────── */
.mt-10    { margin-top: 2rem; }

/* ─────────────────────────────────────────
   GRID COLUMNS — extended
───────────────────────────────────────── */
.grid-cols-2-1    { grid-template-columns: 2fr 1fr; }
.grid-cols-1-2    { grid-template-columns: 1fr 2fr; }
.grid-cols-1-1-5  { grid-template-columns: 1fr 1.5fr; }

/* ─────────────────────────────────────────
   SIZING — extended
───────────────────────────────────────── */
.w-50pct     { width: 50%; }
.w-220       { width: 220px; }
.min-h-150   { min-height: 150px; }

/* ─────────────────────────────────────────
   BACKGROUND — extended
───────────────────────────────────────── */
.bg-orange   { background: var(--orange); }

/* ─────────────────────────────────────────
   COLOR — white
───────────────────────────────────────── */
.text-white-solid { color: #fff; }

/* ─────────────────────────────────────────
   ICON BOX — step/badge circle (32px, 28px)
───────────────────────────────────────── */
.icon-box-step {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
  background: var(--green-dark);
  color: #fff;
}
.timeline-dot-sm-green { width: 28px; height: 28px; background: #1a3d2b; }
.timeline-dot-sm-gold  { width: 28px; height: 28px; background: #e9b44c; }
.timeline-dot-sm-gray  { width: 28px; height: 28px; background: #eee; }

/* ─────────────────────────────────────────
   PROGRESS BAR — width variants
───────────────────────────────────────── */
.progress-92 { width: 92%; }
.progress-89 { width: 89%; }
.progress-87 { width: 87%; }
.progress-74 { width: 74%; }

/* ─────────────────────────────────────────
   SIDEBAR — fixed-width panel
───────────────────────────────────────── */
.sidebar-220 { width: 220px; flex-shrink: 0; }

/* ─────────────────────────────────────────
   FILTER BADGE (count pill in sidebar)
───────────────────────────────────────── */
.filter-badge {
  background: #eee;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 10px;
}

/* ════════════════════════════════════════════════
   KOMPONEN HALAMAN — INFOGRAFIS
   ════════════════════════════════════════════════ */

/* Modal lightbox infografis */
.inf-modal-inner {
  width: min(980px, 96vw);
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  animation: scaleLightbox .32s cubic-bezier(0.34,1.56,0.64,1) both;
}
.inf-modal-header {
  padding: 18px 24px 16px;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inf-modal-cat {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  background: rgba(116,198,157,.2);
  border: 1px solid rgba(116,198,157,.35);
  color: var(--green-light);
  padding: 3px 10px; border-radius: 100px;
  width: fit-content;
}
.inf-modal-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600; color: white;
  line-height: 1.3; margin: 0;
}
.inf-modal-body { background: #e8e8e8; }

.inf-tableau-ratio {
  position: relative;
  width: 100%; padding-top: 62.5%;
}
.inf-tableau-ratio iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

/* Card thumbnail — infografis */
.inf-thumb {
  width: 100%; height: 160px;
  border-radius: 10px; overflow: hidden;
  margin-bottom: 16px;
  background: var(--green-pale);
  position: relative;
}
.inf-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
  display: block;
}
.inf-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(13,74,58,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.inf-thumb-overlay svg {
  opacity: 0; transform: scale(.8);
  transition: opacity .25s, transform .25s;
  color: white;
}
.card:hover .inf-thumb img          { transform: scale(1.05); }
.card:hover .inf-thumb-overlay      { background: rgba(13,74,58,.45); }
.card:hover .inf-thumb-overlay svg  { opacity: 1; transform: scale(1); }
.card.inf-hidden                    { display: none; }

@media (max-width: 600px) {
  .inf-modal-inner  { border-radius: 12px; }
  .inf-modal-header { padding: 14px 16px 12px; }
}

/* ════════════════════════════════════════════════
   KOMPONEN HALAMAN — VIDEOGRAFIS
   ════════════════════════════════════════════════ */

/* Video thumbnail card */
.vid-thumb {
  width: 100%; height: 160px;
  border-radius: 10px; overflow: hidden;
  margin-bottom: 14px;
  background: #1a1a2e;
  position: relative; flex-shrink: 0;
}
.vid-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .35s;
}
.vid-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.18);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.play-circle {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: scale(.85);
  transition: transform .25s var(--ease-bounce), background .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.play-circle svg { fill: var(--green-dark); margin-left: 3px; }
.vid-thumb .vid-duration {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(0,0,0,.72); color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 3px 7px; border-radius: 4px;
  letter-spacing: .3px;
}
.card:hover .vid-thumb img                 { transform: scale(1.05); }
.card:hover .vid-thumb-overlay             { background: rgba(0,0,0,.35); }
.card:hover .vid-thumb-overlay .play-circle{ transform: scale(1); background: var(--gold); }
.card:hover .vid-thumb-overlay .play-circle svg { fill: var(--green-dark); }
.card.vid-hidden { display: none; }

/* YouTube modal — videografis */
.maklumat-lightbox .yt-modal-inner {
  width: min(900px, 96vw);
  background: white; border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  animation: scaleLightbox .32s var(--ease-bounce) both;
}
.yt-modal-header {
  padding: 18px 24px 16px;
  background: var(--green-dark);
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 12px;
}
.yt-modal-header-text { flex: 1; }
.yt-modal-cat {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  background: rgba(116,198,157,.2);
  border: 1px solid rgba(116,198,157,.35);
  color: var(--green-light);
  padding: 3px 10px; border-radius: 100px;
  margin-bottom: 8px; width: fit-content;
}
.yt-modal-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(.95rem, 2.2vw, 1.3rem);
  font-weight: 600; color: white;
  line-height: 1.3; margin: 0;
}
.yt-modal-body { background: #000; }

/* YouTube preview */
.yt-preview-wrap {
  position: relative; width: 100%;
  padding-top: 56.25%;
  cursor: pointer; background: #000; overflow: hidden;
}
.yt-preview-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s, filter .3s;
}
.yt-preview-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.38);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; transition: background .25s;
}
.yt-preview-wrap:hover .yt-preview-img     { transform: scale(1.03); filter: brightness(.85); }
.yt-preview-wrap:hover .yt-preview-overlay { background: rgba(0,0,0,.52); }

.yt-big-play {
  width: 72px; height: 72px;
  background: #FF0000; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(0,0,0,.45);
  transition: transform .25s var(--ease-bounce), background .2s;
}
.yt-preview-wrap:hover .yt-big-play { transform: scale(1.12); background: #cc0000; }

.yt-preview-hint {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.9);
  font-size: 13px; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: rgba(0,0,0,.45);
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  transition: background .2s;
}
.yt-preview-wrap:hover .yt-preview-hint { background: rgba(0,0,0,.65); }

/* Search + filter bar */
.vid-toolbar {
  display: flex; gap: 10px;
  flex-wrap: wrap; align-items: center;
  margin-bottom: 10px;
}
.vid-search-wrap {
  position: relative; flex: 1; min-width: 220px;
}
.vid-search-wrap svg {
  position: absolute; left: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted); pointer-events: none;
}
.vid-search-wrap input {
  width: 100%;
  padding: 9px 14px 9px 36px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; color: var(--text-primary);
  background: white; outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.vid-search-wrap input:focus {
  border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(64,145,108,.1);
}

@media (max-width: 600px) {
  .yt-modal-inner  { border-radius: 12px; }
  .yt-modal-header { padding: 14px 16px 12px; }
}

/* ════════════════════════════════════════════════
   KOMPONEN HALAMAN — INDEX (YouTube lightbox)
   ════════════════════════════════════════════════ */

.btn-video { gap: 8px; }

.yt-lb-wrap {
  width: min(860px, 94vw);
  animation: scaleLightbox .32s var(--ease-bounce) both;
}
.yt-lb-ratio {
  position: relative; width: 100%;
  padding-top: 56.25%;
  border-radius: 14px; overflow: hidden;
  background: #000;
  box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 24px 80px rgba(0,0,0,.65);
}
.yt-lb-ratio iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

/* ════════════════════════════════════════════════
   HELPERS — MISSING
   ════════════════════════════════════════════════ */

/* .row: horizontal flex layout */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* .drawer-sub wrapper */
.drawer-sub { padding-left: 0; }

/* .nav-brand-text: nav brand text block */
.nav-brand-text { display: flex; flex-direction: column; }

/* footer brand block */
.footer-brand { display: flex; flex-direction: column; }

/* Residual survei max-width */
.u-surveid3tlh-036 { max-width: 900px; margin: 0 auto; }

/* ════════════════════════════════════════════════
   MAKLUMAT DUAL — 2 maklumat berdampingan
   ════════════════════════════════════════════════ */

.maklumat-dual-card { padding: 32px 36px; }

.maklumat-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0 24px;
}

.maklumat-dual-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Tahun badge di atas gambar */
.maklumat-year-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(116,198,157,.15);
  border: 1px solid rgba(116,198,157,.3);
  color: var(--green-light);
  padding: 4px 12px;
  border-radius: 100px;
}

.maklumat-year-badge--new {
  background: rgba(233,180,76,.18);
  border-color: rgba(233,180,76,.4);
  color: var(--gold);
}

/* Override maklumat-wrapper agar proporsional di dalam grid */
.maklumat-dual-item .maklumat-wrapper {
  margin: 0;
  height: 100%;
}

.maklumat-dual-item .maklumat-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  border-radius: 14px;
  display: block;
}

/* Responsive — stack di layar kecil */
@media (max-width: 768px) {
  .maklumat-dual-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .maklumat-dual-item .maklumat-wrapper img {
    height: 200px;
  }
  .maklumat-dual-card { padding: 24px 20px; }
}

/* ════════════════════════════════════════════════
   HCARD LOGO — BerAKHLAK + Bangga Melayani
   (card ke-5 di hero-right, span 2 kolom)
   ════════════════════════════════════════════════ */





/* ════════════════════════════════════════════════
   LOGO PARTNERS SECTION — BerAKHLAK · Bangga Melayani · ZI-WBK
   ════════════════════════════════════════════════ */

.logo-partners-section {
  background: #f7f9f5;
  padding: 72px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logo-partners-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Judul — ukuran h3 */
.logo-partners-title {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: -.4px;
  margin-bottom: 6px;
}

.logo-partners-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 52px;
}

.logo-partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  padding: 0 48px;
}

.logo-partners-divider {
  width: 1px;
  height: 130px;
  background: var(--border);
  flex-shrink: 0;
}

/* Base */
.lp-img {
  display: block;
  object-fit: contain;
  transition: transform .3s, opacity .3s;
}
.lp-img:hover {
  transform: scale(1.05);
  opacity: .85;
}

/* BerAKHLAK — 1280×488 → rasio 2.623:1 */
.lp-berakhlak {
  height: 110px;
  width: auto;
  aspect-ratio: 1280 / 488;
  mix-blend-mode: multiply;
}

/* Bangga Melayani — 2279×996 → rasio 2.288:1 */
.lp-bangga {
  height: 130px;
  width: auto;
  aspect-ratio: 2279 / 996;
  mix-blend-mode: multiply;
}

/* ZI-WBK — 300×226 → rasio 1.327:1 */
.lp-ziwbk {
  height: 130px;
  width: auto;
  aspect-ratio: 300 / 226;
}

.logo-partner-caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* Responsive — tablet */
@media (max-width: 1024px) {
  .logo-partners-section { padding: 56px 32px; }
  .logo-partner-item { padding: 0 28px; }
  .lp-berakhlak { height: 90px; }
  .lp-bangga    { height: 108px; }
  .lp-ziwbk     { height: 108px; }
  .logo-partners-divider { height: 110px; }
}

/* Responsive — mobile */
@media (max-width: 640px) {
  .logo-partners-section { padding: 48px 24px; }
  .logo-partners-grid { flex-direction: column; gap: 40px; }
  .logo-partners-divider { width: 64px; height: 1px; }
  .logo-partner-item { padding: 0; }
  .lp-berakhlak { height: 64px; }
  .lp-bangga    { height: 80px; }
  .lp-ziwbk     { height: 80px; }
}
