/* ============================================================
   FAKECA ABIANSEMAL — Restyled to match reference design
   Color palette: Navy #1a3a6b, Gold/Orange #e8a020, White #fff
   ============================================================ */

:root {
  --navy: #1a3a6b;
  --navy-dark: #0f2548;
  --navy-mid: #1f4080;
  --navy-light: #e8edf8;
  --gold: #e8a020;
  --gold-dark: #c8880c;
  --gold-light: #fef3d8;
  --white: #ffffff;
  --off-white: #f5f7fc;
  --gray-light: #e4e8f2;
  --gray-text: #5a6475;
  --text-dark: #1a1f35;
  --green: #16a34a;
  --red: #dc2626;
  --shadow-sm: 0 2px 12px rgba(26, 58, 107, 0.08);
  --shadow-md: 0 8px 28px rgba(26, 58, 107, 0.13);
  --shadow-lg: 0 20px 56px rgba(26, 58, 107, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --font-main: 'Plus Jakarta Sans', 'Lato', sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --hover-lift: -6px;
  --hover-shadow: var(--shadow-lg);
  --hover-speed: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  line-height: 1.6;
  background: var(--off-white);
  color: #1a1a2e;
}

.material-symbols-outlined,
.material-symbols-rounded {
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ==================== UTILITY ==================== */
.section-badge {
  display: inline-block;
  background: var(--navy-light);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-badge.center {
  display: block;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 10px;
  text-align: center
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 28px;
}

.section-title span {
  color: var(--gold);
}

.section-title.center {
  text-align: center;
}

/* ===================== NAVBAR (from reference) ===================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

/* ==================== NAVBAR ==================== */
.navbar-container {
  position: fixed;
  top: 16px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 9999;
  transition: top var(--transition);
}

.navbar-capsule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 24px;
  width: min(88%, 1200px);
  background: var(--white);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-image img {
  width: 44px;
  height: auto;
}

.logo-link {
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.brand-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: background var(--transition);
  z-index: 10001;
}

.hamburger:hover {
  background: var(--gray-light);
}

.hamburger span {
  display: block;
  height: 2.5px;
  width: 22px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* NAV MENU */
.menu-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu ul {
  display: flex;
  list-style: none;
  gap: 4px;
}

.menu ul li a {
  position: relative;
  text-decoration: none;
  color: var(--gray-text);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all var(--transition);
}

.menu ul li a:hover {
  color: var(--navy);
  background: var(--navy-light);
}

.btn-say-hello {
  background: var(--navy);
  color: var(--white);
  padding: 9px 22px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-say-hello:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232, 160, 32, 0.4);
}


/* ===================== HERO (UNCHANGED — your original) ===================== */

.hero {
  min-height: 500px;
  padding: 120px 8% 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: url("asset/KIDS PLACEHOLDER.jpg") right center / max(85%, 1100px) no-repeat;
  background-color: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      var(--navy) 0%,
      rgba(26, 58, 107, 0.97) 40%,
      rgba(26, 58, 107, 0.7) 65%,
      rgba(26, 58, 107, 0.05) 100%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("asset/Blue\ Texture.jfif") left center / cover no-repeat;
  opacity: 0.6;
  mix-blend-mode: overlay;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 520px;
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
  color: var(--gold);
  display: block;
}

.hero-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 32px;
  line-height: 1.7;
  max-width: 380px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-aspirasi {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(232, 160, 32, 0.45);
  transition: all var(--transition);
}

.btn-aspirasi:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 160, 32, 0.5);
}

.btn-aspirasi:active {
  transform: scale(0.97);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
}

.stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

/* ===================== SECTION TITLE ===================== */

.section-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 32px;
  text-align: left;
}

/* ===================== ABOUT / VISI MISI ===================== */

.about-fakeca {
  background: var(--white);
  padding: 80px 8%;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.visi-misi {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visi-card,
.misi-card {
  padding: 28px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
  position: relative;
  overflow: hidden;
}

.visi-card:hover,
.misi-card:hover {
  transform: translateY(-4px);
}

.visi-card {
  background: var(--navy);
  color: var(--white);
}

.visi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("asset/Blue Texture.jfif") center/cover no-repeat;
  opacity: 0.6;
  mix-blend-mode: overlay;
}

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

.misi-card {
  background: var(--gold);
  color: var(--navy-dark);
}

.misi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("asset/Yellow Texture.jfif") center/cover no-repeat;
  opacity: 0.8;
  mix-blend-mode: overlay;
}

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

.visi-card h3,
.misi-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.visi-card h3 {
  color: var(--white);
}

.misi-card h3 {
  color: var(--navy-dark);
}

.visi-card h3 .material-symbols-outlined {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 4px;
  font-size: 20px;
}

.misi-card h3 .material-symbols-outlined {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  padding: 4px;
  font-size: 20px;
}

.visi-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.7;
}

.misi-card ul {
  padding-left: 20px;
  color: var(--navy-dark);
  line-height: 1.9;
  font-size: 0.92rem;
  font-weight: 500;
}

/* ==================== STRUKTUR ==================== */
.struktur {
  padding: 0;
}

.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.kewa {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
  width: 100%;
  /* add this */
}

.person {
  background: var(--gold);
  border-radius: var(--radius-md);
  border: 2px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  /* replace width: 250px with this */
  min-width: 160px;
  /* add this — prevents cards from getting too narrow */
  height: auto;
  /* replace height: 250px */
  padding-top: 0;
  text-align: center;
}

.person:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}

.person img {
   width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center 50%;
  transition: transform 0.5s ease;
  display: block;
}

.person-info {
  width: 100%;
}

.person-info h3 {
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  padding: 5px 8px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(232, 160, 32, 0.3);
}

.person-info p {
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.35;
  display: -webkit-box;
  padding: 8px 10px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  background: var(--gold);
  color: var(--white);
  border: 1px solid rgba(232, 160, 32, 0.3);
}

.btn-anggotalengkap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 7%;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(232, 160, 32, 0.45);
  transition: all var(--transition);
}

.btn-anggotalengkap:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 160, 32, 0.5);
}

.btn-anggotalengkap:active {
  transform: scale(0.97);
}

/* BACKDROP */
.modal-struktur-container {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 80px 16px 40px;
  z-index: 9999; /* Higher than normal to overlay correctly */
}

/* MODAL BOX */
.modal-struktur {
  background: var(--white);
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 30px 80px rgba(15, 37, 72, 0.22);
  border: 1px solid rgba(26, 58, 107, 0.08);
  position: relative;
  animation: msPopIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes msPopIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* HEADER */
.modal-struktur__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  border-bottom: 2px solid var(--gray-light);
  padding-bottom: 16px;
}

.modal-struktur__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 58, 107, 0.2);
}

.modal-struktur__title {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}

.modal-struktur__title span {
  color: var(--gold);
}

/* CLOSE BUTTON */
.modal-struktur__close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-struktur__close:hover {
  background: #fef2f2;
  color: var(--red);
  border-color: rgba(220, 38, 38, 0.25);
  transform: rotate(90deg);
}

/* TOP 6 GRID */
.struktur-top {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

/* CARDS */
.struktur-card {
  display: flex;
  flex-direction: column;
  background: #f8fafc;
  border-radius: 16px;
  padding: 12px;
  border: 1px solid #e8edf3;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.struktur-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(26, 58, 107, 0.08);
  border-color: rgba(26, 58, 107, 0.15);
}

/* IMAGE ALIGNMENT FIX */
.struktur-card-img-container {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--navy-light);
}

.struktur-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
  display: block;
}

.struktur-card:hover img {
  transform: scale(1.05);
}

/* INFO STACK */
.struktur-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* REWORKED TAGS */
.role-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 50px;
  margin-top: 12px;
  text-align: center;
  white-space: nowrap;
}

.badge-ketua {
  background: var(--gold-light);
  color: var(--gold-dark);
  border: 1px solid rgba(232, 160, 32, 0.3);
}

.badge-wakil {
  background: var(--navy-light);
  color: var(--navy);
  border: 1px solid rgba(26, 58, 107, 0.2);
}

.badge-sek1, .badge-sek2 {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid rgba(3, 105, 161, 0.2);
}

.badge-bend1, .badge-bend2 {
  background: #eef2ff;
  color: #4338ca;
  border: 1px solid rgba(67, 56, 202, 0.2);
}

/* REWORKED NAMES */
.member-name {
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-top: 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7rem; /* Keep text heights consistent for alignment */
}

/* DIVISION ROW */
.struktur-divisions-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.struktur-division {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e8edf3;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.struktur-division h3 {
  padding: 14px 24px;
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin: 0;
  color: var(--white);
}

.div-kegiatan h3 {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.div-humas h3 {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.div-dokumentasi h3 {
  background: linear-gradient(135deg, #10b981, #047857);
}

.struktur-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns on desktop for beautiful visual flow */
  gap: 16px;
  padding: 20px;
  background: #f8fafc;
}

/* DIVISION MEMBERS */
.struktur-member {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 14px;
  padding: 10px;
  border: 1px solid #e8edf3;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.struktur-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(26, 58, 107, 0.06);
  border-color: rgba(26, 58, 107, 0.12);
}

.struktur-member-img-container {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: var(--off-white);
}

.struktur-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
  display: block;
}

.struktur-member:hover img {
  transform: scale(1.05);
}

.struktur-member-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* REWORKED MEMBER TAGS */
.member-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 50px;
  margin-top: 10px;
  text-align: center;
  white-space: nowrap;
}

.tag-koor {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.tag-anggota {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid rgba(100, 116, 139, 0.15);
}

/* MEMBER NAMES */
.struktur-member .member-name {
  font-size: 0.8rem;
  margin-top: 6px;
  min-height: 2.4rem; /* Keep heights consistent */
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .modal-struktur {
    padding: 30px;
  }
  
  .struktur-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  
  .struktur-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .modal-struktur-container {
    padding: 60px 12px 24px;
  }
  
  .modal-struktur {
    width: 96%;
    padding: 24px 16px;
  }
  
  .modal-struktur__header {
    margin-bottom: 24px;
  }

  .struktur-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .struktur-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 14px;
  }
}

/* ===================== PROGRAM KERJA ===================== */

.program {
  background: var(--off-white);
  padding: 80px 8%;
}

.program-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 2px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: default;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy);
}

.program-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.program-card.featured h3 {
  color: var(--white);
}

.program-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.program-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-light);
  border-radius: 14px;
}

.program-icon .material-symbols-rounded {
  font-size: 28px;
  color: var(--navy);
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 28;
}

.program-card.featured .program-icon {
  background: rgba(255, 255, 255, 0.2);
}

.program-card.featured .program-icon .material-symbols-rounded {
  color: var(--white);
}

.program-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.program-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.6;
}


/* Pgm Modal */
.pgm-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 28, 60, 0.72);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 24px 16px;
}

.pgm-modal {
  background: #f4f6fb;
  width: 100%;
  max-width: 640px;
  max-height: 675px;
  overflow-y: auto;
  border-radius: 22px;
  padding: 32px 32px 24px;
  position: relative;
  box-sizing: border-box;
  animation: pgmPopIn .3s cubic-bezier(.22, .68, 0, 1.2) both;
}

@keyframes pgmPopIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pgm-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #dde3ee;
  background: #fff;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: background .15s;
}

.pgm-close:hover {
  background: #e8edf5;
}

.pgm-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.pgm-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--navy-light);
  border-radius: 10px;
  flex-shrink: 0;
}

.pgm-icon .material-symbols-rounded {
  font-size: 22px;
  color: var(--navy);
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.pgm-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a2744;
  margin: 0;
}

.pgm-desc {
  font-size: 14px;
  color: #5a6a88;
  margin: 0 0 24px;
  line-height: 1.55;
}

.pgm-divider {
  border: none;
  border-top: 1.5px solid #dde3ee;
  margin: 0 0 20px;
}

.pgm-jadwal-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a2744;
  margin: 0 0 14px;
}

.pgm-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #dde3ee;
}

.pgm-item:last-of-type {
  border-bottom: none;
}

.pgm-date {
  background: #1e3a8a;
  color: #fff;
  border-radius: 10px;
  min-width: 64px;
  text-align: center;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  flex-shrink: 0;
}

.pgm-item-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.pgm-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--navy-light);
  border-radius: 6px;
  flex-shrink: 0;
}

.pgm-item-icon .material-symbols-rounded {
  font-size: 15px;
  color: var(--navy);
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

.pgm-item-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a2744;
}

.pgm-item-desc {
  font-size: 13px;
  color: #5a6a88;
  margin: 0;
  line-height: 1.45;
}

.pgm-tutup-btn {
  display: block;
  width: 100%;
  margin-top: 22px;
  background: #1e3a8a;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .3px;
  transition: background .2s;
}

.pgm-tutup-btn:hover {
  background: #16306e;
}

/* ===================== CARD BODY (from reference — original style) ===================== */

.card-body {
  padding: 80px 8%;
  background: var(--white);
}

.card-body .container {
  max-width: 1200px;
  margin: 0 auto;
}

.card-title {
  text-align: center;
  margin-bottom: 32px;
}

.card-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 28px;
}

.card-title h2 span {
  color: var(--gold);
}

.card-wrapper {
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 0px;
}

.card-list {
  list-style: none;
}

.card-list .card-item .card-link {
  display: block;
  background: var(--white);
  padding: 16px 16px 14px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: 1.5px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  overflow: hidden;
  cursor: pointer;
}

.card-list .card-item .card-link:hover {
  border-color: var(--navy);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-list .card-link .card-image {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center 65%;
  border-radius: 20px;
  transition: transform 0.35s ease;
}

.card-list .card-item .card-link:hover .card-image {
  transform: scale(1.04);
}

.badge {
  font-family: var(--font-main);
  display: inline-block;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 50px;
  margin: 14px 0 10px;
}

.badge.one {
  color: #9a3412;
  background: #ffedd5;
}

.badge.two {
  color: #14532d;
  background: #dcfce7;
}

.badge.three {
  color: #0f766e;
  background: #ccfbf1;
}

.badge.four {
  color: #1d4ed8;
  background: #dbeafe;
}

.badge.five {
  color: #a21caf;
  background: #fce7f3;
}

.card-link .card-title {
  font-family: var(--font-main);
  font-size: 1.05rem;
  color: var(--navy-dark);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  margin: 8px 0 16px;
  text-align: left;
  transition: color var(--transition);
}

.card-link:hover .card-title {
  color: var(--gold);
}

.card-button {
  height: 36px;
  width: 36px;
  color: var(--navy);
  border-radius: 50%;
  background: var(--navy-light);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-list .card-link:hover .card-button {
  background: var(--navy);
  color: var(--white);
}

.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.card-button .material-symbols-rounded {
  font-size: 18px;
}

/* Swiper controls */
.card-wrapper .swiper-pagination {
  position: static;
  width: auto;
  flex-shrink: 0; /* add this */
  flex-grow: 0;   /* add this */
}

.card-wrapper .swiper-pagination-bullet {
  height: 8px;
  width: 8px;
  background: var(--navy);
  opacity: 0.3;
}

.card-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

.swiper-slide-button {
  position: static !important;
  top: unset !important;
  transform: none !important;
  margin: 0 !important;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}

.swiper-slide-button::after {
  font-size: 18px !important;
  font-weight: 700 !important;
}

.custom-prev,
.custom-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}

.custom-prev:hover,
.custom-next:hover {
  background: var(--navy);
  color: var(--white);
}

.swiper-slide-button,
.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

/* ==================== UPGRADED MODAL CONTAINER ==================== */
.modal-container {
  background: rgba(15, 28, 60, 0.72);
  backdrop-filter: blur(8px);
  position: fixed;
  opacity: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px 16px;
}

.modal-container.show {
  opacity: 1;
  pointer-events: auto;
}

/* ==================== AKSI NYATA MODAL ==================== */
.aksi-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 740px;
  max-height: 90vh;
  box-shadow: var(--shadow-lg), 0 30px 80px rgba(15, 37, 72, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  animation: pgmPopIn .35s cubic-bezier(.22, .68, 0, 1.2) both;
}

.aksi-modal-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 380px;
}

.aksi-modal-body.no-image {
  grid-template-columns: 1fr;
}

.aksi-modal-image-container {
  position: relative;
  background: var(--navy-light);
  overflow: hidden;
}

.aksi-modal-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 58, 107, 0.04), rgba(26, 58, 107, 0.1));
  pointer-events: none;
}

#modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.aksi-modal:hover #modal-image {
  transform: scale(1.03);
}

.aksi-modal-info {
  padding: 40px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.aksi-modal-badge-container {
  margin-bottom: 12px;
  display: flex;
}

/* Restyling badge inside modal */
.aksi-modal-info .badge {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 14px;
  border-radius: 50px;
  margin: 0;
}

.aksi-modal-title {
  font-family: var(--font-main);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.25;
  margin: 0 0 12px;
  text-align: left;
}

.aksi-modal-divider {
  border: none;
  border-top: 1.5px solid var(--gray-light);
  margin-bottom: 16px;
}

.aksi-modal-scrollable {
  max-height: 180px;
  overflow-y: auto;
  padding-right: 8px;
  margin-bottom: 24px;
}

/* Custom Scrollbar for premium feel */
.aksi-modal-scrollable::-webkit-scrollbar {
  width: 6px;
}

.aksi-modal-scrollable::-webkit-scrollbar-track {
  background: var(--off-white);
  border-radius: 4px;
}

.aksi-modal-scrollable::-webkit-scrollbar-thumb {
  background: var(--gray-light);
  border-radius: 4px;
}

.aksi-modal-scrollable::-webkit-scrollbar-thumb:hover {
  background: var(--navy-light);
}

.aksi-modal-desc {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.65;
  text-align: left;
}

/* Premium Tutup Button */
.aksi-tutup-btn {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(26, 58, 107, 0.15);
  width: fit-content;
  align-self: flex-start;
}

.aksi-tutup-btn:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(232, 160, 32, 0.35);
  transform: translateY(-2px);
}

.aksi-tutup-btn:active {
  transform: scale(0.97);
}

/* Close button style for Aksi Modal */
.aksi-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  transition: all 0.2s ease;
  z-index: 10;
}

.aksi-modal .close-modal:hover {
  background: var(--navy-light);
  color: var(--navy);
  border-color: var(--navy-mid);
  transform: rotate(90deg);
}

/* MOBILE AND TABLET RESPONSIVENESS */
@media (max-width: 680px) {
  .aksi-modal {
    max-height: 92vh;
    overflow-y: auto;
  }

  .aksi-modal-body {
    grid-template-columns: 1fr;
  }

  .aksi-modal-image-container {
    height: 240px;
    width: 100%;
  }

  .aksi-modal-info {
    padding: 28px 24px 24px;
  }

  .aksi-modal-title {
    font-size: 1.3rem;
  }
}

/* ===================== KONTAK ===================== */

.kontak {
  background: var(--navy);
  padding: 80px 8%;
  position: relative;
  overflow: hidden;
}

.kontak::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("asset/Blue Texture.jfif") center/cover no-repeat;
  opacity: 0.15;
}

.kontak-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.kontak .section-badge {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

.kontak .section-title {
  color: var(--white);
}

.kontak .section-title span {
  color: var(--gold);
}

.kontak-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 48px;
  margin-top: -12px;
}

.kontak-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.kontak-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 36px 32px;
  transition: background var(--transition);
}

.kontak-box:hover {
  background: rgba(255, 255, 255, 0.08);
}

.kontak-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.kontak-icon-wrap {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kontak-symbol {
  font-size: 26px;
  color: var(--white);
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.kontak-info h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.kontak-info p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.kontak-info p a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--transition);
}

.kontak-info p a:hover {
  color: var(--gold);
}

/* ===================== FOOTER ===================== */

footer {
  background: var(--navy-dark);
}

.footer-main {
  padding: 60px 8% 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo img {
  width: 40px;
  height: auto;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-logo .brand-name {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
}

.footer-logo .brand-sub {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all var(--transition);
}

.footer-social-btn .material-symbols-rounded {
  font-size: 18px;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 20;
}

.footer-social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition);
}

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

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}

.footer-contact-list .material-symbols-rounded {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 20;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-list a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 18px 8%;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
}

@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-desc {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .footer-main {
    padding: 48px 6% 32px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ===================== PORTAL ASPIRASI ===================== */
.aspirasi-page {
  background: var(--off-white);
}

.portal-aspirasi {
  padding: 110px 6% 72px;
}

.aspirasi-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.aspirasi-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.aspirasi-header h1 span {
  color: var(--gold);
}

.aspirasi-header p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.aspirasi-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* FORM BOX */
.form-box {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-light);
  box-shadow: var(--shadow-md);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-light);
}

.form-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
}

.form-icon .material-symbols-rounded {
  font-size: 26px;
}

.form-header h2 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}

.form-header p {
  color: var(--gray-text);
  font-size: 0.85rem;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.optional {
  font-weight: 400;
  color: var(--gray-text);
}

.form-box input[type="text"],
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-light);
  font-size: 0.9rem;
  font-family: var(--font-main);
  background: var(--off-white);
  color: var(--text-dark);
  transition: all var(--transition);
  outline: none;
}

.form-box select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6475' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 38px;
  cursor: pointer;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.08);
}

.form-box textarea {
  height: 110px;
  resize: vertical;
}

/* FILE INPUT */
.file-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.form-box input[type="file"] {
  display: none;
}

.file-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--navy-light);
  color: var(--navy);
  border: 1.5px dashed var(--navy);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.file-label .material-symbols-rounded {
  font-size: 18px;
}

.file-label:hover {
  background: var(--navy);
  color: var(--white);
}

.file-name {
  font-size: 0.8rem;
  color: var(--gray-text);
  font-style: italic;
}

/* CHECKBOX */
.checkbox-group .checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}

.form-error {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.07);
  border: 1.5px solid rgba(220, 38, 38, 0.3);
  color: var(--red);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 163, 74, 0.08);
  border: 1.5px solid rgba(22, 163, 74, 0.3);
  color: var(--green);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.form-error .material-symbols-rounded,
.form-success .material-symbols-rounded {
  font-size: 19px;
  flex-shrink: 0;
}

.btn-kirim {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 800;
  font-family: var(--font-main);
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(26, 58, 107, 0.25);
  margin-top: 8px;
}

.btn-kirim:hover:not(:disabled) {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 160, 32, 0.35);
}

.btn-kirim:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-loader .spinner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  animation: btn-spin 0.7s linear infinite;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

/* SIDE PANEL */
.side-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aspirasi-box,
.statistik-box {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
}

.aspirasi-box h3,
.statistik-box h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-light);
}

.aspirasi-box h3 .material-symbols-rounded,
.statistik-box h3 .material-symbols-rounded {
  font-size: 20px;
  color: var(--gold);
}

.aspirasi-box ul {
  list-style: none;
}

.aspirasi-box li {
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--gray-light);
  line-height: 1.4;
}

.aspirasi-box li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.aspirasi-box li strong {
  font-weight: 700;
}

.aspirasi-box li small {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.75rem;
}

.aspirasi-box .empty-state,
.aspirasi-box .skeleton-item {
  color: var(--gray-text);
  font-style: italic;
  font-size: 0.85rem;
}

/* STAT BARS */
.stat-row {
  margin-bottom: 14px;
}

.stat-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.stat-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stat-dot.navy {
  background: var(--navy);
}

.stat-dot.green {
  background: var(--green);
}

.stat-dot.gold {
  background: var(--gold);
}

.stat-dot.red {
  background: var(--red);
}

.stat-label p {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-text);
}

.bar {
  background: var(--gray-light);
  height: 8px;
  border-radius: 6px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 6px;
  transition: width 0.8s ease;
}

.pendidikan span {
  background: var(--navy);
}

.lingkungan span {
  background: var(--green);
}

.fasilitas span {
  background: var(--gold);
}

.kesehatan span {
  background: var(--red);
}

/* CONTOH ISU */
.contoh-isu {
  max-width: 1100px;
  margin: 48px auto 0;
  text-align: center;
}

.contoh-isu h3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}

.contoh-isu h3 .material-symbols-rounded {
  color: var(--gold);
  font-size: 22px;
}

.isu-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.isu-card {
  background: var(--white);
  padding: 22px 14px 16px;
  border-radius: var(--radius-md);
  width: 120px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-light);
  transition: all var(--transition);
  cursor: default;
}

.isu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}

.isu-card:hover .isu-emoji {
  background: var(--navy);
  color: var(--white);
}

.isu-emoji {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--navy);
  transition: all var(--transition);
}

.isu-emoji .material-symbols-rounded {
  font-size: 22px;
}

.isu-card p {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}


/* ===================== ICON ===================== */

.icon {
  font-size: 26px;
  vertical-align: middle;
  margin-right: 6px;
  color: var(--navy);
}

.program-card,
.card-link,
.visi-card,
.misi-card,
.person,
.kontak-box,
.isu-card {
  transition: transform var(--hover-speed),
    box-shadow var(--hover-speed) !important;
}

/* Force same hover behavior */
.program-card:hover,
.card-link:hover,
.visi-card:hover,
.misi-card:hover,
.person:hover,
.kontak-box:hover,
.isu-card:hover {
  transform: translateY(var(--hover-lift)) !important;
  box-shadow: var(--hover-shadow) !important;
}

/* Keep buttons lighter */
.btn-aspirasi:hover,
.btn-anggotalengkap:hover,
.btn-say-hello:hover {
  transform: translateY(-2px);
}

/* =========================
     RESPONSIVE FIX (NO DESIGN CHANGE)
     ========================= */

body {
  overflow-x: hidden;
}

.navbar-capsule {
  position: relative;
}

/* TABLET */
@media (max-width: 1024px) {

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .program-container {
    grid-template-columns: 1fr 1fr;
  }

  .section-badge.center {
    display: inline-block;
    margin-top: 10px;
  }

  .section-title.center {
    text-align: left;
  }

  .card-title {
    text-align: left;
  }

  .kontak-container {
    grid-template-columns: 1fr 1fr;
  }

  .aspirasi-container {
    grid-template-columns: 1fr;
  }

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

/* MOBILE */
@media (max-width: 768px) {

  /* NAVBAR */
  .hamburger {
    display: flex;
  }

  .menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.3s;
  }

  .menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu ul {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .menu ul li a {
    display: block;
    width: 100%;
  }

  .nav-cta {
    width: 100%;
  }

  .btn-say-hello {
    width: 100%;
    text-align: center;
  }

  /* PROGRAM */
  .program-container {
    grid-template-columns: 1fr;
  }

  /* KONTAK */
  .kontak-container {
    flex-direction: column;
  }
  .kontak-divider {
    width: 60px;
    height: 1px;
  }
  .kontak-box {
    width: 100%;
  }

  /* CARD FIX */
  .card-wrapper {
    padding-bottom: 0px;
  }

  /* STRUKTUR MODAL */
  .modal-struktur {
    width: 95%;
    padding: 20px 16px 20px;
  }

  .struktur-divisions-row {
    grid-template-columns: 1fr;
  }

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

  /* ASPIRASI */
  .portal-aspirasi {
    padding: 110px 4% 60px;
  }

  .form-box {
    padding: 24px 18px;
  }

  .isu-card {
    width: 100px;
  }
}

/* SMALL SCREENS — visi/misi + person cards fix */
@media (max-width: 575px) {

  /* visi/misi: reduce padding so text doesn't overflow */
  .visi-card,
  .misi-card {
    padding: 20px 18px;
  }

  /* struktur modal top: 2 columns */
  .struktur-top {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* SMALL PHONE */
@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .navbar-capsule {
    padding: 6px 16px;
  }

  /* person cards: stack to single column on very small */
}

/* ==================== CLICKABLE STRUKTUR ELEMENTS ==================== */
.struktur-card,
.struktur-member,
.person {
  cursor: pointer;
}

/* ==================== MEMBER DETAIL MODAL ==================== */
.member-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  justify-content: center;
  align-items: center;
  z-index: 10005; /* On top of everything */
  padding: 20px 16px;
  transition: all var(--transition);
}

.member-modal {
  background: var(--white);
  width: 100%;
  max-width: 680px;
  border-radius: var(--radius-lg);
  position: relative;
  box-sizing: border-box;
  box-shadow: var(--shadow-lg), 0 30px 70px rgba(15, 37, 72, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
  animation: memberPopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes memberPopIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.member-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  transition: all 0.2s ease;
  z-index: 10;
}

.member-close:hover {
  background: var(--navy-light);
  color: var(--navy);
  border-color: var(--navy-mid);
  transform: rotate(90deg);
}

.member-modal-body {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  min-height: 380px;
}

.member-modal-image-container {
  position: relative;
  background: var(--navy-light);
  overflow: hidden;
}

.member-modal-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 58, 107, 0.05), rgba(26, 58, 107, 0.15));
  pointer-events: none;
}

#member-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}

.member-modal:hover #member-modal-image {
  transform: scale(1.04);
}

.member-modal-info {
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.member-modal-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--navy-light);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.member-modal-name {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.25;
  margin-bottom: 8px;
}

.member-modal-role-container {
  margin-bottom: 16px;
}

.member-modal-role {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-align: center;
}

/* Reusing existing role badge styles with a premium twist */
.member-modal-role.badge-ketua {
  background: var(--gold-light);
  color: var(--gold-dark);
  border: 1px solid rgba(232, 160, 32, 0.3);
}

.member-modal-role.badge-wakil {
  background: var(--navy-light);
  color: var(--navy);
  border: 1px solid rgba(26, 58, 107, 0.2);
}

.member-modal-role.badge-sek1,
.member-modal-role.badge-sek2 {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid rgba(3, 105, 161, 0.2);
}

.member-modal-role.badge-bend1,
.member-modal-role.badge-bend2 {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid rgba(29, 78, 216, 0.2);
}

.member-modal-role.badge-koor {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid rgba(21, 128, 61, 0.2);
}

.member-modal-role.badge-anggota {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid rgba(71, 85, 105, 0.2);
}

.member-modal-divider {
  border: none;
  border-top: 1.5px solid var(--gray-light);
  margin-bottom: 20px;
}

.member-modal-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.member-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.member-detail-item .material-symbols-rounded {
  font-size: 22px;
  color: var(--navy);
  background: var(--navy-light);
  padding: 8px;
  border-radius: 10px;
}

.member-detail-item div strong {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-detail-item div p {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 600;
  margin: 0;
}

.member-tutup-btn {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(26, 58, 107, 0.15);
}

.member-tutup-btn:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(232, 160, 32, 0.35);
  transform: translateY(-2px);
}

.member-tutup-btn:active {
  transform: scale(0.97);
}

/* RESPONSIVE LAYOUT FOR MOBILE */
@media (max-width: 600px) {
  .member-backdrop {
    padding: 12px;
  }
  
  .member-modal {
    max-width: 100%;
    max-height: 92vh;
    overflow-y: auto;
  }
  
  .member-modal-body {
    grid-template-columns: 2fr;
  }
  
  .member-modal-image-container {
    height: 240px;
  }
  
  .member-modal-info {
    padding: 24px 20px 20px;
  }
  
  .member-modal-name {
    font-size: 1.4rem;
  }
  
  .member-modal-details {
    margin-bottom: 20px;
  }
}