:root {
  --blue: #005bbb;
  --blue-dark: #0b2b56;
  --red: #e11d2e;
  --gold: #f5b700;
  --text: #0f172a;
  --muted: #64748b;
  --bg: #f4f8fd;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
  --radius: 24px;
  --hero-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* =====================================================
   HEADER
===================================================== */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(5, 31, 64, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
}

.topbar.is-scrolled {
  background: rgba(5, 31, 64, 0.92);
}

.nav {
  width: min(1320px, calc(100% - 36px));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 430px 1fr 190px;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 430px;
  min-width: 430px;
  overflow: visible;
}

.brand-logo {
  width: 150px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  background: transparent;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.22));
}

.brand-title {
  line-height: 1.05;
}

.brand-title strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -0.4px;
  white-space: nowrap;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.42);
}

.brand-title span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.42);
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  font-weight: 1000;
}

.menu a {
  color: #ffffff;
  white-space: nowrap;
  padding: 32px 0;
  position: relative;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.42);
}

.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 3px;
  border-radius: 999px;
  background: #dbeafe;
  transform: scaleX(0);
  transition: 0.25s ease;
}

.menu a:hover {
  color: #dbeafe;
}

.menu a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.simo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #003f86);
  color: #fff;
  font-size: 12px;
  font-weight: 1000;
  box-shadow: 0 14px 34px rgba(0, 91, 187, 0.38);
  white-space: nowrap;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 22px;
  font-weight: 1000;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background: rgba(5, 31, 64, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 14px 20px 22px;
}

.mobile-menu a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 900;
}

.mobile-menu .simo-mobile {
  margin-top: 14px;
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 1000;
}

.mobile-menu.show {
  display: block;
}

/* =====================================================
   HERO POWERFUL
===================================================== */

.hero {
  width: 100%;
  min-height: 860px;
  background:
    radial-gradient(circle at top left, rgba(0, 91, 187, 0.3), transparent 32%),
    radial-gradient(
      circle at top right,
      rgba(225, 29, 46, 0.18),
      transparent 26%
    ),
    linear-gradient(
      100deg,
      rgba(2, 20, 56, 0.88) 0%,
      rgba(8, 34, 82, 0.68) 42%,
      rgba(11, 66, 150, 0.25) 100%
    ),
    var(--hero-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0) 30%
    ),
    radial-gradient(
      circle at 20% 18%,
      rgba(59, 130, 246, 0.22),
      transparent 18%
    ),
    radial-gradient(
      circle at 82% 22%,
      rgba(96, 165, 250, 0.18),
      transparent 18%
    );
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(
    180deg,
    rgba(4, 30, 66, 0) 0%,
    rgba(4, 30, 66, 0.4) 100%
  );
  pointer-events: none;
}

.hero-inner {
  max-width: 860px;
  padding-top: 150px;
  padding-bottom: 190px;
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.hero h1 {
  margin-top: 18px;
  max-width: 860px;
  font-size: 64px;
  line-height: 1.02;
  color: #ffffff;
  font-weight: 1000;
  letter-spacing: -1.8px;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.48);
}

.hero p {
  max-width: 760px;
  margin-top: 22px;
  color: #f3f8ff;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 800;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 1000;
  transition: 0.25s ease;
}

.btn-primary {
  background: #ffffff;
  color: #0b2b56;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

/* =====================================================
   VALUES / 6 NILAI
===================================================== */

.values-section {
  margin-top: 0;
  padding: 42px 0 76px;
  background: linear-gradient(180deg, #eef4ff 0%, #f7fbff 55%, #ffffff 100%);
  position: relative;
  z-index: 4;
}

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

.value-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dbeafe;
  border-radius: 24px;
  padding: 26px 18px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #005bbb, #60a5fa, #e11d2e);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
}

.value-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #005bbb;
  font-size: 24px;
  font-weight: 1000;
  box-shadow: 0 10px 24px rgba(0, 91, 187, 0.12);
}

.value-card h3 {
  color: #1e3a8a;
  font-size: 15px;
  font-weight: 1000;
  margin-bottom: 8px;
}

.value-card p {
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
}

/* =====================================================
   COMMON SECTION
===================================================== */

section {
  scroll-margin-top: 110px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: 38px;
  color: #0b2b56;
  font-weight: 1000;
  letter-spacing: -0.8px;
}

.section-head p {
  margin-top: 8px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.link-more {
  color: var(--blue);
  font-weight: 1000;
  white-space: nowrap;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #005bbb;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

/* =====================================================
   PROFIL ORGANISASI POWERFUL
===================================================== */

.profile-section,
.profile-power-section {
  padding: 80px 0;
  background:
    radial-gradient(circle at top left, rgba(0, 91, 187, 0.1), transparent 30%),
    radial-gradient(
      circle at top right,
      rgba(225, 29, 46, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #f3f7fc 0%, #ffffff 100%);
}

.profile-power-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.88fr;
  gap: 28px;
  align-items: start;
}

.profile-main-card {
  background: #ffffff;
  border: 1px solid #dbe4f2;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}

.profile-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.profile-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 1000;
}

.blue-badge {
  background: #eff6ff;
  color: #005bbb;
}

.red-badge {
  background: #fff1f2;
  color: #e11d2e;
}

.profile-main-title {
  color: #0b2b56;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 1000;
  margin-bottom: 18px;
}

.profile-main-card p {
  color: #334155;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.profile-highlight-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.profile-highlight-box {
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
  border: 1px solid #dbeafe;
  border-radius: 20px;
  padding: 22px 18px;
  text-align: center;
}

.profile-highlight-box strong {
  display: block;
  font-size: 24px;
  color: #0b2b56;
  font-weight: 1000;
  margin-bottom: 6px;
}

.profile-highlight-box span {
  display: block;
  font-size: 13px;
  color: #64748b;
  font-weight: 800;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.vm-card {
  border-radius: 22px;
  padding: 24px 22px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.vm-card-vision {
  background: linear-gradient(135deg, #005bbb, #123f8f);
}

.vm-card-mission {
  background: linear-gradient(135deg, #e11d2e, #f97316);
}

.vm-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 24px;
  margin-bottom: 14px;
}

.vm-card h4 {
  font-size: 24px;
  font-weight: 1000;
  margin-bottom: 10px;
}

.vm-card p,
.vm-card li {
  color: #f8fafc;
  font-size: 14px;
  line-height: 1.75;
}

.vm-card ul {
  padding-left: 18px;
  margin: 0;
}

.sekretariat-modern-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dbe4f2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.1);
}

.sekretariat-modern-top {
  padding: 30px 28px 20px;
  background:
    linear-gradient(135deg, rgba(0, 91, 187, 0.95), rgba(59, 130, 246, 0.75)),
    linear-gradient(135deg, #005bbb, #1d4ed8);
  color: #fff;
}

.sekretariat-mini-label {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.7px;
  margin-bottom: 12px;
}

.sekretariat-modern-top h3 {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 1000;
  margin-bottom: 10px;
}

.sekretariat-modern-top p {
  color: #eaf2ff;
  line-height: 1.75;
  font-size: 15px;
  font-weight: 700;
}

.sekretariat-info-list {
  padding: 24px 24px 10px;
  display: grid;
  gap: 14px;
}

.sekretariat-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e5edf7;
  border-radius: 20px;
  padding: 18px 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.sekretariat-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #005bbb;
  font-size: 22px;
  box-shadow: inset 0 0 0 1px rgba(0, 91, 187, 0.08);
}

.sekretariat-info-item b {
  display: block;
  color: #0b2b56;
  font-size: 15px;
  margin-bottom: 4px;
}

.sekretariat-info-item span {
  display: block;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.sekretariat-action-box {
  margin: 14px 24px 24px;
  border-radius: 22px;
  padding: 20px 22px;
  background: linear-gradient(135deg, #0b2b56, #005bbb);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 91, 187, 0.2);
}

.sekretariat-action-title {
  font-size: 18px;
  font-weight: 1000;
  margin-bottom: 8px;
}

.sekretariat-action-text {
  color: #e2ecff;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

/* =====================================================
   IFRAME SECTIONS
===================================================== */

.berita-section,
.update-section,
.sosial-section,
.contact-section {
  padding: 70px 0;
}

.berita-section,
.update-section {
  background: #f4f8fd;
}

.sosial-section {
  background: #ffffff;
}

.embed-frame-wrap,
.compact-frame,
.sosial-frame-wrap,
.social-frame-wrap {
  width: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.berita-iframe {
  width: 100%;
  height: 720px;
  border: 0;
  display: block;
  background: transparent;
}

.update-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.update-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.update-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.update-card-head h3 {
  margin: 6px 0 0;
  color: #0b2b56;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 1000;
}

.update-card-head a {
  color: #005bbb;
  font-size: 13px;
  font-weight: 1000;
  white-space: nowrap;
}

.mini-label {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  background: #eff6ff;
  color: #005bbb;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 0.5px;
}

.red-label {
  background: #fff1f2;
  color: #e11d2e;
}

.compact-kegiatan,
.compact-podcast {
  width: 100%;
  height: 430px;
  border: 0;
  display: block;
}

.sosial-iframe,
.social-iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
  background: transparent;
}

.podcast-section,
.kegiatan-section,
.struktur-section,
.galeri-section,
.gallery-section,
#struktur,
#galeri {
  display: none !important;
}

/* =====================================================
   KONTAK & FOOTER
===================================================== */

.contact-section {
  background: linear-gradient(135deg, #0b2b56, #071b33);
  color: #fff;
  padding: 52px 0 42px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 28px 30px;
}

.contact-card h2 {
  font-size: 32px;
  font-weight: 1000;
  margin-bottom: 14px;
  line-height: 1.15;
}

.contact-card p {
  color: #dbeafe;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
}

.contact-list {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.contact-item {
  padding: 15px 16px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-item b {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 14px;
}

.contact-item span {
  color: #dbeafe;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.map-box {
  min-height: 300px;
  border-radius: 24px;
  overflow: hidden;
  background: #08213f;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
}

.map-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.map-box p {
  color: #dbeafe;
  line-height: 1.6;
  font-size: 14px;
}

.map-box a {
  margin-top: 18px;
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dark);
  font-weight: 1000;
}

.footer {
  padding: 16px 0;
  background: #071b33;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 700;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer strong {
  color: #fff;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1250px) {
  .nav {
    grid-template-columns: 390px 1fr 170px;
    width: min(1200px, calc(100% - 36px));
    gap: 14px;
  }

  .brand {
    width: 390px;
    min-width: 390px;
  }

  .brand-logo {
    width: 125px;
  }

  .brand-title strong {
    font-size: 18px;
  }

  .brand-title span {
    font-size: 9px;
  }

  .menu {
    gap: 10px;
    font-size: 11px;
  }

  .simo-btn {
    padding: 11px 14px;
    font-size: 11px;
  }
}

@media (max-width: 1120px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

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

  .menu,
  .nav-actions .simo-btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    min-height: 720px;
  }

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

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

  .profile-power-grid,
  .contact-wrap,
  .update-grid {
    grid-template-columns: 1fr;
  }

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

  .compact-kegiatan,
  .compact-podcast {
    height: 520px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    width: min(100% - 24px, 1180px);
    min-height: 76px;
  }

  .brand-logo {
    width: 92px;
  }

  .brand-title strong {
    font-size: 13px;
  }

  .brand-title span {
    font-size: 7px;
  }

  .hero {
    min-height: 620px;
    background-position: center center;
  }

  .hero-inner {
    padding-top: 120px;
    padding-bottom: 80px;
  }

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

  .hero p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 290px;
  }

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

  .section-head {
    display: block;
  }

  .section-head h2 {
    font-size: 30px;
  }

  .profile-main-card {
    padding: 24px;
  }

  .profile-main-title {
    font-size: 28px;
  }

  .profile-main-card p {
    font-size: 15px;
  }

  .profile-highlight-row {
    grid-template-columns: 1fr;
  }

  .sekretariat-modern-top {
    padding: 24px 20px 18px;
  }

  .sekretariat-modern-top h3 {
    font-size: 26px;
  }

  .sekretariat-info-list {
    padding: 18px 18px 8px;
  }

  .sekretariat-info-item {
    padding: 14px;
  }

  .sekretariat-action-box {
    margin: 12px 18px 18px;
    padding: 18px;
  }

  .berita-iframe {
    height: 1200px;
  }

  .compact-kegiatan,
  .compact-podcast {
    height: 760px;
  }

  .sosial-iframe,
  .social-iframe {
    height: 1200px;
  }

  .contact-card {
    padding: 22px;
  }

  .contact-card h2 {
    font-size: 28px;
  }

  .map-box {
    min-height: 220px;
  }
}
/* =====================================================
   KONTAK ORGANISASI - POWERFUL VERSION
===================================================== */

.contact-power-section {
  padding: 78px 0 58px !important;
  background:
    radial-gradient(
      circle at top left,
      rgba(59, 130, 246, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(225, 29, 46, 0.14),
      transparent 26%
    ),
    linear-gradient(135deg, #071b33 0%, #0b2b56 50%, #082a63 100%) !important;
  color: #fff !important;
  position: relative;
  overflow: hidden;
}

.contact-power-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0) 24%
    ),
    radial-gradient(
      circle at 12% 18%,
      rgba(96, 165, 250, 0.1),
      transparent 16%
    ),
    radial-gradient(
      circle at 88% 20%,
      rgba(255, 255, 255, 0.05),
      transparent 14%
    );
  pointer-events: none;
}

.contact-power-top {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.contact-power-top h2 {
  margin-top: 10px;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 1000;
  color: #ffffff;
  letter-spacing: -1px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.contact-power-top p {
  margin-top: 14px;
  color: #dbeafe;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 700;
}

.contact-kicker {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-power-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: start;
}

.contact-power-main,
.contact-power-side {
  display: grid;
  gap: 18px;
}

.contact-power-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.contact-power-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #60a5fa, #93c5fd, #f87171);
}

.contact-power-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 28px;
  background: linear-gradient(135deg, #ffffff, #dbeafe);
  color: #0b2b56;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.contact-power-body small {
  display: block;
  margin-bottom: 8px;
  color: #bfdbfe;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-power-body h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 1000;
  margin-bottom: 8px;
}

.contact-power-body p {
  color: #dbeafe;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 700;
}

.contact-power-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8, #0b2b56);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 48px rgba(0, 91, 187, 0.22);
}

.contact-power-banner-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 28px;
  background: rgba(255, 255, 255, 0.18);
}

.contact-power-banner strong {
  display: block;
  color: #ffffff;
  font-size: 19px;
  font-weight: 1000;
  margin-bottom: 6px;
}

.contact-power-banner span {
  display: block;
  color: #dbeafe;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.contact-map-power {
  padding: 30px 26px;
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.06)
    ),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
}

.contact-map-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #eaf2ff;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.7px;
  margin-bottom: 18px;
}

.contact-map-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  font-size: 42px;
  background: linear-gradient(135deg, #ffffff, #dbeafe);
  color: #0b2b56;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.contact-map-power h3 {
  font-size: 34px;
  color: #ffffff;
  font-weight: 1000;
  margin-bottom: 12px;
}

.contact-map-power p {
  color: #dbeafe;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
  max-width: 500px;
  margin: 0 auto;
}

.contact-map-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 1000;
  transition: 0.25s ease;
}

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

.contact-map-btn.primary {
  background: #ffffff;
  color: #0b2b56;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.contact-map-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-map-note {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  padding: 18px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-map-note-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.14);
}

.contact-map-note b {
  display: block;
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-map-note span {
  display: block;
  color: #dbeafe;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.contact-side-mini {
  display: grid;
  gap: 14px;
}

.contact-side-mini-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

.contact-side-mini-card span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 22px;
  background: linear-gradient(135deg, #ffffff, #dbeafe);
  color: #0b2b56;
}

.contact-side-mini-card strong {
  display: block;
  color: #ffffff;
  font-size: 17px;
  font-weight: 1000;
  margin-bottom: 6px;
}

.contact-side-mini-card p {
  color: #dbeafe;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
  margin: 0;
}

/* footer biar nyambung dengan section kontak */
.footer {
  background: #06162c !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .contact-power-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-power-section {
    padding: 58px 0 42px !important;
  }

  .contact-power-top h2 {
    font-size: 34px;
  }

  .contact-power-top p {
    font-size: 15px;
  }

  .contact-power-card {
    padding: 18px 16px;
    gap: 14px;
  }

  .contact-power-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .contact-power-body h3 {
    font-size: 18px;
  }

  .contact-map-power {
    padding: 24px 18px;
  }

  .contact-map-icon {
    width: 74px;
    height: 74px;
    font-size: 36px;
  }

  .contact-map-power h3 {
    font-size: 28px;
  }

  .contact-map-actions {
    flex-direction: column;
  }

  .contact-map-btn {
    width: 100%;
    min-width: 0;
  }

  .contact-map-note {
    padding: 14px;
  }

  .contact-power-banner {
    padding: 18px;
    align-items: flex-start;
  }

  .contact-side-mini-card {
    padding: 16px;
  }
}
/* =====================================================
   FIX HERO BUTTON: POSISI DI PAGAR KIRI BAWAH
   TANPA WADAH LEBAR, HANYA 2 TOMBOL
===================================================== */

.hero {
  position: relative !important;
  min-height: 760px !important;
  overflow: hidden !important;
  background:
    linear-gradient(
      90deg,
      rgba(5, 31, 64, 0.32),
      rgba(5, 31, 64, 0.14),
      rgba(5, 31, 64, 0.06)
    ),
    var(--hero-image) !important;
  background-size: cover !important;
  background-position: center center !important;
}

.hero-inner {
  position: absolute !important;
  left: 10px !important;
  bottom: 92px !important; /* posisi di area pagar */
  transform: none !important;
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  text-align: left !important;
  z-index: 20 !important;
}

.hero-kicker,
.hero h1,
.hero p {
  display: none !important;
}

.hero-buttons {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
  min-width: 220px !important;
  height: 54px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 1000 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(255, 255, 255, 0.34) !important;
  transition: 0.25s ease !important;
}

.hero-buttons .btn-primary {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 12px rgba(255, 255, 255, 0.12) !important;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.35),
    0 0 12px rgba(255, 255, 255, 0.2) !important;
}

.hero-buttons .btn-secondary {
  background: rgba(0, 91, 187, 0.38) !important;
  color: #ffffff !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 16px rgba(0, 91, 187, 0.3) !important;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.35),
    0 0 12px rgba(255, 255, 255, 0.2) !important;
}

.hero-buttons .btn-primary:hover,
.hero-buttons .btn-secondary:hover {
  transform: translateY(-2px) !important;
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.3),
    0 0 18px rgba(255, 255, 255, 0.14) !important;
}

@media (max-width: 900px) {
  .hero-inner {
    left: 30px !important;
    bottom: 22px !important;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    min-width: 200px !important;
    height: 50px !important;
    font-size: 13px !important;
    padding: 0 18px !important;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 560px !important;
  }

  .hero-inner {
    left: 50% !important;
    bottom: 18px !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    padding: 0 16px !important;
  }

  .hero-buttons {
    justify-content: center !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100% !important;
    max-width: 280px !important;
    min-width: 0 !important;
  }
}

/* Profil Organisasi dari SIMO */
.profile-embed-section {
  background: linear-gradient(180deg, #f4f8fd 0%, #ffffff 55%, #eef5ff 100%);
}

.profil-embed-shell {
  overflow: hidden;
  border-radius: 28px;
  background: #f4f8fd;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
}

.profil-iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  height: 720px;
  border: 0;
  background: #f4f8fd;
}

@media (max-width: 900px) {
  .profil-iframe {
    min-height: 980px;
    height: 980px;
  }
}

@media (max-width: 620px) {
  .profil-iframe {
    min-height: 1180px;
    height: 1180px;
  }
}
/* =====================================================
   HALAMAN APPS SCRIPT DI DALAM LANDING PAGE
===================================================== */

.lp-page-viewer {
  display: none;
  padding: 120px 0 70px;
  background: #f3f7fc;
  min-height: 100vh;
}

body.lp-page-mode .lp-page-viewer {
  display: block;
}

body.lp-page-mode .hero,
body.lp-page-mode .values-section,
body.lp-page-mode #profil,
body.lp-page-mode #berita,
body.lp-page-mode .update-section,
body.lp-page-mode .social-section,
body.lp-page-mode #kontak {
  display: none !important;
}

.lp-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.lp-page-head span {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef4ff;
  color: #3154a3;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.lp-page-head h1 {
  margin: 0;
  color: #0b1f4d;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 1000;
  letter-spacing: -1px;
}

.lp-page-head p {
  margin: 10px 0 0;
  max-width: 760px;
  color: #5d6b84;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 750;
}

.lp-page-back {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #253a7a, #3f5fc2);
  color: #ffffff;
  padding: 13px 20px;
  font-weight: 1000;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(37, 58, 122, 0.22);
}

.lp-page-frame-wrap {
  border-radius: 30px;
  overflow: hidden;
  background: #f3f7fc;
  border: 1px solid rgba(219, 228, 243, 0.95);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.lp-page-iframe {
  width: 100%;
  border: 0;
  display: block;
  background: #f3f7fc;
}

@media (max-width: 720px) {
  .lp-page-viewer {
    padding: 100px 0 50px;
  }

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

  .lp-page-back {
    width: 100%;
  }
}
/* =====================================================
   MODE HALAMAN APPS SCRIPT DI DALAM LANDING PAGE
   Header LP tetap tampil, kontak/footer tetap tampil
===================================================== */

.lp-app-page {
  display: none;
  padding: 120px 0 48px;
  background: #f3f7fc;
}

body.lp-app-mode .lp-app-page {
  display: block;
}

/* Saat mode halaman aktif, sembunyikan isi beranda utama.
   Kontak dan footer tetap dibiarkan tampil. */
body.lp-app-mode .hero,
body.lp-app-mode .values-section,
body.lp-app-mode #profil,
body.lp-app-mode #berita,
body.lp-app-mode .update-section,
body.lp-app-mode .social-section {
  display: none !important;
}

.lp-app-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.lp-app-head span {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef4ff;
  color: #3154a3;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.lp-app-head h1 {
  margin: 0;
  color: #0b1f4d;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 1000;
  letter-spacing: -1px;
}

.lp-app-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #253a7a, #3f5fc2);
  color: #ffffff;
  padding: 13px 20px;
  font-weight: 1000;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(37, 58, 122, 0.22);
}

.lp-app-frame-wrap {
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.lp-app-iframe {
  width: 100%;
  border: 0;
  display: block;
  background: transparent;
}

@media (max-width: 720px) {
  .lp-app-page {
    padding: 98px 0 38px;
  }

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

  .lp-app-back {
    width: 100%;
  }
}
/* =====================================================
   KEGIATAN SOSIAL - LANDING PAGE & DETAIL
   Tujuan:
   1. Di beranda LP hanya tampil arsip sosial publik
   2. Bagian dashboard bawah dari AppScript tidak ikut terlihat
   3. Detail sosial tetap memakai header/menu/footer landing page
===================================================== */

/* iframe Kegiatan Sosial di beranda landing page */
#sosialIframe,
.sosial-iframe,
.social-iframe {
  width: 100% !important;
  height: 760px !important;
  min-height: 760px !important;
  max-height: 760px !important;
  border: 0 !important;
  display: block !important;
  background: transparent !important;
}

/* bungkus iframe sosial supaya bagian bawah yang tidak perlu tidak terlihat */
.sosial-frame-wrap,
.social-frame-wrap {
  width: 100% !important;
  height: 760px !important;
  max-height: 760px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1) !important;
}

/* Halaman detail sosial di dalam landing page */
.sosial-detail-page {
  display: none;
  padding: 112px 0 50px;
  background: #f3f7fc;
}

/* Saat mode detail sosial aktif */
body.sosial-detail-mode .sosial-detail-page {
  display: block !important;
}

/* Saat detail sosial aktif, isi beranda utama disembunyikan.
   Header/menu tetap tampil karena .topbar tidak disembunyikan.
   Kontak/footer juga tetap tampil. */
body.sosial-detail-mode .hero,
body.sosial-detail-mode .values-section,
body.sosial-detail-mode #profil,
body.sosial-detail-mode #berita,
body.sosial-detail-mode #kegiatan,
body.sosial-detail-mode #sosial,
body.sosial-detail-mode #podcast,
body.sosial-detail-mode .update-section,
body.sosial-detail-mode .social-section {
  display: none !important;
}

.sosial-detail-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.sosial-detail-head span {
  display: inline-flex;
  border-radius: 999px;
  background: #eef4ff;
  color: #3154a3;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.sosial-detail-head h1 {
  margin: 0;
  color: #0b1f4d;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 1000;
  letter-spacing: -1px;
}

.sosial-detail-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #253a7a, #3f5fc2);
  color: #ffffff;
  padding: 13px 20px;
  font-weight: 1000;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(37, 58, 122, 0.22);
}

.sosial-detail-frame-wrap {
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  box-shadow: none;
}

.sosial-detail-iframe {
  width: 100%;
  min-height: 2200px;
  border: 0;
  display: block;
  background: transparent;
}

@media (max-width: 720px) {
  #sosialIframe,
  .sosial-iframe,
  .social-iframe {
    height: 980px !important;
    min-height: 980px !important;
    max-height: 980px !important;
  }

  .sosial-frame-wrap,
  .social-frame-wrap {
    height: 980px !important;
    max-height: 980px !important;
  }

  .sosial-detail-page {
    padding: 98px 0 42px;
  }

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

  .sosial-detail-back {
    width: 100%;
  }

  .sosial-detail-iframe {
    min-height: 2600px;
  }
}
.menu .lp-menu-btn-link{
  background:transparent;
  border:0;
  color:#ffffff;
  white-space:nowrap;
  padding:32px 0;
  position:relative;
  text-shadow:0 3px 12px rgba(0,0,0,.42);
  font-size:12px;
  font-weight:1000;
  font-family:Arial, Helvetica, sans-serif;
  cursor:pointer;
}

.menu .lp-menu-btn-link::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:22px;
  height:3px;
  border-radius:999px;
  background:#dbeafe;
  transform:scaleX(0);
  transition:.25s ease;
}

.menu .lp-menu-btn-link:hover{
  color:#dbeafe;
}

.menu .lp-menu-btn-link:hover::after{
  transform:scaleX(1);
}

.mobile-menu .lp-mobile-btn-link{
  display:block;
  width:100%;
  text-align:left;
  background:transparent;
  border:0;
  padding:13px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-size:14px;
  font-weight:900;
  font-family:Arial, Helvetica, sans-serif;
  cursor:pointer;
}
#lpAppPage{
  display:none;
}

.lp-app-page{
  background:#f3f7fc;
}

.lp-app-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:22px;
  margin-bottom:24px;
}

.lp-app-head span{
  display:inline-flex;
  border-radius:999px;
  background:#eef4ff;
  color:#3154a3;
  padding:8px 14px;
  font-size:12px;
  font-weight:1000;
  letter-spacing:.08em;
  margin-bottom:12px;
}

.lp-app-head h1{
  margin:0;
  color:#0b1f4d;
  font-size:clamp(36px,4vw,56px);
  line-height:1.05;
  font-weight:1000;
}

.lp-app-back{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:linear-gradient(135deg,#253a7a,#3f5fc2);
  color:#fff !important;
  padding:13px 20px;
  font-weight:1000;
  text-decoration:none;
  white-space:nowrap;
}

.lp-app-frame-wrap{
  border:0;
  background:transparent;
  overflow:visible;
  box-shadow:none;
}

.lp-app-iframe{
  width:100%;
  border:0;
  display:block;
  background:transparent;
}
body.lp-manual-page-mode #lpAppPage,
body.lp-manual-page-mode .lp-app-page{
  display:block !important;
  padding-top:110px !important;
  background:#f3f7fc !important;
  min-height:100vh !important;
}

body.lp-manual-page-mode #beranda,
body.lp-manual-page-mode #profil,
body.lp-manual-page-mode #berita,
body.lp-manual-page-mode #kegiatan,
body.lp-manual-page-mode #kegiatan-sosial,
body.lp-manual-page-mode #kontak,
body.lp-manual-page-mode .values-section,
body.lp-manual-page-mode .profile-section,
body.lp-manual-page-mode .berita-section,
body.lp-manual-page-mode .update-section,
body.lp-manual-page-mode .social-section,
body.lp-manual-page-mode .contact-section,
body.lp-manual-page-mode #lpPageViewer,
body.lp-manual-page-mode #sosialDetailPage{
  display:none !important;
}

body.lp-manual-page-mode .topbar{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  z-index:999999 !important;
}
.sosial-full-script-section{
  padding-top:120px;
  background:#f4f8fd;
}

.sosial-full-script-wrap{
  border:0 !important;
  box-shadow:none !important;
  background:transparent !important;
  overflow:visible !important;
}

.sosial-full-script-iframe{
  width:100% !important;
  height:3600px !important;
  min-height:3600px !important;
  border:0 !important;
  display:block !important;
  background:transparent !important;
}
#kegiatan-sosial .social-frame-wrap{
  border:0 !important;
  box-shadow:none !important;
  background:transparent !important;
  overflow:visible !important;
}

#kegiatan-sosial #sosialIframe,
#kegiatan-sosial .sosial-full-script-iframe{
  width:100% !important;
  height:3600px !important;
  min-height:3600px !important;
  max-height:none !important;
  border:0 !important;
  display:block !important;
  background:transparent !important;
}
#path-sosial-appscript{
  display:none;
}

#path-sosial-appscript:target{
  display:block;
}

.path-sosial-appscript-page{
  padding:120px 0 50px;
  background:#f3f7fc;
  min-height:100vh;
}

.path-sosial-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:22px;
  margin-bottom:24px;
}

.path-sosial-head span{
  display:inline-flex;
  border-radius:999px;
  background:#eef4ff;
  color:#3154a3;
  padding:8px 14px;
  font-size:12px;
  font-weight:1000;
  letter-spacing:.08em;
  margin-bottom:12px;
}

.path-sosial-head h1{
  margin:0;
  color:#0b1f4d;
  font-size:clamp(36px,4vw,56px);
  line-height:1.05;
  font-weight:1000;
}

.path-sosial-head p{
  margin-top:10px;
  color:#64748b;
  font-size:15px;
  font-weight:700;
}

.path-sosial-back{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:linear-gradient(135deg,#253a7a,#3f5fc2);
  color:#fff !important;
  padding:13px 20px;
  font-weight:1000;
  text-decoration:none;
  white-space:nowrap;
}

.path-sosial-frame-wrap{
  width:100%;
  border:0;
  background:transparent;
  overflow:visible;
  box-shadow:none;
}

.path-sosial-iframe{
  width:100%;
  height:4200px;
  min-height:4200px;
  border:0;
  display:block;
  background:transparent;
}

@media(max-width:720px){
  .path-sosial-appscript-page{
    padding-top:100px;
  }

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

  .path-sosial-back{
    width:100%;
  }

  .path-sosial-iframe{
    height:5200px;
    min-height:5200px;
  }
}
.topbar{
  z-index:9000 !important;
}

#path-sosial-script-v2{
  display:none;
  position:fixed;
  left:0;
  right:0;
  top:86px;
  bottom:0;
  z-index:8000;
  background:#f3f7fc;
  overflow:auto;
  padding:28px 18px 50px;
}

#path-sosial-script-v2:target{
  display:block !important;
}

.path-sosial-script-inner{
  max-width:1180px;
  margin:0 auto;
}

.path-sosial-script-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:22px;
}

.path-sosial-script-head span{
  display:inline-flex;
  border-radius:999px;
  background:#eef4ff;
  color:#3154a3;
  padding:8px 14px;
  font-size:12px;
  font-weight:1000;
  letter-spacing:.08em;
  margin-bottom:12px;
}

.path-sosial-script-head h1{
  margin:0;
  color:#0b1f4d;
  font-size:clamp(34px,4vw,54px);
  line-height:1.05;
  font-weight:1000;
}

.path-sosial-script-head p{
  margin:10px 0 0;
  color:#64748b;
  font-size:15px;
  font-weight:700;
}

.path-sosial-script-back{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:linear-gradient(135deg,#253a7a,#3f5fc2);
  color:#fff !important;
  padding:13px 20px;
  font-weight:1000;
  text-decoration:none;
  white-space:nowrap;
}

.path-sosial-script-frame{
  width:100%;
  height:4200px;
  min-height:4200px;
  border:0;
  display:block;
  background:transparent;
}

@media(max-width:720px){
  #path-sosial-script-v2{
    top:78px;
    padding:22px 12px 40px;
  }

  .path-sosial-script-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .path-sosial-script-back{
    width:100%;
  }

  .path-sosial-script-frame{
    height:5200px;
    min-height:5200px;
  }
}

/* =====================================================
   RAPIIKAN HEADER + HERO LANDING PAGE V2
   - Header lebih seperti frame
   - Bagian atas gambar hero terasa tertutup frame header
   - Poster/hero lebih rapi dan menyatu
===================================================== */

.topbar{
  background: linear-gradient(90deg, rgba(7,29,74,.96) 0%, rgba(18,48,108,.94) 45%, rgba(9,117,173,.90) 100%) !important;
  border-bottom: 1px solid rgba(255,255,255,.16) !important;
  box-shadow: 0 16px 38px rgba(2, 18, 48, 0.22) !important;
}

.topbar::after{
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:3px;
  background: linear-gradient(90deg, rgba(88,209,255,.92), rgba(112,121,255,.92), rgba(255,103,180,.92));
  pointer-events:none;
}

.nav{
  width: min(1360px, calc(100% - 26px)) !important;
  min-height: 86px !important;
  grid-template-columns: minmax(330px, 450px) 1fr auto !important;
  gap: 20px !important;
}

.brand{
  position: relative;
  gap: 16px !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 8px 14px 8px 8px;
  border-radius: 20px;
  isolation: isolate;
}

.brand::before{
  content:'';
  position:absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 10px 24px rgba(4, 18, 43, 0.16);
  z-index: -1;
}

.brand-logo{
  width: 170px !important;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.26));
}

.brand-title strong{
  font-size: 24px !important;
  line-height: 1.02 !important;
}

.brand-title span{
  margin-top: 5px !important;
  font-size: 11px !important;
  letter-spacing: .05em;
  color: rgba(255,255,255,.96) !important;
}

.menu{
  gap: 14px !important;
}

.menu a{
  padding: 14px 0 !important;
}

.nav-actions{
  justify-self: end;
}

.hero{
  min-height: 820px !important;
  background-position: center top !important;
  background-size: cover !important;
  position: relative;
}

.hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,24,61,.54) 0px, rgba(6,24,61,.30) 90px, rgba(6,24,61,0) 180px),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0) 28%),
    radial-gradient(circle at 18% 18%, rgba(59,130,246,.18), transparent 20%),
    radial-gradient(circle at 82% 18%, rgba(148,163,184,.10), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(0,0,0,.08), transparent 35%);
  pointer-events: none;
}

.hero::after{
  content:'';
  position:absolute;
  left: 24px;
  right: 24px;
  top: 84px;
  height: 38px;
  border-radius: 0 0 26px 26px;
  background: linear-gradient(180deg, rgba(8,24,58,.34), rgba(8,24,58,.08), rgba(8,24,58,0));
  pointer-events:none;
}

.hero-inner{
  min-height: 820px !important;
  display: flex !important;
  align-items: flex-end !important;
  padding-top: 150px !important;
  padding-bottom: 84px !important;
  z-index: 2;
}

.hero-buttons{
  gap: 16px !important;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary{
  box-shadow: 0 16px 34px rgba(8, 23, 53, .28);
}

@media (max-width: 1100px){
  .nav{
    grid-template-columns: minmax(280px, 1fr) 1fr auto !important;
  }

  .brand-logo{
    width: 150px !important;
  }

  .brand-title strong{
    font-size: 22px !important;
  }
}

@media (max-width: 900px){
  .nav{
    min-height: 78px !important;
    grid-template-columns: 1fr auto !important;
  }

  .brand{
    padding: 6px 10px 6px 6px;
    max-width: calc(100vw - 110px);
  }

  .brand-logo{
    width: 130px !important;
  }

  .brand-title strong{
    font-size: 20px !important;
  }

  .brand-title span{
    font-size: 9px !important;
  }

  .menu{
    display:none !important;
  }

  .mobile-toggle{
    display:inline-flex !important;
  }

  .hero{
    min-height: 760px !important;
    background-position: center top !important;
  }

  .hero-inner{
    min-height: 760px !important;
    padding-top: 140px !important;
    padding-bottom: 70px !important;
  }

  .hero::after{
    left: 14px;
    right: 14px;
    top: 78px;
    height: 28px;
  }
}


/* =====================================================
   LANDING PAGE V3 - DESKTOP VIEW ON PHONE
   HP menampilkan layout desktop utuh selebar halaman.
===================================================== */
html.lp-desktop-view-on-phone,
html.lp-desktop-view-on-phone body {
  width: 1440px !important;
  min-width: 1440px !important;
  max-width: none !important;
}

html.lp-desktop-view-on-phone body {
  overflow-x: hidden !important;
}

html.lp-desktop-view-on-phone .topbar {
  min-width: 1440px !important;
}

html.lp-desktop-view-on-phone .mobile-menu,
html.lp-desktop-view-on-phone .mobile-toggle {
  display: none !important;
}


/* =====================================================
   WEBSITE V4 - HOME PROFESSIONAL + QUICK ACCESS
===================================================== */

.quick-access-section{
  position:relative;
  z-index:5;
  margin-top:-34px;
  padding:0 0 34px;
}

.quick-access-section .container{
  position:relative;
}

.quick-access-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
  padding:0 8px;
}

.quick-access-head span{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  background:#eaf2ff;
  color:#3154a3;
  font-size:11px;
  font-weight:1000;
  letter-spacing:.12em;
}

.quick-access-head h2{
  margin:10px 0 6px;
  color:#0b1f4d;
  font-size:clamp(28px,3vw,42px);
  line-height:1.05;
  font-weight:1000;
  letter-spacing:-.8px;
}

.quick-access-head p{
  margin:0;
  color:#65748d;
  font-size:14px;
  font-weight:700;
}

.quick-access-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:12px;
  padding:14px;
  border-radius:26px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(203,213,225,.72);
  box-shadow:0 24px 60px rgba(15,35,75,.14);
  backdrop-filter:blur(16px);
}

.quick-access-card{
  min-height:150px;
  padding:18px 14px;
  border-radius:20px;
  background:linear-gradient(180deg,#ffffff,#f7faff);
  border:1px solid #e3ebf7;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  transition:.22s ease;
  box-shadow:0 10px 24px rgba(15,35,75,.05);
}

.quick-access-card:hover{
  transform:translateY(-5px);
  border-color:#b9cdf4;
  box-shadow:0 18px 36px rgba(24,62,125,.14);
}

.quick-access-card.featured{
  background:linear-gradient(145deg,#102f66,#315fbe);
  border-color:rgba(255,255,255,.18);
}

.quick-access-icon{
  width:46px;
  height:46px;
  border-radius:15px;
  display:grid;
  place-items:center;
  margin-bottom:14px;
  background:#edf4ff;
  font-size:22px;
}

.quick-access-card.featured .quick-access-icon{
  background:rgba(255,255,255,.15);
}

.quick-access-card strong{
  color:#102044;
  font-size:14px;
  line-height:1.25;
  font-weight:1000;
}

.quick-access-card small{
  margin-top:7px;
  color:#687790;
  font-size:11px;
  line-height:1.5;
  font-weight:700;
}

.quick-access-card.featured strong,
.quick-access-card.featured small{
  color:#fff;
}

/* Hero homepage dibuat lebih menyatu dengan section berikutnya */
.hero{
  box-shadow:inset 0 -40px 80px rgba(2,18,48,.16);
}

.hero-buttons{
  padding:12px;
  border-radius:22px;
  background:rgba(6,25,58,.18);
  backdrop-filter:blur(8px);
  width:max-content;
  max-width:100%;
}

/* Kegiatan terbaru di home dibuat lebih tegas */
.update-card{
  border:1px solid #dce7f5 !important;
  box-shadow:0 18px 44px rgba(15,35,75,.09) !important;
}

.update-card-head{
  padding-bottom:14px;
  border-bottom:1px solid #edf2f8;
}

.update-card-head h3{
  color:#0e2758 !important;
}

.agenda-full-link{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  padding:9px 14px !important;
  border-radius:999px;
  background:#eaf2ff;
  color:#2857b5 !important;
  font-weight:1000 !important;
}

/* Desktop-view HP tetap menggunakan susunan desktop */
html.lp-desktop-view-on-phone .quick-access-grid{
  grid-template-columns:repeat(6,minmax(0,1fr)) !important;
}

@media(max-width:1100px){
  .quick-access-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media(max-width:720px){
  .quick-access-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}


/* =====================================================
   WEBSITE V5 - SHOWCASE KEGIATAN & PODCAST SEPERTI BERITA
===================================================== */

.showcase-section{
  padding:70px 0;
  background:#f4f8fd;
}

.podcast-showcase-section{
  padding-top:10px;
  padding-bottom:76px;
}

.podcast-kicker{
  background:#fff1f2 !important;
  color:#c62838 !important;
}

.home-showcase-frame{
  width:100%;
  min-height:520px;
  border:1px solid #e1e8f3;
  border-radius:26px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 20px 48px rgba(15,35,75,.10);
}

.home-showcase-iframe{
  display:block;
  width:100%;
  height:520px;
  border:0;
  background:#fff;
}

html.lp-desktop-view-on-phone .showcase-section .container{
  width:min(1180px,calc(100% - 40px)) !important;
}


/* =====================================================
   WEBSITE V6 - PUSAT PELAYANAN ORGANISASI UNIVERSAL
===================================================== */

.service-center-section{
  position:relative;
  padding:78px 0 64px;
  background:
    radial-gradient(circle at 12% 18%,rgba(66,133,244,.13),transparent 25%),
    radial-gradient(circle at 88% 80%,rgba(36,191,210,.12),transparent 24%),
    linear-gradient(180deg,#edf4fb 0%,#e8f1fa 100%);
  border-top:1px solid rgba(203,213,225,.8);
}

.service-center-section::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:4px;
  background:linear-gradient(90deg,#2247a4,#4e70e6,#30b8c7,#ec6b92);
}

.service-center-heading{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:22px;
}

.service-center-heading h2{
  margin:10px 0 8px;
  color:#102453;
  font-size:clamp(34px,4vw,54px);
  line-height:1;
  font-weight:1000;
  letter-spacing:-1.2px;
}

.service-center-heading p{
  max-width:760px;
  margin:0;
  color:#64748b;
  font-size:14px;
  line-height:1.65;
  font-weight:700;
}

.service-kicker{
  background:#e3edff !important;
  color:#3154a3 !important;
}

.service-center-open{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  background:linear-gradient(135deg,#173773,#4567d6);
  color:#fff;
  font-weight:1000;
  font-size:13px;
  box-shadow:0 14px 28px rgba(31,70,155,.20);
  transition:.2s ease;
}

.service-center-open:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(31,70,155,.26);
}

.service-center-frame-wrap{
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(205,217,235,.92);
  background:#102551;
  box-shadow:0 28px 70px rgba(19,45,96,.16);
}

.service-center-frame{
  display:block;
  width:100%;
  height:560px;
  border:0;
  background:#102551;
}

.quick-access-card.service-quick-card{
  background:linear-gradient(145deg,#0f2f65,#2d62bc);
  border-color:rgba(255,255,255,.15);
}

.quick-access-card.service-quick-card strong,
.quick-access-card.service-quick-card small{
  color:#fff;
}

.quick-access-card.service-quick-card .quick-access-icon{
  background:rgba(255,255,255,.15);
}

/* 7 kartu akses cepat pada desktop */
@media(min-width:1201px){
  .quick-access-grid{
    grid-template-columns:repeat(7,minmax(0,1fr)) !important;
  }
}

@media(max-width:900px){
  .service-center-heading{
    flex-direction:column;
    align-items:flex-start;
  }

  .service-center-frame{
    height:620px;
  }
}

/* HP sedang menggunakan desktop-view 1440px, jadi layout ini tetap
   mengikuti tampilan desktop dan tidak menumpuk ke bawah. */
html.lp-desktop-view-on-phone .service-center-frame{
  height:560px !important;
}


/* =====================================================
   WEBSITE V7
   - Sekretariatan tidak mendobel Pusat Pelayanan footer
   - Footer copyright lama dihapus dari HTML
===================================================== */
body.lp-router-mode.lp-sekretariat-mode #pusat-pelayanan-footer{
  display:none !important;
}


/* =====================================================
   WEBSITE V8 - FOOTER RESMI TAHUN OTOMATIS
===================================================== */
.site-legal-footer{
  position:relative;
  z-index:30;
  width:100%;
  padding:0;
  background:
    radial-gradient(circle at 86% 0%,rgba(39,176,207,.18),transparent 28%),
    linear-gradient(90deg,#0b1c44 0%,#112c62 52%,#0b4967 100%);
  border-top:1px solid rgba(255,255,255,.10);
  box-shadow:0 -14px 36px rgba(8,24,55,.10);
}

.site-legal-inner{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:#fff;
}

.site-legal-brand{
  display:flex;
  align-items:center;
  gap:11px;
  font-size:13px;
  letter-spacing:.025em;
}

.site-legal-brand strong{
  font-weight:1000;
}

.site-legal-dot{
  width:11px;
  height:11px;
  border-radius:50%;
  background:linear-gradient(135deg,#38bdf8,#67e8f9);
  box-shadow:0 0 0 6px rgba(103,232,249,.10);
}

.site-legal-copy{
  color:#cfe0f7;
  font-size:12px;
  font-weight:800;
}

body.lp-router-mode #siteLegalFooter,
body.lp-router-mode.lp-sekretariat-mode #siteLegalFooter{
  display:block !important;
}

@media(max-width:760px){
  .site-legal-inner{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    padding:18px 12px;
  }
}
