/* =========================================
   SDN 006 Balikpapan Timur – style.css
   Skills: antigravity-design-expert, anti-ui-slop,
   animejs-animation, frontend-ui-engineering
   ========================================= */

/* ---- CSS Custom Properties ---- */
:root {
  --green-50:  #f0fdf4;
  --green-100: #dcfce7;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  
  --teal:      #14b8a6;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  
  --white:     #ffffff;

  --radius-sm: 0.375rem;
  --radius:    0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow:    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.025);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.025);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.025);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.1);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Glassmorphism tokens */
  --glass-bg:     rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.15);
  --glass-blur:   blur(16px);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--slate-800);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p { margin-bottom: 1.5rem; }
p:last-child { margin-bottom: 0; }

/* Cinematic Scroll Kit / UI UX Pro Max utilities */
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* body::before — subtle grid texture (depth layer) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2322c55e' fill-opacity='0.02'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--slate-100); }
::-webkit-scrollbar-thumb { background: var(--green-500); border-radius: 3px; }

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Utility ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.gradient-text {
  background: linear-gradient(135deg, var(--green-500), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Section Shared ---- */
.section { padding: 7rem 0; position: relative; overflow: hidden; }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--slate-800);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate-600);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: padding 0.4s var(--ease-out-expo),
              background 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo),
              transform 0.35s var(--ease-out-expo);
}
/* Hide navbar on fast scroll down */
.navbar.hide { transform: translateY(-100%); }
.navbar.show { transform: translateY(0); }

.navbar.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07), 0 0 0 1px rgba(34,197,94,0.06);
  padding: 0.5rem 0;
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo .logo-icon { width: 38px; height: 38px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
  font-weight: 800;
  font-size: 1rem;
  color: var(--slate-800);
  transition: var(--transition);
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--green-600);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.navbar:not(.scrolled) .logo-main { color: white; }
.navbar:not(.scrolled) .logo-sub { color: rgba(255,255,255,0.7); }

.nav-links { display: flex; align-items: center; gap: 0.5rem; }
.nav-link, .nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  transition: var(--transition);
  position: relative;
  border-radius: var(--radius-sm);
}
.nav-link:hover, .nav-links a:hover { color: var(--green-600); }
.nav-link.active, .nav-links a.active { color: var(--green-600); }
.nav-link::after, .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--green-500);
  border-radius: 1px;
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after, .nav-links a:hover::after, .nav-links a.active::after { left: 0.9rem; right: 0.9rem; }
.nav-link:focus-visible, .nav-links a:focus-visible {
  outline: 3px solid var(--green-400);
  outline-offset: 4px;
  border-radius: 4px;
}
.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.85); }
.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active { color: white; }
.navbar:not(.scrolled) .nav-link::after { background: white; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--slate-700); border-radius: 2px; transition: var(--transition); }
.navbar:not(.scrolled) .hamburger span { background: white; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(2,26,12,0.88) 0%,
    rgba(5,46,22,0.75) 40%,
    rgba(6,78,59,0.55) 75%,
    rgba(20,184,166,0.25) 100%
  );
  /* Noise texture for depth */
  mix-blend-mode: multiply;
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(2,26,12,0.6) 100%);
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}
.orb-1 { width: 400px; height: 400px; background: #22c55e; top: -100px; right: 5%; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: #14b8a6; bottom: 10%; left: -80px; animation-delay: -3s; }
.orb-3 { width: 200px; height: 200px; background: #4ade80; top: 40%; right: 20%; animation-delay: -5s; }
@keyframes orbFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-30px) rotate(10deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 820px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #bbf7d0;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.28);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  /* Glassmorphism */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(34,197,94,0.12), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: var(--transition);
}
.hero-badge:hover {
  background: rgba(34,197,94,0.22);
  box-shadow: 0 4px 20px rgba(34,197,94,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-1px);
}
.hero-badge--blue {
  color: #bae6fd;
  background: rgba(14,165,233,0.12);
  border-color: rgba(14,165,233,0.28);
  box-shadow: 0 2px 12px rgba(14,165,233,0.12);
}
.hero-badge--purple {
  color: #e9d5ff;
  background: rgba(168,85,247,0.12);
  border-color: rgba(168,85,247,0.28);
  box-shadow: 0 2px 12px rgba(168,85,247,0.12);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, #86efac, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  /* True glassmorphism — antigravity-design-expert */
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.14);
  border-top: 1px solid rgba(255,255,255,0.22);
  border-left: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2.5rem;
  margin-bottom: 2.5rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}
.hero-stats::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: statsShimmer 4s ease-in-out infinite;
}
@keyframes statsShimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}
.stat-card { text-align: center; }
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #86efac;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.65); font-weight: 500; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  min-height: 44px; /* Touch target minimum */
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.btn:focus-visible {
  outline: 3px solid var(--green-400);
  outline-offset: 3px;
}
/* Shimmer effect on buttons */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.btn:hover::after { left: 150%; }

.btn-primary {
  background: linear-gradient(135deg, var(--green-500) 0%, #16a34a 50%, var(--teal) 100%);
  background-size: 200% 100%;
  color: white;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(34,197,94,0.45), 0 4px 12px rgba(34,197,94,0.25);
  background-position: 100% 0;
}
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ============================================================
   TENTANG
   ============================================================ */
.tentang { background: var(--slate-50); }
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.tentang-image-wrap { position: relative; }
.img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.img-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-xl) + 3px);
  background: linear-gradient(135deg, var(--green-400), var(--teal));
  z-index: -1;
}
.tentang-img { width: 100%; height: 420px; object-fit: cover; transition: var(--transition-slow); }
.tentang-img:hover { transform: scale(1.03); }

.floating-badge-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 0.9rem 1.15rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(34,197,94,0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  max-width: 220px;
  bottom: -20px;
  left: -20px;
  border: 1px solid rgba(255,255,255,0.8);
  border-top: 1px solid rgba(255,255,255,0.95);
  animation: floatBadge 4s ease-in-out infinite;
}
.floating-badge-card--right { left: auto; right: -20px; bottom: 80px; animation-delay: -2s; }
.floating-badge-card strong { display: block; color: var(--slate-800); font-size: 0.85rem; }
.floating-badge-card span { color: var(--slate-600); font-size: 0.75rem; }
.badge-card-icon { font-size: 1.5rem; flex-shrink: 0; }
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.tentang-content { display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem; }
.section-desc { color: var(--slate-600); line-height: 1.8; }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  transition: var(--transition);
}
.info-item:hover {
  border-color: var(--green-400);
  box-shadow: 0 4px 20px rgba(34,197,94,0.1);
  transform: translateY(-2px);
}
.info-icon { font-size: 1.25rem; }
.info-detail { display: flex; flex-direction: column; gap: 0.2rem; }
.info-detail strong { font-size: 0.8rem; color: var(--slate-800); }
.info-detail span { font-size: 0.82rem; color: var(--slate-600); }

/* ============================================================
   VISI MISI
   ============================================================ */
.visi-misi {
  background: var(--gray-50);
  position: relative;
}
.vm-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310b981' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.visi-misi .section-label { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.2); color: var(--green-600); }
.visi-misi .section-title { color: var(--gray-900); }
.visi-misi .section-subtitle { color: var(--gray-500); }

.visi-card {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--green-500);
  transition: transform 0.3s, box-shadow 0.3s;
}
.visi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}
.visi-icon { font-size: 3.5rem; flex-shrink: 0; filter: drop-shadow(0 4px 6px rgba(16,185,129,0.2)); }
.visi-content h3 { font-size: 0.95rem; color: var(--green-600); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.8rem; }
.visi-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--gray-800);
  line-height: 1.5;
  font-style: italic;
}

/* Indikator Visi */
.indikator-visi {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.indikator-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
  text-align: center;
}
.indikator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.indikator-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all 0.3s ease;
}
.indikator-item:hover { 
  background: white; 
  border-color: var(--green-200);
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
  transform: translateY(-3px);
}
.indikator-item .ind-icon {
  font-size: 2rem;
  background: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.indikator-item strong {
  font-size: 1.1rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  display: block;
}
.indikator-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.misi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.misi-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.3s ease, box-shadow 0.4s ease;
  overflow: hidden;
  will-change: transform;
}
.misi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,185,129,0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.misi-card:hover {
  transform: translateY(-8px);
  border-color: var(--green-300);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.misi-card:hover::before { opacity: 1; }
.misi-num {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-500);
  letter-spacing: 0.05em;
}
.misi-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.misi-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.6rem; }
.misi-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.65; }


/* ============================================================
   PROGRAM
   ============================================================ */
.program { background: var(--white); }
.program-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.program-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}
.program-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.program-main:hover .program-img { transform: scale(1.04); }
.program-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,46,22,0.88) 0%, rgba(5,46,22,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.program-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #86efac;
  background: rgba(34,197,94,0.2);
  border: 1px solid rgba(34,197,94,0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  width: fit-content;
}
.program-overlay h3 { font-size: 1.4rem; color: white; font-weight: 700; margin-bottom: 0.5rem; }
.program-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

.program-list { display: flex; flex-direction: column; gap: 0.85rem; }
.program-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  transition: all 0.35s var(--ease-out-expo);
  cursor: default;
  position: relative;
  overflow: hidden;
}
/* Left accent bar */
.program-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--green-500), var(--teal));
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--ease-out-expo);
}
.program-item:hover {
  border-color: var(--green-300);
  background: linear-gradient(to right, var(--green-50), var(--white));
  transform: translateX(8px);
  box-shadow: 0 6px 24px rgba(34,197,94,0.12);
}
.program-item:hover::before { transform: scaleY(1); }
.prog-icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.program-item:hover .prog-icon-wrap {
  background: var(--green-500);
  border-color: var(--green-500);
}
.prog-detail h4 { font-size: 0.9rem; font-weight: 700; color: var(--slate-800); margin-bottom: 0.3rem; }
.prog-detail p { font-size: 0.8rem; color: var(--slate-600); line-height: 1.6; }

/* Pembiasaan Section */
.pembiasaan-section {
  margin-top: 4rem;
  padding: 2.5rem;
  background: var(--slate-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
}
.pemb-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-800);
  text-align: center;
  margin-bottom: 2rem;
}
.pemb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pemb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.pemb-item:hover { border-color: var(--green-400); box-shadow: 0 4px 20px rgba(34,197,94,0.1); transform: translateY(-3px); }
.pemb-icon { font-size: 1.75rem; }
.pemb-item strong { font-size: 0.85rem; color: var(--slate-800); }
.pemb-item p { font-size: 0.75rem; color: var(--slate-600); line-height: 1.55; }

/* ============================================================
   GALERI FOTO
   ============================================================ */
.galeri { background: var(--white); }
.galeri-kategori { margin-bottom: 4rem; }
.galeri-kategori:last-child { margin-bottom: 0; }
.galeri-kat-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-600);
  background: var(--green-50);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  border: 1px solid var(--green-100);
}
.galeri-grid {
  display: grid;
  gap: 1.5rem;
}
.galeri-grid--2 { grid-template-columns: repeat(2, 1fr); }
.galeri-grid--3 { grid-template-columns: repeat(3, 1fr); }
.galeri-grid--4 { grid-template-columns: repeat(4, 1fr); }

.galeri-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
}
.galeri-item--tall { aspect-ratio: 3/4; grid-row: span 2; }
.galeri-item--wide { aspect-ratio: 16/9; }

.galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.galeri-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.galeri-item:hover img {
  transform: scale(1.05);
}
.galeri-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
  color: white;
  padding: 2rem 1rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s var(--ease-out-expo);
}
.galeri-item:hover .galeri-caption {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================================
   DATA SEKOLAH
   ============================================================ */
.data-sekolah { background: var(--slate-50); }
.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.data-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid var(--slate-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
/* Static green top border */
.data-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green-300);
  opacity: 0;
  transition: opacity 0.3s ease;
}
/* Show green top border on the first card, or all on hover */
.data-card:first-child::before {
  opacity: 1;
}
.data-card:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}
.data-card:hover::before { opacity: 1; }
.data-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.data-icon { display: none; }
.data-card-header h3 { font-size: 1rem; font-weight: 700; color: var(--slate-800); }
.data-big-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green-500);
  line-height: 1;
  margin-bottom: 2rem;
}
.data-breakdown { display: flex; flex-direction: column; gap: 0; }
.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 0.8rem 0;
  border-bottom: 1px dotted var(--slate-200);
}
.data-row:last-child { border-bottom: none; padding-bottom: 0; }
.data-row span:first-child { color: var(--slate-500); font-weight: 500; }
.data-val { font-weight: 700; color: var(--slate-800); font-size: 0.85rem; }
.badge-green {
  background: #ecfdf5;
  color: var(--green-600);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 700;
}
.data-card-note {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: #ecfdf5;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--green-600);
  font-weight: 600;
  line-height: 1.4;
}

/* ============================================================
   MITRA
   ============================================================ */
.mitra { background: white; }
.mitra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.mitra-kategori {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.mitra-kategori::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-400), var(--teal));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out-expo);
}
.mitra-kategori:hover {
  border-color: rgba(34,197,94,0.3);
  background: linear-gradient(135deg, var(--green-50), var(--white));
  box-shadow: 0 8px 30px rgba(34,197,94,0.1);
  transform: translateY(-4px);
}
.mitra-kategori:hover::after { transform: scaleX(1); }
.mitra-kat-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.mitra-kategori h4 { font-size: 0.9rem; font-weight: 700; color: var(--slate-800); margin-bottom: 0.6rem; }
.mitra-kategori ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.mitra-kategori li { font-size: 0.78rem; color: var(--slate-600); padding-left: 0.75rem; position: relative; line-height: 1.5; }
.mitra-kategori li::before { content: '→'; position: absolute; left: 0; color: var(--green-500); font-size: 0.7rem; }

/* Footer links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.footer-links span { color: rgba(255,255,255,0.5); }

/* ============================================================
   PRESTASI (renamed as data-sekolah replaced it)
   ============================================================ */
.prestasi { background: var(--slate-50); }
.prestasi-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 50% 100%, rgba(34,197,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.prestasi-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.prestasi-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  animation-delay: var(--delay);
}
.prestasi-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--teal));
  transform: scaleX(0);
  transition: var(--transition);
}
.prestasi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.prestasi-card:hover::before { transform: scaleX(1); }
.prestasi-ribbon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.prestasi-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--slate-800); margin-bottom: 0.6rem; }
.prestasi-card p { font-size: 0.8rem; color: var(--slate-600); line-height: 1.65; }

/* ============================================================
   KONTAK
   ============================================================ */
.kontak { background: white; }
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.kontak-info { display: flex; flex-direction: column; gap: 1.25rem; }
.kontak-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  transition: all 0.35s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.kontak-item:hover {
  background: linear-gradient(to right, var(--green-50), var(--white));
  border-color: rgba(34,197,94,0.25);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(34,197,94,0.08);
}
.kontak-icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}
.kontak-icon-wrap svg { width: 20px; height: 20px; color: white; stroke: white; }
.kontak-item strong { display: block; font-size: 0.85rem; color: var(--slate-800); margin-bottom: 0.25rem; }
.kontak-item p { font-size: 0.82rem; color: var(--slate-600); line-height: 1.6; }

.kontak-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-200);
}
.map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(34,197,94,0.15) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2322c55e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.map-pin-anim {
  animation: pinBounce 1.5s ease-in-out infinite;
}
.map-pin-anim svg { width: 48px; height: 48px; fill: var(--green-500); filter: drop-shadow(0 4px 12px rgba(34,197,94,0.5)); }
@keyframes pinBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.map-placeholder p { color: rgba(255,255,255,0.75); font-size: 0.85rem; position: relative; z-index: 1; }
.map-placeholder p:first-of-type { font-weight: 700; color: white; font-size: 1rem; }
.map-placeholder .btn { margin-top: 0.5rem; position: relative; z-index: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--slate-900);
  position: relative;
  padding-top: 0;
}
.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; height: 80px; display: block; }
.footer-content {
  padding: 2rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo .logo-icon { width: 42px; height: 42px; }
.footer-logo .logo-main { color: white; font-size: 1rem; }
.footer-logo .logo-sub { color: rgba(255,255,255,0.5); }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.45); text-align: center; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
  will-change: opacity, transform;
}
.reveal-up    { transform: translateY(50px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.88); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* Reduced motion override */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }

.misi-card, .program-item, .prestasi-card {
  transition-delay: var(--delay, 0s) !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .section-grid { gap: 3rem; }
  .misi-grid { grid-template-columns: repeat(2, 1fr); }
  .prestasi-track { grid-template-columns: repeat(2, 1fr); }
  .program-showcase { grid-template-columns: 1fr; }
  .program-main { aspect-ratio: 16/9; }
  .data-grid { grid-template-columns: repeat(2, 1fr); }
  .mitra-grid { grid-template-columns: repeat(2, 1fr); }
  .indikator-grid { grid-template-columns: repeat(3, 1fr); }
  .galeri-grid--3, .galeri-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .galeri-item--tall { grid-row: auto; aspect-ratio: 4/3; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 70px; }
  .section { padding: 5rem 0; }
  .section-grid { grid-template-columns: 1fr; }
  .kontak-grid { grid-template-columns: 1fr; }
  .misi-grid { grid-template-columns: 1fr; }
  .data-grid { grid-template-columns: 1fr; }
  .mitra-grid { grid-template-columns: 1fr; }
  .indikator-grid { grid-template-columns: repeat(2, 1fr); }
  .pemb-grid { grid-template-columns: repeat(2, 1fr); }
  .galeri-grid--2, .galeri-grid--3, .galeri-grid--4 { grid-template-columns: 1fr; }
  .visi-card { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .stat-divider { display: none; }
  .floating-badge-card { display: none; }
  .tentang-img { height: 300px; }
  .pembiasaan-section { padding: 1.5rem; }

  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 75%;
    max-width: 280px;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 5rem 2rem 2rem;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    color: var(--slate-700) !important;
    border-bottom: 1px solid var(--slate-100);
    border-radius: 0;
  }
  .nav-link::after { display: none; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

@media (max-width: 480px) {
  .prestasi-track { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .indikator-grid { grid-template-columns: repeat(2, 1fr); }
  .pemb-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 280px; }
  .map-placeholder { height: 300px; }
  .hero-badges { flex-direction: column; align-items: center; }
}

/* Nav Dropdown CSS */
.nav-dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; right: 0; background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: 0 10px 25px rgba(0,0,0,0.1); padding: 0.5rem; min-width: 200px; z-index: 100; margin-top: 0.5rem; list-style: none; }
.dropdown-menu::before { content: ""; position: absolute; top: -0.5rem; left: 0; width: 100%; height: 0.5rem; }
.nav-dropdown:hover .dropdown-menu { display: block; animation: fadeInDown 0.2s ease forwards; }
.dropdown-menu li { display: block; }
.dropdown-menu a { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem; color: var(--gray-800); font-weight: 600; font-size: 0.95rem; border-radius: var(--radius-md); text-decoration: none; transition: background 0.2s; }
.dropdown-menu a:hover { background: var(--green-50); color: var(--green-600); }

/* Kombel Analytics CSS */
.kombel-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.kombel-stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.kombel-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.kombel-stat-card .stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.kombel-stat-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}
.kombel-stat-card p {
  color: var(--gray-500);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Modal CSS */
.kombel-modal {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.6); 
  backdrop-filter: blur(5px);
}
.kombel-modal-content {
  background-color: #fefefe;
  margin: 5% auto; 
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 800px;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  animation: modalFadeIn 0.3s ease-out forwards;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
.kombel-close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.kombel-close-btn:hover, .kombel-close-btn:focus {
  color: black;
  text-decoration: none;
}
.kombel-detail-table {
  width: 100%;
  border-collapse: collapse;
}
.kombel-detail-table th, .kombel-detail-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}
.kombel-detail-table th {
  background-color: var(--green-500);
  color: white;
}
.kombel-detail-table tr:nth-child(even){background-color: #f9f9f9;}
.kombel-detail-table tr:hover {background-color: #f1f1f1;}


.btn-portal-login {
  color: var(--green-600);
  font-weight: 700;
  background: var(--green-50);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: 1px solid var(--green-100);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.3s ease;
}
.navbar:not(.scrolled) .btn-portal-login {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.navbar:not(.scrolled) .btn-portal-login:hover {
  background: rgba(255, 255, 255, 0.25);
}
