@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --primary: #FF6F00;
  --primary-dark: #E65100;
  --primary-light: #FF9800;
  --primary-glow: rgba(255, 111, 0, 0.35);
  --primary-subtle: rgba(255, 111, 0, 0.07);

  --bg-white: #ffffff;
  --bg-light: #fafafa;
  --bg-warm: #fef8f2;
  --bg-surface: #f4f4f6;
  --bg-card: rgba(255, 255, 255, 0.85);

  --glass: rgba(0, 0, 0, 0.02);
  --glass-strong: rgba(0, 0, 0, 0.04);
  --glass-border: rgba(0, 0, 0, 0.07);
  --glass-border-hover: rgba(0, 0, 0, 0.14);

  --text-heading: #1a1a2e;
  --text-primary: #2a2a3e;
  --text-secondary: #5a5a72;
  --text-muted: #8e8ea6;
  --text-white: #ffffff;

  --gradient-primary: linear-gradient(135deg, #FF6F00 0%, #FF9800 50%, #FFB74D 100%);
  --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
  --gradient-glow: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,111,0,0.04), transparent 40%);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 60px rgba(255, 111, 0, 0.1);
  --shadow-glow-strong: 0 0 80px rgba(255, 111, 0, 0.18);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-normal: 0.4s var(--ease-out);
  --transition-slow: 0.7s var(--ease-out);

  --footer-bg: #111118;
  --footer-text: #c8c8d4;
  --footer-muted: #6e6e82;
  --footer-border: rgba(255,255,255,0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-light);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  line-height: 1.15;
  color: var(--text-heading);
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(2deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes morphBlob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  75% { border-radius: 50% 40% 60% 50% / 60% 40% 50% 70%; }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes particleFloat {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.7; }
  100% { transform: translate(var(--tx, 100px), var(--ty, -200px)) rotate(720deg); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }
.stagger-7 { transition-delay: 0.56s; }
.stagger-8 { transition-delay: 0.64s; }

/* =============================================
   NAVIGATION
   ============================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: all 0.5s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px;
}

.logo h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.logo h1 a {
  text-decoration: none;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
  letter-spacing: 0.2px;
}

.nav-link:hover {
  color: var(--text-heading);
  background: rgba(0,0,0,0.04);
}

.nav-link.active {
  color: var(--text-white);
  background: var(--gradient-primary);
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.hamburger:hover { background: rgba(0,0,0,0.04); }

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   PLACEHOLDER IMAGES
   ============================================= */

.img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f0ebe4 0%, #e8e2da 100%);
  border: 1px solid var(--glass-border);
}

.img-placeholder svg { width: 100%; height: 100%; display: block; }
.img-placeholder-wide { aspect-ratio: 16 / 9; }
.img-placeholder-square { aspect-ratio: 1 / 1; }

/* =============================================
   HERO SECTION (with bg image support)
   ============================================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a1a2e;
  padding-top: 80px;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 35, 0.75) 0%,
    rgba(20, 20, 35, 0.60) 40%,
    rgba(20, 20, 35, 0.80) 100%
  );
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: morphBlob 12s ease-in-out infinite;
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(255,111,0,0.25) 0%, rgba(255,152,0,0.08) 70%, transparent);
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(255,152,0,0.15) 0%, rgba(255,111,0,0.04) 70%, transparent);
  animation-delay: -6s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,111,0,0.1) 0%, transparent 70%);
  animation-delay: -3s;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 3;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
  box-shadow: 0 0 6px rgba(255,255,255,0.3);
}

.slider-container {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
}

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

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-in-out);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.slide.active { opacity: 1; pointer-events: auto; }

.slide-content {
  text-align: center;
  max-width: 900px;
  padding: 40px 24px;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,111,0,0.15);
  border: 1px solid rgba(255,111,0,0.3);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: #FFB74D;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.slide-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.slide-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text-white);
}

.slide-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 44px;
  font-weight: 400;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.slider-nav {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
  align-items: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
  border: none;
  padding: 0;
}

.slider-dot:hover { background: rgba(255, 255, 255, 0.45); }

.slider-dot.active {
  background: var(--primary);
  width: 36px;
  border-radius: 5px;
  box-shadow: 0 0 16px var(--primary-glow);
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}

.btn .arrow {
  transition: transform 0.3s var(--ease-out);
  font-size: 1.1rem;
}

.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: 0 4px 24px rgba(255,111,0,0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(255,111,0,0.35);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid rgba(255,111,0,0.4);
}

.btn-outline:hover {
  background: var(--primary-subtle);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 24px rgba(255,111,0,0.12);
}

.btn-white {
  background: var(--text-white);
  color: var(--primary-dark);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.btn-gradient {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: 0 4px 24px rgba(255,111,0,0.25);
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-strong);
}

.btn-block { width: 100%; }

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =============================================
   SECTION STYLES
   ============================================= */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -1px;
  color: var(--text-heading);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   GLASS CARDS
   ============================================= */

.glass-card {
  background: var(--gradient-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.glass-card:hover::before { opacity: 1; }

.badge {
  display: inline-block;
  background: var(--primary-subtle);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(255,111,0,0.15);
  letter-spacing: 0.5px;
}

/* =============================================
   STATS SECTION
   ============================================= */

.stats-section {
  padding: 80px 0;
  position: relative;
  background: var(--bg-white);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item { padding: 20px; }

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   MISSION & VISION
   ============================================= */

.mission-section {
  padding: 140px 0;
  position: relative;
  background: var(--bg-white);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.mission-card {
  padding: 48px;
  border-radius: var(--radius-xl);
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.mission-card:hover {
  border-color: rgba(255,111,0,0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.mission-card .card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.mission-card:hover .card-accent { transform: scaleX(1); }

.card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  border: 1px solid rgba(255,111,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all var(--transition-normal);
}

.mission-card:hover .card-icon-wrap {
  background: rgba(255,111,0,0.12);
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(255,111,0,0.08);
}

.card-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-heading);
}

.mission-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.02rem;
}

/* =============================================
   FOCUS AREAS
   ============================================= */

.focus-section {
  padding: 140px 0;
  position: relative;
  background: var(--bg-warm);
}

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

.focus-card {
  padding: 40px 32px;
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.focus-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.5s var(--ease-out);
}

.focus-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,111,0,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.focus-card:hover::after { width: 60%; }

.focus-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  border: 1px solid rgba(255,111,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.focus-card:hover .focus-icon {
  transform: scale(1.1) translateY(-4px);
  background: rgba(255,111,0,0.1);
  box-shadow: 0 8px 24px rgba(255,111,0,0.1);
}

.focus-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.focus-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-heading);
}

.focus-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   PRESIDENT SECTION (HOME)
   ============================================= */

.president-home-section {
  padding: 140px 0;
  position: relative;
  background: var(--bg-white);
}

.president-home-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-warm);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.president-home-card::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,111,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.president-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--glass-border);
  transition: all var(--transition-normal);
}

.president-placeholder:hover {
  border-color: rgba(255,111,0,0.2);
  box-shadow: var(--shadow-glow);
}

.president-info h3 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-heading);
  letter-spacing: -1px;
}

.president-subtitle {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
}

.president-description {
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.85;
  font-size: 1.02rem;
}

.president-info blockquote {
  border-left: 3px solid var(--primary);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
}

.president-info blockquote::before {
  content: '\201C';
  position: absolute;
  left: 8px;
  top: -16px;
  font-size: 3.5rem;
  color: rgba(255,111,0,0.15);
  font-family: Georgia, serif;
  font-style: normal;
}

/* =============================================
   CTA SECTION
   ============================================= */

.cta-section {
  padding: 140px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 72px 48px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.cta-inner h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.cta-inner p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* =============================================
   FOOTER (stays dark)
   ============================================= */

.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
  color: var(--footer-text);
  padding: 80px 24px 24px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto 56px;
}

.footer-brand p {
  color: var(--footer-muted);
  font-size: 0.95rem;
  margin-top: 12px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-section h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--footer-text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-section p {
  font-size: 0.92rem;
  color: var(--footer-muted);
  margin-bottom: 10px;
  line-height: 1.7;
}

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 12px; }

.footer-section ul li a {
  color: var(--footer-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-section ul li a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--footer-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.social-link:hover {
  background: rgba(255,111,0,0.1);
  border-color: rgba(255,111,0,0.3);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  stroke: var(--footer-muted);
  fill: none;
  stroke-width: 2;
  transition: stroke var(--transition-fast);
}

.social-link:hover svg { stroke: var(--primary-light); }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--footer-border);
  font-size: 0.85rem;
  color: var(--footer-muted);
  max-width: 1280px;
  margin: 0 auto;
}

/* =============================================
   PAGE HEROES (About, Contact, etc.)
   ============================================= */

.page-hero {
  padding: 160px 24px 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #E65100 0%, #FF6F00 40%, #FF9800 100%);
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' fill-opacity='0.06'%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;
}

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

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -2px;
  color: var(--text-white);
}

.page-hero .hero-desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-hero .section-label {
  color: rgba(255,255,255,0.85);
}

.page-hero .section-label::before {
  background: rgba(255,255,255,0.5);
}

.page-hero .gradient-text {
  -webkit-text-fill-color: var(--text-white);
}

/* =============================================
   ABOUT PAGE - HISTORY
   ============================================= */

.history-section {
  padding: 140px 0;
  background: var(--bg-white);
  position: relative;
}

.history-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.history-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--text-heading);
  letter-spacing: -1px;
}

.history-text p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.9;
  font-size: 1.02rem;
}

.history-visual { position: relative; }
.history-visual .img-placeholder { aspect-ratio: 4 / 3; }

/* =============================================
   VALUES SECTION
   ============================================= */

.values-section {
  padding: 140px 0;
  background: var(--bg-warm);
}

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

.value-card {
  padding: 40px 32px;
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  border-color: rgba(255,111,0,0.15);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  border: 1px solid rgba(255,111,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.value-card:hover .value-icon {
  transform: scale(1.1);
  background: rgba(255,111,0,0.1);
}

.value-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

.value-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--text-heading); }
.value-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }

/* =============================================
   LEADERSHIP SECTION
   ============================================= */

.leadership-section {
  padding: 140px 0;
  background: var(--bg-white);
}

.leadership-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-warm);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.leadership-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  border: 1px solid var(--glass-border);
}

.leadership-image:hover {
  border-color: rgba(255,111,0,0.2);
  box-shadow: var(--shadow-glow);
}

.leadership-info h3 { font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; color: var(--text-heading); }
.leadership-info .subtitle { font-size: 1.05rem; color: var(--primary); font-weight: 600; margin-bottom: 20px; }
.leadership-info p { color: var(--text-secondary); margin-bottom: 28px; line-height: 1.85; }

/* =============================================
   PRESIDENT PAGE
   ============================================= */

.president-hero {
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #E65100 0%, #FF6F00 40%, #FF9800 100%);
}

.president-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' fill-opacity='0.06'%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;
}

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

.president-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-white);
  letter-spacing: -1.5px;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-content .badge {
  background: rgba(255,255,255,0.15);
  color: var(--text-white);
  border-color: rgba(255,255,255,0.3);
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.2);
  transition: all var(--transition-normal);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.hero-image:hover {
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 12px 50px rgba(0,0,0,0.2);
}

/* Personal Info */
.personal-info-section {
  padding: 140px 0;
  background: var(--bg-white);
  position: relative;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.info-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.info-card:hover {
  border-color: rgba(255,111,0,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}

.info-card h3 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.info-card p { color: var(--text-secondary); font-size: 1rem; line-height: 1.6; }

/* Timeline */
.timeline-section {
  padding: 140px 0;
  background: var(--bg-warm);
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
  align-items: flex-start;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 72px;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), rgba(255,111,0,0.15));
}

.timeline-item:last-child::before { display: none; }

.timeline-dot-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid rgba(255,111,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.timeline-dot-circle svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

.timeline-item:hover .timeline-dot-circle {
  border-color: var(--primary);
  box-shadow: 0 0 24px rgba(255,111,0,0.12);
  transform: scale(1.1);
}

.timeline-content {
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.timeline-item:hover .timeline-content {
  transform: translateX(6px);
  border-color: rgba(255,111,0,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.timeline-content h3 { font-size: 1.15rem; font-weight: 700; margin: 6px 0 8px; color: var(--text-heading); }
.timeline-content p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }

/* Philosophy */
.philosophy-section {
  padding: 140px 0;
  background: var(--bg-white);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.philosophy-grid h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 24px; color: var(--text-heading); letter-spacing: -0.5px; }
.philosophy-grid p { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.9; font-size: 1.02rem; }

.progress-section { display: flex; flex-direction: column; gap: 28px; }
.progress-item { display: flex; flex-direction: column; gap: 10px; }

.progress-header { display: flex; justify-content: space-between; align-items: center; }
.progress-header label { font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }
.progress-header span { font-weight: 700; color: var(--primary); font-size: 0.85rem; font-family: 'Space Grotesk', sans-serif; }

.progress-bar {
  height: 8px;
  background: rgba(0,0,0,0.05);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--gradient-primary);
  transition: width 1.5s var(--ease-out);
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2.5s infinite;
  background-size: 200% 100%;
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-section {
  padding: 140px 0;
  background: var(--bg-white);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 { font-size: 2rem; font-weight: 800; margin-bottom: 32px; color: var(--text-heading); }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-normal);
}

.contact-item:hover {
  transform: translateX(8px);
  border-color: rgba(255,111,0,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-subtle);
  border: 1px solid rgba(255,111,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 2; }
.contact-item h3 { font-weight: 700; margin-bottom: 4px; font-size: 1rem; color: var(--text-heading); }
.contact-item p { color: var(--text-secondary); font-size: 0.92rem; }

.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--glass-border);
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder svg { width: 100%; height: 100%; }

/* Forms */
.contact-form-container {
  background: var(--bg-warm);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.contact-form-container h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 32px; color: var(--text-heading); }

.contact-form, .membership-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-weight: 600; margin-bottom: 8px; font-size: 0.88rem; color: var(--text-primary); }

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  background: var(--bg-white);
  color: var(--text-primary);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,111,0,0.08);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-message {
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
  display: none;
  font-weight: 500;
  font-size: 0.92rem;
}

.form-message.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-message.error {
  display: block;
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.form-group.checkbox { flex-direction: row; align-items: center; gap: 12px; }
.form-group.checkbox input { width: 20px; height: 20px; cursor: pointer; accent-color: var(--primary); }
.form-group.checkbox label { margin: 0; cursor: pointer; font-weight: 500; }

/* =============================================
   MEMBERSHIP PAGE
   ============================================= */

.benefits-section {
  padding: 140px 0;
  background: var(--bg-white);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  padding: 40px 28px;
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,111,0,0.15);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.benefit-card:hover::after { transform: scaleX(1); }

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  border: 1px solid rgba(255,111,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.benefit-card:hover .benefit-icon { transform: scale(1.1); background: rgba(255,111,0,0.1); }
.benefit-icon svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; stroke-width: 2; }
.benefit-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--text-heading); }
.benefit-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

.membership-form-section {
  padding: 140px 0;
  background: var(--bg-warm);
}

.membership-form {
  background: var(--bg-white);
  padding: 48px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .mission-grid, .president-home-card, .leadership-card,
  .president-hero-grid, .philosophy-grid, .contact-grid, .history-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .focus-grid, .values-grid, .info-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 120px 32px 32px;
    gap: 8px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
    z-index: 999;
  }

  .nav-menu.active { transform: translateX(0); opacity: 1; visibility: visible; }

  .nav-link {
    padding: 18px 24px;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    color: var(--text-heading);
  }

  .hamburger { display: flex; position: relative; z-index: 1001; }

  .focus-grid, .values-grid, .info-grid, .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .mission-card, .president-home-card, .leadership-card { padding: 32px; }

  .timeline-item { grid-template-columns: 50px 1fr; gap: 16px; }
  .timeline-dot-circle { width: 50px; height: 50px; }
  .timeline-dot-circle svg { width: 20px; height: 20px; }
  .timeline-item::before { left: 24px; }

  .footer-content { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .social-links { justify-content: center; }
  .hero-image { order: -1; }
  .president-home-card { padding: 32px 24px; }
  .cta-inner { padding: 48px 24px; }
  .contact-form-container { padding: 32px 24px; }
  .membership-form { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .navbar-container { padding: 14px 16px; }
  .logo h1 { font-size: 1.3rem; }
  .slide-content { padding: 24px 16px; }
  .slide-title { font-size: 2rem; letter-spacing: -1px; }
  .btn { padding: 13px 24px; font-size: 0.88rem; }
  .section-header { margin-bottom: 48px; }
  .stat-number { font-size: 2.2rem; }
  .page-hero { padding: 140px 16px 80px; }
  .page-hero h1 { font-size: 2.2rem; letter-spacing: -1px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
}
