/* ===== OSIS SMKS Karya Guna Bhakti 2 — style.css ===== */

:root {
  --primary: #1e7a4d;        /* hijau (warna seragam/OSIS) */
  --primary-dark: #145c38;
  --accent: #f2c94c;         /* kuning gold */
  --accent-soft: #f7dc8a;
  --bg: #fdf9ec;             /* krem terang */
  --bg-alt: #faf3dd;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Baloo 2", "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

h1, h2, h3,
.section-title,
.hero-title,
.page-title,
.bidang-hero-title,
.koordinator-nama,
.cta-title,
.bidang-section-title,
.footer-tagline,
.nav-brand-name,
.gerakan-title {
  font-family: var(--font-display);
  letter-spacing: 0.2px;
}

/* Heading fluid agar tampil menarik di semua ukuran */
.section-title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.2;
}

.hero-title {
  font-weight: 800;
  line-height: 1.08;
}

.berita-blob {
  width: 460px;
  top: -80px;
  right: -140px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  color: #14532d;
  z-index: 100;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand-name {
  display: none;
}

.nav-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.18));
}

.nav-menu {
  display: flex;
  gap: 22px;
}

.nav-menu a {
  color: #14532d;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.nav-menu a:hover {
  opacity: 0.7;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #14532d;
  border-radius: 2px;
}

/* Dropdown "Lainnya" (desktop) */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: #14532d;
  font-size: 15px;
  font-weight: 600;
  padding: 0;
  transition: opacity 0.2s;
}

.nav-dropdown-toggle:hover {
  opacity: 0.7;
}

.nav-caret {
  font-size: 11px;
  line-height: 1;
  transition: transform 0.2s;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 230px;
  background: #ffffff;
  border: 1px solid rgba(30, 122, 77, 0.14);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(30, 122, 77, 0.16);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}

/* jembatan agar hover tidak hilang saat pindah dari tombol ke menu */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  color: #14532d;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a:hover {
  background: rgba(30, 122, 77, 0.10);
  opacity: 1;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #f7cf5c;
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
}

.hero-inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6%;
  width: 100%;
  max-width: 560px;   /* batasi lebar teks agar tidak menutupi siswa di kanan */
  padding: 0 20px;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(30, 122, 77, 0.12);
  border: 1px solid rgba(30, 122, 77, 0.35);
  color: #14532d;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 10px;
  color: #14532d;
  line-height: 1.2;
}

.hero-title {
  font-weight: 800;
  letter-spacing: 0.5px;
}

.hero-handwritten {
  display: none;
}

.hero-tagline {
  font-size: 20px;
  color: #1e7a4d;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-slogan {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #14532d;
  background: rgba(30, 122, 77, 0.10);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.hero-desc {
  color: #3f4a3f;
  margin-bottom: 28px;
  max-width: 460px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, opacity 0.2s;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

/* ===== SECTION ===== */
.section {
  padding: 70px 20px;
  background: url('bg-organic.svg') center/cover no-repeat;
}

.section-alt {
  background: var(--bg-alt);
}

/* ===== BLOB BACKGROUND (gaya landing page modern) ===== */
.section-blob {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}

.blob {
  position: absolute;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}

.blob-1 {
  width: 420px;
  top: -60px;
  right: -120px;
}

.blob-2 {
  width: 480px;
  bottom: -80px;
  left: -140px;
}

.section-blob .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ===== VISI MISI ===== */
.visi-misi {
  position: relative;
  overflow: hidden;
}

.vm-blob-1 {
  width: 460px;
  top: -80px;
  right: -140px;
}

.vm-blob-2 {
  width: 520px;
  bottom: -100px;
  left: -160px;
}

/* Kartu Visi — glassmorphism gradient */
.visi-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #1e7a4d 0%, #2e9b64 100%);
  color: #fff;
  padding: 38px 36px;
  border-radius: 24px;
  margin-bottom: 44px;
  box-shadow: 0 18px 40px rgba(30, 122, 77, 0.28);
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.visi-card::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}

.visi-card::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: 20%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(242, 201, 76, 0.16);
}

.visi-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffd94a;
  position: relative;
  z-index: 1;
}

.visi-body {
  position: relative;
  z-index: 1;
}

.visi-card h3 {
  color: #ffd94a;
  margin-bottom: 8px;
  font-size: 22px;
}

.visi-card p {
  color: #f0fbf4;
  font-size: 16px;
  line-height: 1.7;
}

.misi-heading {
  text-align: center;
  color: var(--primary-dark);
  font-size: 24px;
  margin-bottom: 24px;
}

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

.misi-item {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(30, 122, 77, 0.10);
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 10px 28px rgba(30, 122, 77, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.misi-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(30, 122, 77, 0.16);
}

.misi-item .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #14532d;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 12px;
}

.misi-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(30, 122, 77, 0.10);
  color: var(--primary);
  margin-bottom: 12px;
}

.misi-item p {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Responsive: misi jadi 2 kolom di tablet, 1 kolom di HP */
@media (max-width: 900px) {
  .misi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .misi-grid {
    grid-template-columns: 1fr;
  }

  .visi-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== BIDANG ===== */
.bidang {
  background: linear-gradient(160deg, #0e3d28 0%, #1e7a4d 55%, #165c39 100%);
  position: relative;
  overflow: hidden;
}

.bidang::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(242, 201, 76, 0.10);
}

.bidang::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.bidang .container {
  position: relative;
  z-index: 1;
}

.bidang-title {
  color: #ffffff;
}

.bidang-sub {
  color: rgba(255, 255, 255, 0.75);
}

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

.bidang-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 26px 22px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
  isolation: isolate;
  text-decoration: none;
  color: inherit;
}

/* overlay putih transparan */
.bidang-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.92) 100%);
  z-index: -1;
}

.bidang-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}

.bidang-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #14532d;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bidang-card h3 {
  color: #14532d;
  font-size: 18px;
  margin-bottom: 4px;
}

.bidang-card p {
  color: #2c4a38;
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 80%;
}

.bidang-arrow {
  position: absolute;
  right: 16px;
  bottom: 20px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  transition: transform 0.3s;
}

.bidang-card:hover .bidang-arrow {
  transform: translateX(4px);
}

/* Responsive: 2 kolom tablet, 1 kolom HP */
@media (max-width: 900px) {
  .bidang-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .bidang-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== MPK ===== */
.mpk {
  position: relative;
  overflow: hidden;
  background: #fdf9ec;
}

.mpk-blob {
  width: 480px;
  bottom: -100px;
  left: -160px;
}

.mpk .container {
  position: relative;
  z-index: 1;
}

.mpk-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  color: #2c4a38;
  font-size: 16px;
  line-height: 1.8;
}

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

.mpk-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(30, 122, 77, 0.10);
  border-radius: 22px;
  padding: 28px 22px;
  box-shadow: 0 14px 34px rgba(30, 122, 77, 0.10);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mpk-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(30, 122, 77, 0.18);
}

.mpk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(30, 122, 77, 0.10);
  color: var(--primary);
  margin-bottom: 14px;
}

.mpk-card h3 {
  color: #14532d;
  font-size: 19px;
  margin-bottom: 8px;
}

.mpk-card p {
  color: #2c4a38;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .mpk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .mpk-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PROGRAM ===== */
.program {
  position: relative;
  overflow: hidden;
}

.program-blob-1 {
  width: 420px;
  top: -60px;
  left: -120px;
}

.program-blob-2 {
  width: 460px;
  bottom: -80px;
  right: -140px;
}

.program .container {
  position: relative;
  z-index: 1;
}

.program-decor {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  color: rgba(30, 122, 77, 0.45);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.5;
}

.decor-right {
  text-align: right;
}

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

.program-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(30, 122, 77, 0.10);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(30, 122, 77, 0.10);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(30, 122, 77, 0.18);
}

.program-img {
  height: 150px;
  background-size: cover;
  background-position: center;
}

.program-body {
  padding: 22px 20px;
  position: relative;
}

.program-num {
  position: absolute;
  top: -18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #14532d;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.program-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #1e7a4d;
  background: rgba(30, 122, 77, 0.10);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.program-card h3 {
  color: #14532d;
  margin-bottom: 8px;
  font-size: 20px;
}

.program-card p {
  color: #2c4a38;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.program-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.program-link:hover {
  gap: 8px;
}

.program-footer-decor {
  text-align: center;
  margin-top: 44px;
  color: rgba(30, 122, 77, 0.35);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .program-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== EVENT ===== */
.event {
  position: relative;
  overflow: hidden;
  background: #fdf9ec;
}

.event-blob-1 {
  width: 440px;
  top: -70px;
  right: -130px;
}

.event-blob-2 {
  width: 480px;
  bottom: -90px;
  left: -150px;
}

.event .container {
  position: relative;
  z-index: 1;
}

.event-decor {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  color: rgba(30, 122, 77, 0.45);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.5;
}

.section-underline {
  width: 72px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1e7a4d 0%, #f2c94c 100%);
  margin: 0 auto 12px;
}

/* Carousel */
.event-carousel {
  overflow: hidden;
  margin-top: 8px;
}

.event-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.event-card {
  flex: 0 0 100%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(30, 122, 77, 0.14);
  text-align: center;
}

.event-img {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.event-body {
  padding: 26px 24px 28px;
  position: relative;
}

.event-icon {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #14532d;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.event-body h3 {
  color: #14532d;
  font-size: 22px;
  margin: 28px 0 10px;
}

.event-body p {
  color: #2c4a38;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.event-divider {
  height: 1px;
  background: #e5e7eb;
  margin-bottom: 16px;
}

/* Navigasi carousel */
.event-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.event-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.event-arrow:hover {
  background: #2e9b64;
  transform: scale(1.06);
}

.event-dots {
  display: flex;
  gap: 10px;
}

.event-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5cf;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.event-dot.active {
  background: var(--primary);
  transform: scale(1.25);
}

/* Desktop: tampilkan 3 kartu */
@media (min-width: 900px) {
  .event-card {
    flex: 0 0 calc((100% - 48px) / 3);
  }
  .event-img {
    height: 200px;
  }
}

/* ===== QUOTE ===== */
.pesan {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.pesan-blob-1 {
  width: 440px;
  top: -80px;
  right: -140px;
}

.pesan-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 48px;
}

.pesan-foto {
  flex: 0 0 340px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(30, 122, 77, 0.18);
  border: 4px solid #ffffff;
  outline: 1px solid rgba(30, 122, 77, 0.15);
}

.pesan-foto img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.pesan-konten {
  flex: 1;
}

.pesan-title {
  text-align: left;
  margin-bottom: 10px;
}

.pesan-underline {
  margin: 0 0 20px;
}

.pesan-quote {
  text-align: left;
  margin: 0;
  font-size: 19px;
  line-height: 1.8;
}

.pesan-quote footer {
  margin-top: 20px;
}

.pesan-quote footer strong {
  font-size: 18px;
  color: var(--primary-dark);
}

.pesan-quote footer span {
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .pesan-inner {
    flex-direction: column;
    text-align: center;
  }
  .pesan-foto {
    flex: 0 0 auto;
    max-width: 300px;
  }
  .pesan-title,
  .pesan-quote {
    text-align: center;
  }
  .pesan-underline {
    margin: 0 auto 20px;
  }
}

.quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  font-style: italic;
  color: var(--primary-dark);
}

.quote footer {
  margin-top: 16px;
  font-style: normal;
}

.quote footer strong {
  display: block;
  color: var(--text);
}

.quote footer span {
  color: var(--text-muted);
  font-size: 15px;
}

/* ===== TESTIMONI ===== */
.testimoni {
  position: relative;
  overflow: hidden;
  background: #fdf9ec;
}

.testimoni-blob {
  width: 480px;
  bottom: -100px;
  left: -160px;
}

.testimoni .container {
  position: relative;
  z-index: 1;
}

.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}

.testimoni-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(30, 122, 77, 0.12);
  border-radius: 24px;
  padding: 30px 28px;
  box-shadow: 0 16px 40px rgba(30, 122, 77, 0.10);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimoni-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(30, 122, 77, 0.16);
}

.testimoni-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffd94a;
  font-size: 24px;
  margin: -52px auto 16px;
  box-shadow: 0 6px 16px rgba(30, 122, 77, 0.22);
}

.testimoni-foto {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid rgba(30, 122, 77, 0.15);
}

.testimoni-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimoni-card h3 {
  color: #14532d;
  font-size: 19px;
  margin-bottom: 2px;
}

.testimoni-jabatan {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.testimoni-periode {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 14px;
}

.testimoni-text {
  color: #2c4a38;
  font-size: 14.5px;
  line-height: 1.7;
  font-style: italic;
}

@media (max-width: 720px) {
  .testimoni-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== GALERI ===== */
.galeri {
  position: relative;
  overflow: hidden;
  background: #fdf9ec;
}

.galeri-blob {
  width: 460px;
  top: -80px;
  left: -140px;
}

.galeri .container {
  position: relative;
  z-index: 1;
}

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

.galeri-card {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(30, 122, 77, 0.10);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.galeri-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(30, 122, 77, 0.18);
}

.galeri-img {
  height: 170px;
  background-size: cover;
  background-position: center;
}

.galeri-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.galeri-info {
  padding: 16px 18px 18px;
}

.galeri-info h3 {
  color: #14532d;
  font-size: 17px;
  margin-bottom: 4px;
}

.galeri-info p {
  color: #2c4a38;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 6px;
}

.galeri-count {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.galeri-arrow {
  position: absolute;
  right: 16px;
  bottom: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 17px;
  transition: transform 0.3s;
}

.galeri-card:hover .galeri-arrow {
  transform: translateX(4px);
}

.galeri-cta {
  text-align: center;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .galeri-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .galeri-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== KONTAK ===== */
.kontak {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.kontak-blob {
  width: 460px;
  top: -80px;
  right: -140px;
}

.kontak .container {
  position: relative;
  z-index: 1;
}

.kontak-decor {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
  color: rgba(30, 122, 77, 0.45);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.5;
}

.kontak-head {
  text-align: center;
  margin-bottom: 40px;
}

.kontak-badge {
  display: inline-block;
  background: rgba(30, 122, 77, 0.10);
  color: #14532d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.kontak-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.kontak-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kontak-item {
  background: #fff;
  border: 1px solid rgba(30, 122, 77, 0.12);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 12px 30px rgba(30, 122, 77, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kontak-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(30, 122, 77, 0.14);
}

.kontak-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(30, 122, 77, 0.10);
  color: var(--primary);
  margin-bottom: 6px;
}

.kontak-item h3 {
  color: #14532d;
  font-size: 17px;
}

.kontak-item p {
  color: #2c4a38;
  font-size: 14.5px;
}

.kontak-btn {
  align-self: flex-start;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-top: 6px;
}

.kontak-btn:hover {
  text-decoration: underline;
}

.kontak-sosmed {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sosmed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.2s;
}

.sosmed-item:hover {
  transform: translateX(4px);
}

.sosmed-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(30, 122, 77, 0.10);
  color: var(--primary);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.sosmed-item:hover .sosmed-icon {
  background: var(--primary);
  color: #ffd94a;
}

.sosmed-label {
  color: #2c4a38;
  font-size: 14.5px;
  font-weight: 600;
}

.kontak-video {
  display: flex;
}

.video-frame {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(30, 122, 77, 0.16);
  background: #000;
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

/* ===== CTA ===== */
.cta {
  background: #fdf9ec;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(30, 122, 77, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(242, 201, 76, 0.16) 0%, transparent 45%);
  position: relative;
  overflow: hidden;
  color: #14532d;
  padding: 70px 20px;
  text-align: center;
}

.cta::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 64px;
  background: #ffffff;
  clip-path: ellipse(62% 100% at 50% 0%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  padding-top: 16px;
}

.cta-text {
  color: #3f4a3f;
  max-width: 560px;
  margin: 0 auto 12px;
  font-size: 16px;
  line-height: 1.6;
}

.cta-title {
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 30px;
}

.cta-nilai {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nilai-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  background: rgba(30, 122, 77, 0.08);
  color: #14532d;
  padding: 10px 20px;
  border-radius: 30px;
}

/* ===== FOOTER ===== */
.footer {
  background: #fdf9ec;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(242, 201, 76, 0.14) 0%, transparent 40%),
    radial-gradient(circle at 15% 90%, rgba(30, 122, 77, 0.08) 0%, transparent 45%);
  color: #3f4a3f;
  padding: 44px 20px 40px;
  text-align: center;
  border-top: 1px solid rgba(30, 122, 77, 0.10);
}

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

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

.footer-logo span {
  font-weight: 700;
  font-size: 15px;
  color: #14532d;
}

.footer-inner p {
  margin-bottom: 4px;
  font-size: 13px;
  color: rgba(63, 74, 63, 0.75);
}

.footer-tagline {
  font-size: 18px !important;
  font-weight: 800;
  color: #14532d !important;
  margin-bottom: 6px !important;
}

.footer-school {
  font-size: 15px !important;
  font-weight: 600;
  color: var(--primary) !important;
  margin-bottom: 18px !important;
}

.footer-cta {
  display: inline-block;
  background: var(--accent);
  color: #14532d;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 201, 76, 0.4);
}

.footer-copy {
  border-top: 1px solid rgba(30, 122, 77, 0.12);
  padding-top: 16px;
  margin-top: 4px;
}

/* Kredit pengelola website */
.footer-credit {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dotted rgba(30, 122, 77, 0.5);
  transition: color 0.2s, border-color 0.2s;
}
.footer-credit:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}

@media (max-width: 860px) {
  .kontak-main {
    grid-template-columns: 1fr;
  }
}

/* ===== PEMILU OSIS ===== */
.pemilu {
  position: relative;
  overflow: hidden;
  background: #fdf9ec;
}

.pemilu-blob {
  width: 460px;
  top: -80px;
  right: -140px;
}

.pemilu .container {
  position: relative;
  z-index: 1;
}

.pemilu-intro {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
  color: #2c4a38;
  font-size: 16px;
  line-height: 1.8;
}

.pemilu-status {
  max-width: 620px;
  margin: 0 auto 44px;
  text-align: center;
  background: #ffffff;
  border: 1px dashed rgba(30, 122, 77, 0.35);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 12px 30px rgba(30, 122, 77, 0.08);
}

.pemilu-badge {
  display: inline-block;
  background: var(--accent);
  color: #14532d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.pemilu-status p {
  color: #2c4a38;
  font-size: 15px;
  line-height: 1.7;
}

/* Langkah-langkah pemilu (placeholder saat voting belum dibuka / telah selesai) */
.pemilu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.pemilu-grid[hidden] { display: none; }

.pemilu-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(30, 122, 77, 0.10);
  border-radius: 22px;
  padding: 30px 22px 26px;
  box-shadow: 0 14px 34px rgba(30, 122, 77, 0.10);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pemilu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(30, 122, 77, 0.18);
}

.pemilu-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #14532d;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.pemilu-card h3 {
  color: #14532d;
  font-size: 18px;
  margin-bottom: 8px;
}

.pemilu-card p {
  color: #2c4a38;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .pemilu-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .pemilu-grid { grid-template-columns: 1fr; }
}

/* ===== E-VOTING (panel status, akun, kandidat, hasil) ===== */

.vote-panel {
  max-width: 860px;
  margin: 0 auto 30px;
  background: #ffffff;
  border: 1px solid rgba(30, 122, 77, 0.14);
  border-radius: 22px;
  padding: 26px 26px 30px;
  box-shadow: 0 16px 40px rgba(30, 122, 77, 0.10);
}

.vote-status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: center;
}

.vote-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  background: #e5e7eb;
  color: #374151;
}
.vote-badge.buka   { background: #dcfce7; color: #166534; }
.vote-badge.tutup  { background: #fef3c7; color: #92400e; }
.vote-badge.belum  { background: #fef3c7; color: #92400e; }
.vote-badge.selesai{ background: #e5e7eb; color: #374151; }

.vote-pesan { color: #2c4a38; font-size: 14px; }

/* CTA besar: buka halaman voting (tab baru) */
.vote-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 18px 22px;
  background: linear-gradient(135deg, #1e7a4d, #145c38);
  border-radius: 18px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(30, 122, 77, 0.30);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vote-cta:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(30, 122, 77, 0.40); }
.vote-cta-icon { font-size: 32px; line-height: 1; flex-shrink: 0; }
.vote-cta-text { display: flex; flex-direction: column; gap: 2px; text-align: left; flex: 1; }
.vote-cta-text strong { color: #ffffff; font-size: 17px; }
.vote-cta-text span { color: #d8f3e3; font-size: 13.5px; }
.vote-cta-arrow {
  font-size: 26px;
  color: #f2c94c;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.vote-cta:hover .vote-cta-arrow { transform: translateX(5px); }
.vote-cta[hidden] { display: none; }

/* Halaman voting terpisah */
.voting-page { background: #fdf9ec; min-height: 100vh; display: flex; flex-direction: column; }
.voting-main { flex: 1; padding: 40px 0 60px; }
.voting-judul { text-align: center; color: #14532d; font-size: 30px; margin: 0 0 6px; font-family: var(--font-display); }
.voting-sub { text-align: center; color: #2c4a38; font-size: 15px; margin: 0 0 28px; }
.voting-page .vote-panel { max-width: 860px; margin: 0 auto 30px; }
.voting-kembali {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 20px auto 0;
}
.voting-kembali[hidden] { display: none; }
.voting-footer { padding: 18px 0; }
.voting-footer .footer-inner { padding: 0; }

/* Notifikasi penutupan voting */
.vote-notif {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 18px 0 4px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #f2c94c, #f7dc8a);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(242, 201, 76, 0.35);
  animation: voteNotifIn 0.4s ease;
}
.vote-notif[hidden] { display: none; }
.vote-notif[data-alasan="jadwal"] {
  background: linear-gradient(135deg, #e8eef0, #f3f6f7);
  box-shadow: 0 10px 26px rgba(55, 65, 81, 0.15);
}
@keyframes voteNotifIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.vote-notif-icon { font-size: 30px; line-height: 1; flex-shrink: 0; }
.vote-notif-body strong { display: block; color: #7c5a00; font-size: 16px; margin-bottom: 4px; }
.vote-notif[data-alasan="jadwal"] .vote-notif-body strong { color: #374151; }
.vote-notif-body p { margin: 0; color: #6b5600; font-size: 13.5px; line-height: 1.6; }
.vote-notif[data-alasan="jadwal"] .vote-notif-body p { color: #4b5563; }

.vote-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 6px;
}
.vote-countdown[hidden] { display: none; }
.vote-countdown::before {
  content: "⏳ Menuju pembukaan/penutupan";
  position: absolute;
  transform: translateY(-46px);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.4px;
}
.cd-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 68px;
  padding: 10px 6px;
  background: linear-gradient(180deg, #1e7a4d, #145c38);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(30, 122, 77, 0.25);
}
.cd-num { color: #fff; font-size: 26px; font-weight: 800; font-family: var(--font-display); line-height: 1; }
.cd-lbl { color: #d8f3e3; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.cd-sep { color: #145c38; font-weight: 800; font-size: 22px; }

.vote-jadwal {
  text-align: center;
  color: #2c4a38;
  font-size: 14px;
  margin-top: 14px;
}

.vote-akun {
  margin-top: 22px;
  border-top: 1px dashed rgba(30, 122, 77, 0.22);
  padding-top: 20px;
}
.vote-akun-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.vote-akun-icon { font-size: 26px; line-height: 1; }
.vote-akun-head strong { color: #14532d; font-size: 16px; }
.vote-akun-head p { color: var(--text-muted); font-size: 13px; line-height: 1.5; }

.vote-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}
.vote-field { display: flex; flex-direction: column; gap: 6px; }
.vote-field span { font-size: 13px; font-weight: 600; color: #14532d; }
.vote-field input {
  padding: 11px 14px;
  border: 1px solid rgba(30, 122, 77, 0.28);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fbfefb;
}
.vote-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 122, 77, 0.15);
}
.vote-btn-login { align-self: end; white-space: nowrap; }

.vote-msg { margin-top: 12px; font-size: 14px; min-height: 20px; }
.vote-msg.ok  { color: #166534; }
.vote-msg.err { color: #b91c1c; }

.vote-akun-masuk .vote-msg { margin-bottom: 12px; }
.vote-btn-logout { width: auto; padding: 9px 20px; }

/* Mekanisme */
.vote-mekanisme {
  max-width: 860px;
  margin: 0 auto 30px;
  background: #f4fbf6;
  border: 1px solid rgba(30, 122, 77, 0.16);
  border-radius: 18px;
  padding: 22px 26px;
}
.vote-mekanisme h3 { color: #14532d; font-size: 18px; margin-bottom: 12px; }
.vote-mekanisme ol { margin: 0; padding-left: 22px; color: #2c4a38; font-size: 15px; line-height: 1.9; }

/* Kandidat */
.vote-judul-kandidat {
  text-align: center;
  color: #14532d;
  font-size: 22px;
  margin: 10px 0 20px;
}
.vote-kandidat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.vote-kandidat-grid[hidden] { display: none; }
.vote-loading { grid-column: 1/-1; text-align: center; color: var(--text-muted); }

.vote-kandidat {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(30, 122, 77, 0.12);
  border-radius: 22px;
  padding: 26px 22px 22px;
  box-shadow: 0 14px 34px rgba(30, 122, 77, 0.10);
  transition: transform 0.3s, box-shadow 0.3s;
}
.vote-kandidat:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(30, 122, 77, 0.18); }

.vote-kandidat-nomor {
  position: absolute;
  top: -14px;
  left: 22px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #14532d;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.vote-kandidat-foto {
  width: 120px;
  height: 120px;
  margin: 6px auto 14px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary);
  background: #eef7f1;
}
.vote-kandidat-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vote-foto-kosong { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 46px; }

.vote-kandidat-nama { text-align: center; color: #14532d; font-size: 19px; margin-bottom: 2px; }
.vote-kandidat-kelas { text-align: center; color: var(--text-muted); font-size: 13px; margin-bottom: 8px; }
.vote-kandidat-motto {
  text-align: center;
  font-style: italic;
  color: #1e7a4d;
  font-size: 13.5px;
  margin-bottom: 14px;
}
.vote-kandidat-detail { font-size: 13.5px; color: #2c4a38; line-height: 1.65; margin-bottom: 16px; }
.vote-kandidat-detail strong { display: block; color: #14532d; margin-bottom: 2px; }
.vote-kandidat-detail > div { margin-bottom: 10px; }
.vote-kandidat-detail ul { margin: 0; padding-left: 18px; }

.vote-pilih { margin-top: auto; width: 100%; }
.vote-pilih:disabled { opacity: 0.55; cursor: not-allowed; }

/* Hasil */
.vote-hasil {
  max-width: 760px;
  margin: 34px auto 0;
  background: #fff;
  border: 1px solid rgba(30, 122, 77, 0.14);
  border-radius: 20px;
  padding: 24px 26px;
  box-shadow: 0 14px 34px rgba(30, 122, 77, 0.08);
}
.vote-hasil h3 { color: #14532d; font-size: 19px; margin-bottom: 16px; text-align: center; }
.vote-hasil-item {
  display: grid;
  grid-template-columns: 34px minmax(90px, 1.2fr) 2fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(30, 122, 77, 0.14);
}
.vh-nomor {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: #14532d;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.vh-nama { color: #14532d; font-weight: 600; font-size: 14px; }
.vh-bar { background: #eef2ef; border-radius: 30px; height: 12px; overflow: hidden; }
.vh-bar span { display: block; height: 100%; background: linear-gradient(90deg, #1e7a4d, #37b978); border-radius: 30px; transition: width 0.6s ease; }
.vh-angka { font-size: 13px; color: #2c4a38; white-space: nowrap; }
.vote-hasil-total { text-align: center; margin-top: 16px; color: #2c4a38; font-size: 14px; }

/* Modal konfirmasi */
.vote-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 40, 26, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.vote-modal[hidden] { display: none; }
.vote-modal-box {
  position: relative;
  background: #fff;
  border-radius: 22px;
  max-width: 460px;
  width: 100%;
  padding: 30px 28px 26px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.vote-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  border: none; background: none;
  font-size: 26px; line-height: 1;
  color: #9ca3af; cursor: pointer;
}
.vote-modal-close:hover { color: #374151; }
.vote-modal-box h3 { color: #14532d; font-size: 20px; margin-bottom: 8px; }
.vote-modal-box > p { color: #2c4a38; font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.vote-modal-kandidat {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  background: #f4fbf6;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.vm-nomor {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: #14532d;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; flex-shrink: 0;
}
.vm-nama { color: #14532d; font-weight: 700; font-size: 16px; }
.vm-kelas { color: var(--text-muted); font-size: 13px; }
.vote-modal-actions { display: flex; gap: 12px; justify-content: center; }
.vote-modal-actions .btn { min-width: 130px; }

@media (max-width: 720px) {
  .vote-form { grid-template-columns: 1fr; }
  .vote-btn-login { width: 100%; }
  .cd-box { min-width: 58px; padding: 8px 4px; }
  .cd-num { font-size: 22px; }
  .vote-hasil-item { grid-template-columns: 30px 1fr; row-gap: 6px; }
  .vh-bar { grid-column: 1/-1; }
  .vh-angka { grid-column: 1/-1; text-align: right; }
}

/* ===== HALAMAN DALAM (page hero + konten) ===== */
.navbar-inner {
  position: relative;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 60px 20px 50px;
  text-align: center;
  background-color: #f7cf5c;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.6) 0%, transparent 42%),
    radial-gradient(circle at 90% 75%, rgba(255,255,255,0.45) 0%, transparent 46%),
    radial-gradient(circle at 70% 10%, rgba(30,122,77,0.08) 0%, transparent 40%);
}

.page-breadcrumb {
  font-size: 13px;
  color: rgba(20, 83, 45, 0.7);
  margin-bottom: 10px;
}

.page-breadcrumb a {
  color: #14532d;
  font-weight: 700;
  text-decoration: none;
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

.page-title {
  font-size: 38px;
  font-weight: 800;
  color: #14532d;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.page-hero .section-underline {
  margin-bottom: 14px;
}

.page-sub {
  color: #1e7a4d;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
}

/* Kartu pengurus */
.struktur {
  position: relative;
  overflow: hidden;
}

.struktur-alt {
  background: #fdf9ec;
}

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

.struktur-inti {
  margin-bottom: 10px;
}

.pengurus-card {
  background: #ffffff;
  border: 1px solid rgba(30, 122, 77, 0.12);
  border-radius: 22px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(30, 122, 77, 0.10);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pengurus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(30, 122, 77, 0.18);
}

.pengurus-foto {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 4px solid #ffffff;
  outline: 2px solid rgba(30, 122, 77, 0.18);
  background: rgba(30, 122, 77, 0.06);
}

.pengurus-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.pengurus-card h3 {
  color: #14532d;
  font-size: 18px;
  margin-bottom: 4px;
}

.pengurus-jabatan {
  display: inline-block;
  color: #1e7a4d;
  background: rgba(30, 122, 77, 0.10);
  font-weight: 700;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 20px;
}

.pengurus-desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
}

/* Kartu pengurus versi dinamis (dari admin) */
.pengurus-card.pengurus-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.pengurus-motto {
  color: #2c4a38;
  font-style: italic;
  font-size: 13.5px;
  line-height: 1.5;
  margin-top: 8px;
}
.pengurus-exp {
  list-style: none;
  margin-top: 14px;
  text-align: left;
}
.pengurus-exp li {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(30, 122, 77, 0.05);
  border: 1px solid rgba(30, 122, 77, 0.10);
  border-radius: 12px;
  padding: 9px 12px;
  margin-bottom: 8px;
}
.pengurus-exp .exp-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
}
.pengurus-exp .exp-text strong {
  font-size: 13.5px;
}
.pengurus-exp .exp-text small {
  font-size: 12px;
}
.pengurus-kosong {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  font-size: 14.5px;
  padding: 30px 16px;
  background: rgba(30, 122, 77, 0.04);
  border: 1px dashed rgba(30, 122, 77, 0.25);
  border-radius: 16px;
}
.pengurus-sumber {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 22px;
}

/* Kartu generasi */
.generasi-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}

.generasi-card {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid rgba(30, 122, 77, 0.12);
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: 0 14px 34px rgba(30, 122, 77, 0.10);
  transition: transform 0.3s, box-shadow 0.3s;
}

.generasi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(30, 122, 77, 0.16);
}

.generasi-year {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1e7a4d 0%, #2e9b64 100%);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 24px rgba(30, 122, 77, 0.22);
}

.generasi-body h3 {
  color: #14532d;
  font-size: 21px;
  margin-bottom: 8px;
}

.generasi-body p {
  color: #2c4a38;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.generasi-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 14px;
}

.generasi-meta li {
  color: #2c4a38;
  font-size: 13.5px;
}

.generasi-meta strong {
  color: #14532d;
}

/* Responsive halaman dalam */
@media (max-width: 1000px) {
  .struktur-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 40px 16px 36px;
  }

  .page-title {
    font-size: clamp(26px, 7vw, 32px);
  }

  .page-sub {
    font-size: 14px;
  }

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

  .generasi-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }

  .generasi-year {
    min-width: 0;
    padding: 10px 18px;
    font-size: 15px;
  }

  .generasi-body h3 {
    font-size: 19px;
  }
}

/* ===== BERITA / ARTIKEL ===== */
.berita {
  position: relative;
  overflow: hidden;
  background: #fdf9ec;
}

/* Filter kategori */
.berita-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.berita-filter-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #14532d;
  background: #ffffff;
  border: 1px solid rgba(30, 122, 77, 0.18);
  padding: 9px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}

.berita-filter-btn:hover {
  background: rgba(30, 122, 77, 0.08);
  transform: translateY(-2px);
}

.berita-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

/* Grid & kartu berita */
.berita-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.berita-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(30, 122, 77, 0.10);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(30, 122, 77, 0.10);
  transition: transform 0.3s, box-shadow 0.3s;
}

.berita-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(30, 122, 77, 0.18);
}

.berita-card.is-hidden {
  display: none;
}

.berita-thumb {
  position: relative;
  display: block;
  height: 180px;
  background-size: cover;
  background-position: center;
}

.berita-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-block;
  background: var(--accent);
  color: #14532d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

.berita-tag-inline {
  position: static;
  margin-bottom: 12px;
}

.berita-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.berita-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 10px;
}

.berita-dot {
  opacity: 0.6;
}

.berita-body h3 {
  font-size: 19px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.berita-body h3 a {
  color: #14532d;
  text-decoration: none;
  transition: color 0.2s;
}

.berita-body h3 a:hover {
  color: var(--primary);
}

.berita-body p {
  color: #2c4a38;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.berita-body .program-link {
  margin-top: auto;
}

.berita-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  padding: 40px 0;
}

/* ===== HALAMAN DETAIL ARTIKEL ===== */
.artikel-section {
  background: #fdf9ec;
}

.artikel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}

.artikel {
  background: #ffffff;
  border: 1px solid rgba(30, 122, 77, 0.10);
  border-radius: 24px;
  padding: 36px 38px 32px;
  box-shadow: 0 14px 34px rgba(30, 122, 77, 0.08);
}

.artikel-crumb {
  margin-bottom: 18px;
}

.artikel-title {
  font-size: 32px;
  line-height: 1.25;
  color: #14532d;
  font-weight: 800;
  margin-bottom: 14px;
}

.artikel-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13.5px;
  margin-bottom: 24px;
}

.artikel-meta strong {
  color: #14532d;
}

.artikel-cover {
  height: 340px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  margin-bottom: 28px;
}

.artikel-body {
  color: #2c4a38;
  font-size: 16.5px;
  line-height: 1.85;
}

.artikel-body p {
  margin-bottom: 18px;
}

.artikel-body h2 {
  color: #14532d;
  font-size: 23px;
  margin: 30px 0 12px;
}

.artikel-body ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.artikel-body li {
  margin-bottom: 8px;
}

.artikel-body blockquote {
  margin: 24px 0;
  padding: 18px 24px;
  border-left: 4px solid var(--accent);
  background: rgba(242, 201, 76, 0.10);
  border-radius: 0 14px 14px 0;
  font-style: italic;
  font-size: 17px;
  color: #14532d;
}

/* Gambar di dalam artikel */
.artikel-body img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 10px 0;
  box-shadow: 0 12px 30px rgba(30, 122, 77, 0.12);
}

/* Blok kode */
.artikel-body pre {
  background: #0e3d28;
  color: #e8f5ee;
  padding: 18px 20px;
  border-radius: 14px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
  margin: 20px 0;
  font-family: "Consolas", "Monaco", "Courier New", monospace;
}
.artikel-body code {
  background: rgba(30, 122, 77, 0.10);
  color: #14532d;
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 14px;
  font-family: "Consolas", "Monaco", "Courier New", monospace;
}
.artikel-body pre code {
  background: none;
  color: inherit;
  padding: 0;
}

/* Tabel di artikel */
.artikel-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(30, 122, 77, 0.08);
}
.artikel-body th,
.artikel-body td {
  border: 1px solid rgba(30, 122, 77, 0.16);
  padding: 11px 14px;
  text-align: left;
}
.artikel-body th {
  background: rgba(30, 122, 77, 0.10);
  color: #14532d;
  font-weight: 800;
}
.artikel-body tr:nth-child(even) td {
  background: rgba(30, 122, 77, 0.03);
}

/* List di artikel */
.artikel-body ul,
.artikel-body ol {
  margin: 0 0 18px;
  padding-left: 26px;
}
.artikel-body li { margin-bottom: 7px; }

/* Teks rata tengah/kanan dari editor */
.artikel-body [style*="text-align: center"] { text-align: center; }
.artikel-body [style*="text-align: right"] { text-align: right; }
.artikel-body [style*="text-align: justify"] { text-align: justify; }

/* Galeri foto artikel */
.artikel-galeri {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(30, 122, 77, 0.14);
}
.artikel-galeri h2 {
  font-size: 22px;
  color: #14532d;
  margin-bottom: 16px;
}
.artikel-galeri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.artikel-galeri-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(30, 122, 77, 0.12);
  background: rgba(30, 122, 77, 0.05);
}
.artikel-galeri-item img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s;
}
.artikel-galeri-item:hover img { transform: scale(1.05); }

@media (max-width: 640px) {
  .artikel-galeri-grid { grid-template-columns: repeat(2, 1fr); }
  .artikel-galeri-item img { height: 150px; }
}

.artikel-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(30, 122, 77, 0.12);
}

.artikel-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #14532d;
}

.share-btn {
  color: var(--primary);
  background: rgba(30, 122, 77, 0.10);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}

.share-btn:hover {
  background: var(--primary);
  color: #ffffff;
}

/* Sidebar */
.artikel-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 24px;
}

.sidebar-box {
  background: #ffffff;
  border: 1px solid rgba(30, 122, 77, 0.10);
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 0 14px 34px rgba(30, 122, 77, 0.08);
}

.sidebar-box h3 {
  color: #14532d;
  font-size: 18px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(30, 122, 77, 0.12);
}

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

.sidebar-list a {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s;
}

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

.sidebar-thumb {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.sidebar-text strong {
  display: block;
  color: #14532d;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 2px;
}

.sidebar-text small {
  color: var(--text-muted);
  font-size: 12px;
}

.sidebar-cta {
  text-align: center;
}

.sidebar-cta h3 {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-cta p {
  color: #2c4a38;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

@media (max-width: 1000px) {
  .berita-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .artikel-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .berita-grid {
    grid-template-columns: 1fr;
  }

  .artikel {
    padding: 24px 20px;
  }

  .artikel-title {
    font-size: clamp(23px, 6.5vw, 28px);
  }

  .artikel-cover {
    height: 210px;
  }

  .artikel-body {
    font-size: 15.5px;
  }

  .artikel-body h2 {
    font-size: 20px;
  }
}

/* ===== HALAMAN BIDANG (Sekbid detail) ===== */
.bidang-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 20px 46px;
  text-align: center;
  background: linear-gradient(160deg, #0e3d28 0%, #1e7a4d 55%, #165c39 100%);
}

.bidang-hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(242, 201, 76, 0.10);
}

.bidang-hero .container {
  position: relative;
  z-index: 1;
}

.bidang-hero .page-breadcrumb {
  color: rgba(255, 255, 255, 0.72);
}

.bidang-hero .page-breadcrumb a {
  color: #ffd94a;
}

.bidang-hero-title {
  font-size: clamp(34px, 6vw, 52px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
  line-height: 1.15;
  margin: 10px 0 10px;
}

.bidang-hero-sub {
  color: #ffd94a;
  font-weight: 700;
  font-size: clamp(15px, 2.4vw, 19px);
  letter-spacing: 0.5px;
}

.bidang-section-title {
  font-size: 30px;
  font-weight: 800;
  color: #14532d;
  text-align: center;
  margin-bottom: 10px;
}

/* Tugas umum */
.bidang-tugas .container {
  max-width: 860px;
}

.bidang-tugas-text {
  text-align: center;
  color: #2c4a38;
  font-size: 17px;
  line-height: 1.85;
  margin-top: 18px;
}

/* Koordinator & anggota */
.bidang-koordinator {
  background: #ffffff;
}

.bidang-anggota {
  background: #fdf9ec;
}

.bidang-anggota-sub {
  text-align: center;
  color: var(--text-muted);
  margin: 8px 0 42px;
}

.koordinator-wrap {
  display: flex;
  gap: 44px;
  align-items: flex-start;
  max-width: 940px;
  margin: 0 auto;
}

.anggota-row {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid rgba(30, 122, 77, 0.12);
}

.bidang-anggota .anggota-row:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.koordinator-foto {
  flex: 0 0 340px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(30, 122, 77, 0.18);
  background: rgba(30, 122, 77, 0.06);
}

.koordinator-foto img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
}

.koordinator-info {
  flex: 1;
  min-width: 0;
}

.koordinator-label {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.koordinator-nama {
  font-size: 32px;
  font-weight: 800;
  color: #14532d;
  line-height: 1.2;
  margin-bottom: 8px;
}

.anggota-jabatan {
  display: inline-block;
  color: #1e7a4d;
  background: rgba(30, 122, 77, 0.10);
  font-weight: 700;
  font-size: 13px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.koordinator-block {
  margin-top: 22px;
}

.koordinator-block h4 {
  color: #14532d;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.koordinator-motto {
  color: #2c4a38;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
}

.exp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exp-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(30, 122, 77, 0.05);
  border: 1px solid rgba(30, 122, 77, 0.10);
  border-radius: 14px;
  padding: 12px 16px;
}

.exp-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(30, 122, 77, 0.12);
}

.exp-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.exp-text {
  min-width: 0;
}

.exp-text strong {
  display: block;
  color: #14532d;
  font-size: 15px;
  line-height: 1.35;
}

.exp-text small {
  color: var(--text-muted);
  font-size: 13px;
}

/* What we do */
.bidang-program {
  background: #ffffff;
}

.bidang-program-sub {
  text-align: center;
  color: var(--text-muted);
  margin: 8px 0 40px;
}

.bidang-program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}

.bidang-program-card {
  background: #fdf9ec;
  border: 1px solid rgba(30, 122, 77, 0.10);
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: 0 14px 34px rgba(30, 122, 77, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.bidang-program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(30, 122, 77, 0.16);
}

.bidang-program-card h3 {
  color: #14532d;
  font-size: 20px;
  margin-bottom: 10px;
}

.bidang-program-card p {
  color: #2c4a38;
  font-size: 14.5px;
  line-height: 1.7;
}

/* Galeri bidang */
.bidang-galeri {
  background: #fdf9ec;
}

.bidang-galeri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 36px auto 0;
}

.bidang-galeri-item {
  height: 190px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 34px rgba(30, 122, 77, 0.12);
  transition: transform 0.3s;
}

.bidang-galeri-item:hover {
  transform: scale(1.03);
}

.bidang-galeri-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: auto;
  min-height: 396px;
}

/* Navigasi bidang berikutnya */
.bidang-next {
  background: linear-gradient(160deg, #0e3d28 0%, #1e7a4d 55%, #165c39 100%);
  padding: 48px 20px;
}

.bidang-next-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.bidang-next-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.bidang-next-text h3 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 4px;
}

.bidang-next-text p {
  color: #ffd94a;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .koordinator-wrap {
    flex-direction: column;
    gap: 26px;
  }

  .koordinator-foto {
    flex: 0 0 auto;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .koordinator-info {
    text-align: center;
  }

  .koordinator-nama {
    font-size: 26px;
  }

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

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

  .bidang-galeri-item:first-child {
    grid-column: span 2;
    grid-row: auto;
    min-height: 190px;
  }

  .exp-list li {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .bidang-section-title {
    font-size: 24px;
  }

  .anggota-row {
    margin-top: 40px;
    padding-top: 40px;
  }

  .bidang-next-inner {
    flex-direction: column;
    text-align: center;
  }

  .bidang-next-text {
    text-align: center;
  }
}

/* ===== HALAMAN PROGRAM KERJA ===== */
.program-list {
  position: relative;
  overflow: hidden;
  background: #fdf9ec;
}

.prog-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

/* Sidebar navigasi program */
.prog-nav {
  position: sticky;
  top: 24px;
  background: #ffffff;
  border: 1px solid rgba(30, 122, 77, 0.10);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: 0 14px 34px rgba(30, 122, 77, 0.08);
}

.prog-nav-title {
  font-size: 17px;
  color: #14532d;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(30, 122, 77, 0.12);
}

.prog-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prog-nav-link {
  display: block;
  color: #2c4a38;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.prog-nav-link:hover {
  background: rgba(30, 122, 77, 0.10);
  transform: translateX(3px);
}

.prog-nav-link.active {
  background: var(--primary);
  color: #ffffff;
}

/* Detail program */
.prog-main {
  display: flex;
  flex-direction: column;
  gap: 34px;
  min-width: 0;
}

.prog-detail {
  background: #ffffff;
  border: 1px solid rgba(30, 122, 77, 0.10);
  border-radius: 24px;
  padding: 30px 32px 28px;
  box-shadow: 0 14px 34px rgba(30, 122, 77, 0.08);
  scroll-margin-top: 90px;
}

.prog-detail-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.prog-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #14532d;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.prog-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #1e7a4d;
  background: rgba(30, 122, 77, 0.10);
  padding: 5px 14px;
  border-radius: 20px;
}

.prog-title {
  font-size: 28px;
  color: #14532d;
  margin-bottom: 16px;
}

.prog-cover {
  height: 260px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 26px rgba(30, 122, 77, 0.12);
}

.prog-desc {
  color: #2c4a38;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 22px;
}

.prog-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.prog-info-item {
  background: #fdf9ec;
  border: 1px solid rgba(30, 122, 77, 0.10);
  border-radius: 16px;
  padding: 16px 18px;
}

.prog-info-label {
  display: block;
  color: #14532d;
  font-weight: 800;
  font-size: 13.5px;
  margin-bottom: 6px;
}

.prog-info-item p {
  color: #2c4a38;
  font-size: 13.5px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .prog-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .prog-nav {
    position: static;
  }

  .prog-nav-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .prog-nav-link {
    padding: 8px 14px;
    font-size: 13.5px;
  }

  .prog-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .prog-detail {
    padding: 22px 20px;
  }

  .prog-title {
    font-size: clamp(21px, 6vw, 25px);
  }

  .prog-cover {
    height: 190px;
  }

  .prog-desc {
    font-size: 15px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  /* Navbar mobile: putih bersih */
  .navbar {
    position: fixed;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }

  .nav-container {
    padding: 12px 16px;
  }

  .nav-logo {
    gap: 10px;
  }

  .nav-logo-img {
    height: 46px;
  }

  .nav-brand-name {
    display: block;
    color: #14532d;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.25;
    max-width: 130px;
  }

  .nav-toggle span {
    background: #14532d;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 16px;
    gap: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
  }

  .nav-menu a {
    color: #14532d;
    font-size: 16px;
    padding: 8px 4px;
    border-bottom: 1px solid rgba(30, 122, 77, 0.08);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  /* Dropdown "Lainnya" (mobile) — accordion di dalam menu */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    display: flex;
    width: 100%;
    justify-content: space-between;
    color: #14532d;
    font-size: 16px;
    padding: 8px 4px;
    border-bottom: 1px solid rgba(30, 122, 77, 0.08);
  }

  .nav-dropdown-menu {
    position: static;
    top: auto;
    right: auto;
    min-width: 0;
    background: rgba(30, 122, 77, 0.05);
    border: none;
    border-radius: 12px;
    box-shadow: none;
    padding: 0;
    margin: 6px 0 2px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: flex;
  }

  .nav-dropdown-menu a {
    font-size: 15px;
    padding: 10px 14px;
    border-radius: 8px;
  }

  .event-item {
    flex-direction: column;
    align-items: flex-start;
  }

  /* ===== Mobile friendly (menyeluruh) ===== */
  body {
    font-size: 15px;
  }

  .section {
    padding: 48px 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-sub {
    font-size: 14px;
    margin-bottom: 28px;
  }

  /* Hero mobile — teks di atas, foto siswi di bawah (proporsional 1 layar) */
  .hero {
    padding: 78px 0 0;
    background-color: #f7cf5c;
    background-image:
      radial-gradient(circle at 15% 20%, rgba(255,255,255,0.6) 0%, transparent 42%),
      radial-gradient(circle at 90% 75%, rgba(255,255,255,0.45) 0%, transparent 46%),
      radial-gradient(circle at 70% 10%, rgba(30,122,77,0.08) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
    display: flex;              /* atur urutan: teks dulu, foto belakangan */
    flex-direction: column;
    min-height: auto;
  }

  .hero-inner {
    position: relative;
    z-index: 3;
    left: 0;              /* reset left:6% dari desktop agar tidak meluber */
    margin-left: 0;
    max-width: 100%;
    text-align: left;
    transform: none;
    padding: 0 18px;
    width: auto;
    order: 1;             /* teks tampil pertama */
  }

  /* Foto siswi di bawah teks: melebar, utuh, tidak terpotong */
  .hero > picture {
    display: block;
    width: 100%;
    order: 2;
    margin: 2px 0 0;
  }

  .hero-img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;              /* tinggi mengikuti rasio asli — tidak ada crop */
    aspect-ratio: auto;        /* override aspect-ratio desktop */
    object-fit: contain;
    object-position: center bottom;
    margin: 0;
    border-radius: 0;
    opacity: 1;
  }

  /* Jarak antar elemen teks dirapatkan agar hero tidak terlalu tinggi */
  .hero-badge {
    margin-bottom: 8px;
    font-size: clamp(11px, 1.6vw, 13px);
    padding: 5px 13px;
  }

  .hero h1 {
    font-size: clamp(30px, 5.4vw, 40px);
    line-height: 1.1;
    margin-bottom: 6px;
  }

  .hero-tagline {
    font-size: clamp(17px, 2.8vw, 21px);
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .hero-slogan {
    font-size: clamp(12.5px, 1.9vw, 14px);
    padding: 5px 14px;
    margin-bottom: 10px;
  }

  .hero-desc {
    font-size: clamp(14px, 2.2vw, 16px);
    line-height: 1.55;
    margin-bottom: 14px;
    max-width: 100%;
  }

  .hero-cta {
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 4px;
  }

  .hero-cta .btn {
    flex: none;
    justify-content: center;
    width: auto;
    padding: 11px 20px;
    white-space: nowrap;
  }

  .btn {
    padding: 12px 20px;
    font-size: clamp(14px, 2vw, 15px);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-handwritten {
    display: none;
  }

  /* Dekorasi teks: sembunyikan agar tidak ramai di mobile */
  .program-decor,
  .event-decor,
  .kontak-decor {
    display: none;
  }

  /* Visi misi */
  .visi-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px;
  }

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

  /* Sekbid & program & galeri */
  .bidang-grid,
  .program-grid,
  .galeri-grid,
  .mpk-grid {
    grid-template-columns: 1fr;
  }

  /* Event carousel */
  .event-card {
    flex: 0 0 100%;
  }

  .event-img {
    height: 200px;
  }

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

  .pesan-inner {
    flex-direction: column;
    text-align: center;
  }

  .pesan-foto {
    max-width: 240px;
    margin: 0 auto;
  }

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

  .cta-title {
    font-size: 30px;
  }

  .footer-logo img {
    height: 64px;
  }
}

@media (max-width: 400px) {
  .section-title {
    font-size: 23px;
  }
}

/* ============================================================
   HASIL PEMILU — Halaman pengumuman pemenang
   ============================================================ */
.hasil-page { background: linear-gradient(180deg, #fdf9ec 0%, #f4fbf6 100%); min-height: 100vh; }
.hasil-main { padding: 36px 0 70px; }

.hasil-hero { text-align: center; margin-bottom: 30px; }
.hasil-badge {
  display: inline-block; background: #f2c94c; color: #7c5a00;
  font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 20px; border-radius: 30px; margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(242, 201, 76, 0.4);
}
.hasil-judul { font-family: var(--font-display); font-size: 32px; color: #14532d; margin: 0 0 6px; line-height: 1.2; }
.hasil-sub { color: #2c4a38; font-size: 15px; margin: 0; }

/* Kartu pemenang */
.pemenang-card {
  position: relative; max-width: 560px; margin: 0 auto 34px;
  background: #fff; border-radius: 28px; padding: 52px 32px 34px;
  text-align: center;
  border: 3px solid #f2c94c;
  box-shadow: 0 26px 70px rgba(242, 201, 76, 0.32), 0 6px 20px rgba(30, 122, 77, 0.12);
  animation: pemenangMuncul 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
@keyframes pemenangMuncul {
  0% { opacity: 0; transform: scale(0.85) translateY(24px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.pemenang-crown {
  position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
  font-size: 48px; filter: drop-shadow(0 6px 12px rgba(242, 201, 76, 0.7));
  animation: mahkotaGoyang 2.4s ease-in-out infinite;
}
@keyframes mahkotaGoyang {
  0%, 100% { transform: translateX(-50%) rotate(-6deg); }
  50% { transform: translateX(-50%) rotate(6deg); }
}
.pemenang-foto {
  width: 150px; height: 150px; margin: 0 auto 16px;
  border-radius: 50%; overflow: hidden;
  border: 5px solid #f2c94c; background: #eef7f1;
}
.pemenang-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pemenang-nomor {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: #1e7a4d; color: #fff; font-weight: 800; font-size: 19px;
  margin-bottom: 12px;
}
.pemenang-label { font-size: 12px; font-weight: 800; letter-spacing: 2px; color: #1e7a4d; margin: 0 0 4px; text-transform: uppercase; }
.pemenang-nama { font-family: var(--font-display); font-size: 30px; color: #14532d; margin: 0 0 4px; line-height: 1.15; }
.pemenang-kelas { color: #6b7280; font-size: 15px; margin: 0 0 18px; }

.pemenang-wakil {
  display: inline-flex; flex-direction: column; gap: 2px;
  background: #f4fbf6; border: 2px dashed rgba(30, 122, 77, 0.3);
  border-radius: 16px; padding: 14px 26px; margin-bottom: 16px;
}
.pemenang-wakil-label { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; color: #1e7a4d; text-transform: uppercase; }
.pemenang-wakil strong { font-size: 21px; color: #14532d; font-family: var(--font-display); }
.pemenang-wakil-kelas { font-size: 13px; color: #6b7280; }

.pemenang-motto { font-style: italic; color: #1e7a4d; font-size: 15px; margin: 0 0 18px; }
.pemenang-suara { display: inline-flex; align-items: baseline; gap: 8px; background: linear-gradient(135deg, #f2c94c, #f7dc8a); padding: 12px 28px; border-radius: 40px; box-shadow: 0 10px 24px rgba(242, 201, 76, 0.4); }
.ps-angka { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: #7c5a00; }
.ps-label { font-size: 14px; font-weight: 700; color: #7c5a00; }

/* Catatan panitia */
.hasil-catatan {
  max-width: 620px; margin: 0 auto 30px; background: #fff;
  border-left: 5px solid #1e7a4d; border-radius: 16px; padding: 20px 24px;
  box-shadow: 0 10px 28px rgba(30, 122, 77, 0.08);
}
.hasil-catatan h3 { margin: 0 0 8px; color: #14532d; font-size: 17px; }
.hasil-catatan p { margin: 0; color: #2c4a38; font-size: 14.5px; line-height: 1.75; white-space: pre-line; }

/* Statistik */
.hasil-statistik { max-width: 720px; margin: 0 auto 30px; background: #fff; border-radius: 20px; padding: 26px; border: 1px solid rgba(30, 122, 77, 0.14); box-shadow: 0 12px 32px rgba(30, 122, 77, 0.08); }
.hasil-statistik h3 { text-align: center; color: #14532d; font-size: 19px; margin: 0 0 18px; }
.hasil-ringkas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; }
.hr-item { text-align: center; background: #f4fbf6; border-radius: 14px; padding: 14px 8px; }
.hr-angka { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #1e7a4d; }
.hr-lbl { display: block; font-size: 12px; color: #6b7280; font-weight: 600; margin-top: 2px; }

.hasil-list { display: flex; flex-direction: column; gap: 4px; }
.hasil-row { display: grid; grid-template-columns: 34px minmax(90px, 1.3fr) 2fr auto; gap: 12px; align-items: center; padding: 10px 12px; border-radius: 12px; }
.hasil-row.juara { background: rgba(242, 201, 76, 0.16); }
.hr-no { width: 30px; height: 30px; border-radius: 50%; background: #eef2ef; color: #14532d; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.hasil-row.juara .hr-no { background: #f2c94c; }
.hr-nama { color: #14532d; font-weight: 700; font-size: 14px; }
.hr-bar { background: #eef2ef; border-radius: 30px; height: 12px; overflow: hidden; }
.hr-bar span { display: block; height: 100%; background: linear-gradient(90deg, #1e7a4d, #37b978); border-radius: 30px; transition: width 0.7s ease; }
.hasil-row.juara .hr-bar span { background: linear-gradient(90deg, #f2c94c, #e6b800); }
.hr-angka2 { font-size: 13px; color: #2c4a38; white-space: nowrap; }

/* Bagikan */
.hasil-share { max-width: 620px; margin: 0 auto 26px; text-align: center; }
.hasil-share h3 { color: #14532d; font-size: 18px; margin: 0 0 14px; }
.hasil-share-btn { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hasil-share-btn .btn { min-width: 190px; }
.hasil-share-note { color: #166534; font-size: 14px; margin-top: 12px; min-height: 20px; }

.hasil-kembali { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 640px) {
  .hasil-judul { font-size: 24px; }
  .pemenang-card { padding: 46px 22px 28px; }
  .pemenang-nama { font-size: 25px; }
  .hasil-ringkas { grid-template-columns: 1fr; }
  .hasil-row { grid-template-columns: 30px 1fr; row-gap: 6px; }
  .hr-bar, .hr-angka2 { grid-column: 1 / -1; }
  .hr-angka2 { text-align: right; }
}

/* Banner pemenang di beranda */
.vote-pemenang {
  max-width: 860px; margin: 0 auto 30px;
  background: linear-gradient(135deg, #f2c94c, #f7dc8a);
  border-radius: 22px; padding: 24px 26px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  box-shadow: 0 18px 44px rgba(242, 201, 76, 0.4);
  animation: pemenangMuncul 0.6s ease;
}
.vote-pemenang[hidden] { display: none; }
.vote-pemenang-icon { font-size: 40px; line-height: 1; }
.vote-pemenang-body { flex: 1; min-width: 200px; }
.vote-pemenang-tag { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; color: #7c5a00; text-transform: uppercase; }
.vote-pemenang-nama { font-family: var(--font-display); font-size: 23px; color: #14532d; margin: 2px 0; line-height: 1.2; }
.vote-pemenang-wakil { color: #6b5a00; font-size: 14px; font-weight: 600; }
.vote-pemenang-btn { background: #14532d; color: #fff; padding: 12px 24px; border-radius: 30px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.vote-pemenang-btn:hover { background: #0e3d28; }
