/* PDSI Gresik – Government Portal Style */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

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

:root {
  --biru-tua: #003366;
  --biru-sedang: #004d99;
  --biru-muda: #0066cc;
  --biru-terang: #e8f0fb;
  --merah: #cc0000;
  --hijau: #006633;
  --abu-gelap: #333333;
  --abu-sedang: #666666;
  --abu-muda: #999999;
  --abu-latar: #f0f2f5;
  --putih: #ffffff;
  --border: #cccccc;
  --border-tua: #999999;
  --kuning: #f5a623;
}

body {
  font-family: Arial, 'Open Sans', sans-serif;
  font-size: 13px;
  color: var(--abu-gelap);
  background-color: var(--abu-latar);
  line-height: 1.5;
}
a { color: var(--biru-sedang); text-decoration: none; }
a:hover { color: var(--merah); text-decoration: underline; }
img { max-width: 100%; }

/* ===== TOPBAR ===== */
.topbar {
  background-color: #00264d;
  color: #b0c8e8;
  padding: 5px 0;
  font-size: 11px;
  border-bottom: 1px solid #001a36;
}
.topbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left { display: flex; align-items: center; gap: 16px; }
.tb-item { display: flex; align-items: center; gap: 5px; }
.tb-lbl { color: #7aa8d8; font-size: 10px; text-transform: uppercase; letter-spacing: 0.3px; }
.tb-val { color: #ddeeff; font-weight: 600; }
.tb-sep { color: #335577; margin: 0 4px; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-right a { color: #8abadc; font-size: 11px; }
.topbar-right a:hover { color: var(--kuning); text-decoration: none; }
.topbar-right .sep { color: #335577; }

/* ===== HEADER ===== */
.header {
  background-color: var(--putih);
  border-bottom: 3px solid var(--biru-tua);
  padding: 14px 0;
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-logo-block { display: flex; align-items: center; gap: 14px; }
.logo-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, var(--biru-tua), var(--biru-sedang));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--putih);
  border: 3px solid var(--biru-tua);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.header-name { border-left: 4px solid var(--biru-tua); padding-left: 14px; }
.header-name .org-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--biru-tua);
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.header-name .org-full { font-size: 13px; color: var(--abu-sedang); margin-top: 3px; }
.header-name .org-wilayah { font-size: 12px; color: var(--biru-sedang); font-weight: 600; margin-top: 1px; }
.header-right-block { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.header-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--abu-sedang);
  border: 1px solid var(--border);
  padding: 3px 10px;
  background: #f7f9fc;
}
.badge-dot { width: 8px; height: 8px; background: var(--hijau); border-radius: 50%; flex-shrink: 0; }
.header-search-form { display: flex; align-items: stretch; border: 1px solid var(--border-tua); }
.header-search-form input {
  width: 200px;
  padding: 5px 8px;
  font-size: 12px;
  border: none;
  outline: none;
  font-family: Arial, sans-serif;
}
.header-search-form button {
  padding: 5px 14px;
  background-color: var(--biru-tua);
  color: var(--putih);
  border: none;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: Arial, sans-serif;
}
.header-search-form button:hover { background-color: var(--biru-sedang); }

/* ===== NAVBAR ===== */
.navbar {
  background-color: var(--biru-tua);
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 2px solid var(--kuning);
}
.navbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 12px;
}
.nav-menu { list-style: none; display: flex; margin: 0; padding: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--putih);
  padding: 10px 11px;
  font-size: 11px;
  font-weight: 700;
  border-right: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.nav-menu > li:first-child > a { border-left: 1px solid rgba(255,255,255,0.12); }
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  background-color: var(--biru-sedang);
  color: var(--kuning);
  text-decoration: none;
}
.nav-menu > li > a.active { background-color: #002244; }
.nav-arrow { font-size: 8px; opacity: 0.7; }

/* DROPDOWN */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--putih);
  border: 1px solid var(--border);
  border-top: 3px solid var(--biru-tua);
  min-width: 240px;
  z-index: 600;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.18);
}
.nav-menu > li:hover .dropdown { display: block; }
.dropdown li { border-bottom: 1px solid #f0f0f0; }
.dropdown li:last-child { border-bottom: none; }
.dropdown .dd-header {
  background-color: #f0f5ff;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 700;
  color: var(--biru-sedang);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #d0e0f5;
}
.dropdown li a {
  display: block;
  padding: 8px 14px 8px 22px;
  font-size: 12px;
  color: var(--abu-gelap);
  position: relative;
}
.dropdown li a::before {
  content: '›';
  position: absolute;
  left: 10px;
  color: var(--biru-sedang);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  top: 7px;
}
.dropdown li a:hover {
  background-color: var(--biru-terang);
  color: var(--biru-tua);
  text-decoration: none;
  font-weight: 600;
}

/* ===== RUNNING TEXT ===== */
.running-text {
  background-color: #002244;
  color: var(--kuning);
  padding: 4px 0;
  overflow: hidden;
  font-size: 11.5px;
  font-weight: 600;
  border-bottom: 1px solid #001533;
}
.running-text-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
}
.running-label {
  background-color: var(--merah);
  color: var(--putih);
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  margin-right: 12px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.marquee-wrap { overflow: hidden; flex: 1; }
.marquee-text {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background-color: #f5f8fc;
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}
.breadcrumb-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 11px;
}
.breadcrumb-inner a { color: var(--biru-sedang); font-size: 11px; }
.breadcrumb-inner a:hover { color: var(--merah); text-decoration: underline; }
.breadcrumb-inner .bc-sep { color: #bbb; }
.breadcrumb-inner .bc-current { color: var(--abu-gelap); font-weight: 600; }

/* ===== MAIN LAYOUT ===== */
.main-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 12px;
}
.content-area { display: flex; gap: 10px; align-items: flex-start; }
.content-main { flex: 1; min-width: 0; }
.sidebar { width: 240px; flex-shrink: 0; }

/* ===== BOX ===== */
.box {
  background-color: var(--putih);
  border: 1px solid var(--border);
  margin-bottom: 10px;
}
.box-header {
  background: linear-gradient(90deg, var(--biru-tua) 0%, #004080 100%);
  color: var(--putih);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 2px solid var(--kuning);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.box-header-secondary {
  background-color: #e8f0fb;
  color: var(--biru-tua);
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  border-bottom: 1px solid #c8d8f0;
  text-transform: uppercase;
}
.box-body { padding: 8px 10px; }
.box-footer {
  background-color: #f7f9fc;
  border-top: 1px solid var(--border);
  padding: 5px 10px;
  font-size: 11px;
  text-align: right;
}

/* ===== BANNER ===== */
.banner-area {
  background-color: var(--biru-tua);
  position: relative;
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--border);
  margin-bottom: 10px;
}
.banner-slide { display: none; width: 100%; height: 100%; position: absolute; top: 0; left: 0; }
.banner-slide.active { display: flex; align-items: center; justify-content: center; }
.banner-content { text-align: center; color: var(--putih); padding: 20px; }
.banner-content h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }
.banner-content p { font-size: 13px; color: #c8d8f0; }
.banner-bg-1 { background: linear-gradient(135deg, #003366, #006699); }
.banner-bg-2 { background: linear-gradient(135deg, #006633, #009944); }
.banner-bg-3 { background: linear-gradient(135deg, #660000, #990033); }
.banner-controls { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.banner-dot { width: 10px; height: 10px; background: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.7); cursor: pointer; }
.banner-dot.active { background: var(--kuning); }

/* ===== NEWS LIST ===== */
.news-list { list-style: none; }
.news-list li { padding: 7px 0; border-bottom: 1px dashed var(--border); display: flex; gap: 8px; }
.news-list li:last-child { border-bottom: none; }
.news-date {
  background-color: var(--biru-tua);
  color: var(--putih);
  padding: 3px 6px;
  font-size: 10px;
  white-space: nowrap;
  align-self: flex-start;
  flex-shrink: 0;
  text-align: center;
  min-width: 52px;
}
.news-date .day { display: block; font-size: 17px; font-weight: 700; line-height: 1; }
.news-date .month { display: block; font-size: 10px; }
.news-date .year { display: block; font-size: 10px; }
.news-info a { font-size: 12px; font-weight: 600; color: var(--biru-tua); display: block; line-height: 1.4; }
.news-info a:hover { color: var(--merah); text-decoration: underline; }
.news-info .news-cat { font-size: 10px; color: var(--merah); font-weight: 600; margin-top: 2px; }

/* ===== AGENDA ===== */
.agenda-list { list-style: none; }
.agenda-list li { padding: 5px 0; border-bottom: 1px dashed var(--border); font-size: 12px; }
.agenda-list li:last-child { border-bottom: none; }
.agenda-list .agenda-date { color: var(--merah); font-weight: 600; font-size: 11px; }

/* ===== STATS ===== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 10px; }
.stat-box {
  background-color: var(--putih);
  border: 1px solid var(--border);
  border-top: 3px solid var(--biru-tua);
  padding: 10px 8px;
  text-align: center;
}
.stat-box.merah { border-top-color: var(--merah); }
.stat-box.hijau { border-top-color: var(--hijau); }
.stat-box.kuning { border-top-color: #cc8800; }
.stat-number { font-size: 24px; font-weight: 700; color: var(--biru-tua); display: block; }
.stat-box.merah .stat-number { color: var(--merah); }
.stat-box.hijau .stat-number { color: var(--hijau); }
.stat-box.kuning .stat-number { color: #cc8800; }
.stat-label { font-size: 11px; color: var(--abu-sedang); margin-top: 3px; }

/* ===== QUICK ACCESS ===== */
.quick-access {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--border);
  margin-bottom: 10px;
}
.quick-item {
  background-color: var(--putih);
  padding: 10px 6px;
  text-align: center;
  font-size: 11px;
  color: var(--biru-tua);
  font-weight: 600;
  cursor: pointer;
  border: none;
  display: block;
  text-decoration: none;
}
.quick-item:hover { background-color: var(--biru-terang); text-decoration: none; }
.quick-item .qi-icon { display: block; font-size: 22px; margin-bottom: 4px; }

/* ===== TABLE ===== */
.tbl-gov { width: 100%; border-collapse: collapse; font-size: 12px; }
.tbl-gov th {
  background-color: var(--biru-tua);
  color: var(--putih);
  padding: 6px 8px;
  text-align: left;
  border: 1px solid #336699;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
}
.tbl-gov td { padding: 5px 8px; border: 1px solid var(--border); vertical-align: top; }
.tbl-gov tr:nth-child(even) td { background-color: #f5f8fc; }
.tbl-gov tr:hover td { background-color: var(--biru-terang); }

/* ===== SIDEBAR MENU ===== */
.sidebar-menu { list-style: none; border: 1px solid var(--border); background-color: var(--putih); margin-bottom: 10px; }
.sidebar-menu-header {
  background: linear-gradient(90deg, var(--biru-tua), #004080);
  color: var(--putih);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 700;
  border-bottom: 2px solid var(--kuning);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.sidebar-menu li a {
  display: block;
  padding: 6px 10px 6px 18px;
  font-size: 12px;
  color: var(--biru-tua);
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.sidebar-menu li a::before { content: '›'; position: absolute; left: 8px; color: var(--biru-sedang); font-weight: 700; }
.sidebar-menu li a:hover, .sidebar-menu li a.active { background-color: var(--biru-terang); text-decoration: none; color: var(--merah); }

/* ===== LINK LIST ===== */
.link-list { list-style: none; }
.link-list li { padding: 5px 0; border-bottom: 1px dashed var(--border); font-size: 11px; padding-left: 12px; position: relative; }
.link-list li::before { content: '▶'; position: absolute; left: 0; color: var(--biru-sedang); font-size: 9px; }
.link-list li:last-child { border-bottom: none; }

/* ===== DOWNLOAD LIST ===== */
.download-list { list-style: none; }
.download-list li { padding: 8px 10px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; font-size: 12px; }
.download-list li:last-child { border-bottom: none; }
.download-icon { font-size: 22px; flex-shrink: 0; }
.download-info { flex: 1; }
.download-info .doc-title { font-weight: 600; color: var(--biru-tua); }
.download-info .doc-meta { font-size: 11px; color: var(--abu-sedang); }
.download-btn { padding: 4px 10px; background-color: var(--biru-tua); color: var(--putih); font-size: 11px; white-space: nowrap; flex-shrink: 0; }
.download-btn:hover { background-color: var(--biru-sedang); text-decoration: none; color: var(--putih); }

/* ===== ALERTS ===== */
.notice-box { border: 1px solid; padding: 8px 10px; font-size: 12px; margin-bottom: 10px; }
.notice-box.info { background-color: #e8f0fb; border-color: #0066cc; color: #003366; }
.notice-box.warning { background-color: #fff8e1; border-color: #cc9900; color: #665000; }
.notice-box.success { background-color: #e6f4ec; border-color: #006633; color: #003d1f; }

/* ===== PAGE TITLE ===== */
.page-title-bar {
  background: linear-gradient(90deg, var(--biru-tua) 0%, #004080 100%);
  color: var(--putih);
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px solid var(--kuning);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== CONTENT TEXT ===== */
.content-text { font-size: 13px; line-height: 1.7; }
.content-text p { margin-bottom: 10px; }
.content-text h3 { font-size: 13px; color: var(--biru-tua); font-weight: 700; margin: 12px 0 6px; padding-bottom: 4px; border-bottom: 1px solid var(--border); text-transform: uppercase; }
.content-text ul { padding-left: 20px; margin-bottom: 10px; }
.content-text ul li { margin-bottom: 4px; }

.divider { border: none; border-top: 1px solid var(--border); margin: 8px 0; }

/* ===== FORM ===== */
.form-gov label { display: block; font-size: 12px; font-weight: 600; color: var(--abu-gelap); margin-bottom: 3px; }
.form-gov input,
.form-gov select,
.form-gov textarea {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid var(--border-tua);
  font-size: 12px;
  font-family: Arial, sans-serif;
  background-color: var(--putih);
  margin-bottom: 10px;
}
.form-gov input:focus,
.form-gov select:focus,
.form-gov textarea:focus { outline: none; border-color: var(--biru-sedang); background-color: var(--biru-terang); }
.form-gov textarea { height: 100px; resize: vertical; }
.btn-gov { padding: 7px 18px; background-color: var(--biru-tua); color: var(--putih); border: none; font-size: 12px; font-weight: 700; cursor: pointer; font-family: Arial, sans-serif; text-transform: uppercase; }
.btn-gov:hover { background-color: var(--biru-sedang); }
.btn-merah { background-color: var(--merah); }
.btn-hijau { background-color: var(--hijau); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-group { margin-bottom: 8px; }

/* ===== ORG CHART ===== */
.org-chart { width: 100%; overflow-x: auto; }
.org-level { display: flex; justify-content: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.org-box { background-color: var(--biru-tua); color: var(--putih); padding: 8px 12px; text-align: center; border: 1px solid var(--biru-sedang); min-width: 140px; font-size: 11px; }
.org-box .nama { font-weight: 700; font-size: 12px; }
.org-box .jabatan { color: var(--kuning); font-size: 10px; margin-top: 2px; }
.org-box.secondary { background-color: var(--biru-sedang); }
.org-connector { text-align: center; color: var(--biru-tua); font-size: 18px; margin-bottom: 5px; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.gallery-item { aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--border); position: relative; }
.gallery-item .gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.7); color: var(--putih); padding: 4px 6px; font-size: 10px; display: none; }
.gallery-item:hover .gallery-caption { display: block; }

/* ===== FOOTER ===== */
.footer {
  background-color: #001f3f;
  color: #9ab8d8;
  margin-top: 20px;
  border-top: 4px solid var(--kuning);
}
.footer-top { padding: 24px 0 18px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-top-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 12px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 24px;
}
.footer-col h4 {
  color: var(--kuning);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(245,166,35,0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col p { font-size: 11px; line-height: 1.7; color: #8abadc; }
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 3px 0; font-size: 11px; border-bottom: 1px dashed rgba(255,255,255,0.07); display: flex; align-items: baseline; gap: 4px; }
.footer-col ul li a { color: #8abadc; font-size: 11px; }
.footer-col ul li a:hover { color: var(--kuning); text-decoration: none; }
.footer-col ul li::before { content: '›'; color: var(--kuning); font-weight: 700; font-size: 13px; flex-shrink: 0; }

.footer-org-block { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.footer-logo {
  width: 54px;
  height: 54px;
  background: linear-gradient(145deg, #003366, #004d99);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--putih);
  border: 2px solid rgba(245,166,35,0.5);
  flex-shrink: 0;
}
.footer-org-name .fn-main { font-size: 14px; font-weight: 700; color: var(--putih); }
.footer-org-name .fn-sub { font-size: 10px; color: #7090b0; margin-top: 1px; }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.07);
  font-size: 11px;
}
.footer-contact-row:last-child { border-bottom: none; }
.fc-label { color: var(--kuning); font-weight: 700; font-size: 10px; min-width: 36px; flex-shrink: 0; text-transform: uppercase; }
.fc-value { color: #8abadc; }
.fc-value a { color: #8abadc; }
.fc-value a:hover { color: var(--kuning); text-decoration: none; }

.footer-bottom { background-color: #001228; padding: 9px 0; }
.footer-bottom-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #55748a;
}

/* ===== VISI BOX ===== */
.visi-box {
  background: linear-gradient(135deg, #e8f0fb 0%, #d0e4f8 100%);
  border: 2px solid var(--biru-sedang);
  border-left: 5px solid var(--biru-tua);
  padding: 14px 16px;
  margin-bottom: 10px;
}
.visi-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--biru-tua);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.visi-teks {
  font-size: 14px;
  font-style: italic;
  color: var(--biru-tua);
  font-weight: 600;
  line-height: 1.6;
}

/* ===== ORG HIERARCHY ===== */
.org-hierarchy { padding: 8px 0; text-align: center; }
.hier-level { display: flex; justify-content: center; margin-bottom: 4px; }
.hier-level-row { display: flex; justify-content: center; gap: 8px; margin-bottom: 4px; flex-wrap: wrap; }
.hier-box {
  border: 1px solid var(--border);
  padding: 10px 16px;
  text-align: center;
  max-width: 480px;
  width: 100%;
}
.hier-box.pusat { background: linear-gradient(90deg, var(--biru-tua), #004080); border-color: var(--biru-tua); color: var(--putih); }
.hier-box.wilayah { background: linear-gradient(90deg, var(--biru-sedang), #0066cc); border-color: var(--biru-sedang); color: var(--putih); }
.hier-box.komisariat { background: #e8f0fb; border-color: var(--biru-sedang); max-width: 220px; }
.hier-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; }
.hier-sub { font-size: 10px; opacity: 0.8; margin-top: 2px; }
.hier-desc { font-size: 10px; margin-top: 4px; opacity: 0.9; }
.hier-box.komisariat .hier-title { color: var(--biru-tua); }
.hier-box.komisariat .hier-sub { color: var(--abu-sedang); opacity: 1; }
.hier-arrow { font-size: 20px; color: var(--biru-sedang); line-height: 1.2; }

/* ===== BANNER TAG ===== */
.banner-tag {
  display: inline-block;
  background-color: var(--kuning);
  color: #333;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ===== SAMBUTAN ===== */
.sambutan-wrap { display: flex; gap: 16px; align-items: flex-start; }
.sambutan-photo { flex-shrink: 0; text-align: center; width: 110px; }
.photo-placeholder {
  width: 90px;
  height: 110px;
  background-color: #e8f0fb;
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  color: #aaa;
}
.sambutan-nama { font-size: 11px; color: var(--biru-tua); line-height: 1.4; }
.sambutan-teks { flex: 1; min-width: 0; }

/* ===== PENGUMUMAN LIST ===== */
.pengumuman-list { list-style: none; }
.pengumuman-list li { padding: 7px 10px; border-bottom: 1px solid #f0f0f0; font-size: 12px; }
.pengumuman-list li:last-child { border-bottom: none; }
.pengumuman-list li a { color: var(--biru-tua); font-weight: 600; display: block; margin-top: 2px; line-height: 1.4; }
.pengumuman-list li a:hover { color: var(--merah); text-decoration: underline; }
.peng-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 2px; }
.peng-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--putih);
}
.peng-badge.merah { background-color: var(--merah); }
.peng-badge.biru { background-color: var(--biru-sedang); }
.peng-badge.hijau { background-color: var(--hijau); }
.peng-badge.kuning { background-color: #aa7700; }
.peng-tgl { font-size: 10px; color: var(--abu-sedang); }

/* ===== SIDEBAR SERVICE LIST ===== */
.sidebar-service-list { list-style: none; }
.sidebar-service-list li { border-bottom: 1px solid #f0f0f0; }
.sidebar-service-list li:last-child { border-bottom: none; }
.sidebar-service-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  font-size: 12px;
  color: var(--biru-tua);
  font-weight: 600;
}
.sidebar-service-list li a:hover { background-color: var(--biru-terang); text-decoration: none; color: var(--merah); }
.sl-icon { font-size: 14px; flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .content-area { flex-direction: column; }
  .sidebar { width: 100%; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .quick-access { grid-template-columns: repeat(2, 1fr); }
  .footer-top-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .header-name .org-name { font-size: 17px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-menu > li > a { padding: 10px 8px; font-size: 10px; }
}
@media (max-width: 600px) {
  .topbar-right { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-top-inner { grid-template-columns: 1fr; }
  .logo-circle { width: 60px; height: 60px; font-size: 26px; }
  .header-right-block { display: none; }
}
