/*
 * CSS UTAMA - EDUCENTER
 * File ini mengatur seluruh tampilan visual website:
 * - Color palette dari desain yang diberikan
 * - Layout responsif menggunakan CSS Grid & Flexbox
 * - Animasi dan transisi untuk pengalaman interaktif
 * - Custom komponen: navbar, cards, hero, footer, dll.
 */

/* =============================================
   CSS VARIABLES (Color Palette)
   ============================================= */
:root {
  /* Warna Utama dari Color Palette */
  --blue-mid:    #427ab5;   /* Steel Blue */
  --blue-deep:   #406aaf;   /* Royal Blue */
  --yellow:      #f7dd7d;   /* Sunny Yellow */
  --cream:       #ffe8be;   /* Warm Cream */

  /* Warna Turunan */
  --blue-light:  #5a8ec9;
  --blue-dark:   #2d5280;
  --yellow-deep: #f0c840;
  --cream-dark:  #f5d9a0;
  --white:       #ffffff;
  --text-dark:   #1e3a5f;
  --text-mid:    #3d5a80;
  --text-light:  #6b8cae;
  --bg-light:    #f0f6ff;
  --shadow:      rgba(64, 106, 175, 0.15);
  --shadow-deep: rgba(64, 106, 175, 0.3);

  /* Tipografi */
  --font-display: 'Baloo 2', cursive;
  --font-body:    'Nunito', sans-serif;

  /* Spacing */
  --section-py: 80px;
  --container:  1200px;

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* Transitions */
  --trans-fast: 0.2s ease;
  --trans-mid:  0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  --trans-slow: 0.5s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* Custom cursor aktif */
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   CUSTOM CURSOR
   ============================================= */
.custom-cursor {
  position: fixed;
  top: -20px;
  left: -20px;
  font-size: 18px;
  color: var(--yellow-deep);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease, opacity 0.2s ease;
  filter: drop-shadow(0 0 4px rgba(247,221,125,0.7));
  transform: translate(-50%, -50%);
}

/* =============================================
   NAVBAR
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px var(--shadow);
  transition: all var(--trans-slow);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px var(--shadow-deep);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo-icon { font-size: 32px; }

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.logo-edu    { color: var(--blue-deep); }
.logo-center { color: var(--yellow-deep); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all var(--trans-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-deep);
  background: rgba(66, 122, 181, 0.1);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--yellow-deep);
  border-radius: var(--radius-full);
}

.nav-link-special {
  background: var(--yellow);
  color: var(--text-dark) !important;
  padding: 8px 18px;
}

.nav-link-special:hover,
.nav-link-special.active {
  background: var(--yellow-deep) !important;
  color: var(--text-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(247,221,125,0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--trans-fast);
}

.hamburger:hover { background: rgba(66,122,181,0.1); }

.ham-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--blue-deep);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-origin: center;
}

.hamburger.open .ham-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Overlay mobile */
.nav-overlay {
  display: none;
  position: fixed;
  top: 72px;   /* Mulai di bawah navbar, tidak menutupi header */
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30,58,95,0.4);
  backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.visible { opacity: 1; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--trans-mid);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: 0 4px 20px var(--shadow-deep);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--shadow-deep);
}

.btn-outline {
  background: transparent;
  color: var(--blue-deep);
  border-color: var(--blue-mid);
}

.btn-outline:hover {
  background: var(--blue-deep);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--blue-deep);
  box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-3px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  background: linear-gradient(135deg, #e8f1fb 0%, var(--cream) 60%, #fff5e0 100%);
  position: relative;
  overflow: hidden;
  gap: 40px;
  max-width: 100%;
  margin: 0 auto;
}

/* Background floating shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.shape-circle {
  background: var(--blue-mid);
}

.c1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.c2 { width: 200px; height: 200px; bottom: 80px; left: -60px; background: var(--yellow); opacity: 0.3; }

.shape-star {
  position: absolute;
  font-size: 28px;
  opacity: 0.4;
  animation: floatStar 4s ease-in-out infinite;
}

.s1 { top: 20%;  left: 10%;  color: var(--yellow-deep); animation-delay: 0s;    font-size: 32px; }
.s2 { top: 60%;  right: 15%; color: var(--blue-mid);    animation-delay: 1.2s;  font-size: 20px; }
.s3 { bottom: 15%; left: 30%; color: var(--yellow-deep); animation-delay: 2.2s; font-size: 18px; }

@keyframes floatStar {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(15deg); }
}

/* Hero Content */
.hero-content {
  flex: 1;
  max-width: 580px;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(247,221,125,0.4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.highlight {
  color: var(--blue-deep);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.7;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px var(--shadow);
  width: fit-content;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-deep);
}

.stat-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-dark);
}

/* Hero Illustration */
.hero-illustration {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.illustration-main {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px var(--shadow-deep);
  position: relative;
  animation: floatMain 3s ease-in-out infinite;
}

@keyframes floatMain {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.mascot-head { font-size: 80px; }

.star-burst {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 28px;
  animation: spin 4s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.illustration-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px var(--shadow);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
  animation: floatCard 3.5s ease-in-out infinite;
}

.card-bottom { animation-delay: 1s; }

@keyframes floatCard {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(8px); }
}

.illus-icon { font-size: 24px; }

/* =============================================
   SECTION COMMONS
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(66, 122, 181, 0.1);
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================
   PROGRAMS SECTION
   ============================================= */
.programs {
  padding: var(--section-py) 0;
  background: var(--bg-light);
  position: relative;
}

.programs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-deep), var(--yellow-deep), var(--blue-mid));
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--trans-mid);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans-slow);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px var(--shadow-deep);
  border-color: rgba(66, 122, 181, 0.2);
}

.program-card:hover::before { transform: scaleX(1); }

.program-card.featured {
  border-color: var(--yellow-deep);
  background: linear-gradient(160deg, #fffef0 0%, var(--white) 100%);
}

.program-card.featured::before {
  background: linear-gradient(90deg, var(--yellow-deep), var(--yellow));
  transform: scaleX(1);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--yellow);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.card-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-blue  { background: rgba(66, 122, 181, 0.12); }
.icon-yellow { background: rgba(247, 221, 125, 0.4); }

.card-icon { font-size: 32px; }

.program-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.program-card p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.card-features li {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 600;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 14px;
  transition: gap var(--trans-fast);
}

.card-link:hover { gap: 12px; }

/* =============================================
   WHY US SECTION
   ============================================= */
.why-us {
  padding: var(--section-py) 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image-inner {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  border-radius: var(--radius-xl);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.big-emoji { font-size: 100px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2)); }

.why-badge-float {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 6px;
}

.why-features { display: flex; flex-direction: column; gap: 24px; margin-top: 28px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: background var(--trans-fast);
}

.why-item:hover { background: var(--bg-light); }

.why-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(66, 122, 181, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.why-item p { font-size: 14px; color: var(--text-light); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, #e8f1fb 100%);
}

.testimonial-slider { overflow: hidden; position: relative; }

.testi-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 8px 32px var(--shadow);
  text-align: center;
}

.testi-stars { font-size: 22px; margin-bottom: 20px; }

.testi-card p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testi-avatar {
  font-size: 36px;
  width: 54px;
  height: 54px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-author strong { display: block; font-size: 16px; color: var(--text-dark); }
.testi-author span   { font-size: 13px; color: var(--text-light); }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--cream-dark);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.dot.active {
  background: var(--blue-deep);
  width: 28px;
  border-radius: var(--radius-full);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  font-size: 32px;
  opacity: 0.15;
  pointer-events: none;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-box p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-edu    { color: var(--cream); }
.footer-logo .logo-center { color: var(--yellow); }

.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 10px; }

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--trans-fast);
  cursor: pointer;
}

.social-btn:hover {
  background: var(--blue-mid);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--trans-fast);
  display: inline-block;
}

.footer-links a:hover { color: var(--yellow); transform: translateX(4px); }

.footer-contact li {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact li span { flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* =============================================
   PAGE HEADER (Sub-pages)
   ============================================= */
.page-hero {
  padding: 120px 24px 60px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--cream) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: attr(data-emoji);
  position: absolute;
  font-size: 200px;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   LOKER PAGE - Khusus
   ============================================= */
.loker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  padding: 60px 0;
}

.loker-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 4px 16px var(--shadow);
  border: 2px solid transparent;
  transition: all var(--trans-mid);
}

.loker-card:hover {
  border-color: var(--yellow-deep);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow-deep);
}

.loker-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.loker-badge {
  background: var(--yellow);
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.loker-badge.open  { background: #d4f7d4; color: #1a7a1a; }
.loker-badge.close { background: #ffd4d4; color: #7a1a1a; }

.loker-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.loker-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.loker-tag {
  font-size: 12px;
  color: var(--text-mid);
  background: var(--bg-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.loker-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes bounceIn {
  0%   { opacity: 0; transform: scale(0.5) translateY(20px); }
  60%  { transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.bounce-in { animation: bounceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.slide-up  { animation: slideUp 0.7s ease forwards; opacity: 0; }
.slide-right { animation: slideRight 0.7s ease forwards; opacity: 0; }

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

/* Scroll-reveal (diatur via JS) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE - TABLET
   ============================================= */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 110px; }
  .hero-content { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-stats { margin: 0 auto; }
  .hero-illustration { order: -1; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 768px) {
  :root { --section-py: 56px; }

  /* Navbar Mobile */
  .hamburger { display: flex; }

  .nav-overlay { display: block; }

  .nav-links {
    position: fixed;
    top: 72px;        /* Tepat di bawah navbar (tinggi navbar = 72px) */
    right: -100%;
    bottom: 0;
    width: min(300px, 85vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 40px;  /* Padding atas kecil, menu langsung terlihat */
    gap: 8px;
    z-index: 999;
    box-shadow: -8px 0 32px rgba(0,0,0,0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(66, 122, 181, 0.12); /* Garis pemisah tipis */
  }

  .nav-links.open { right: 0; }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
  }

  /* Hero mobile */
  .hero { padding: 100px 20px 40px; }
  .illustration-main { width: 160px; height: 160px; }
  .mascot-head { font-size: 64px; }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 16px;
  }

  .stat-divider { display: none; }

  /* Programs */
  .programs-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* CTA */
  .cta-box { padding: 40px 24px; }

  /* Page hero */
  .page-hero { padding: 100px 20px 48px; }

  /* Custom cursor off pada mobile */
  .custom-cursor { display: none; }
  body { cursor: auto; }
}

@media (max-width: 480px) {
  .btn { padding: 12px 20px; font-size: 14px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
