/* DPRD Kabupaten Harapan — style.css */
:root {
  --primary: #1a237e;
  --primary-dark: #0d1354;
  --primary-light: #3949ab;
  --accent: #c62828;
  --accent-light: #ef5350;
  --bg: #f5f5ff;
  --bg-card: #ffffff;
  --text: #1a1a2e;
  --text-muted: #5c5c7a;
  --border: #c5cae9;
  --gold: #f9a825;
  --shadow: 0 2px 12px rgba(26,35,126,0.10);
  --shadow-md: 0 4px 24px rgba(26,35,126,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }

/* ── DEMO BAR ── */
.demo-bar {
  background: #c62828;
  color: #fff;
  text-align: center;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  z-index: 1000;
  position: relative;
}
.demo-bar a { color: #ffe082; text-decoration: underline; margin: 0 6px; }

/* ── TOP STRIP ── */
.top-strip {
  background: var(--primary-dark);
  color: #c5cae9;
  font-size: 12px;
  padding: 4px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.top-strip a { color: #c5cae9; }

/* ── HEADER ── */
header {
  background: var(--primary);
  color: #fff;
  padding: 0;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 900;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 16px;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-emblem {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-text .instansi {
  font-size: 11px;
  color: #c5cae9;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.logo-text .nama {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .01em;
}
.logo-text .sub {
  font-size: 11px;
  color: #90caf9;
  font-weight: 500;
}

/* ── NAV CHECKBOX HACK ── */
#nav-toggle { display: none; }
.nav-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-label span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
}
nav ul li a {
  color: #e8eaf6;
  padding: 7px 12px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  display: block;
  transition: background .2s, color .2s;
}
nav ul li a:hover, nav ul li a.active {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-label { display: flex; }
  nav { width: 100%; }
  nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--primary-dark);
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  nav ul li a { border-radius: 0; padding: 10px 20px; font-size: 15px; }
  #nav-toggle:checked ~ nav ul { display: flex; }
  .header-inner { flex-wrap: wrap; padding: 10px 16px; }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #283593 100%);
  color: #fff;
  padding: 60px 20px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 20px,
    rgba(255,255,255,.015) 20px, rgba(255,255,255,.015) 40px
  );
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(22px, 5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hero p {
  font-size: clamp(14px, 2.5vw, 18px);
  color: #c5cae9;
  max-width: 640px;
  margin: 0 auto 28px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.25); text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.1); }

/* ── HERO STATS ── */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.15);
  position: relative;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-item .lbl {
  font-size: 12px;
  color: #c5cae9;
  margin-top: 4px;
}

/* ── SECTIONS ── */
.section { padding: 56px 20px; }
.section-alt { background: #eef0fd; }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 36px; }
.section-header .label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 15px; }

/* ── CARD GRID ── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-4 { grid-template-columns: 1fr; } .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

/* ── SERVICE CARD ── */
.card {
  background: var(--bg-card);
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.card-icon svg { width: 28px; height: 28px; }
.svc-card { padding: 24px; }
.svc-card h3 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.svc-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.svc-card .card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

/* ── NEWS CARD ── */
.news-card { padding: 0; }
.news-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.news-card-img svg { opacity: .25; width: 80px; height: 80px; }
.news-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
}
.news-body { padding: 18px; }
.news-date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.news-body h3 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px; line-height: 1.35; }
.news-body p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.news-body a { font-size: 13px; font-weight: 600; color: var(--accent); margin-top: 10px; display: inline-block; }

/* ── PENGUMUMAN LIST ── */
.pengumuman-list { list-style: none; }
.pengumuman-list li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .2s;
}
.pengumuman-list li:hover { box-shadow: var(--shadow); }
.pengumuman-info h4 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.pengumuman-info span { font-size: 12px; color: var(--text-muted); }
.pengumuman-date { font-size: 12px; color: var(--text-muted); white-space: nowrap; }

/* ── AGENDA SIDANG ── */
.agenda-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 14px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}
.agenda-date-box {
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
  min-width: 60px;
  flex-shrink: 0;
}
.agenda-date-box .day { font-size: 22px; font-weight: 800; line-height: 1; }
.agenda-date-box .month { font-size: 11px; font-weight: 600; letter-spacing: .05em; }
.agenda-info h4 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.agenda-info p { font-size: 13px; color: var(--text-muted); }
.agenda-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 6px;
}

/* ── PIMPINAN / FRAKSI ── */
.pimpinan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 700px) { .pimpinan-grid { grid-template-columns: 1fr; } }
.pimpinan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}
.pimpinan-avatar {
  height: 120px;
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pimpinan-avatar svg { width: 60px; height: 60px; opacity: .7; }
.pimpinan-body { padding: 16px; }
.pimpinan-body h4 { font-size: 15px; font-weight: 700; color: var(--primary); }
.pimpinan-body .jabatan { font-size: 12px; color: var(--accent); font-weight: 600; margin: 4px 0; }
.pimpinan-body .partai { font-size: 12px; color: var(--text-muted); }

/* ── ORG CHART ── */
.org-chart { max-width: 700px; margin: 0 auto; }
.org-level { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 0; }
.org-node {
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  padding: 10px 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  position: relative;
  min-width: 140px;
}
.org-node.accent { background: var(--accent); }
.org-node.light { background: var(--primary-light); }
.org-connector {
  width: 2px;
  height: 24px;
  background: var(--border);
  margin: 0 auto;
}
.org-row { display: flex; flex-direction: column; align-items: center; }

/* ── VISI MISI ── */
.visi-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 28px;
  text-align: center;
}
.visi-box h3 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #90caf9; margin-bottom: 14px; }
.visi-box p { font-size: clamp(15px, 2.5vw, 19px); font-weight: 600; line-height: 1.55; }
.misi-list { list-style: none; }
.misi-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.misi-list li:last-child { border-bottom: none; }
.misi-num {
  width: 30px;
  height: 30px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.misi-text { font-size: 14px; line-height: 1.6; }

/* ── LAYANAN PAGE ── */
.layanan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .layanan-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .layanan-grid { grid-template-columns: 1fr; } }
.layanan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.layanan-card:hover { transform: translateY(-4px); }
.layanan-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.layanan-header svg { width: 36px; height: 36px; flex-shrink: 0; }
.layanan-header h3 { font-size: 15px; font-weight: 700; color: #fff; }
.layanan-body { padding: 18px; }
.layanan-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.55; }
.detail-list { list-style: none; }
.detail-list li {
  font-size: 13px;
  color: var(--text);
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f8;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.detail-list li:last-child { border-bottom: none; }
.detail-list li::before { content: '▸'; color: var(--accent); flex-shrink: 0; }
.layanan-biaya {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #f57f17;
  margin-top: 12px;
}

/* ── BERITA PAGE ── */
.berita-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .berita-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .berita-grid { grid-template-columns: 1fr; } }
.berita-big {
  grid-column: 1 / -1;
  display: flex;
  gap: 24px;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.berita-big-img {
  width: 340px;
  min-width: 200px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}
.berita-big-img svg { width: 80px; height: 80px; opacity: .25; }
.berita-big-body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.berita-big-body h2 { font-size: clamp(16px, 2.5vw, 22px); font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.berita-big-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 680px) {
  .berita-big { flex-direction: column; }
  .berita-big-img { width: 100%; height: 140px; }
}

/* ── PENGUMUMAN PAGE ── */
.pengumuman-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 14px;
}
.pengumuman-table th {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
}
.pengumuman-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.pengumuman-table tr:last-child td { border-bottom: none; }
.pengumuman-table tr:hover td { background: #f5f5ff; }
.badge-type {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
  white-space: nowrap;
}
.badge-sk { background: #e3f2fd; color: #1565c0; }
.badge-perda { background: #fce4ec; color: #880e4f; }
.badge-pengumuman { background: #e8f5e9; color: #2e7d32; }
.badge-surat { background: #fff3e0; color: #e65100; }

/* ── KONTAK PAGE ── */
.kontak-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 700px) { .kontak-grid { grid-template-columns: 1fr; } }
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.info-box h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.info-row svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.info-row div { font-size: 14px; }
.info-row .label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); margin-bottom: 2px; }
.jam-table { width: 100%; font-size: 13px; }
.jam-table tr td { padding: 5px 0; }
.jam-table tr td:last-child { text-align: right; font-weight: 600; color: var(--primary); }

/* ── FORM ── */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fafafe;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.btn-submit {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background .2s;
  font-family: inherit;
}
.btn-submit:hover { background: var(--primary-dark); }

/* ── FOOTER ── */
footer {
  background: var(--primary-dark);
  color: #c5cae9;
  padding: 48px 20px 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; max-width: 1100px; margin: 0 auto 32px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .nama { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; line-height: 1.6; color: #9fa8da; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: #9fa8da; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 20px;
  text-align: center;
  font-size: 12px;
  color: #7986cb;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 42px 20px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(20px, 4vw, 32px); font-weight: 800; margin-bottom: 8px; }
.page-hero p { font-size: 15px; color: #c5cae9; }
.breadcrumb { font-size: 12px; color: #9fa8da; margin-bottom: 12px; }
.breadcrumb a { color: #90caf9; }

/* ── SEJARAH PROFIL ── */
.sejarah-box {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.sejarah-box h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 3px solid var(--accent); display: inline-block; }
.sejarah-box p { font-size: 14px; color: var(--text); line-height: 1.8; margin-bottom: 12px; }

/* ── FRAKSI ── */
.fraksi-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 600px) { .fraksi-list { grid-template-columns: 1fr; } }
.fraksi-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 5px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.fraksi-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fraksi-icon svg { width: 24px; height: 24px; }
.fraksi-info h4 { font-size: 14px; font-weight: 700; color: var(--primary); }
.fraksi-info p { font-size: 12px; color: var(--text-muted); }

/* ── MAP PLACEHOLDER ── */
.map-placeholder {
  background: linear-gradient(135deg, #e8eaf6, #c5cae9);
  border-radius: 10px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
}
.map-placeholder svg { width: 40px; height: 40px; opacity: .5; }

/* ── ALERT / NOTICE ── */
.notice {
  background: #fff3e0;
  border: 1px solid #ffcc02;
  border-left: 5px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 13px;
  margin-bottom: 24px;
  color: #7f4f00;
}

/* ── PAGINATION ── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--primary);
  transition: background .2s;
}
.pagination a:hover { background: var(--primary); color: #fff; text-decoration: none; }
.pagination span { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── UTILS ── */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.font-bold { font-weight: 700; }
.divider { border: none; border-top: 1px solid var(--border); margin: 28px 0; }
