:root{
  --navy:#12294d;
  --blue-accent:#1a6fd6;
  --link-blue:#1656a8;
  --btn-bg:#eaf4fb;
  --btn-bg-hover:#d7ecf9;
  --border:#e3e6ea;
  --text-dark:#1f2937;
  --text-muted:#5b6572;
  --bg:#f5f6f8;
}
*{box-sizing:border-box;}
body{
  margin:0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text-dark);
  padding-top:65px;
}

body{
  height:100%;
  margin:0;
}

body{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.page-content{
  flex:1;
}
/* Header */
header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid #e5e7eb;
  z-index:9999;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}
.header-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 32px;
  flex-wrap:wrap;
  gap:12px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand .logo{
  width:46px;height:46px;
  border-radius:50%;
  background:radial-gradient(circle at 35% 35%, #2c6fb0, #0c1f3f 75%);
  flex-shrink:0;
}
.brand-text h1{
  font-size:22px;
  margin:0;
  font-weight:700;
  color:var(--navy);
  line-height:1.2;
}
.brand-text small{
  font-size:11px;
  color:var(--text-muted);
  letter-spacing:.5px;
}
nav.mainnav{
  display:flex;
  align-items:center;
  gap:28px;
}
nav.mainnav a{
  text-decoration:none;
  color:var(--navy);
  font-weight:600;
  font-size:14px;
  letter-spacing:.5px;
  padding:8px 4px;
}
nav.mainnav a.active{
  border:1px solid var(--navy);
  border-radius:20px;
  padding:8px 20px;
}
.header-badges{
  display:flex;
  align-items:center;
  gap:16px;
}
.header-badges .badge{
  font-size:11px;
  color:var(--text-muted);
  text-align:right;
  line-height:1.3;
}
.header-badges .badge b{
  display:block;
  color:var(--blue-accent);
  font-size:14px;
}

/* Layout katalog */
.layout{
  display:flex;
  max-width:1500px;
  margin:0 auto;
  align-items:flex-start;
}
aside{
  width:230px;
  background:var(--bg);
  padding:28px 20px;
  flex-shrink:0;
}
aside h2{
  font-size:14px;
  color:var(--text-muted);
  font-weight:600;
  margin-bottom:20px;
}
.filter-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 0;
  color:var(--navy);
  font-size:15px;
  font-weight:500;
  cursor:pointer;
}
.filter-item .icon{
  width:20px;text-align:center;
  color:var(--text-muted);
}

main{
  flex:1;
  padding:28px 32px 60px;
  min-width:0;
}

.search-box{
  max-width:700px;
  margin:0 auto 28px;
}
.search-box form{
  position:relative;
}
.search-box input[type="text"]{
  width:100%;
  padding:14px 46px 14px 18px;
  border-radius:8px;
  border:1px solid var(--border);
  background:#fff;
  font-size:15px;
  color:var(--text-dark);
  outline:none;
}
.search-box input::placeholder{color:#9aa3ad;}
.search-box button{
  position:absolute;
  right:8px;top:50%;
  transform:translateY(-50%);
  border:none;
  background:none;
  color:var(--text-muted);
  font-size:18px;
  cursor:pointer;
  padding:8px;
}
.card-thumb{
  height:195px;
  overflow:hidden;
  display:block;
  background:#eee;
}


.card-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.3s ease;
}


.card-thumb:hover img{
  transform:scale(1.08);
}
.filters{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:32px;
}
.MuiSvgIcon-root{
  color: #0d47a1;
}
.MuiSvgIcon-root path{
  fill: currentColor;
}
.chip{
  border:1px solid var(--border);
  background:#fff;
  padding:10px 22px;
  border-radius:22px;
  font-size:14px;
  font-weight:500;
  color:var(--text-dark);
  text-decoration:none;
  transition:.15s;
  display:inline-block;
}
.chip.active{
  background:#e9eaec;
  border-color:#d4d6d9;
}
.chip:hover{border-color:var(--blue-accent);}

.grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}
@media (max-width:1200px){ .grid{grid-template-columns:repeat(3,1fr);} }
@media (max-width:900px){ .grid{grid-template-columns:repeat(2,1fr);} aside{display:none;} }
@media (max-width:600px){ .grid{grid-template-columns:1fr;} .header-top{padding:14px 16px;} main{padding:20px 16px;} }

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:6px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:box-shadow .15s, transform .15s;
}
.card:hover{
  box-shadow:0 6px 18px rgba(20,40,80,.08);
  transform:translateY(-2px);
}
.card-thumb{
  height:170px;
  display:block;
  background-size:cover;
  background-position:center;
  background-color:#f0f1f3;
  cursor:pointer;
  border-bottom:1px solid var(--border);
}
.card-body{
  padding:16px 18px 4px;
  flex:1;
}
.card-body a.title{
  color:var(--link-blue);
  font-weight:700;
  font-size:16px;
  text-decoration:none;
  line-height:1.3;
  display:block;
  margin-bottom:8px;
}
.card-body a.title:hover{text-decoration:underline;}
.card-body p{
  font-size:13.5px;
  color:var(--text-muted);
  line-height:1.5;
  margin:0 0 16px;
}
.card-footer{
  border-top:1px solid var(--border);
}
.card-footer a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px;
  background:var(--btn-bg);
  color:var(--link-blue);
  text-decoration:none;
  font-weight:700;
  font-size:13.5px;
  letter-spacing:.4px;
}
.card-footer a:hover{background:var(--btn-bg-hover);}
.card-footer svg{width:16px;height:16px;flex-shrink:0;}

.empty-state{
  text-align:center;
  color:var(--text-muted);
  padding:60px 20px;
  font-size:15px;
}

/* ============ BERANDA ============ */
.hero-slider{
  position:relative;
  overflow:hidden;
  color:#fff;
  margin-top:10px;
}
.hero-slide{
  display:none;
  padding:70px 32px;
  text-align:center;
}
.hero-slide.active{display:block;}
.hero-slide .eyebrow{
  font-size:12.5px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#ffe3ad;
  font-weight:700;
  margin-bottom:14px;
}
.hero-slide h2{
  font-size:32px;
  margin:0 0 14px;
  font-weight:800;
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.3;
}
.hero-slide p{
  max-width:640px;
  margin:0 auto 26px;
  font-size:16px;
  color:#dbe6f5;
  line-height:1.7;
}
.hero-slide .btn{
  display:inline-block;
  background:#fff;
  color:var(--navy);
  font-weight:700;
  padding:12px 26px;
  border-radius:6px;
  text-decoration:none;
  font-size:14px;
}
.hero-slide .btn:hover{background:var(--btn-bg-hover);}
.hero-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  padding-bottom:22px;
}
.hero-dots button{
  width:9px;height:9px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.4);
  cursor:pointer;
  padding:0;
}
.hero-dots button.active{
  background:#fff;
  width:22px;
  border-radius:5px;
}
.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,.15);
  border:none;
  color:#fff;
  width:38px;height:38px;
  border-radius:50%;
  cursor:pointer;
  font-size:18px;
  display:flex;align-items:center;justify-content:center;
}
.hero-arrow:hover{background:rgba(255,255,255,.28);}
.hero-arrow.prev{left:18px;}
.hero-arrow.next{right:18px;}
@media (max-width:600px){ .hero-arrow{display:none;} }

.home-section{
  max-width:1400px;
  margin:0 auto;
  padding:10px 32px 40px;
}
.home-section .eyebrow{
  text-align:center;
  color:var(--blue-accent);
  font-weight:700;
  letter-spacing:1.5px;
  font-size:12.5px;
  text-transform:uppercase;
  margin-bottom:10px;
}
.home-section h3.title{
  text-align:center;
  font-size:26px;
  font-weight:800;
  color:var(--navy);
  margin:0 0 40px;
}
.home-section .desc-text{
  max-width: 820px;
  margin: 0 auto 18px;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
}
.home-section .desc-text strong{
  color: var(--navy);
}

.highlight-row{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.highlight-item{
  display: flex;
  align-items: center;
  gap: 10px;
  background: #E6F1FB;
  border: 1px solid #85B7EB;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #0C447C;
}
.highlight-num{
  font-size: 16px;
}
.layanan-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
@media (max-width:900px){ .layanan-grid, .tugas-grid, .berita-grid{grid-template-columns:1fr;} }
.layanan-card, .tugas-card, .berita-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  padding:28px 24px;
  text-align:center;
}
.layanan-card .icon-circle, .tugas-card .icon-circle{
  width:52px;height:52px;
  border-radius:50%;
  background:var(--btn-bg);
  color:var(--blue-accent);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 16px;
  font-size:20px;
  font-weight:700;
}
.layanan-card h4, .tugas-card h4{
  color:var(--navy);
  font-size:16px;
  margin:0 0 10px;
}
.layanan-card p, .tugas-card p{
  color:var(--text-muted);
  font-size:13.5px;
  line-height:1.6;
  margin:0 0 16px;
}
.layanan-card a.link-more{
  color:var(--link-blue);
  font-weight:700;
  font-size:13px;
  text-decoration:none;
}

.tugas-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.berita-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.berita-card{
  text-align:left;
  padding:0;
  overflow:hidden;
}
.berita-thumb{
  height:130px;
  background:linear-gradient(135deg,#dfe7f3,#c3d2e8);
}
.berita-body{padding:20px;}
.berita-body .tanggal{
  font-size:11.5px;
  color:var(--blue-accent);
  font-weight:700;
  letter-spacing:.4px;
  margin-bottom:8px;
}
.berita-body h4{
  font-size:15.5px;
  color:var(--navy);
  margin:0 0 10px;
  line-height:1.4;
}
.berita-body p{
  font-size:13.5px;
  color:var(--text-muted);
  line-height:1.6;
  margin:0 0 14px;
}
.berita-body a{
  font-size:13px;
  font-weight:700;
  color:var(--link-blue);
  text-decoration:none;
}

.home-footer{
  background:var(--navy);
  color:#cfd9ea;
  padding:44px 32px 24px;
}
.home-footer .footer-inner{
  max-width:1400px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:24px;
}
.home-footer h5{
  color:#fff;
  font-size:14px;
  margin:0 0 12px;
}
.home-footer p{
  font-size:13px;
  line-height:1.8;
  margin:0;
  color:#cfd9ea;
}
.home-footer .bottom{
  text-align:center;
  font-size:12px;
  color:#8fa0bf;
  margin-top:30px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.1);
}
/* Footer Minimal */

.sik-footer{
  background:#172d5c;
  width:100%;
  margin:0;
  padding:0;
}

.sik-footer-copy{
  text-align:center;
  color:#cbd3e3;
  padding:20px;
  font-size:15px;
}

/* ============ DETAIL BERITA ============ */
.breadcrumb{
  max-width:900px;
  margin:0 auto;
  padding:22px 32px 0;
  font-size:13px;
  color:var(--text-muted);
}
.breadcrumb a{color:var(--link-blue); text-decoration:none;}
.detail-berita{
  max-width:900px;
  margin:0 auto;
  padding:24px 32px 70px;
}
.detail-berita .tanggal{
  font-size:12.5px;
  color:var(--blue-accent);
  font-weight:700;
  letter-spacing:.5px;
  margin-bottom:10px;
}
.detail-berita h1{
  font-size:28px;
  color:var(--navy);
  margin:0 0 22px;
  line-height:1.35;
}
.detail-berita .cover{
  height:280px;
  border-radius:10px;
  background:linear-gradient(135deg,#dfe7f3,#c3d2e8);
  margin-bottom:28px;
}
.detail-berita .isi p{
  font-size:15.5px;
  line-height:1.9;
  color:var(--text-dark);
  margin:0 0 18px;
}
.detail-berita .kembali{
  display:inline-block;
  margin-top:20px;
  color:var(--link-blue);
  font-weight:700;
  font-size:14px;
  text-decoration:none;
}
.not-found{
  max-width:700px;
  margin:0 auto;
  padding:80px 32px;
  text-align:center;
  color:var(--text-muted);
}
