:root {
  --bg: #f3f6fc;
  --bg-2: #ffffff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.65);
  --text: #0f172a;
  --muted: #64748b;

  --primary: #1e40af;
  --primary-hover: #1d4ed8;
  --primary-2: #3b82f6;
  --accent-cyan: #06b6d4;
  --accent-gold: #f59e0b;
  --gold: #3b82f6;

  --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #0284c7 100%);
  --gradient-glow: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(6, 182, 212, 0.15));
  --gradient-gold: linear-gradient(135deg, #f59e0b, #d97706);
  --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);

  --dark: #0a1428;
  --dark-surface: #0f1c38;
  --line: rgba(30, 64, 175, 0.12);
  --line-strong: rgba(30, 64, 175, 0.22);
  
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 16px 40px rgba(37, 99, 235, 0.25);
  --shadow: 0 20px 60px rgba(27, 50, 98, 0.12);

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  /* navbar + footer tetap */
  --container: min(1180px, calc(100% - 32px));

  /* semua konten page dibuat lebih lebar */
  --content-container: min(1480px, calc(100% - 72px));

  --header-height-desktop: 110px;
  --header-offset: 150px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(159, 184, 232, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(61, 111, 199, 0.1),
      transparent 22%
    ),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  overflow-x: hidden;
  letter-spacing: 0.08px;
}

button,
input,
select,
textarea,
a,
p,
span,
li,
td,
th,
label,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #16233b;
  letter-spacing: -0.04em;
}

.hero-copy h1,
.section-head h2 {
  font-weight: 800;
}

.badge,
.section-tag,
.nav-link,
.submenu-item,
.btn,
.inline-link {
  font-weight: 600;
  letter-spacing: -0.01em;
}

p,
li,
td,
th,
label,
input,
select,
textarea {
  letter-spacing: -0.01em;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

iframe {
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}
/* Semua konten di dalam main dibuat lebih lebar,
   tapi header/navbar dan footer tetap pakai lebar lama */
main .container {
  width: var(--content-container);
}

.bg-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.28;
}

.glow-1 {
  top: -80px;
  left: -80px;
  background: rgba(159, 184, 232, 0.4);
}

.glow-2 {
  top: 220px;
  right: -90px;
  background: rgba(61, 111, 199, 0.18);
}

/* TOPBAR */
.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.topbar-inner {
  width: var(--content-container) !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
}

.topbar-left,
.topbar-right {
  justify-self: center;
  text-align: center;
  white-space: nowrap;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(27, 50, 98, 0.08);
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.header-container {
  width: var(--content-container) !important;
  position: relative;
  min-height: var(--header-height-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}


.header-logo {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.header-logo img {
  height: 78px;
  width: auto;
  object-fit: contain;
}

.header-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 12px;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.nav-item.no-dropdown::after {
  display: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  color: #1e293b;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-chevron {
  font-size: 0.72rem;
  opacity: 0.65;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, color 0.25s ease;
}

.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link {
  color: #1e40af;
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-1px);
}

.nav-item:hover > .nav-link .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: #1e40af;
}

.nav-link.active {
  color: #1e40af;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
}

.nav-link.active::after,
.nav-item:hover > .nav-link::after,
.nav-item:focus-within > .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

/* When user hovers over another menu link, soften non-hovered active links */
.header-nav:hover .nav-item:not(:hover) > .nav-link.active {
  background: transparent;
  color: #475569;
}
.header-nav:hover .nav-item:not(:hover) > .nav-link.active::after {
  opacity: 0.3;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12), 0 8px 24px rgba(37, 99, 235, 0.08);
  padding: 10px;
  display: grid;
  gap: 4px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  z-index: 1000;
}

/* Position rightmost dropdowns to align right */
.nav-item:last-child .nav-dropdown,
.nav-item:nth-last-child(2) .nav-dropdown,
.nav-item:nth-last-child(3) .nav-dropdown {
  left: auto;
  right: 0;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e40af, #2563eb, #06b6d4);
}

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

.submenu-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px;
  font-size: 0.94rem;
  font-weight: 600;
  color: #334155;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.submenu-item .submenu-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.submenu-item .submenu-text::before {
  display: none !important;
}

.submenu-arrow {
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: #2563eb;
}

.submenu-item:hover,
.submenu-item:focus,
.submenu-item.current {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.06));
  color: #1e40af;
  font-weight: 700;
}

.submenu-item:hover .submenu-text::before,
.submenu-item.current .submenu-text::before {
  display: none !important;
}

.submenu-item:hover .submenu-arrow,
.submenu-item.current .submenu-arrow {
  opacity: 1;
  transform: translateX(0);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(33, 76, 154, 0.08);
  color: var(--primary);
  font-size: 1.15rem;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

/* LAYOUT */
.section {
  padding: 58px 0;
  scroll-margin-top: var(--header-offset);
}

.hero-grid,
.grid-2,
.grid-3,
.grid-4,
.footer-container,
.stats-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.45fr);
  gap: 56px;
  align-items: center;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-stack {
  display: grid;
  gap: 24px;
}

.stack {
  display: grid;
  gap: 18px;
}

.section-anchor {
  scroll-margin-top: 170px;
}

/* BADGE */
.badge,
.section-tag,
.dark-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.badge,
.section-tag {
  background: rgba(33, 76, 154, 0.08);
  color: var(--primary);
  border: 1px solid rgba(33, 76, 154, 0.08);
}

.dark-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #dce8ff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* HERO */
.hero-copy h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 18px 0;
}

.hero-copy p,
.section-head p,
.card p,
.footer-col p,
.location-status,
.announcement-item span,
.doc-item span,
.info-list li,
.org-role,
.org-card p,
.branch-box p,
.branch-child p,
.leader-card p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

/* BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 18px 38px rgba(33, 76, 154, 0.22);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(33, 76, 154, 0.14);
}

.inline-link {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 700;
  color: var(--primary);
}

/* CARD */
.card,
.hero-visual,
.stat-card,
.table-card,
.org-card,
.leader-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-xl);
}

.card,
.hero-visual {
  padding: 28px;
}

.table-card {
  padding: 24px;
}

.stat-card {
  padding: 28px 22px;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.quick-card h3,
.card h3 {
  margin-top: 0;
}

/* PANEL */
.hero-panel {
  display: grid;
  gap: 20px;
}

.hero-panel-head h3 {
  margin: 0;
  font-size: 1.15rem;
}

.hero-panel-body {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.mini-stat {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(33, 76, 154, 0.05);
  border: 1px solid rgba(33, 76, 154, 0.1);
}

.mini-stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 6px;
}

/* SECTION HEAD */
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  letter-spacing: -0.04em;
}

.subsection-title {
  margin-top: 24px;
}

/* LIST */
.info-list {
  margin: 12px 0 0;
  padding-left: 20px;
}

.info-list li {
  margin-bottom: 12px;
}

/* ITEM BLOCK */
.announcement-item,
.doc-item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(33, 76, 154, 0.04);
  border: 1px solid rgba(33, 76, 154, 0.08);
}

/* TABLE */
.toolbar {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.search-input,
.filter-select {
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(33, 76, 154, 0.12);
  background: #fff;
  padding: 0 14px;
  color: var(--text);
}

.search-input {
  flex: 1 1 280px;
}

.filter-select {
  min-width: 170px;
}

.search-input:focus,
.filter-select:focus {
  outline: none;
  border-color: rgba(33, 76, 154, 0.3);
  box-shadow: 0 0 0 4px rgba(33, 76, 154, 0.08);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 18px;
}

.data-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.data-table thead th {
  background: rgba(33, 76, 154, 0.08);
  color: var(--primary);
  text-align: left;
  font-size: 0.92rem;
  padding: 14px 16px;
  white-space: nowrap;
}

.data-table tbody td {
  padding: 14px 16px;
  border-top: 1px solid rgba(33, 76, 154, 0.1);
  color: var(--text);
  background: rgba(255, 255, 255, 0.45);
}

.table-link {
  color: var(--primary);
  font-weight: 700;
}

.table-link:hover {
  text-decoration: underline;
}

/* CONTACT */
.contact-list {
  display: grid;
  gap: 16px;
}

.contact-row {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  background: rgba(33, 76, 154, 0.04);
  border: 1px solid rgba(33, 76, 154, 0.08);
  border-radius: 14px;
}

.contact-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.map-frame {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 18px;
  background: #fff;
}

/* DARK / ALT */
.alt-section {
  background: linear-gradient(
    180deg,
    rgba(33, 76, 154, 0.03),
    rgba(159, 184, 232, 0.08)
  );
}

.dark-section {
  background: linear-gradient(135deg, #10213f 0%, #19315b 50%, #28497e 100%);
  color: #fff;
}

.dark-section .section-head p,
.dark-section .card p,
.dark-section .doc-item span {
  color: rgba(255, 255, 255, 0.78);
}

.dark-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.dark-card .doc-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.dark-table thead th {
  background: rgba(255, 255, 255, 0.12);
  color: #dce8ff;
}

.dark-table tbody td {
  background: rgba(255, 255, 255, 0.04);
  border-top-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* FOOTER */
.custom-footer {
  margin-top: 56px;
  padding: 64px 0 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(84, 139, 224, 0.32), transparent 28%),
    linear-gradient(135deg, #061936 0%, #0b285c 50%, #113f86 100%);
  color: #fff;
}

.footer-modern {
  display: grid;
  grid-template-columns: 1.05fr 1.7fr 1fr 0.95fr;
  gap: 42px;
  align-items: start;
}

.footer-modern h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.45;
}

.footer-modern p,
.footer-modern a,
.footer-modern li,
.footer-copyright,
.custom-footer .location-status {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-logo-img {
  width: 170px;
  height: auto;
  object-fit: contain;
}

.footer-brand p {
  max-width: 280px;
  margin: 0;
  font-size: 0.94rem;
}

.footer-info p {
  max-width: 500px;
  margin: 0;
}

.footer-map-frame {
  width: 100%;
  max-width: 440px;
  height: 170px;
  margin-top: 18px;
  border: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.custom-footer .location-status {
  margin-top: 10px;
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: 0.25s ease;
}

/* Hover beda tiap platform */
.icon-instagram:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: #fff;
}

.icon-youtube:hover {
  background: #ff0000;
  color: #fff;
}

.icon-tiktok:hover {
  background: #000;
  color: #00f2ea;
}

/* Animasi kecil */
.icon-box:hover {
  transform: translateY(-4px) scale(1.05);
}

.contact-details {
  display: grid;
  gap: 10px;
}

.contact-details p {
  margin: 0;
}

.contact-details a:hover,
.footer-list a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.footer-list a {
  transition: 0.25s ease;
}

.footer-list a:hover {
  transform: translateX(4px);
}

.footer-copyright {
  margin-top: 54px;
  padding: 18px 0 26px;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1080px) {
  .footer-modern {
    grid-template-columns: 1fr 1fr;
  }

  .footer-info {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .custom-footer {
    padding-top: 42px;
  }

  .footer-modern {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-info {
    grid-column: span 1;
  }

  .footer-logo-img {
    width: 150px;
  }

  .footer-map-frame {
    max-width: 100%;
  }

  .footer-copyright {
    margin-top: 36px;
  }
}

.custom-footer .location-status {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
}

.footer-logo-img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;

  padding: 16px 18px;
  border-radius: 20px;

  /* SOFT DARK GLASS */
  background: linear-gradient(
    145deg,
    rgba(101, 75, 75, 0.08),
    rgba(198, 190, 190, 0.02)
  );

  backdrop-filter: blur(12px);

  /* BORDER HALUS */
  border: 1px solid rgba(255, 255, 255, 0.12);

  /* SHADOW LEBIH HALUS */
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  transition: all 0.3s ease;
}

.footer-logo-img:hover {
  transform: translateY(-3px) scale(1.02);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.footer-map-frame {
  height: 200px;
  margin-top: 14px;
  border-radius: 16px;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(8, 24, 56, 0.18);
  transition: 0.25s ease;
  flex-shrink: 0;
}

.icon-box:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.icon-instagram,
.icon-youtube,
.icon-tiktok {
  color: #ffffff;
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.contact-details a {
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  transition: 0.2s ease;
}

.contact-details a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.contact-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  color: rgba(255, 255, 255, 0.94);
}

.footer-col-4 {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.footer-col-4 h3 {
  color: #ffffff !important;
  margin: 0 0 14px !important;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-list li {
  margin: 0;
  padding: 0;
  display: list-item;
}

.footer-list a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.94) !important;
  text-decoration: none;
  transition: 0.2s ease;
  white-space: normal;
}

.footer-list a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0 28px;
  text-align: center;
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  :root {
    --content-container: min(100%, calc(100% - 40px));
  }

  .hero-grid,
  .grid-4,
  .stats-grid,
  .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head p {
    margin: 0;
    max-width: 100%;
  }

  .header-container {
    min-height: auto;
  }

  .header-nav {
    position: static;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  :root {
    --header-offset: 120px;
    --content-container: min(100%, calc(100% - 24px));
  }

  .topbar-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .topbar-left,
  .topbar-right {
    white-space: normal;
  }

  .header-container {
    padding: 14px 0;
    align-items: center;
  }

  .header-logo img {
    height: 60px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    z-index: 110;
  }

  .header-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    transform: none;
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid rgba(33, 76, 154, 0.08);
    border-radius: 20px;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.1);
    z-index: 105;
  }

  .header-nav.open {
    display: grid;
  }

  .nav-item {
    display: block;
    padding-bottom: 0;
  }

  .nav-item::after {
    display: none;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    min-height: 50px;
    padding: 0 16px;
    background: rgba(33, 76, 154, 0.03);
  }

  .nav-link.active::after,
  .nav-item:hover > .nav-link::after,
  .nav-item:focus-within > .nav-link::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    min-width: 100%;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: grid;
    box-shadow: none;
    border-radius: 16px;
    border: 1px solid rgba(33, 76, 154, 0.08);
    background: rgba(33, 76, 154, 0.03);
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .stats-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-panel-body {
    grid-template-columns: 1fr;
  }

  .card,
  .hero-visual,
  .table-card,
  .stat-card {
    padding: 22px;
  }

  .section {
    padding: 48px 0;
  }

  .hero-actions,
  .toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .search-input,
  .filter-select {
    width: 100%;
  }

  .footer-logo-img {
    max-width: 140px;
  }
}

.footer-col-4 {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.footer-col-4 h3,
.footer-col-4 .footer-list,
.footer-col-4 .footer-list li,
.footer-col-4 .footer-list a {
  visibility: visible !important;
  opacity: 1 !important;
}

.footer-col-4 .footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-col-4 .footer-list a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.94) !important;
  text-decoration: none;
}

.footer-col-4 .footer-list a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.contact-details {
  display: grid !important;
  gap: 12px;
  visibility: visible !important;
  opacity: 1 !important;
}

.contact-details p {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.contact-details a {
  display: inline-block !important;
  color: #ffffff !important;
  opacity: 1 !important;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-icon {
  width: 20px;
  height: 20px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  color: rgba(255, 255, 255, 0.94);
}

#shared-footer .contact-details {
  display: grid !important;
  gap: 12px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#shared-footer .contact-details p {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
}

#shared-footer .contact-details a {
  display: inline-block !important;
  color: #ffffff !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

#shared-footer .contact-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 20px !important;
  height: 20px !important;
}

#shared-footer .contact-icon svg {
  width: 20px !important;
  height: 20px !important;
  fill: currentColor !important;
  color: rgba(255, 255, 255, 0.94) !important;
}

/* =========================
   GLOBAL SCROLL ANIMATIONS
   ========================= */

:root {
  --reveal-distance: 30px;
  --reveal-duration: 1.2s;
  --reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --parallax-speed: 0.08;
}

/* Performa animasi */
.hero-copy,
.hero-visual,
.section-head,
.card,
.stat-card,
.table-card,
.org-card,
.leader-card,
.announcement-item,
.doc-item,
.contact-row,
.branch-box,
.branch-child,
.quick-card,
.mini-stat,
.map-frame,
.org-avatar,
.leader-photo,
.branch-avatar {
  will-change: transform, opacity;
}

/* State awal animasi (Tanpa filter blur agar teks tetap tajam) */
.reveal {
  opacity: 0;
  transition:
    opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease);
}

.reveal.is-visible,
.reveal.revealed,
.reveal-up.is-visible,
.reveal-up.revealed {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* Variasi animasi */
.reveal-up {
  transform: translate3d(0, var(--reveal-distance), 0);
}

.reveal-down {
  transform: translate3d(0, calc(var(--reveal-distance) * -1), 0);
}

.reveal-left {
  transform: translate3d(calc(var(--reveal-distance) * -1), 0, 0);
}

.reveal-right {
  transform: translate3d(var(--reveal-distance), 0, 0);
}

.reveal-scale {
  transform: scale(0.96);
}

.reveal-rotate {
  transform: translate3d(0, 20px, 0) rotate(1deg) scale(0.98);
}

/* Delay helper */
.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
.reveal-delay-4 {
  transition-delay: 0.32s;
}
.reveal-delay-5 {
  transition-delay: 0.4s;
}
.reveal-delay-6 {
  transition-delay: 0.48s;
}

/* Parallax */
.parallax-item {
  transform: translate3d(0, 0, 0);
  transition: transform 0.08s linear;
  will-change: transform;
}

/* Biar glow background ikut hidup */
.bg-glow {
  transition: transform 0.12s linear;
}

/* Hover tetap halus walau ada reveal */
.card,
.org-card,
.leader-card,
.branch-box,
.branch-child,
.quick-card,
.stat-card {
  transform-style: preserve-3d;
}

/* Section terasa muncul lebih hidup */
.section {
  position: relative;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-up,
  .reveal-down,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-rotate,
  .parallax-item,
  .bg-glow {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

.hero-copy > .badge,
.hero-copy > h1,
.hero-copy > p,
.hero-copy > .hero-actions {
  transform-origin: left center;
}

.hero-visual,
.leader-card,
.table-card {
  transform-origin: center center;
}
.submenu-nested {
  position: relative;
}

.submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.submenu-toggle::after {
  content: "›";
  font-size: 1rem;
  line-height: 1;
  color: rgba(71, 85, 105, 0.78);
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.submenu-nested:hover > .submenu-toggle::after {
  color: #2563eb;
  transform: translateX(2px);
}

.submenu-child {
  position: absolute;
  top: 0;
  left: calc(100% + 12px);
  min-width: 340px;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.14),
    0 10px 22px rgba(15, 23, 42, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  pointer-events: none;
  z-index: 999;
  display: block;
}

.submenu-nested:hover > .submenu-child {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.submenu-nested::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 20px;
  height: 100%;
  background: transparent;
  z-index: 98;
}

.submenu-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: 20px;
  height: 100%;
  background: transparent;
}

@media (max-width: 1080px) {
  .submenu-nested::after,
  .submenu-child::before {
    display: none;
  }

  .submenu-child {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    padding: 8px;
    border-radius: 14px;
    box-shadow: none;
    border: 1px solid rgba(148, 163, 184, 0.12);
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
  }

  .submenu-nested:hover > .submenu-child {
    display: block;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    position: relative;
    z-index: 999;
  }

  .header-nav {
    display: none;
  }

  .header-nav.open {
    display: grid;
  }
}

/* ==========================================================================
   GLOBAL PARALLAX HARDWARE ACCELERATION INTEGRATION
   ========================================================================== */
.parallax-item {
  will-change: transform;
  transition: transform 0.12s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* ==========================================================================
   SUPERCHARGED VISUAL SYSTEM & ULTRA-MODERN UTILITIES
   ========================================================================== */

/* 1. Glassmorphism & Surface Elevation */
.glass-card {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.85) !important;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  border-radius: var(--radius-lg) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.glass-card:hover {
  transform: translateY(-6px) scale(1.01) !important;
  box-shadow: 0 24px 56px rgba(37, 99, 235, 0.14), inset 0 1px 0 #ffffff !important;
  border-color: rgba(59, 130, 246, 0.35) !important;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08) !important;
  border-radius: var(--radius-xl) !important;
}

/* 2. Gradient Typography & Glowing Text */
.gradient-text {
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #0284c7 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* 3. Ultra Buttons with Shimmer Sweep */
.btn, .btn-primary, .btn-secondary, .btn-glow {
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  letter-spacing: -0.01em !important;
}

.btn-primary, .btn-glow {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-primary::after, .btn-glow::after {
  content: "" !important;
  position: absolute !important;
  top: -50% !important;
  left: -50% !important;
  width: 200% !important;
  height: 200% !important;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  ) !important;
  transform: rotate(30deg) translateX(-100%) !important;
  transition: transform 0.75s ease !important;
}

.btn-primary:hover::after, .btn-glow:hover::after {
  transform: rotate(30deg) translateX(100%) !important;
}

.btn-primary:hover, .btn-glow:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.38) !important;
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%) !important;
  color: #ffffff !important;
}

.btn-primary:active, .btn-glow:active {
  transform: translateY(0) scale(0.98) !important;
}

/* 4. Badges & Glow Chips */
.badge-glow, .section-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 18px !important;
  border-radius: 999px !important;
  background: rgba(37, 99, 235, 0.08) !important;
  border: 1px solid rgba(37, 99, 235, 0.2) !important;
  color: #1e40af !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.badge-glow::before {
  content: "" !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #3b82f6 !important;
  box-shadow: 0 0 10px #3b82f6 !important;
  animation: pulseDot 2s infinite !important;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* 5. Subpage Banner (Page Hero) Header */
.page-hero-banner {
  position: relative !important;
  padding: 64px 0 48px !important;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1e40af 100%) !important;
  color: #ffffff !important;
  overflow: hidden !important;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl) !important;
  margin-bottom: 40px !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15) !important;
}

.page-hero-banner::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px) !important;
  background-size: 24px 24px !important;
  pointer-events: none !important;
}

.page-hero-banner .banner-content {
  position: relative !important;
  z-index: 2 !important;
  max-width: 820px !important;
}

.page-hero-banner h1 {
  color: #ffffff !important;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  margin: 0 0 14px !important;
  letter-spacing: -0.04em !important;
}

.page-hero-banner p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.08rem !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* Breadcrumb Styling */
.breadcrumb-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 0.88rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 16px !important;
}

.breadcrumb-wrap a {
  color: rgba(255, 255, 255, 0.9) !important;
  transition: color 0.2s ease !important;
}

.breadcrumb-wrap a:hover {
  color: #60a5fa !important;
}

/* 6. Modern Table Styling */
.table-card, .custom-table-wrap {
  background: #ffffff !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06) !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  overflow: hidden !important;
}

.custom-table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

.custom-table th {
  background: #f8fafc !important;
  color: #1e293b !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  padding: 16px 20px !important;
  text-align: left !important;
  border-bottom: 2px solid #e2e8f0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

.custom-table td {
  padding: 18px 20px !important;
  color: #334155 !important;
  font-size: 0.95rem !important;
  border-bottom: 1px solid #f1f5f9 !important;
  transition: background 0.2s ease !important;
}

.custom-table tr:hover td {
  background: #f8fafc !important;
}

/* 7. Scroll Reveal Animation Classes */
.reveal-up {
  opacity: 0 !important;
  transform: translateY(30px) !important;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform !important;
}

.reveal-fade {
  opacity: 0 !important;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity !important;
}

.reveal-up.revealed, .reveal-fade.revealed, .reveal-up.is-visible, .reveal-fade.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  filter: none !important;
  -webkit-filter: none !important;
}

.hero-copy h1, .hero-copy p, .hero-main-title {
  filter: none !important;
  -webkit-filter: none !important;
}

/* 8. Mobile Drawer Navigation Improvements */
@media (max-width: 768px) {
  /* Compact Topbar on Mobile */
  .topbar {
    font-size: 0.78rem !important;
    padding: 6px 0 !important;
  }
  .topbar-inner {
    width: calc(100% - 24px) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    text-align: center !important;
  }
  .topbar-left, .topbar-right {
    font-size: 0.76rem !important;
    white-space: normal !important;
  }

  /* Header Container & Logo */
  .header-container {
    width: calc(100% - 24px) !important;
    padding: 10px 0 !important;
    min-height: 60px !important;
  }
  .header-logo img {
    height: 44px !important;
  }

  /* Hamburger Toggle Button */
  .menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: rgba(37, 99, 235, 0.08) !important;
    color: #1e40af !important;
    border: 1px solid rgba(37, 99, 235, 0.18) !important;
    font-size: 1.25rem !important;
    z-index: 1001 !important;
  }

  /* Mobile Slide-in Drawer overlay */
  .header-nav {
    position: fixed !important;
    top: 70px !important;
    left: 12px !important;
    right: 12px !important;
    transform: none !important;
    width: auto !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(28px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(28px) saturate(190%) !important;
    border-radius: 24px !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.25) !important;
    padding: 20px 16px !important;
    z-index: 1000 !important;
    display: none !important;
    flex-direction: column !important;
    gap: 10px !important;
    max-height: calc(85vh - 70px) !important;
    overflow-y: auto !important;
  }

  .header-nav.open {
    display: flex !important;
    animation: drawerSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  @keyframes drawerSlide {
    from {
      opacity: 0;
      transform: translateY(-16px) scale(0.97);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .nav-item {
    position: relative !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    padding-bottom: 0 !important;
  }

  .nav-link {
    width: 100% !important;
    justify-content: space-between !important;
    padding: 12px 16px !important;
    font-size: 0.98rem !important;
    border-radius: 14px !important;
    background: rgba(241, 245, 249, 0.7) !important;
    color: #0f172a !important;
    box-sizing: border-box !important;
  }

  .nav-link.active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.12)) !important;
    color: #1e40af !important;
  }

  .nav-link::after {
    display: none !important;
  }

  /* CRITICAL MOBILE FIX: NO ABSOLUTE DROPDOWNS ON MOBILE! */
  .nav-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    min-width: 100% !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(248, 250, 252, 0.8) !important;
    padding: 8px 12px !important;
    margin-top: 6px !important;
    border-radius: 14px !important;
    display: grid !important;
    gap: 4px !important;
  }

  .nav-dropdown::before {
    display: none !important;
  }

  .submenu-item {
    padding: 10px 14px !important;
    font-size: 0.92rem !important;
    border-radius: 10px !important;
    color: #334155 !important;
  }

  /* Full container width on mobile */
  main .container, .container {
    width: calc(100% - 24px) !important;
  }
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ==========================================================================
   GLOBAL SUBPAGE CONTENT VISUAL SUPERCHARGER (PROFIL, DOSEN, PENELITIAN, ABDIMAS, PUBLIKASI, DOKUMEN, KONTAK)
   ========================================================================== */

/* 1. All Subpage Card Elements & Panels */
.dosen-card,
.skema-card,
.jurnal-card,
.doc-card,
.info-card,
.contact-card,
.org-card,
.leader-card,
.branch-box,
.branch-child,
.vision-card,
.mission-card,
.program-profile-card,
.hero-panel,
.summary-panel,
.card,
.prestasi-card,
.download-card,
.panduan-card,
.jam-card,
.location-card {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  border-radius: var(--radius-lg, 22px) !important;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.dosen-card:hover,
.skema-card:hover,
.jurnal-card:hover,
.doc-card:hover,
.info-card:hover,
.contact-card:hover,
.org-card:hover,
.leader-card:hover,
.branch-box:hover,
.branch-child:hover,
.vision-card:hover,
.mission-card:hover,
.program-profile-card:hover,
.hero-panel:hover,
.summary-panel:hover,
.card:hover,
.prestasi-card:hover,
.download-card:hover,
.panduan-card:hover,
.jam-card:hover,
.location-card:hover {
  transform: translateY(-6px) scale(1.01) !important;
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.14), inset 0 1px 0 #ffffff !important;
  border-color: rgba(59, 130, 246, 0.35) !important;
}

/* 2. Dosen Profile Cards & Avatars */
.dosen-card {
  padding: 32px 24px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.dosen-avatar img,
.dosen-image img,
.profile-img img {
  border-radius: 50% !important;
  border: 4px solid #ffffff !important;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2), 0 0 0 2px rgba(37, 99, 235, 0.3) !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
  object-fit: cover !important;
}

.dosen-card:hover .dosen-avatar img,
.dosen-card:hover .dosen-image img {
  transform: scale(1.06) !important;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.3), 0 0 0 3px #2563eb !important;
}

/* 3. Subpage Section Titles & Typography */
.section-head h2,
.section-head-center h2,
.hero-copy h1 {
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* 4. Styled Content Bullet Lists */
.info-list li,
.misi-list li,
.target-list li,
.bullet-list li {
  position: relative !important;
  padding-left: 30px !important;
  margin-bottom: 14px !important;
  line-height: 1.7 !important;
  color: #334155 !important;
  list-style: none !important;
}

.info-list li::before,
.misi-list li::before,
.target-list li::before,
.bullet-list li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 3px !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #1e40af, #2563eb) !important;
  color: #ffffff !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3) !important;
}

/* 5. Search Bars & Category Filter Chips */
.search-box,
.search-input-wrap {
  position: relative !important;
}

.search-input,
input[type="search"],
.filter-search-input {
  width: 100% !important;
  border-radius: 999px !important;
  padding: 14px 24px 14px 48px !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  background: #ffffff !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04) !important;
  font-size: 0.95rem !important;
  color: #1e293b !important;
  transition: all 0.25s ease !important;
}

.search-input:focus,
input[type="search"]:focus {
  outline: none !important;
  border-color: #2563eb !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15), 0 12px 30px rgba(37, 99, 235, 0.1) !important;
}

.filter-chip,
.filter-pill,
.btn-filter {
  border-radius: 999px !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  background: #ffffff !important;
  color: #475569 !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.filter-chip:hover,
.filter-chip.active,
.filter-pill.active {
  background: linear-gradient(135deg, #1e40af, #2563eb) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3) !important;
}

/* 6. Responsive Grid Fixes across Tablet & Mobile Phone */
@media (max-width: 1024px) {
  .dosen-grid,
  .layanan-grid,
  .video-grid,
  .skema-grid,
  .jurnal-grid,
  .dokumen-grid,
  .kontak-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }
}

@media (max-width: 640px) {
  .dosen-grid,
  .layanan-grid,
  .video-grid,
  .skema-grid,
  .jurnal-grid,
  .dokumen-grid,
  .kontak-grid,
  .summary-stats-grid,
  .hero-mini-points {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .page-hero-banner {
    padding: 42px 0 32px !important;
    border-radius: 0 0 20px 20px !important;
  }

  .dosen-card,
  .skema-card,
  .jurnal-card,
  .doc-card,
  .info-card,
  .card {
    padding: 22px 18px !important;
    border-radius: 18px !important;
  }
}