/* Satpol PP Kota Tertib — style.css */
:root {
  --navy: #1a237e;
  --navy-dark: #0d1257;
  --navy-mid: #283593;
  --navy-light: #3949ab;
  --yellow: #ffcc02;
  --yellow-dark: #e6b800;
  --bg: #f0f2ff;
  --bg-card: #ffffff;
  --text: #1a1a2e;
  --text-muted: #5c6073;
  --border: #c5cae9;
  --success: #2e7d32;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(26,35,126,0.10);
  --shadow-lg: 0 6px 30px rgba(26,35,126,0.15);
}

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

html { scroll-behavior: smooth; }

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

/* ========== DEMO BAR ========== */
.demo-bar {
  background: var(--yellow);
  color: #1a1a2e;
  text-align: center;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.demo-bar a {
  color: var(--navy);
  text-decoration: underline;
  margin: 0 4px;
}

/* ========== HEADER / NAV ========== */
.site-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 36px;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.header-top {
  background: var(--navy-dark);
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.logo-emblem {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.header-title h1 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--yellow);
  line-height: 1.2;
}
.header-title p {
  font-size: 11px;
  opacity: 0.8;
  font-weight: 400;
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}
.nav-links a {
  display: block;
  padding: 14px 16px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
  border-bottom: 3px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,204,2,0.12);
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

/* Checkbox mobile menu */
#menu-toggle { display: none; }
.menu-label {
  display: none;
  cursor: pointer;
  padding: 12px 0;
  color: #fff;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  height: 2px;
  background: #fff;
  border-radius: 2px;
  display: block;
  transition: transform 0.3s;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: #fff;
  padding: 70px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,204,2,0.03) 0px,
    rgba(255,204,2,0.03) 1px,
    transparent 1px,
    transparent 20px
  );
}
.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero h2 {
  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,0.3);
}
.hero h2 span { color: var(--yellow); }
.hero p {
  font-size: 16px;
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto 28px;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  padding: 11px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
  background: transparent;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ========== STAT BAR ========== */
.stat-bar {
  background: var(--navy-mid);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 18px 10px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.stat-label { font-size: 11px; opacity: 0.75; margin-top: 4px; }

/* ========== CONTAINER ========== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ========== SECTION ========== */
section { padding: 60px 20px; }
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.section-title p { color: var(--text-muted); max-width: 540px; margin: 0 auto; }
.section-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--navy), var(--yellow));
  border-radius: 2px;
  margin: 10px auto 0;
}

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

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid var(--navy);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Service cards */
.svc-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 4px solid transparent;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.svc-card:hover { transform: translateY(-3px); border-color: var(--yellow); box-shadow: var(--shadow-lg); }
.svc-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-icon svg { width: 32px; height: 32px; fill: none; stroke: #fff; stroke-width: 2; }
.svc-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.svc-card p { font-size: 13px; color: var(--text-muted); }

/* News cards */
.news-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.news-thumb {
  height: 140px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.news-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 16px
  );
}
.news-thumb svg { width: 48px; height: 48px; fill: rgba(255,255,255,0.3); z-index: 1; }
.news-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  z-index: 2;
}
.news-body { padding: 16px; }
.news-meta { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.news-body h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.news-body p { font-size: 13px; color: var(--text-muted); }
.news-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.news-link:hover { color: var(--yellow-dark); text-decoration: underline; }

/* ========== ANNOUNCEMENT ========== */
.annc-section { background: var(--navy-dark); color: #fff; padding: 50px 20px; }
.annc-section .section-title h2 { color: var(--yellow); }
.annc-section .section-title p { color: rgba(255,255,255,0.7); }
.annc-list { list-style: none; max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.annc-item {
  background: rgba(255,255,255,0.06);
  border-left: 4px solid var(--yellow);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.annc-date {
  background: var(--yellow);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.annc-text { font-size: 14px; line-height: 1.5; }
.annc-num { font-size: 11px; opacity: 0.6; margin-top: 3px; }

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  color: #fff;
  padding: 50px 20px 40px;
  text-align: center;
}
.page-hero h2 { font-size: clamp(20px, 4vw, 32px); font-weight: 800; color: var(--yellow); margin-bottom: 8px; }
.page-hero p { font-size: 15px; opacity: 0.85; max-width: 540px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb {
  background: var(--navy);
  padding: 10px 20px;
  font-size: 12px;
}
.breadcrumb a { color: var(--yellow); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.6); margin: 0 6px; }
.breadcrumb strong { color: rgba(255,255,255,0.9); }

/* ========== PROFIL ========== */
.profile-section { padding: 60px 20px; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.profile-text h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.profile-text p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 12px; }

.visi-misi { background: var(--navy-dark); color: #fff; padding: 50px 20px; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 900px; margin: 0 auto; }
.vm-box { background: rgba(255,255,255,0.08); border-radius: var(--radius); padding: 28px 24px; border-top: 4px solid var(--yellow); }
.vm-box h3 { font-size: 16px; font-weight: 700; color: var(--yellow); margin-bottom: 14px; }
.vm-box p, .vm-box li { font-size: 14px; opacity: 0.88; line-height: 1.7; }
.vm-box ul { list-style: none; padding: 0; }
.vm-box li { padding-left: 18px; position: relative; margin-bottom: 8px; }
.vm-box li::before { content: '▶'; position: absolute; left: 0; color: var(--yellow); font-size: 10px; top: 5px; }

/* Org chart */
.org-section { padding: 60px 20px; background: var(--bg); }
.org-chart { display: flex; flex-direction: column; align-items: center; gap: 0; max-width: 900px; margin: 0 auto; }
.org-top { display: flex; flex-direction: column; align-items: center; }
.org-box {
  background: var(--navy);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  min-width: 180px;
  position: relative;
  border-bottom: 3px solid var(--yellow);
}
.org-box span { display: block; font-size: 11px; font-weight: 400; opacity: 0.75; margin-top: 3px; }
.org-line {
  width: 2px;
  height: 24px;
  background: var(--navy-light);
}
.org-row { display: flex; gap: 20px; align-items: flex-start; justify-content: center; }
.org-branch { display: flex; flex-direction: column; align-items: center; }
.org-box-sm {
  background: var(--navy-light);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  min-width: 140px;
  border-bottom: 3px solid var(--yellow);
}
.org-box-sm span { display: block; font-size: 10px; font-weight: 400; opacity: 0.75; margin-top: 2px; }
.org-box-xs {
  background: #fff;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  min-width: 120px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
}

/* Pejabat */
.pejabat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.pejabat-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--navy);
}
.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.avatar svg { width: 36px; height: 36px; fill: rgba(255,255,255,0.8); }
.pejabat-card h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.pejabat-card .jabatan { font-size: 12px; color: var(--text-muted); }
.pejabat-card .nip { font-size: 11px; color: var(--text-muted); margin-top: 6px; }

/* ========== LAYANAN ========== */
.layanan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.layanan-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.layanan-head {
  background: var(--navy);
  color: #fff;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.layanan-head svg { width: 28px; height: 28px; stroke: var(--yellow); fill: none; stroke-width: 2; flex-shrink: 0; }
.layanan-head h3 { font-size: 14px; font-weight: 700; }
.layanan-body { padding: 18px 20px; }
.layanan-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.req-list { list-style: none; padding: 0; }
.req-list li {
  font-size: 12px;
  color: var(--text-muted);
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px solid var(--bg);
}
.req-list li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.badge-free {
  display: inline-block;
  background: #e8f5e9;
  color: var(--success);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 10px;
}

/* ========== BERITA ========== */
.berita-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1000px; margin: 0 auto; }

/* ========== PENGUMUMAN PAGE ========== */
.pengumuman-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.pengumuman-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 5px solid var(--navy);
  transition: border-color 0.2s;
}
.pengumuman-item:hover { border-color: var(--yellow); }
.pengumuman-date {
  background: var(--navy);
  color: #fff;
  border-radius: 5px;
  padding: 8px 12px;
  text-align: center;
  flex-shrink: 0;
  min-width: 56px;
}
.p-day { font-size: 22px; font-weight: 800; line-height: 1; color: var(--yellow); }
.p-mon { font-size: 11px; font-weight: 500; }
.pengumuman-content h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.pengumuman-content .p-num { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.pengumuman-content p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.tag-sk {
  display: inline-block;
  background: #e3f2fd;
  color: #0d47a1;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tag-perda { background: #fff3e0; color: #e65100; }
.tag-ops { background: #f3e5f5; color: #6a1b9a; }
.tag-pengumuman { background: #e8f5e9; color: #1b5e20; }

/* ========== KONTAK ========== */
.kontak-section { padding: 60px 20px; }
.kontak-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 980px; margin: 0 auto; }
.info-box { display: flex; flex-direction: column; gap: 18px; }
.info-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-left: 4px solid var(--navy);
}
.info-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; stroke: var(--yellow); fill: none; stroke-width: 2; }
.info-item h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.info-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.jam-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 8px; }
.jam-table td { padding: 5px 0; }
.jam-table td:last-child { text-align: right; color: var(--navy); font-weight: 600; }

/* Form */
.form-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.form-box h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.form-box p { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-note { font-size: 11px; color: var(--text-muted); margin-top: 10px; }
.btn-submit {
  background: var(--navy);
  color: var(--yellow);
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--navy-light); }

.alert-success {
  background: #e8f5e9;
  border: 1.5px solid #a5d6a7;
  color: var(--success);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  display: none;
  margin-top: 14px;
}

/* ========== FOOTER ========== */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 50px 20px 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; padding-bottom: 40px; }
.footer-brand h3 { color: var(--yellow); font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; line-height: 1.7; }
.footer-col h4 { color: var(--yellow); font-size: 13px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  max-width: 1100px;
  margin: 0 auto;
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mb-0 { margin-bottom: 0; }
.bg-white { background: #fff; }
.bg-navy { background: var(--navy); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .profile-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .pejabat-grid { grid-template-columns: repeat(2, 1fr); }
  .layanan-grid { grid-template-columns: repeat(2, 1fr); }
  .berita-grid { grid-template-columns: repeat(2, 1fr); }
  .kontak-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .org-row { flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .layanan-grid { grid-template-columns: 1fr; }
  .berita-grid { grid-template-columns: 1fr; }
  .pejabat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .menu-label { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--navy-dark);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 800;
    padding-bottom: 10px;
  }
  #menu-toggle:checked ~ .nav-links { display: flex; }
  nav { flex-wrap: wrap; position: relative; }
  .nav-links a { padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links a:hover { border-bottom-color: rgba(255,255,255,0.08); }
}
