@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800;900&family=Lato:wght@700;800;900&family=Roboto:wght@400;500;700;900&display=swap");

:root {
  --brand-900: #073452;
  --brand-800: #0a456d;
  --brand-700: #0e5180;
  --brand-600: #14679f;
  --brand-500: #1f82c3;
  --brand-400: #5ba8d8;
  --brand-100: #e6f0f7;
  --brand-50: #f6fafc;
  --ink: #17202a;
  --muted: #66727d;
  --line: #dce7ef;
  --soft: #f5f8fb;
  --white: #ffffff;
  --yellow: #f4c430;
  --shadow: 0 18px 44px rgba(16, 34, 48, 0.12);
  --radius: 8px;
  --container: 1180px;
  --font-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Roboto, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-action: Lato, Roboto, Arial, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
.brand strong {
  font-family: var(--font-display);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 80;
  pointer-events: none;
}

.site-header.is-scrolled {
  position: fixed;
}

.topbar {
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  font-family: var(--font-body);
  font-size: 13px;
}

.topbar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
  pointer-events: auto;
}

.topbar p {
  margin: 0;
}

.topbar__links {
  display: flex;
  gap: 18px;
  white-space: nowrap;
}

.topbar__links a:hover {
  color: var(--yellow);
}

.navbar {
  position: relative;
  z-index: 50;
  border-bottom: 0;
  background: transparent;
  pointer-events: none;
}

.navbar__inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  padding: 8px 10px 8px 14px;
  background: linear-gradient(90deg, rgba(14, 81, 128, 0.78), rgba(20, 103, 159, 0.66));
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled .topbar {
  display: none;
}

.site-header.is-scrolled .navbar__inner {
  margin-top: 12px;
  background: rgba(14, 81, 128, 0.94);
  box-shadow: 0 18px 46px rgba(5, 46, 76, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--brand-700);
  background: rgba(255, 255, 255, 0.96);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
}

.nav-menu > a,
.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 0;
  border-radius: 14px;
  padding: 0 11px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-dropdown > button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-menu > a:hover,
.nav-dropdown:hover > button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  display: grid;
  width: 260px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.dropdown-panel--wide {
  width: 330px;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-panel a {
  border-radius: 6px;
  padding: 10px 12px;
  color: #304150;
  font-weight: 600;
}

.dropdown-panel a:hover {
  color: var(--brand-800);
  background: var(--brand-50);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 735px;
  overflow: hidden;
  background: var(--brand-900);
}

.hero__slides,
.hero__slide {
  position: absolute;
  inset: 0;
}

.hero__slide {
  display: grid;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(5, 35, 58, 0.88), rgba(5, 35, 58, 0.55), rgba(5, 35, 58, 0.2)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 550ms ease, transform 800ms ease;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 190px 160px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--blue {
  color: var(--brand-700);
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-family: var(--font-action);
  font-size: 14px;
  font-weight: 800;
}

.btn--primary {
  color: var(--white);
  background: var(--brand-600);
}

.btn--primary:hover {
  background: var(--brand-700);
}

.btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.btn--light {
  color: var(--brand-900);
  background: var(--white);
}

.btn--outline {
  color: var(--brand-800);
  border-color: var(--brand-600);
  background: var(--white);
}

.hero__controls {
  position: absolute;
  right: max(32px, calc((100vw - var(--container)) / 2));
  bottom: 52px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero__controls button {
  width: 42px;
  height: 4px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero__controls button.is-active {
  background: var(--white);
}

.program-strip {
  position: relative;
  z-index: 5;
  margin-top: -62px;
}

.program-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.program-strip article {
  min-height: 148px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 22px;
  color: var(--white);
  background: linear-gradient(145deg, var(--brand-700), var(--brand-500));
  box-shadow: var(--shadow);
}

.program-strip span {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 900;
}

.program-strip h2 {
  margin: 10px 0 8px;
  font-size: 20px;
}

.program-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

.section {
  padding: 88px 0;
}

.section--white {
  background: var(--white);
}

.section--soft {
  background: var(--soft);
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: #172331;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  color: var(--brand-700);
  font-family: var(--font-action);
  font-weight: 900;
}

.featured-news {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 24px;
}

.news-hero-card {
  display: grid;
  min-height: 560px;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  background-image: linear-gradient(0deg, rgba(5, 35, 58, 0.9), rgba(5, 35, 58, 0.18)), var(--card-image);
  background-position: center;
  background-size: cover;
}

.news-hero-card > div {
  padding: 32px;
  color: var(--white);
}

.news-hero-card h3 {
  max-width: 760px;
  margin: 14px 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.14;
}

.news-hero-card p {
  max-width: 650px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.pill {
  display: inline-flex;
  width: fit-content;
  border-radius: 6px;
  padding: 6px 10px;
  color: var(--brand-900);
  background: var(--yellow);
  font-family: var(--font-action);
  font-size: 12px;
  font-weight: 800;
}

.pill--muted {
  color: var(--brand-700);
  background: var(--brand-100);
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--white);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.news-card img {
  width: 100%;
  height: 100%;
  min-height: 136px;
  border-radius: 6px;
  object-fit: cover;
}

.news-card h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.3;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.stats-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 52, 82, 0.96), rgba(20, 103, 159, 0.9)),
    url("asset/image/pelabuhan-mato-dsc01275.webp");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.stats-section .section-heading h2,
.stats-section .section-heading p {
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stats-grid article {
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.stats-grid strong {
  display: block;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

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

.service-grid article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.service-grid article:hover {
  border-color: var(--brand-600);
  background: var(--brand-50);
  transform: translateY(-2px);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--brand-600);
  font-weight: 900;
}

.service-grid h3 {
  margin: 22px 0 10px;
  font-size: 21px;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.ppid-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 48px;
  align-items: center;
}

.ppid-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
}

.ppid-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.ppid-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.quick-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.quick-card-grid a {
  display: grid;
  min-height: 150px;
  align-items: end;
  border-radius: var(--radius);
  padding: 20px;
  color: var(--white);
  background: linear-gradient(145deg, var(--brand-800), var(--brand-500));
  box-shadow: var(--shadow);
  font-size: 20px;
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  border-radius: var(--radius);
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: 454px;
}

.document-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.document-list article {
  display: flex;
  min-height: 128px;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
}

.document-list span {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--brand-700);
  font-weight: 900;
}

.document-list h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.document-list p {
  margin: 0;
  color: var(--muted);
}

.form-section {
  color: var(--white);
  background: linear-gradient(145deg, var(--brand-900), var(--brand-700));
}

.form-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 32px;
  align-items: center;
}

.form-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
}

.form-section p:not(.eyebrow) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.form-placeholder {
  display: grid;
  min-height: 250px;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
}

.form-placeholder span {
  display: block;
  font-size: 26px;
  font-weight: 900;
}

.footer {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  background: #073452;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(160px, 0.7fr));
  gap: 32px;
  padding: 58px 0 36px;
}

.brand--footer strong,
.brand--footer small {
  color: var(--white);
}

.footer p {
  margin: 18px 0 0;
  line-height: 1.65;
}

.footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 17px;
}

.footer a:not(.brand) {
  display: block;
  margin-top: 10px;
}

.footer a:hover {
  color: var(--yellow);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
}

.footer__bottom p {
  margin: 0;
}

.floating-panel {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  gap: 10px;
}

.floating-panel button {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--brand-700);
  box-shadow: var(--shadow);
  font-weight: 900;
  cursor: pointer;
}

.article-hero {
  position: relative;
  display: grid;
  min-height: 500px;
  align-items: end;
  color: var(--white);
  background-image:
    linear-gradient(0deg, rgba(5, 35, 58, 0.9), rgba(5, 35, 58, 0.35)),
    var(--article-image);
  background-position: center;
  background-size: cover;
}

.article-hero__inner {
  padding: 178px 0 58px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--white);
}

.article-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.article-meta span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: start;
}

.article-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 42px);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(18, 35, 48, 0.06);
}

.article-content p {
  margin: 0 0 20px;
  color: #354352;
  font-size: 17px;
  line-height: 1.85;
}

.article-content p:last-child {
  margin-bottom: 0;
}

.article-content blockquote {
  margin: 30px 0;
  border-left: 5px solid var(--brand-600);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  color: var(--brand-900);
  background: var(--brand-50);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.6;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.article-gallery img {
  width: 100%;
  height: 180px;
  border-radius: var(--radius);
  object-fit: cover;
}

.article-sidebar {
  display: grid;
  gap: 18px;
}

.sidebar-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
}

.sidebar-card h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

.sidebar-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.related-post {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.related-post:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.related-post img {
  width: 100%;
  height: 120px;
  border-radius: 6px;
  object-fit: cover;
}

.related-post h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-tags span {
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--brand-800);
  background: var(--brand-100);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 16px;
    left: 16px;
    display: none;
    max-height: calc(100vh - 110px);
    overflow: auto;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    padding: 10px;
    color: var(--white);
    background: rgba(14, 81, 128, 0.96);
    box-shadow: 0 18px 46px rgba(5, 46, 76, 0.24);
    backdrop-filter: blur(18px);
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu > a,
  .nav-dropdown > button {
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
  }

  .dropdown-panel {
    position: static;
    display: none;
    width: 100%;
    margin: 4px 0 10px;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.is-open .dropdown-panel {
    display: grid;
  }

  .featured-news,
  .ppid-layout,
  .form-section__inner,
  .article-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .topbar__inner,
  .section-heading--split,
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar__links {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .program-strip {
    margin-top: 0;
  }

  .program-strip__grid,
  .stats-grid,
  .service-grid,
  .document-list,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    grid-column: auto;
    grid-row: auto;
    height: 220px;
  }

  .article-gallery {
    grid-template-columns: 1fr;
  }

  .article-gallery img {
    height: 240px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand {
    min-width: auto;
  }

  .navbar__inner {
    border-radius: 18px;
    padding: 8px;
  }

  .brand small {
    display: none;
  }

  .hero__content {
    padding-block: 176px 120px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero__controls {
    right: 24px;
    bottom: 28px;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .news-card img {
    height: 190px;
  }

  .quick-card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .floating-panel {
    right: 12px;
    bottom: 12px;
  }
}

/* Homepage visual clone based on the DKP Jabar screenshot. */
body {
  background: #f5f7f8;
}

.container {
  width: min(1280px, calc(100% - 48px));
}

.topbar {
  display: none;
}

.site-header {
  top: 14px;
}

.navbar__inner {
  width: min(1280px, calc(100% - 48px));
  min-height: 62px;
  margin-top: 0;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: rgba(45, 58, 70, 0.94);
  box-shadow: 0 18px 44px rgba(11, 23, 35, 0.18);
}

.site-header.is-scrolled .navbar__inner {
  margin-top: 0;
  background: rgba(45, 58, 70, 0.96);
}

.brand {
  min-width: auto;
  gap: 0;
}

.brand > span:not(.brand__mark) {
  display: none;
}

.brand__mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--brand-600);
  background: #eef6fb;
  font-size: 9px;
  font-weight: 900;
}

.nav-menu {
  gap: 26px;
  color: #f4f7fa;
  font-family: var(--font-action);
  font-size: 12px;
  font-weight: 800;
}

.nav-menu > a,
.nav-dropdown > button {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 2px;
}

.nav-dropdown > button::after {
  width: 6px;
  height: 6px;
  margin-left: 12px;
  border-width: 1.5px;
}

.nav-menu > a:hover,
.nav-dropdown:hover > button {
  background: transparent;
  color: #ffffff;
}

.home-hero {
  min-height: 1040px;
  overflow: hidden;
  background: #23313c;
}

.home-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 5;
  height: 118px;
  background: #ffffff;
  clip-path: polygon(0 58%, 100% 18%, 100% 100%, 0 100%);
}

.home-hero .hero__slide {
  align-items: start;
  background-image:
    linear-gradient(180deg, rgba(48, 62, 75, 0.8), rgba(33, 45, 50, 0.45) 44%, rgba(20, 31, 33, 0.78)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: saturate(0.88);
}

.home-hero .hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(3px);
  background: rgba(25, 36, 44, 0.18);
}

.home-hero__inner {
  position: relative;
  z-index: 6;
  padding-top: 166px;
}

.home-hero__copy {
  text-align: center;
  color: #ffffff;
}

.home-hero__copy h1 {
  margin: 0;
  font-size: clamp(38px, 4.1vw, 56px);
  line-height: 1.18;
  font-weight: 900;
}

.home-hero__copy p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-action);
  font-size: 12px;
  font-weight: 800;
}

.hero-showcase {
  display: grid;
  grid-template-columns: 330px 800px 330px;
  justify-content: center;
  align-items: center;
  gap: 34px;
  margin-top: 58px;
}

.hero-promo {
  overflow: hidden;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.hero-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-promo--side {
  height: 348px;
  transform: translateY(20px);
}

.hero-promo--main {
  height: 445px;
}

.hero-promo--red {
  display: grid;
  place-items: stretch;
  background: #ef302a;
}

.lapor-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  padding: 38px 50px 28px;
  color: #ffffff;
  text-align: center;
}

.lapor-card__logo {
  justify-self: center;
  border-radius: 2px;
  padding: 12px 18px;
  color: #ef302a;
  background: #ffffff;
  font-family: var(--font-action);
  font-size: 18px;
  font-weight: 900;
}

.lapor-card h2 {
  max-width: 560px;
  margin: 16px auto 0;
  font-family: var(--font-action);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

.lapor-card__line {
  width: 520px;
  max-width: 100%;
  height: 3px;
  margin: 24px auto 28px;
  background: rgba(255, 255, 255, 0.88);
}

.lapor-card ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lapor-card li {
  min-height: 92px;
  border-bottom: 5px solid rgba(255, 255, 255, 0.78);
  font-family: var(--font-action);
}

.lapor-card strong,
.lapor-card span {
  display: block;
}

.lapor-card strong {
  font-size: 11px;
}

.lapor-card span {
  margin-top: 8px;
  font-size: 10px;
}

.home-hero .hero__controls {
  right: auto;
  bottom: 144px;
  left: 50%;
  z-index: 8;
  display: grid;
  width: min(800px, calc(100% - 48px));
  grid-template-columns: 34px 34px minmax(160px, 1fr) auto;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.home-hero .hero__controls button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand-600);
  font-family: var(--font-action);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.home-hero .hero__controls span {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.home-hero .hero__controls strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}

.news-section {
  padding-top: 76px;
  padding-bottom: 86px;
  background: #ffffff;
}

.news-heading {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: start;
  margin-bottom: 30px;
}

.news-heading h2,
.quick-section h2,
.gallery-section h2 {
  color: #1f2937;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
}

.news-heading p {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.7;
}

.news-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(230px, 0.58fr) minmax(260px, 0.56fr);
  gap: 24px;
  align-items: stretch;
}

.news-feature {
  display: grid;
  min-height: 600px;
  align-items: end;
  overflow: hidden;
  border-radius: 12px;
  background-image:
    linear-gradient(0deg, rgba(13, 22, 35, 0.92), rgba(13, 22, 35, 0.08)),
    var(--card-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.13);
}

.news-feature div {
  padding: 30px;
  color: #ffffff;
}

.news-feature span,
.news-tabs span {
  color: #6b7280;
  font-family: var(--font-action);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-feature span {
  color: rgba(255, 255, 255, 0.76);
}

.news-feature h3 {
  margin: 12px 0 10px;
  font-size: 27px;
  line-height: 1.25;
  font-weight: 900;
}

.news-feature p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.news-feature a,
.all-posts,
.gallery-actions a {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 0 15px;
  color: #ffffff;
  font-family: var(--font-action);
  font-size: 11px;
  font-weight: 900;
}

.news-tabs {
  display: grid;
  align-content: start;
}

.news-tabs__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 12px;
}

.news-tabs__nav button {
  min-height: 44px;
  border-bottom: 3px solid transparent;
  color: #9ca3af;
  font-family: var(--font-action);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-tabs__nav .is-active {
  border-color: var(--brand-600);
  color: #1f2937;
}

.news-tabs a:not(.all-posts) {
  display: grid;
  gap: 5px;
  border-bottom: 1px solid #eef0f2;
  padding: 13px 0;
}

.news-tabs strong {
  display: -webkit-box;
  overflow: hidden;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-tabs small {
  color: #9ca3af;
  font-size: 11px;
  font-weight: 700;
}

.all-posts {
  justify-self: end;
  margin-top: 18px;
  border-color: var(--brand-600);
  color: var(--brand-600);
}

.agenda-card {
  overflow: hidden;
  border: 1px solid #e6edf3;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.agenda-card header {
  padding: 22px;
  color: #ffffff;
  background: var(--brand-600);
}

.agenda-card h3 {
  margin: 0;
  font-size: 18px;
}

.agenda-card p {
  margin: 9px 0 0;
  color: currentColor;
  font-size: 11px;
  line-height: 1.55;
  opacity: 0.88;
}

.agenda-month {
  display: grid;
  gap: 5px;
  padding: 18px 22px 6px;
}

.agenda-month strong {
  color: #111827;
  font-size: 15px;
}

.agenda-month span {
  color: #6b7280;
  font-size: 12px;
}

.agenda-days {
  display: grid;
  grid-template-columns: 26px repeat(3, 46px) 26px;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 26px;
  text-align: center;
}

.agenda-days button,
.gallery-actions button {
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--brand-600);
  background: #eef7fd;
  font-weight: 900;
}

.agenda-days b {
  border-radius: 8px;
  padding: 7px 0;
  color: #6b7280;
  background: #f7f9fa;
  font-size: 9px;
  text-transform: uppercase;
}

.agenda-days b:first-of-type {
  color: #ffffff;
  background: var(--brand-600);
}

.agenda-days span {
  display: block;
  margin-top: 3px;
  font-size: 17px;
}

.agenda-empty {
  display: grid;
  justify-items: center;
  padding: 20px 24px 34px;
  text-align: center;
}

.agenda-empty span {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 999px;
  color: var(--brand-600);
  background: #f4f8fb;
  font-size: 34px;
}

.agenda-empty strong {
  margin-top: 18px;
  color: #1d4ed8;
  font-size: 13px;
}

.agenda-empty p {
  color: #6b7280;
}

.quick-section {
  padding-top: 82px;
  padding-bottom: 92px;
  background: #ffffff;
}

.quick-section .section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.quick-section .section-heading p,
.gallery-section .section-heading p {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.7;
}

.quick-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.quick-services a {
  position: relative;
  display: grid;
  min-height: 240px;
  align-content: start;
  overflow: hidden;
  border: 1px solid #dde8f1;
  border-radius: 8px;
  padding: 30px;
  background: #ffffff;
}

.quick-services a::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -18px;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(14, 81, 128, 0.14) 2px, transparent 3px);
  background-size: 13px 13px;
}

.quick-services span {
  color: var(--brand-600);
  font-size: 20px;
}

.quick-services strong {
  margin-top: 20px;
  color: #1f2937;
  font-size: 24px;
  line-height: 1.2;
}

.quick-services small {
  margin-top: 10px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.45;
}

.quick-services em {
  margin-top: 22px;
  color: var(--brand-600);
  font-family: var(--font-action);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.gallery-section {
  padding-top: 88px;
  padding-bottom: 100px;
  background: #f4f6f7;
}

.award-gallery {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1.25fr 0.72fr;
  gap: 22px;
  margin-top: 32px;
}

.award-gallery article {
  display: grid;
  min-height: 450px;
  align-items: start;
  overflow: hidden;
  border-radius: 8px;
  padding: 22px;
  color: #ffffff;
  background-image:
    linear-gradient(180deg, rgba(14, 36, 48, 0.86), rgba(14, 81, 128, 0.25)),
    var(--award-image);
  background-position: center;
  background-size: cover;
}

.award-gallery span {
  max-width: 240px;
  font-family: var(--font-action);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.gallery-actions div {
  display: flex;
  gap: 12px;
}

.gallery-actions button {
  width: 34px;
  height: 34px;
}

.gallery-actions a {
  min-height: 36px;
  border-color: var(--brand-600);
  color: var(--brand-600);
  background: #ffffff;
}

.footer {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #0e5180;
}

.footer::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 240px;
  height: 240px;
  opacity: 0.13;
  background: radial-gradient(circle, #ffffff 3px, transparent 4px);
  background-size: 28px 28px;
}

.footer-shell {
  position: relative;
  z-index: 1;
  padding: 72px 0 28px;
}

.footer-logo {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: var(--brand-600);
  background: #ffffff;
  font-family: var(--font-action);
  font-size: 11px;
  font-weight: 900;
}

.footer-contact {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px;
  margin-top: 48px;
}

.footer-contact strong,
.footer-sitemap h2 {
  display: block;
  color: #ffffff;
  font-family: var(--font-action);
  font-size: 13px;
  font-weight: 900;
}

.footer-contact p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.6;
}

.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  margin-top: 42px;
}

.footer-sitemap div {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  min-height: 180px;
}

.footer-sitemap div:last-child {
  border-right: 0;
}

.footer-sitemap h2 {
  margin: 0 0 12px;
}

.footer-sitemap a {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.4;
}

.footer-copy {
  margin: 48px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
}

.floating-panel {
  right: 18px;
  bottom: 18px;
}

.floating-panel button {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--brand-600);
  font-size: 12px;
}

.floating-panel button:nth-child(2) {
  display: none;
}

@media (max-width: 1100px) {
  .navbar__inner {
    width: min(100% - 28px, 1280px);
  }

  .nav-menu {
    gap: 0;
    font-size: 13px;
  }

  .hero-showcase {
    grid-template-columns: minmax(0, 1fr);
    width: min(700px, 100%);
    margin-inline: auto;
  }

  .hero-promo--side {
    display: none;
  }

  .news-dashboard {
    grid-template-columns: 1fr;
  }

  .quick-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-contact,
  .footer-sitemap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .home-hero {
    min-height: 720px;
  }

  .home-hero__inner {
    padding-top: 98px;
  }

  .home-hero__copy h1 {
    font-size: 30px;
  }

  .hero-promo--main {
    height: auto;
    min-height: 320px;
  }

  .lapor-card {
    padding: 26px 22px;
  }

  .lapor-card ol {
    grid-template-columns: 1fr;
  }

  .lapor-card li {
    min-height: 42px;
  }

  .news-heading {
    grid-template-columns: 1fr;
  }

  .news-feature {
    min-height: 430px;
  }

  .quick-services,
  .award-gallery,
  .footer-contact,
  .footer-sitemap {
    grid-template-columns: 1fr;
  }

  .award-gallery article {
    min-height: 330px;
  }
}

/* Laravel-ready clone resource pass: every visual card uses local kebutuhan images. */
.hero-promo--main {
  background: #ffffff;
}

.hero-promo--main img {
  object-position: center;
}

.news-tabs a:not(.all-posts) {
  grid-template-columns: 82px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
}

.news-tabs a:not(.all-posts)::before {
  content: "";
  grid-row: span 3;
  width: 82px;
  height: 62px;
  border-radius: 14px;
  background-image:
    linear-gradient(135deg, rgba(14, 81, 128, 0.15), rgba(14, 81, 128, 0.12)),
    var(--post-image);
  background-position: center;
  background-size: cover;
}

.quick-services img {
  display: block;
  width: 100%;
  height: 92px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.brand__mark,
.footer-logo {
  overflow: hidden;
  color: transparent;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)),
    url("asset/image/pelabuhan-mato-dsc01330.webp");
  background-position: center;
  background-size: cover;
}

.quick-services a {
  min-height: 282px;
}

.agenda-empty img {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  object-fit: cover;
}

.floating-panel button {
  overflow: hidden;
  color: transparent;
  background-image:
    linear-gradient(180deg, rgba(14, 81, 128, 0.58), rgba(14, 81, 128, 0.58)),
    url("asset/image/dokumentasi-ogotua-2025-img-8650.webp");
  background-position: center;
  background-size: cover;
}

/* Final header alignment and glass dropdown tuning. */
.navbar__inner,
.site-header.is-scrolled .navbar__inner {
  height: 65px;
  min-height: 65px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: visible;
  background-color: #0000004d;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: -22.633333206176758px 22.633333206176758px 22.633333206176758px 0px #ffffff10 inset, 22.633333206176758px -22.633333206176758px 22.633333206176758px 0px #29292910 inset;
  --tw-shadow-colored: inset -22.633333206176758px 22.633333206176758px 22.633333206176758px 0px var(--tw-shadow-color), inset 22.633333206176758px -22.633333206176758px 22.633333206176758px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.home-hero__copy {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  text-align: center;
}

.home-hero__copy h1,
.home-hero__copy p {
  margin-right: auto;
  margin-left: auto;
}

.home-hero__copy h1 {
  max-width: 980px;
}

.home-hero__copy p {
  max-width: 760px;
}

.nav-menu,
.nav-menu > a,
.nav-dropdown > button {
  font-family: Roboto, Arial, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
}

.dropdown-panel,
.dropdown-panel--wide {
  top: calc(100% + 8px);
  z-index: 120;
  border-color: rgba(255, 255, 255, 0.18);
  overflow: hidden;
  background-color: #0000004d;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: -22.633333206176758px 22.633333206176758px 22.633333206176758px 0px #ffffff10 inset, 22.633333206176758px -22.633333206176758px 22.633333206176758px 0px #29292910 inset;
  --tw-shadow-colored: inset -22.633333206176758px 22.633333206176758px 22.633333206176758px 0px var(--tw-shadow-color), inset 22.633333206176758px -22.633333206176758px 22.633333206176758px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow), 0 18px 44px rgba(8, 19, 29, 0.18);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  right: -10px;
  left: -10px;
  top: 100%;
  z-index: 110;
  height: 14px;
}

.dropdown-panel a {
  font-family: Roboto, Arial, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.dropdown-panel a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 1100px) {
  .nav-menu {
    background-color: #0000004d;
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: -22.633333206176758px 22.633333206176758px 22.633333206176758px 0px #ffffff10 inset, 22.633333206176758px -22.633333206176758px 22.633333206176758px 0px #29292910 inset;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
  }

  .dropdown-panel,
  .dropdown-panel--wide {
    background-color: #0000004d;
  }
}

/* Exact transparent-panel background treatment. */
.navbar__inner,
.site-header.is-scrolled .navbar__inner {
  position: relative;
  border: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.navbar__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  background: rgba(57, 57, 57, 0.54);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(14.1px);
  -webkit-backdrop-filter: blur(14.1px);
}

.navbar__inner::after {
  content: none;
}

.navbar__inner > * {
  position: relative;
  z-index: 1;
}

.dropdown-panel,
.dropdown-panel--wide {
  border: 0;
  border-radius: 16px;
  background: rgba(57, 57, 57, 0.54);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(14.1px);
  -webkit-backdrop-filter: blur(14.1px);
}

.content-hero {
  position: relative;
  display: grid;
  min-height: 470px;
  align-items: end;
  color: #ffffff;
  background-image:
    linear-gradient(0deg, rgba(5, 35, 58, 0.86), rgba(5, 35, 58, 0.28)),
    var(--page-image);
  background-position: center;
  background-size: cover;
}

.content-hero__inner {
  padding: 178px 0 66px;
}

.content-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.content-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.7;
}

.listing-grid,
.menu-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.content-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: inherit;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
}

.content-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.content-card__body {
  padding: 22px;
}

.content-card span,
.doc-card span {
  color: var(--brand-700);
  font-family: var(--font-action);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.content-card h2,
.content-card h3,
.doc-card h3 {
  margin: 10px 0 8px;
  color: #1f2937;
  font-size: 21px;
  line-height: 1.3;
}

.content-card p,
.doc-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-page-grid figure {
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.gallery-page-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-page-grid figcaption {
  padding: 13px 15px;
  color: #1f2937;
  font-weight: 800;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.doc-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  color: inherit;
  background: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.doc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.embed-box {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px dashed rgba(14, 81, 128, 0.32);
  border-radius: 10px;
  padding: 30px;
  color: var(--brand-800);
  background:
    linear-gradient(0deg, rgba(247, 251, 255, 0.9), rgba(247, 251, 255, 0.9)),
    url("asset/image/bahan-upload-ppid-dislutkan-sulteng-flayer-sp4n-lapor-di-ruang-publik.webp");
  background-position: center;
  background-size: cover;
  text-align: center;
  font-weight: 900;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.detail-stack {
  display: grid;
  gap: 20px;
}

.detail-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(24px, 4vw, 38px);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.detail-panel h2 {
  margin: 0 0 14px;
  color: #1f2937;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.16;
}

.detail-panel h3 {
  margin: 20px 0 10px;
  color: #1f2937;
  font-size: 21px;
}

.detail-panel p,
.detail-panel li {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.8;
}

.detail-panel ul,
.detail-panel ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.detail-image {
  width: 100%;
  max-height: 420px;
  border-radius: 10px;
  object-fit: cover;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.metric-grid article {
  border-radius: 10px;
  padding: 18px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--brand-700), var(--brand-500));
}

.metric-grid strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.detail-sidebar {
  display: grid;
  gap: 16px;
}

.side-nav {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.side-nav h2 {
  margin: 0 0 12px;
  color: #1f2937;
  font-size: 19px;
}

.side-nav a {
  display: block;
  border-top: 1px solid var(--line);
  padding: 12px 0;
  color: #334155;
  font-weight: 800;
}

.side-nav a:hover {
  color: var(--brand-700);
}

.service-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-process article {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  background: var(--brand-50);
}

.service-process strong {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand-700);
}

.service-process h3 {
  margin: 14px 0 8px;
  font-size: 18px;
}

.document-browser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.document-browser__main,
.document-preview {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.document-browser__main {
  padding: clamp(20px, 3vw, 30px);
}

.document-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 18px;
  align-items: end;
}

.document-toolbar h2 {
  margin: 8px 0 0;
  color: #1f2937;
  font-size: clamp(27px, 3vw, 40px);
}

.document-search {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.document-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: #17202a;
  background: var(--brand-50);
  font: inherit;
  outline: none;
}

.document-search input:focus {
  border-color: var(--brand-600);
  box-shadow: 0 0 0 4px rgba(14, 81, 128, 0.12);
}

.document-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 0;
}

.document-tabs button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: #334155;
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.document-tabs button.is-active {
  border-color: var(--brand-700);
  color: #ffffff;
  background: var(--brand-700);
}

.document-summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 14px;
}

.document-summary strong {
  color: #1f2937;
}

.document-listing {
  display: grid;
  gap: 12px;
  max-height: 760px;
  overflow: auto;
  padding-right: 4px;
}

.document-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
}

.document-item.is-active,
.document-item:hover {
  border-color: rgba(14, 81, 128, 0.35);
  background: var(--brand-50);
}

.document-item h3 {
  margin: 0;
  color: #1f2937;
  font-size: 17px;
  line-height: 1.35;
}

.document-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.document-item span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 8px;
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--brand-700);
  background: var(--brand-100);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.document-item small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.document-empty {
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 26px;
  color: var(--muted);
  background: var(--brand-50);
  text-align: center;
  font-weight: 800;
}

.document-preview {
  position: sticky;
  top: 112px;
  overflow: hidden;
}

.document-preview__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 18px;
}

.document-preview__head span {
  color: var(--brand-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.document-preview__head h2 {
  margin: 7px 0 0;
  color: #1f2937;
  font-size: 20px;
  line-height: 1.25;
}

.document-preview iframe {
  display: block;
  width: 100%;
  height: 680px;
  border: 0;
  background: #f1f5f9;
}

.document-preview p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 14px 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .listing-grid,
  .menu-detail-grid,
  .gallery-page-grid,
  .detail-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .service-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .document-browser,
  .document-toolbar {
    grid-template-columns: 1fr;
  }

  .document-preview {
    position: static;
  }
}

@media (max-width: 640px) {
  .listing-grid,
  .menu-detail-grid,
  .gallery-page-grid,
  .doc-grid,
  .metric-grid,
  .service-process {
    grid-template-columns: 1fr;
  }

  .document-preview iframe {
    height: 520px;
  }

  .document-preview__head,
  .document-item,
  .document-summary {
    display: grid;
  }
}
