/**
 * D'Best Archery Class - Modern Design System & Framework
 * Clean, lightweight, ultra-fast, cPanel shared-hosting friendly.
 */

:root {
  /* Brand Color Palette - Synchronized with shop/gear.html */
  --primary: #046c4e;
  --primary-hover: #03543f;
  --primary-light: #def7ec;
  --primary-dark: #023829;
  
  --gold: #d97706;
  --gold-hover: #b45309;
  --gold-light: #fef3c7;
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --green-gradient: linear-gradient(135deg, #046c4e 0%, #022c22 100%);
  
  --dark: #0f172a;
  --dark-surface: #1e293b;
  --dark-border: #334155;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --white: #ffffff;
  --bg-light: #f8fafc;
  --bg-subtle: #f1f5f9;
  --card-bg: #ffffff;
  --card-border: #e2e8f0;
  
  /* Modern Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-gold: 0 10px 25px -5px rgba(217, 119, 6, 0.35);
  --shadow-green: 0 10px 25px -5px rgba(4, 108, 78, 0.35);

  /* Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --font-heading: 'Orbitron', 'Plus Jakarta Sans', sans-serif;
}

[data-theme="dark"] {
  --primary: #10b981;
  --primary-hover: #059669;
  --primary-light: rgba(16, 185, 129, 0.15);
  --primary-dark: #064e3b;
  
  --dark: #f8fafc;
  --dark-surface: #0b1329;
  --dark-border: #1e293b;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-light: #64748b;
  --bg-light: #0b1329;
  --bg-subtle: #0f172a;
  --card-bg: #1e293b;
  --card-border: #334155;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 20px 35px rgba(0, 0, 0, 0.7);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* Container */
.modern-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -5px rgba(4, 108, 78, 0.45);
}

.btn-secondary, .btn-gold {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-secondary:hover, .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -5px rgba(217, 119, 6, 0.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: #cbd5e1;
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-2px);
}

/* Top Notification Banner */
.top-notice-bar {
  background: linear-gradient(90deg, #023829, #046c4e);
  color: #a7f3d0;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  text-align: center;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}
.top-notice-bar a {
  color: #fef08a;
  text-decoration: underline;
  font-weight: 600;
}

/* Modern Sticky Navigation */
.navbar-modern {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}
[data-theme="dark"] .navbar-modern {
  background: rgba(11, 19, 41, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar-modern.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
}
[data-theme="dark"] .navbar-modern.scrolled {
  background: rgba(11, 19, 41, 0.98);
  box-shadow: 0 4px 25px -2px rgba(0, 0, 0, 0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark);
  font-family: var(--font-heading);
}
.nav-brand img {
  height: 46px;
  width: auto;
}
.nav-brand span.highlight {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.15rem;
}
.nav-item a {
  font-size: 0.885rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
}
.nav-item a:hover, .nav-item a.active {
  color: var(--primary);
}
.nav-item > a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* Dropdown Menu Styling */
.nav-item.dropdown {
  position: relative;
}
.nav-item.dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.dropdown-chevron {
  transition: transform 0.25s ease;
}
.nav-item.dropdown:hover .dropdown-chevron,
.nav-item.dropdown.show .dropdown-chevron {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--white);
  min-width: 230px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 0.6rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
}
[data-theme="dark"] .dropdown-menu {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}
.dropdown-item {
  display: block;
}
.dropdown-item a {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.15rem !important;
  font-size: 0.885rem !important;
  font-weight: 500 !important;
  color: var(--text-main) !important;
  transition: all 0.2s ease;
  border-radius: 6px;
  margin: 0 0.4rem;
}
.dropdown-item a:hover {
  background: rgba(16, 185, 129, 0.08);
  color: var(--primary) !important;
  transform: translateX(4px);
}
[data-theme="dark"] .dropdown-item a:hover {
  background: rgba(16, 185, 129, 0.16);
  color: #34d399 !important;
}
.dropdown-item a.active {
  color: var(--primary) !important;
  font-weight: 700 !important;
  background: rgba(16, 185, 129, 0.1);
}
.dropdown-item a::after {
  display: none !important;
}

/* Toko Gear Pill Badge */
.nav-gear-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  background: rgba(245, 158, 11, 0.12) !important;
  color: #d97706 !important;
  border: 1px solid rgba(245, 158, 11, 0.35) !important;
  padding: 0.35rem 0.85rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: all 0.25s ease !important;
}
[data-theme="dark"] .nav-gear-pill {
  background: rgba(245, 158, 11, 0.18) !important;
  color: #fbbf24 !important;
  border-color: rgba(245, 158, 11, 0.45) !important;
}
.nav-gear-pill:hover {
  background: var(--gold-gradient) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35) !important;
  transform: translateY(-1px) !important;
}
.nav-gear-pill::after {
  display: none !important;
}

/* Nav CTA Button [Hubungi Kami] */
.nav-cta-btn {
  background: var(--gold-gradient) !important;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.35rem !important;
  border-radius: var(--radius-full) !important;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  transition: var(--transition) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
}
.nav-cta-btn::after {
  display: none !important;
}
.nav-cta-btn:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.6) !important;
  filter: brightness(1.08) !important;
}

/* Nav Action & Theme Toggle */
.nav-theme-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(var(--text-rgb, 15), 0.06);
  border: 1px solid var(--card-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  transition: var(--transition-fast);
}
.nav-theme-btn:hover {
  transform: scale(1.08);
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--dark);
}

/* Modern Hero Section */
.hero-modern {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(4, 108, 78, 0.88) 100%), 
              url('../images/whatsapp-image-2023-04-16-at-21.10.53-1500x774.jpeg') center/cover no-repeat;
  color: var(--white);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}
.hero-content {
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fef08a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-title span {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #e2e8f0;
  margin-bottom: 2rem;
  max-width: 640px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 580px;
}
.stat-item h4 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fef08a;
  margin-bottom: 0.25rem;
}
.stat-item p {
  font-size: 0.85rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Logos Marquee Bar */
.partners-section {
  background: #ffffff;
  padding: 1.75rem 0;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}
.partners-title {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.marquee-wrapper {
  overflow: hidden;
  user-select: none;
  display: flex;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
  padding-left: 2rem;
}
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: var(--transition-fast);
  filter: grayscale(10%);
}
.marquee-item:hover {
  opacity: 1;
  transform: scale(1.06);
  filter: grayscale(0%);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections Global */
.section-py {
  padding: 5rem 0;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.feature-card {
  background: var(--card-bg);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}
.feature-card:hover::before {
  opacity: 1;
}

/* Legalitas & SK Perpani Section Styling */
.legalitas-banner {
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.05) 0%, rgba(16, 185, 129, 0.12) 100%);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  margin-top: 1rem;
}
[data-theme="dark"] .legalitas-banner {
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.25) 0%, rgba(15, 23, 42, 0.95) 100%);
  border-color: rgba(16, 185, 129, 0.35);
}
.legalitas-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 991px) {
  .legalitas-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.legalitas-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.legal-badge-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.legal-badge-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.legal-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.legal-doc-box {
  background: var(--card-bg);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.legal-doc-box img {
  max-width: 130px;
  height: auto;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}
.legal-btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  margin-top: 1.25rem;
}
.legal-doc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.legal-doc-btn.primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}
.legal-doc-btn.primary:hover {
  background: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}
.legal-doc-btn.outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--card-border);
}
.legal-doc-btn.outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(16, 185, 129, 0.05);
}
.legal-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
[data-theme="dark"] .legal-highlight-badge {
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
}
.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Program Packages Cards */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.program-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.program-card.featured {
  border: 2px solid var(--primary);
  position: relative;
}
.program-card.featured .featured-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.program-img-wrap {
  height: 200px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.program-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.program-card:hover .program-img-wrap img {
  transform: scale(1.08);
}
.program-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.program-category {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.program-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.program-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.program-benefits {
  list-style: none;
  margin-bottom: 1.75rem;
  border-top: 1px solid var(--card-border);
  padding-top: 1rem;
}
.program-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}
.program-benefits li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Location Cards */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.location-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
}
.location-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.loc-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--gold-light);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.loc-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--dark);
}
.loc-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Toko Gear Live Showcase Grid & Cards */
.gear-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.gear-item-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.gear-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}
.gear-item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: var(--bg-subtle);
  transition: transform 0.4s ease;
}
.gear-item-card:hover .gear-item-img {
  transform: scale(1.05);
}
.gear-item-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.gear-item-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}
.gear-item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gear-item-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  margin-top: auto;
  margin-bottom: 1rem;
}
.location-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #064e3b 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Footer Modern - Synchronized with shop/gear.html */
.footer-modern {
  background: linear-gradient(180deg, #070e1e 0%, #030814 100%);
  color: #94a3b8;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  position: relative;
}
.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #10b981, #f59e0b, transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand h3 {
  color: var(--white);
  font-size: 1.4rem;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}
.footer-brand p {
  line-height: 1.7;
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}
.footer-col h4 {
  color: #f1f5f9;
  font-size: 1.05rem;
  font-family: var(--font-heading);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: #94a3b8;
  font-size: 0.925rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
}
.footer-links a:hover {
  color: #fbbf24;
  transform: translateX(4px);
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: #111e38;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-fast);
}
.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.4);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
  color: #64748b;
}

/* Floating WhatsApp Button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
}
.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
  color: var(--white);
}

/* Responsive Mobile Navigation Drawer */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    background: #ffffff;
    flex-direction: column;
    padding: 1.5rem 1.25rem 2.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    gap: 0.85rem;
    align-items: stretch;
  }
  [data-theme="dark"] .nav-menu {
    background: #0b1329;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-item {
    width: 100%;
  }
  .nav-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0;
  }
  .nav-item.dropdown .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-sm);
    padding: 0.35rem 0;
    margin-top: 0.35rem;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    width: 100%;
  }
  [data-theme="dark"] .nav-item.dropdown .dropdown-menu {
    background: rgba(255, 255, 255, 0.04);
  }
  .nav-item.dropdown.open .dropdown-menu {
    display: block;
  }
  .nav-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile Screens Adjustments (max-width: 768px) */
@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1.5rem;
  }
  .legalitas-banner {
    padding: 2rem 1.25rem;
  }
  .legal-badge-card {
    padding: 1rem;
  }
  .legal-doc-box {
    padding: 1.5rem 1rem;
  }
  .top-notice-bar {
    font-size: 0.775rem;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .cta-banner {
    padding: 2.75rem 1.25rem;
  }
}

/* Extra Small Screens (Smartphones <= 480px) */
@media (max-width: 480px) {
  .modern-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .section-py {
    padding: 3.5rem 0;
  }
  .hero-modern {
    padding: 3.5rem 0 2.5rem;
  }
  .hero-title {
    font-size: 1.85rem !important;
  }
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .legalitas-banner {
    padding: 1.5rem 0.85rem;
  }
  .legal-highlight-badge {
    white-space: normal;
    text-align: left;
    font-size: 0.75rem;
    line-height: 1.4;
    padding: 0.4rem 0.75rem;
  }
  .legal-doc-btn {
    white-space: normal;
    text-align: center;
    font-size: 0.8rem;
    padding: 0.65rem 0.85rem;
    line-height: 1.35;
    word-break: break-word;
  }
  .legal-badge-card {
    padding: 0.85rem;
    gap: 0.65rem;
  }
  .legal-icon-wrap {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .legal-doc-box {
    padding: 1.25rem 0.75rem;
  }
  .nav-brand {
    font-size: 1.1rem;
  }
  .nav-brand img {
    height: 38px;
  }
}

/* Basecamp card dark mode support */
.basecamp-card-box {
  background: var(--card-bg);
  border: 1px dashed var(--card-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 768px) {
  .basecamp-card-box {
    height: auto;
    padding: 1.75rem 1.25rem;
  }
}
