:root {
  --blue-900: #042e6b;
  --blue-800: #0649a1;
  --blue-700: #1a75bb;
  --blue-600: #00aeef;
  --cyan: #0fc7ff;
  --gold: #e8c547;
  --gold-soft: #c5e9ff;
  --cream: #eef6fb;
  --ink: #122033;
  --muted: #4d6073;
  --line: #d3e4f2;
  --white: #fff;
  --shadow: 0 16px 40px rgba(6, 73, 161, 0.14);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f5f9fd;
  line-height: 1.65;
}
a {
  color: var(--blue-700);
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--blue-900);
  color: #d7ecfb;
  font-size: 13px;
}
.topbar-inner,
.header-inner,
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-inner {
  min-height: 38px;
}
.topbar a {
  color: #d7ecfb;
}
.topbar-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
}

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 2px 16px rgba(6, 73, 161, 0.1);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  color: var(--ink);
}
.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #00aeef, #042e6b);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.4px;
  font-size: 13px;
  border: 3px solid var(--cyan);
}
.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.badge-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.badge {
  min-width: 70px;
  height: 42px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.4px;
  background: #fff;
}
.badge.wbk {
  color: #0649a1;
}
.badge.mutu {
  color: #8a1c1c;
}
.badge.ramah {
  color: #0a4d8c;
}

.nav {
  background: var(--blue-800);
}
.nav-inner {
  min-height: 52px;
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
  flex-wrap: wrap;
}
.nav-list > li {
  position: relative;
}
.nav-list > li > a,
.nav-list > li > button {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  background: none;
  border: 0;
  padding: 15px 14px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
}
.nav-list > li > a:hover,
.nav-list > li > button:hover,
.nav-list > li.is-active > a,
.nav-list > li.is-active > button {
  background: rgba(255, 255, 255, 0.12);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  border-radius: 0 0 12px 12px;
  padding: 8px 0;
  display: none;
  z-index: 30;
}
.nav-list > li:hover > .dropdown,
.nav-list > li:focus-within > .dropdown {
  display: block;
}
.dropdown a {
  display: block;
  padding: 9px 16px;
  color: var(--ink);
  font-size: 13.5px;
}
.dropdown a:hover {
  background: var(--cream);
  color: var(--blue-800);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: #fff;
}
.slides {
  position: relative;
  min-height: 460px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  background-size: cover;
  background-position: center;
}
.slide.is-on {
  opacity: 1;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 46, 107, 0.9),
    rgba(0, 174, 239, 0.28)
  );
}
.slide-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0 80px;
}
.slide-copy p.kicker {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold-soft);
  margin: 0 0 10px;
}
.slide-copy h1,
.slide-copy h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  margin: 0 0 14px;
  max-width: 760px;
}
.slide-copy p {
  max-width: 640px;
  font-size: 17px;
}
.hero-nav {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-nav button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.hero-nav button.is-on {
  background: var(--cyan);
}

.section {
  padding: 72px 0;
}
.section h2,
.page-body h1,
.page-body h2 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--blue-900);
}
.lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 760px;
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 0;
  cursor: pointer;
}
.btn-gold {
  background: var(--blue-600);
  color: #042e6b;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--blue-700);
  color: var(--blue-800);
}
.btn-dark {
  background: var(--blue-800);
  color: #fff;
}
.panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.panel h3 {
  margin-top: 0;
}

.dip {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 18px;
  min-height: 180px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
}
.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}
.c1 .icon {
  background: #042e6b;
}
.c2 .icon {
  background: #0649a1;
}
.c3 .icon {
  background: #1a75bb;
}
.c4 .icon {
  background: #00aeef;
}
.c5 .icon {
  background: #0fc7ff;
  color: #042e6b;
}
.card h3 {
  margin: 0;
  font-size: 16px;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.info-strip {
  background: var(--blue-800);
  color: #fff;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.info-grid h3 {
  margin-top: 0;
  color: var(--gold-soft);
}
.info-grid p,
.info-grid li {
  color: #d7ecfb;
}
.info-grid ul {
  margin: 0;
  padding-left: 18px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.news-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.news-thumb {
  height: 160px;
  background-size: cover;
  background-position: center;
}
.news-card div {
  padding: 16px 18px 20px;
}
.news-card small {
  color: var(--blue-700);
  font-weight: 700;
}
.news-card h3 {
  margin: 6px 0 8px;
  font-size: 18px;
}

.page-banner {
  background:
    linear-gradient(90deg, rgba(4, 46, 107, 0.92), rgba(26, 117, 187, 0.55)),
    url("https://images.unsplash.com/photo-1577896852618-01da1dd4d4c0?auto=format&fit=crop&w=1600&q=80")
      center/cover;
  /* url("assets/img/bbpmpsulsel.png?auto=format&fit=crop&w=1600&q=80") center/cover;*/
  color: #fff;
  padding: 56px 0 42px;
}
.page-banner h1 {
  font-family: "Fraunces", Georgia, serif;
  margin: 0 0 8px;
  font-size: 36px;
}
.crumb {
  color: #c5e9ff;
  font-size: 13px;
}
.page-body {
  padding: 48px 0 72px;
}
.prose {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.prose h2 {
  margin-top: 1.4em;
}
.prose ul {
  padding-left: 20px;
}
.table-wrap {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
th {
  background: var(--blue-800);
  color: #fff;
}
tr:nth-child(even) td {
  background: #f3f8fd;
}

.form {
  display: grid;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  font-weight: 700;
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
}
input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font: inherit;
  background: #fff;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.alert {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.alert-ok {
  background: #e3f4fc;
  color: #042e6b;
}
.alert-err {
  background: #fde8e8;
  color: #8a1c1c;
}
.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.link-tile {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #ddd;
  min-height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-size: 13px;
}
.org-box {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 16px;
}
.org-card {
  background: var(--blue-800);
  color: #fff;
  padding: 16px 22px;
  border-radius: 14px;
  min-width: 240px;
}
.org-card small {
  color: var(--gold-soft);
}
.org-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.org-card.light {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.site-footer {
  background: #031c48;
  color: #cfe6f7;
  padding: 48px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
}
.site-footer h3 {
  color: #fff;
  margin-top: 0;
}
.site-footer a {
  color: #0fc7ff;
}
.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 28px;
  padding-top: 16px;
  font-size: 13px;
}

@media (max-width: 980px) {
  .cards,
  .info-grid,
  .news-grid,
  .welcome-grid,
  .footer-grid,
  .links-grid,
  .gallery,
  .form-row {
    grid-template-columns: 1fr;
  }
  .badge-row {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-inner {
    flex-wrap: wrap;
  }
  .nav-list {
    display: none;
    width: 100%;
    flex-direction: column;
    background: var(--blue-900);
  }
  .nav-list.open {
    display: flex;
  }
  .dropdown {
    position: static;
    min-width: 0;
    box-shadow: none;
    border-radius: 0;
  }
  .slide-copy {
    padding: 80px 0 70px;
  }
}
