:root {
  color-scheme: light;
  --green-950: #052414;
  --green-900: #0b3f22;
  --green-800: #0c4725;
  --green-700: #0f522e;
  --green-600: #136638;
  --green-500: #1a8a4d;
  --green-200: #a7e0be;
  --green-100: #ecfdf3;
  --green-50: #f4fbf7;
  --gold-500: #dfb249;
  --gold-600: #c99c37;
  --gold-100: #fdf8eb;
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --ink-200: #e2e8f0;
  --ink-100: #f1f5f9;
  --white: #ffffff;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --surface-3: #f0fdf4;
  --surface-accent: #ecfdf3;
  --surface-header: rgba(255, 255, 255, 0.88);
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --line: rgba(15, 23, 42, 0.08);
  --line-accent: rgba(15, 82, 46, 0.12);
  --line-hover: rgba(15, 82, 46, 0.25);
  --hover-bg: #f1f5f9;
  --link: #0f522e;
  --link-hover: #1a8a4d;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 16px 40px -10px rgba(15, 82, 46, 0.08), 0 4px 16px -4px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 24px 60px -12px rgba(15, 82, 46, 0.12), 0 8px 24px -8px rgba(0, 0, 0, 0.04);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --max-width: 1152px;
  --header-height: 72px;
  --top-offset: var(--header-height);
}

[data-theme="dark"] {
  color-scheme: dark;
  --green-50: #0b1f14;
  --green-100: #0f301e;
  --green-200: #62cf90;
  --green-500: #38b877;
  --green-600: #2a9c61;
  --green-700: #46df92;
  --surface: #070a13;
  --surface-2: #0e1322;
  --surface-3: #131a2e;
  --surface-accent: #0f241a;
  --surface-header: rgba(7, 10, 19, 0.82);
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  --line: rgba(255, 255, 255, 0.08);
  --line-accent: rgba(70, 223, 146, 0.15);
  --line-hover: rgba(70, 223, 146, 0.3);
  --hover-bg: #131a2e;
  --link: #46df92;
  --link-hover: #62cf90;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 16px 40px -10px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
  --shadow-lg: 0 24px 60px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--top-offset) + 1.5rem);
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.25s ease, color 0.25s ease;
}

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

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--link-hover);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--green-700);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--line-accent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  transition: transform 0.2s ease;
}

.brand:hover {
  transform: scale(1.01);
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}

.brand-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: -0.015em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-theme="dark"] .brand-name {
  color: var(--green-200);
}

.brand-sub {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
}

.nav-desktop a {
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.nav-desktop a:hover {
  background: var(--hover-bg);
  color: var(--text-primary);
}

.nav-desktop a.active {
  color: var(--green-700);
  background: var(--surface-accent);
}

[data-theme="dark"] .nav-desktop a.active {
  color: var(--green-200);
  background: var(--surface-accent);
}

.nav-external {
  margin-left: 0.65rem;
  border: 1.5px solid var(--green-700) !important;
  color: var(--green-700) !important;
  font-weight: 700 !important;
}

.nav-external:hover {
  background: var(--green-700) !important;
  color: var(--white) !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--green-700);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.theme-toggle:hover {
  background: var(--hover-bg);
  border-color: var(--line-hover);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.theme-toggle .icon-moon {
  display: block;
}

.theme-toggle .icon-sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--green-700);
  border-radius: var(--radius-sm);
}

.menu-toggle:hover {
  background: var(--hover-bg);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-mobile {
  display: none;
  background: var(--surface);
  padding: 0.5rem 1rem 1rem;
  flex-direction: column;
  gap: 0.1rem;
  list-style: none;
  border-top: 1px solid var(--line);
}

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

.nav-mobile a {
  display: block;
  padding: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
}

.nav-mobile a:hover {
  background: var(--surface-3);
  color: var(--link);
}

.nav-mobile .nav-external {
  margin-left: 0;
  margin-top: 0.25rem;
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, #125732 0%, #0a4022 55%, #052414 100%);
  color: var(--white);
  padding: 5.5rem 0 7.5rem;
  text-align: center;
}

[data-theme="dark"] .hero {
  background: radial-gradient(circle at 50% 30%, #092c19 0%, #051c10 60%, #020a06 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(223, 178, 73, 0.15) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.82;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  margin-inline: auto;
}

.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  margin-bottom: 1.5rem;
  isolation: isolate;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 236, 170, 0.65) 0%,
    rgba(223, 178, 73, 0.3) 45%,
    transparent 72%
  );
  filter: blur(12px);
  animation: logo-glow 4s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.hero-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.04) 55%,
    transparent 75%
  );
  border: 1px solid rgba(255, 228, 150, 0.45);
  box-shadow:
    0 0 0 1px rgba(223, 178, 73, 0.22),
    0 0 32px rgba(223, 178, 73, 0.55);
  animation: logo-ring 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(255, 220, 120, 0.65))
    drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

@keyframes logo-glow {
  0%, 100% {
    opacity: 0.7;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes logo-ring {
  0%, 100% {
    opacity: 0.6;
    box-shadow:
      0 0 0 1px rgba(223, 178, 73, 0.15),
      0 0 20px rgba(223, 178, 73, 0.4);
  }
  50% {
    opacity: 1;
    box-shadow:
      0 0 0 1px rgba(255, 228, 150, 0.4),
      0 0 38px rgba(255, 220, 130, 0.65);
  }
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-200);
  margin-bottom: 0.85rem;
}

[data-theme="dark"] .hero-eyebrow {
  color: var(--green-700);
}

.hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1rem;
}

.hero-tagline em {
  font-style: normal;
  color: var(--gold-500);
}

.hero-lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 99px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
  color: #0c4725;
  box-shadow: 0 4px 18px rgba(223, 178, 73, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(223, 178, 73, 0.35);
  background: linear-gradient(135deg, #f0c55d 0%, var(--gold-500) 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-dark {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(15, 82, 46, 0.15);
}

.btn-dark:hover {
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-700) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 82, 46, 0.28);
  color: var(--white);
}

/* Stats */
.stats-section {
  padding: 0 0 3.5rem;
  background: transparent;
  position: relative;
  z-index: 10;
  margin-top: -3.5rem; /* Float stats panel over hero */
}

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

.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.25s ease, 
              background-color 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-hover);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--line-hover);
}

.stat-value {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .stat-value {
  background: linear-gradient(135deg, var(--green-200) 0%, var(--green-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 0.65rem;
  line-height: 1.4;
}

/* Sections */
section {
  padding-block: 4.5rem;
}

.section-header {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.section-header.center {
  text-align: center;
  margin-inline: auto;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
  text-wrap: balance;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.about {
  background: var(--surface-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

.about-content p:last-of-type {
  margin-bottom: 1.75rem;
}

.about-values {
  display: grid;
  gap: 0.75rem;
}

.value-item {
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease, 
              background-color 0.25s ease;
}

.value-item:hover {
  transform: translateY(-3px);
  border-color: var(--line-hover);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--line-hover);
}

.value-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.value-item h3::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green-600);
  border-radius: 50%;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

#layanan {
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.25s ease, 
              background-color 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-hover);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--line-hover);
}

.service-card.featured {
  border-color: var(--green-700);
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-3) 100%);
  position: relative;
  overflow: hidden;
}

.service-card.featured::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(26, 138, 77, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--surface-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green-700);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(2deg);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  flex-grow: 1;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.service-link {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--green-700);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-link svg {
  transform: translateX(5px);
}

.service-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--surface-accent);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.news {
  background: var(--surface-2);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.news-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.25s ease, 
              background-color 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-hover);
  box-shadow: var(--shadow-lg);
}

.news-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.76rem;
}

.news-category {
  padding: 0.15rem 0.5rem;
  background: var(--surface-accent);
  color: var(--green-700);
  border-radius: 999px;
  font-weight: 700;
}

.news-date {
  color: var(--text-muted);
}

.news-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  line-height: 1.45;
}

.news-excerpt {
  font-size: 0.86rem;
  color: var(--text-muted);
  flex-grow: 1;
  line-height: 1.6;
}

.news-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
}

.contact {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.25s ease, 
              background-color 0.25s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  border-color: var(--line-hover);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.08) rotate(-3deg);
}

.contact-item h3 {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
  font-size: 0.92rem;
  color: var(--text-secondary);
  text-decoration: none;
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--link);
  text-decoration: underline;
}

.contact-cta {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-3) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--line-accent);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.25s ease, 
              background-color 0.25s ease;
}

.contact-cta:hover {
  transform: translateY(-3px);
  border-color: var(--line-hover);
  box-shadow: var(--shadow-lg);
}

.contact-cta h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
}

.contact-cta p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
  font-size: 0.92rem;
}

.site-footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.8);
  padding-block: 2.5rem 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .brand-name {
  color: var(--white);
  white-space: normal;
}

.footer-brand .brand-sub {
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand p {
  margin-top: 0.85rem;
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.75rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.86rem;
}

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

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-domain {
  color: rgba(255, 255, 255, 0.55);
}

.footer-domain-legacy {
  color: rgba(255, 255, 255, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.error-page {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-page h1 {
  font-size: 5rem;
  font-weight: 800;
  color: var(--green-700);
}

.error-page h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-block: 1rem;
}

.error-page p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 768px) {
  .brand-name {
    font-size: 0.72rem;
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

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

  .hero {
    padding: 2.5rem 0 3rem;
  }
}

@media (min-width: 769px) {
  .brand-name {
    font-size: 0.88rem;
  }
}

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

  body,
  .site-header,
  .stat-card,
  .value-item,
  .service-card,
  .news-card,
  .contact-item,
  .contact-cta {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-logo-wrap::before,
  .hero-logo-wrap::after {
    animation: none;
    opacity: 0.85;
  }
}

/* ==========================================================================
   Sub-page Hero
   ========================================================================== */
.page-hero {
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-700) 65%, var(--green-600) 100%);
  color: var(--white);
  padding: 4.5rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--line-accent);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.5;
}

/* ==========================================================================
   Sejarah & Visi Misi
   ========================================================================== */
.sejarah-section,
.visi-misi-section,
.pengurus-section,
.ortom-section,
.majelis-section,
.results-section {
  padding-block: 4rem;
}

.sejarah-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.highlight-box {
  padding: 1.5rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.highlight-box h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 0.5rem;
}

.highlight-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.visi-misi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.visi-card, .misi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.visi-card h3, .misi-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-700);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--green-500);
  padding-bottom: 0.5rem;
  width: fit-content;
}

.misi-card ul {
  list-style-position: outside;
  padding-left: 1.25rem;
}

.misi-card li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Pengurus Section
   ========================================================================== */
.pengurus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pengurus-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pengurus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-hover);
}

.pengurus-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface-accent);
  margin: 0 auto 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--green-200);
  overflow: hidden;
}

.pengurus-avatar svg {
  width: 44px;
  height: 44px;
  color: var(--green-700);
}

.pengurus-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.pengurus-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.pengurus-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   Ortom Section
   ========================================================================== */
.ortom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ortom-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, background-color 0.25s ease, transform 0.2s;
}

.ortom-card:hover {
  border-color: var(--green-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.ortom-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.ortom-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Search Panel & AUM Grid
   ========================================================================== */
.search-section {
  padding-block: 2rem 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
}

.search-panel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.search-wrapper {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-wrapper input {
  width: 100%;
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.85rem 1rem 0.85rem 3rem;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  transition: all 0.2s;
}

.search-wrapper input:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(16, 96, 48, 0.12);
}

.filter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.category-tabs {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.tab-btn:hover {
  background: var(--hover-bg);
  color: var(--text-primary);
}

.tab-btn.active {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
}

.select-wrapper {
  position: relative;
  min-width: 180px;
}

.select-wrapper select {
  width: 100%;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 2rem 0.55rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-secondary);
  cursor: pointer;
  appearance: none;
  transition: all 0.2s;
}

.select-wrapper select:focus {
  outline: none;
  border-color: var(--green-700);
}

.select-wrapper::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 55%;
  transform: translateY(-50%) rotate(45deg);
  border: solid var(--text-muted);
  border-width: 0 2px 2px 0;
  padding: 3px;
  pointer-events: none;
}

.aum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.aum-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.aum-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-hover);
}

.aum-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.aum-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.aum-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--surface-accent);
  color: var(--green-700);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.aum-subtag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.aum-info-list {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.aum-info-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.aum-info-item svg {
  width: 14px;
  height: 14px;
  color: var(--green-700);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.aum-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
  margin-bottom: 1.15rem;
}

.aum-card-actions {
  display: flex;
  gap: 0.5rem;
}

.aum-card-actions .btn {
  padding: 0.45rem 0.85rem;
  font-size: 0.78rem;
  flex: 1;
  justify-content: center;
}

.aum-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px dashed var(--line);
  color: var(--text-muted);
}

.seo-fallback-list {
  display: none;
}

/* ==========================================================================
   Responsive Overrides
   ========================================================================== */
@media (max-width: 1024px) {
  .pengurus-grid,
  .ortom-grid,
  .aum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .visi-misi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pengurus-grid,
  .ortom-grid,
  .aum-grid {
    grid-template-columns: 1fr;
  }
  .filter-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  .select-wrapper {
    width: 100%;
  }
}