* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --hijau: #0e7490;
  --hijau-muda: #0891b2;
  --hijau-terang: #22d3ee;
  --hijau-pucat: #cffafe;
  --emas: #e8b84b;
  --emas-muda: #f5d170;
  --emas-pucat: #fdf8ea;
  --coklat: #083344;
  --abu: #5a6a7e;
  --putih: #fff;
  --bg: #f0fbfe;
  --font-judul: 'Cinzel',serif;
  --font-isi: 'Source Sans 3',sans-serif;
  --shadow: 0 2px 16px rgba(14,116,144,.12);
  --r: 10px;
}
body {
  font-family: var(--font-isi);
  background: var(--bg);
  color: #222;
  line-height: 1.6;
}
a {
  color: #0891b2;
  text-decoration: none;
}
img {
  max-width: 100%;
}
/* NAVBAR */
.navbar {
  background: #0c6679;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--font-judul);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.nav-logo-emblem {
  width: 38px;
  height: 38px;
  background: var(--emas);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.nav-menu {
  display: flex;
  gap: .2rem;
  align-items: center;
  list-style: none;
}
.nav-menu li a,.nav-menu li button {
  color: rgba(255,255,255,.85);
  padding: .4rem .75rem;
  border-radius: 6px;
  font-size: .9rem;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-isi);
  transition: all .2s;
}
.nav-menu li a:hover,.nav-menu li button:hover,.nav-menu li a.active {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.nav-admin-btn {
  background: var(--emas)!important;
  color: var(--coklat)!important;
  font-weight: 600!important;
}
.nav-admin-btn:hover {
  background: var(--emas-muda)!important;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: .25rem;
}
.mobile-menu {
  display: none;
  background: #0c6679;
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: .3rem;
}
.mobile-menu a,.mobile-menu button {
  color: rgba(255,255,255,.85);
  padding: .5rem .75rem;
  border-radius: 6px;
  font-size: .95rem;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-isi);
  text-align: left;
  width: 100%;
}
.mobile-menu a:hover,.mobile-menu button:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}
@media(max-width:768px) {
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: block;
  }
}
.mobile-open {
  display: flex;
}
/* HERO */
.hero {
  background: linear-gradient(135deg,var(--hijau) 0%,#062f3c 100%);
  color: #fff;
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,.06)'/%3E%3C/svg%3E");
  opacity: .6;
}
.hero-content {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: var(--emas);
  color: var(--coklat);
  padding: .35rem 1.1rem;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero h1 {
  font-family: var(--font-judul);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.hero p {
  font-size: 1.1rem;
  opacity: .88;
  max-width: 560px;
  margin: 0 auto 1.8rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.hero-stat {
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-family: var(--font-judul);
  color: var(--emas-muda);
}
.hero-stat span {
  font-size: .82rem;
  opacity: .75;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hero-btn {
  display: inline-block;
  background: var(--emas);
  color: var(--coklat);
  padding: .7rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s;
  margin: .4rem;
}
.hero-btn:hover {
  background: var(--emas-muda);
  transform: translateY(-1px);
}
.hero-btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
}
.hero-btn-outline:hover {
  background: rgba(255,255,255,.12);
}
/* SECTION */
.section {
  padding: 4rem 1.5rem;
}
.section-alt {
  background: #f8fffe;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--font-judul);
  font-size: 2rem;
  color: #0e7490;
  margin-bottom: .4rem;
}
.section-sub {
  color: var(--abu);
  margin-bottom: 2.5rem;
  font-size: .95rem;
}
.section-divider {
  width: 50px;
  height: 3px;
  background: var(--emas);
  border-radius: 2px;
  margin: .6rem 0 2.5rem;
}
/* CARDS */
.cards {
  display: grid;
  gap: 1.5rem;
}
.cards-3 {
  grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
}
.cards-4 {
  grid-template-columns: repeat(auto-fill,minmax(240px,1fr));
}
.card {
  background: #fff;
  border-radius: var(--r);
  border: 1px solid #bae6fd;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s,box-shadow .2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(14,116,144,.15);
}
.card-img {
  height: 180px;
  background: var(--hijau-pucat);
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-body {
  padding: 1.2rem 1.3rem;
}
.card-tag {
  display: inline-block;
  background: #cffafe;
  color: #0e7490;
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 4px;
  margin-bottom: .6rem;
  text-transform: uppercase;
}
.card-title {
  font-family: var(--font-judul);
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: .5rem;
  line-height: 1.3;
}
.card-date {
  color: var(--abu);
  font-size: .8rem;
  margin-bottom: .5rem;
}
.card-text {
  color: #444;
  font-size: .9rem;
  line-height: 1.5;
}
.card-link {
  display: inline-block;
  color: #0e7490;
  font-size: .85rem;
  font-weight: 600;
  margin-top: .8rem;
}
.card-link:hover {
  text-decoration: underline;
}
/* BERITA DETAIL */
.berita-detail {
  max-width: 780px;
  margin: 0 auto;
}
.berita-detail img {
  width: 100%;
  border-radius: var(--r);
  margin: 1.2rem 0;
  max-height: 380px;
  object-fit: cover;
}
.berita-detail h1 {
  font-family: var(--font-judul);
  font-size: 2rem;
  color: #0e7490;
  margin-bottom: .5rem;
}
.berita-meta {
  color: var(--abu);
  font-size: .88rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.berita-isi {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
.berita-isi p {
  margin-bottom: 1rem;
}
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #0e7490;
  font-weight: 600;
  margin-bottom: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  font-size: .95rem;
  font-family: var(--font-isi);
}
.btn-back:hover {
  text-decoration: underline;
}
/* APARAT */
.aparat-card {
  background: #fff;
  border-radius: var(--r);
  border: 1px solid #bae6fd;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  text-align: center;
  transition: transform .2s;
}
.aparat-card:hover {
  transform: translateY(-3px);
}
.aparat-foto {
  width: 150px;
  height: 190px;
  border-radius: 20%;
  background: #cffafe;
  border: 3px solid #0e7490;
  margin: 0 auto .9rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #0e7490;
}
.aparat-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aparat-nama {
  font-family: var(--font-judul);
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: .25rem;
}
.aparat-jabatan {
  color: #0e7490;
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: .4rem;
}
.aparat-kontak {
  color: var(--abu);
  font-size: .82rem;
}
/* PROFIL */
.profil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media(max-width:700px) {
  .profil-grid {
    grid-template-columns: 1fr;
  }
}
.info-tabel {
  width: 100%;
  border-collapse: collapse;
}
.info-tabel tr td {
  padding: .55rem .8rem;
  font-size: .93rem;
  border-bottom: 1px solid #eee;
}
.info-tabel tr td:first-child {
  color: var(--abu);
  font-weight: 500;
  width: 45%;
}
.info-tabel tr td:last-child {
  font-weight: 600;
  color: #222;
}
.visi-misi-box {
  background: #ecfeff;
  border-left: 4px solid #0e7490;
  border-radius: 0 8px 8px 0;
  padding: 1.3rem 1.5rem;
  margin-top: 1.2rem;
}
.visi-misi-box h4 {
  font-family: var(--font-judul);
  color: #0e7490;
  margin-bottom: .5rem;
  font-size: 1rem;
}
.visi-misi-box p,.visi-misi-box ul {
  color: #333;
  font-size: .9rem;
  line-height: 1.6;
}
.visi-misi-box ul {
  padding-left: 1.2rem;
}
/* GALERI */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
  gap: 1rem;
}
.galeri-item {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--hijau-pucat);
  cursor: pointer;
  position: relative;
}
.galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.galeri-item:hover img {
  transform: scale(1.06);
}
.galeri-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,116,144,0);
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
}
.galeri-item:hover .galeri-overlay {
  background: rgba(14,116,144,.4);
  opacity: 1;
}
/* KONTAK */
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media(max-width:700px) {
  .kontak-grid {
    grid-template-columns: 1fr;
  }
}
.kontak-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.3rem;
}
.kontak-icon {
  width: 44px;
  height: 44px;
  background: #cffafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: #0e7490;
}
.kontak-label {
  font-size: .8rem;
  color: var(--abu);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: .1rem;
}
.kontak-value {
  color: #222;
  font-size: .95rem;
}
.kontak-map {
  background: var(--hijau-pucat);
  border-radius: var(--r);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0e7490;
  font-size: .95rem;
  border: 1px dashed #22d3ee;
}
.form-kontak label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: .3rem;
  margin-top: .9rem;
}
.form-kontak input,.form-kontak textarea {
  width: 100%;
  padding: .6rem .85rem;
  border: 1px solid #a5f3fc;
  border-radius: 7px;
  font-family: var(--font-isi);
  font-size: .9rem;
  background: #fff;
  transition: border .2s;
}
.form-kontak input:focus,.form-kontak textarea:focus {
  outline: none;
  border-color: #0e7490;
}
.form-kontak textarea {
  resize: vertical;
  min-height: 100px;
}
.btn-submit {
  margin-top: 1rem;
  background: #0e7490;
  color: #fff;
  padding: .65rem 1.6rem;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  font-family: var(--font-isi);
  transition: background .2s;
}
.btn-submit:hover {
  background: #0891b2;
}
/* SAMBUTAN */
.sambutan-box {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media(max-width:650px) {
  .sambutan-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.sambutan-foto {
  width: 180px;
  height: 220px;
  border-radius: var(--r);
  background: #cffafe;
  border: 3px solid #0e7490;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #0e7490;
  margin: 0 auto;
}
.sambutan-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sambutan-nama {
  font-family: var(--font-judul);
  font-size: 1.3rem;
  color: #0e7490;
  margin-bottom: .1rem;
}
.sambutan-jabatan {
  color: var(--emas);
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: .8rem;
}
.sambutan-teks {
  font-size: .95rem;
  color: #333;
  line-height: 1.75;
  font-style: italic;
}
.sambutan-teks::before {
  content: '"';
  font-size: 3rem;
  font-family: var(--font-judul);
  color: #a5f3fc;
  line-height: 0;
  vertical-align: -.6rem;
  margin-right: .15rem;
}
/* FOOTER */
.footer {
  background: #083344;
  color: rgba(255,255,255,.85);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}
@media(max-width:700px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer h4 {
  font-family: var(--font-judul);
  color: #fff;
  margin-bottom: .8rem;
  font-size: 1.1rem;
}
.footer p,.footer li {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
}
.footer ul {
  list-style: none;
}
.footer ul li {
  margin-bottom: .3rem;
}
.footer ul li a {
  color: rgba(255,255,255,.7);
}
.footer ul li a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1rem;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  max-width: 1100px;
  margin: 0 auto;
}
.footer-emas {
  color: var(--emas-muda);
}
/* ADMIN */
.admin-wrap {
  display: flex;
  min-height: 100vh;
  background: #ecfeff;
}
.admin-sidebar {
  width: 240px;
  background: #0c6679;
  color: #fff;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.admin-sidebar-logo {
  padding: 1.3rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
  font-family: var(--font-judul);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.admin-sidebar-logo span {
  font-size: 1.4rem;
}
.admin-nav {
  padding: 1rem 0;
  flex: 1;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .65rem 1.2rem;
  cursor: pointer;
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  transition: all .15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-isi);
}
.admin-nav-item:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.admin-nav-item.active {
  background: rgba(255,255,255,.18);
  color: #fff;
  font-weight: 600;
}
.admin-nav-item span {
  font-size: 1.1rem;
}
.admin-main {
  flex: 1;
  overflow: auto;
}
.admin-topbar {
  background: #fff;
  border-bottom: 1px solid #a5f3fc;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
}
.admin-topbar h2 {
  font-family: var(--font-judul);
  font-size: 1.3rem;
  color: #0e7490;
}
.admin-topbar-right {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.admin-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0e7490;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
}
.admin-content {
  padding: 1.5rem;
}
.admin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.admin-stat-card {
  background: #fff;
  border-radius: var(--r);
  padding: 1.2rem 1.3rem;
  border: 1px solid #a5f3fc;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.admin-stat-card .num {
  font-size: 2rem;
  font-family: var(--font-judul);
  color: #0e7490;
  font-weight: 700;
}
.admin-stat-card .lbl {
  font-size: .8rem;
  color: var(--abu);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .3px;
}
.admin-stat-card .icon {
  font-size: 1.5rem;
  margin-bottom: .4rem;
}
.admin-table-wrap {
  background: #fff;
  border-radius: var(--r);
  border: 1px solid #a5f3fc;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.admin-table-head {
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #a5f3fc;
}
.admin-table-head h3 {
  font-family: var(--font-judul);
  color: #0e7490;
  font-size: 1.05rem;
}
table {
  width: 100%;
  border-collapse: collapse;
}
thead tr {
  background: #ecfeff;
}
th {
  text-align: left;
  padding: .65rem 1rem;
  font-size: .8rem;
  color: var(--abu);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  border-bottom: 1px solid #a5f3fc;
}
td {
  padding: .65rem 1rem;
  font-size: .88rem;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}
tr:last-child td {
  border-bottom: none;
}
tr:hover td {
  background: #f0fdff;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .9rem;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font-isi);
  transition: all .15s;
}
.btn-primary {
  background: #0e7490;
  color: #fff;
}
.btn-primary:hover {
  background: #0891b2;
}
.btn-warning {
  background: #f59e0b;
  color: #fff;
}
.btn-warning:hover {
  background: #d97706;
}
.btn-danger {
  background: #ef4444;
  color: #fff;
}
.btn-danger:hover {
  background: #dc2626;
}
.btn-secondary {
  background: #e5e7eb;
  color: #374151;
}
.btn-secondary:hover {
  background: #d1d5db;
}
.btn-sm {
  padding: .3rem .6rem;
  font-size: .78rem;
}
/* MODAL/FORM */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal {
  background: #fff;
  border-radius: var(--r);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
}
.modal-head {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.modal-head h3 {
  font-family: var(--font-judul);
  color: #0e7490;
  font-size: 1.1rem;
}
.modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--abu);
  padding: .1rem .3rem;
}
.modal-close:hover {
  color: #333;
}
.modal-body {
  padding: 1.3rem 1.4rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: #444;
  margin-bottom: .35rem;
}
.form-control {
  width: 100%;
  padding: .55rem .85rem;
  border: 1px solid #a5f3fc;
  border-radius: 7px;
  font-size: .9rem;
  font-family: var(--font-isi);
  background: #fff;
}
.form-control:focus {
  outline: none;
  border-color: #0e7490;
  box-shadow: 0 0 0 2px rgba(14,116,144,.1);
}
textarea.form-control {
  resize: vertical;
  min-height: 90px;
}
.modal-footer {
  padding: .9rem 1.4rem;
  border-top: 1px solid #eee;
  display: flex;
  gap: .7rem;
  justify-content: flex-end;
}
/* LOGIN */
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,var(--hijau) 0%,#062f3c 100%);
  padding: 1rem;
}
.login-card {
  background: #fff;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 10px 50px rgba(0,0,0,.25);
}
.login-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}
.login-logo-emblem {
  width: 64px;
  height: 64px;
  background: #0e7490;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto .8rem;
}
.login-logo h2 {
  font-family: var(--font-judul);
  color: #0e7490;
  font-size: 1.3rem;
}
.login-logo p {
  color: var(--abu);
  font-size: .85rem;
}
.login-err {
  background: #fee2e2;
  color: #dc2626;
  border-radius: 7px;
  padding: .6rem 1rem;
  font-size: .85rem;
  margin-bottom: 1rem;
}
/* BADGE */
.badge {
  display: inline-block;
  padding: .15rem .5rem;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 600;
}
.badge-success {
  background: #d6eef7;
  color: #0c4a58;
}
.badge-info {
  background: #cffafe;
  color: #1d4ed8;
}
.badge-warn {
  background: #fef3c7;
  color: #92400e;
}
/* TOAST */
.toast {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  background: #0e7490;
  color: #fff;
  padding: .7rem 1.3rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  animation: slideIn .3s ease;
}
@keyframes slideIn {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* UTILS */
.text-center {
  text-align: center;
}
.mb-1 {
  margin-bottom: .5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.breadcrumb {
  color: var(--abu);
  font-size: .85rem;
  margin-bottom: 1.5rem;
}
.breadcrumb span {
  color: var(--abu);
}
.breadcrumb a {
  color: #0891b2;
}
.page-hero {
  background: linear-gradient(135deg,#0e7490 0%,#1a3a6e 100%);
  color: #fff;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-judul);
  font-size: 2.2rem;
  margin-bottom: .4rem;
}
.page-hero p {
  opacity: .82;
  font-size: .95rem;
}
.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--abu);
}
.empty-state .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: .4;
}
.search-bar {
  display: flex;
  gap: .7rem;
  margin-bottom: 1.2rem;
}
.search-bar input {
  flex: 1;
  padding: .55rem .85rem;
  border: 1px solid #a5f3fc;
  border-radius: 7px;
  font-size: .9rem;
  font-family: var(--font-isi);
}
.search-bar input:focus {
  outline: none;
  border-color: #0e7490;
}
@media(max-width:480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .admin-wrap {
    flex-direction: column;
  }
  .admin-sidebar {
    width: 100%;
    min-height: auto;
  }
  .admin-sidebar .admin-nav {
    display: flex;
    overflow-x: auto;
    padding: .5rem 0;
    -webkit-overflow-scrolling: touch;
  }
  .admin-nav-item {
    flex-shrink: 0;
    padding: .5rem .75rem;
    font-size: .82rem;
  }
  .admin-cards {
    grid-template-columns: 1fr 1fr;
  }
}