/* ============================================
   ANANT YUVA PRATISHTHAN — YOUTH MOVEMENT PLATFORM
   Design System + Global Styles
   ============================================ */

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

/* ==================== DESIGN TOKENS ==================== */
:root {
  /* Colors */
  --c-orange: #FF6B2B;
  --c-orange-light: #FF8F5E;
  --c-orange-dark: #E85A1B;
  --c-blue: #1E40FF;
  --c-blue-light: #4D6AFF;
  --c-blue-dark: #1230CC;
  --c-neon: #39FF14;
  --c-neon-dim: #2BD911;
  --c-dark: #0A0A0F;
  --c-dark-2: #111118;
  --c-dark-3: #1A1A24;
  --c-dark-4: #222230;
  --c-white: #F5F5F0;
  --c-gray: #8888A0;
  --c-gray-light: #B0B0C0;

  /* Typography */
  --f-heading: 'Outfit', sans-serif;
  --f-body: 'Inter', sans-serif;

  /* Spacing */
  --s-xs: 4px;
  --s-sm: 8px;
  --s-md: 16px;
  --s-lg: 24px;
  --s-xl: 40px;
  --s-2xl: 64px;
  --s-3xl: 96px;

  /* Border Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 999px;

  /* Transitions */
  --t-fast: 0.2s ease;
  --t-med: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Shadows */
  --shadow-glow-orange: 0 0 30px rgba(255, 107, 43, 0.3);
  --shadow-glow-blue: 0 0 30px rgba(30, 64, 255, 0.3);
  --shadow-glow-neon: 0 0 30px rgba(57, 255, 20, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--f-body);
  background: var(--c-dark);
  color: var(--c-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea {
  font-family: var(--f-body);
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

button {
  cursor: pointer;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.text-gradient-orange {
  background: linear-gradient(135deg, var(--c-orange), var(--c-orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-blue {
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-neon {
  background: linear-gradient(135deg, var(--c-neon), #7FFF00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent { color: var(--c-orange); }
.text-muted { color: var(--c-gray); }

.display-text {
  font-family: var(--f-heading);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  opacity: 0.06;
  position: absolute;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ==================== LAYOUT ==================== */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

.container-sm { max-width: 960px; }
.container-lg { max-width: 1440px; }

.section {
  padding: var(--s-3xl) 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  margin-bottom: var(--s-2xl);
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
  font-family: var(--f-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-orange);
  margin-bottom: var(--s-md);
}

.section-label::before {
  content: '';
  width: 24px;
  height: 3px;
  background: var(--c-orange);
  border-radius: 2px;
}

/* ==================== GRID SYSTEMS ==================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-lg);
}

.grid-asymmetric {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--s-xl);
  align-items: center;
}

.grid-asymmetric-reverse {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: var(--s-xl);
  align-items: center;
}

/* ==================== NAVIGATION ==================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--s-md) 0;
  transition: all var(--t-med);
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--s-sm) 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  font-family: var(--f-heading);
  font-weight: 800;
  font-size: 1.3rem;
  z-index: 1001;
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--c-orange), var(--c-blue));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-lg);
}

.nav-links a {
  font-family: var(--f-heading);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  position: relative;
  padding: var(--s-xs) 0;
  transition: color var(--t-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-orange);
  transition: width var(--t-med);
  border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--c-orange);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--c-orange), var(--c-orange-dark));
  color: #fff !important;
  padding: var(--s-sm) var(--s-lg) !important;
  border-radius: var(--r-full);
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase;
  transition: transform var(--t-fast), box-shadow var(--t-fast) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-orange);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  width: 30px;
  height: 24px;
  justify-content: center;
}

.nav-toggle span {
  width: 100%;
  height: 2.5px;
  background: var(--c-white);
  border-radius: 2px;
  transition: all var(--t-med);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Panel */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-xl);
  transition: right var(--t-slow);
  z-index: 999;
}

.nav-mobile.open {
  right: 0;
}

.nav-mobile a {
  font-family: var(--f-heading);
  font-size: 1.8rem;
  font-weight: 700;
  transition: color var(--t-fast), transform var(--t-fast);
}

.nav-mobile a:hover {
  color: var(--c-orange);
  transform: translateX(10px);
}

/* ==================== PASSWORD GATE ==================== */
.password-gate {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-dark);
  overflow: hidden;
  transition: opacity 0.6s, transform 0.6s;
}

.password-gate.unlocked {
  opacity: 0;
  transform: scale(1.1);
  pointer-events: none;
}

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

.gate-bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 43, 0.15), transparent 70%);
  top: -200px;
  right: -200px;
  animation: gate-pulse 4s ease-in-out infinite;
}

.gate-bg::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 64, 255, 0.12), transparent 70%);
  bottom: -200px;
  left: -100px;
  animation: gate-pulse 4s ease-in-out infinite 2s;
}

@keyframes gate-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

.gate-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gate-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--c-orange);
  border-radius: 50%;
  opacity: 0.3;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.gate-content {
  position: relative;
  z-index: 9999;
  text-align: center;
  max-width: 480px;
  padding: var(--s-xl);
  opacity: 1 !important;
  visibility: visible !important;
  color: #fff !important;
}

.gate-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
  background: rgba(255, 107, 43, 0.1);
  border: 1px solid rgba(255, 107, 43, 0.25);
  border-radius: var(--r-full);
  padding: var(--s-sm) var(--s-lg);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-orange);
  margin-bottom: var(--s-xl);
  animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 107, 43, 0.1); }
  50% { box-shadow: 0 0 25px rgba(255, 107, 43, 0.2); }
}

.gate-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: var(--s-md);
  font-weight: 900;
}

.gate-subtitle {
  color: var(--c-gray);
  font-size: 1rem;
  margin-bottom: var(--s-xl);
  line-height: 1.6;
}

.gate-input-wrap {
  position: relative;
  margin-bottom: var(--s-lg);
}

.gate-input {
  width: 100%;
  padding: var(--s-md) var(--s-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-align: center;
  color: var(--c-white);
  transition: all var(--t-med);
}

.gate-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3em;
}

.gate-input:focus {
  border-color: var(--c-orange);
  background: rgba(255, 107, 43, 0.05);
  box-shadow: 0 0 30px rgba(255, 107, 43, 0.1);
}

.gate-input.shake {
  animation: shake 0.5s ease;
  border-color: #FF4444;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-6px); }
  20%, 40%, 60%, 80% { transform: translateX(6px); }
}

.gate-error {
  color: #FF6666;
  font-size: 0.85rem;
  margin-top: var(--s-sm);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.gate-error.visible {
  opacity: 1;
}

.gate-btn {
  width: 100%;
  padding: var(--s-md) var(--s-xl);
  background: linear-gradient(135deg, var(--c-orange), var(--c-orange-dark));
  border-radius: var(--r-lg);
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all var(--t-med);
}

.gate-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.gate-btn:hover::before {
  transform: translateX(100%);
}

.gate-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-orange);
}

/* Burst Animation */
.burst-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  pointer-events: none;
  overflow: hidden;
}

.burst-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border: 3px solid var(--c-orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.burst-ring.animate {
  animation: burst-ring 1s ease-out forwards;
}

@keyframes burst-ring {
  0% { width: 0; height: 0; opacity: 1; border-width: 4px; }
  100% { width: 200vmax; height: 200vmax; opacity: 0; border-width: 0; }
}

.burst-flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--c-orange), transparent 70%);
  opacity: 0;
}

.burst-flash.animate {
  animation: burst-flash 0.8s ease-out forwards;
}

@keyframes burst-flash {
  0% { opacity: 0.8; transform: scale(0); }
  100% { opacity: 0; transform: scale(3); }
}

/* ==================== HERO SECTIONS ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--s-2xl);
  align-items: center;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-neon);
  margin-bottom: var(--s-lg);
  padding: var(--s-sm) var(--s-md);
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: var(--r-full);
}

.hero-title {
  margin-bottom: var(--s-lg);
}

.hero-title .line {
  display: block;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--c-gray-light);
  max-width: 520px;
  margin-bottom: var(--s-xl);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--s-md);
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image-container {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-dark-2);
  aspect-ratio: 4/5;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 107, 43, 0.2);
  border-radius: var(--r-lg);
  pointer-events: none;
}

.hero-image-badge {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: linear-gradient(135deg, var(--c-orange), var(--c-orange-dark));
  color: #fff;
  padding: var(--s-md) var(--s-lg);
  border-radius: var(--r-md);
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-glow-orange);
  z-index: 3;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
  padding: var(--s-md) var(--s-xl);
  border-radius: var(--r-full);
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--c-orange), var(--c-orange-dark));
  color: #fff;
}

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

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--c-white);
}

.btn-secondary:hover {
  border-color: var(--c-orange);
  color: var(--c-orange);
  transform: translateY(-3px);
}

.btn-neon {
  background: linear-gradient(135deg, var(--c-neon), var(--c-neon-dim));
  color: var(--c-dark);
}

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

.btn-lg {
  padding: var(--s-lg) var(--s-2xl);
  font-size: 1rem;
}

.btn-icon {
  font-size: 1.2em;
  transition: transform var(--t-fast);
}

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

/* ==================== CARDS ==================== */
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}

.card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 43, 0.15);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--s-lg);
  background: rgba(255, 107, 43, 0.1);
  color: var(--c-orange);
}

.card-icon.blue {
  background: rgba(30, 64, 255, 0.1);
  color: var(--c-blue);
}

.card-icon.neon {
  background: rgba(57, 255, 20, 0.1);
  color: var(--c-neon);
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: var(--s-sm);
}

.card-desc {
  color: var(--c-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-number {
  font-family: var(--f-heading);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: var(--s-xs);
}

/* ==================== GLASS CARDS ==================== */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  transition: all var(--t-med);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 107, 43, 0.2);
  box-shadow: var(--shadow-card-hover);
}

/* ==================== STICKER / BADGE ELEMENTS ==================== */
.sticker {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
  padding: var(--s-sm) var(--s-md);
  border-radius: var(--r-full);
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform var(--t-fast);
}

.sticker:hover {
  transform: rotate(-3deg) scale(1.05);
}

.sticker-orange {
  background: rgba(255, 107, 43, 0.15);
  color: var(--c-orange);
  border: 1px solid rgba(255, 107, 43, 0.3);
}

.sticker-blue {
  background: rgba(30, 64, 255, 0.15);
  color: var(--c-blue-light);
  border: 1px solid rgba(30, 64, 255, 0.3);
}

.sticker-neon {
  background: rgba(57, 255, 20, 0.1);
  color: var(--c-neon);
  border: 1px solid rgba(57, 255, 20, 0.3);
}

/* ==================== STAT COUNTERS ==================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-lg);
}

.stat-item {
  text-align: center;
  padding: var(--s-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
  transition: all var(--t-med);
}

.stat-item:hover {
  background: rgba(255, 107, 43, 0.05);
  border-color: rgba(255, 107, 43, 0.2);
  transform: translateY(-5px);
}

.stat-number {
  font-family: var(--f-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: var(--s-xs);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--c-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: var(--s-md);
  display: block;
}

/* ==================== IMAGE CONTAINERS (NO CROP) ==================== */
.img-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--c-dark-2);
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--t-slow);
}

.img-container:hover img {
  transform: scale(1.03);
}

.img-container-cover img {
  object-fit: cover;
  object-position: top center;
}

.img-aspect-16-9 { aspect-ratio: 16/9; }
.img-aspect-4-3 { aspect-ratio: 4/3; }
.img-aspect-3-4 { aspect-ratio: 3/4; }
.img-aspect-1-1 { aspect-ratio: 1/1; }
.img-aspect-4-5 { aspect-ratio: 4/5; }

/* ==================== FORMS ==================== */
.form-group {
  margin-bottom: var(--s-lg);
}

.form-label {
  display: block;
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--s-sm);
  color: var(--c-gray-light);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--s-md) var(--s-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  font-size: 1rem;
  color: var(--c-white);
  transition: all var(--t-med);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--c-orange);
  background: rgba(255, 107, 43, 0.03);
  box-shadow: 0 0 20px rgba(255, 107, 43, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--c-dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--s-2xl) 0 var(--s-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-xl);
  margin-bottom: var(--s-2xl);
}

.footer-brand {
  max-width: 320px;
}

.footer-brand-name {
  font-family: var(--f-heading);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: var(--s-md);
  display: flex;
  align-items: center;
  gap: var(--s-sm);
}

.footer-brand-desc {
  color: var(--c-gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--s-lg);
  color: var(--c-orange);
}

.footer-links a {
  display: block;
  color: var(--c-gray);
  font-size: 0.9rem;
  padding: var(--s-xs) 0;
  transition: color var(--t-fast), transform var(--t-fast);
}

.footer-links a:hover {
  color: var(--c-white);
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: var(--s-md);
  margin-top: var(--s-lg);
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--t-med);
}

.footer-social a svg {
  display: block;
}

.footer-social a:hover {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: var(--c-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--s-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-md);
}

.footer-credit {
  color: var(--c-gray);
  font-size: 0.85rem;
}

.footer-credit a {
  color: var(--c-orange);
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}

.footer-contact-info {
  color: var(--c-gray);
  font-size: 0.85rem;
}

.footer-contact-info span {
  margin: 0 var(--s-sm);
  opacity: 0.3;
}

/* ==================== SCROLL ANIMATIONS ==================== */
.anim-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.anim-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.anim-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.anim-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.anim-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.anim-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.anim-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.anim-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }

/* ==================== PAGE TRANSITION ==================== */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--c-dark);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

body.page-enter {
  animation: page-fade-in 0.5s ease forwards;
}

@keyframes page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==================== MARQUEE ==================== */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: var(--s-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-md);
  font-family: var(--f-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 var(--s-xl);
  color: rgba(255, 255, 255, 0.08);
}

.marquee-item .dot {
  width: 10px;
  height: 10px;
  background: var(--c-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* ==================== GALLERY GRID ==================== */
.gallery-grid {
  columns: 3;
  column-gap: var(--s-md);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--s-md);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--t-med);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: opacity var(--t-med);
  display: flex;
  align-items: flex-end;
  padding: var(--s-lg);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-md);
}

.lightbox-close {
  position: absolute;
  top: var(--s-lg);
  right: var(--s-lg);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--t-fast);
}

.lightbox-close:hover {
  background: var(--c-orange);
  transform: rotate(90deg);
}

/* Gallery Filters */
.gallery-filters {
  display: flex;
  gap: var(--s-sm);
  margin-bottom: var(--s-xl);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--s-sm) var(--s-lg);
  border-radius: var(--r-full);
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--c-gray);
  transition: all var(--t-med);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: #fff;
}

/* ==================== TIMELINE ==================== */
.timeline {
  position: relative;
  padding-left: var(--s-xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-orange), var(--c-blue), var(--c-neon));
}

.timeline-item {
  position: relative;
  margin-bottom: var(--s-xl);
  padding-left: var(--s-lg);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--s-xl) - 6px);
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--c-orange);
  border-radius: 50%;
  border: 3px solid var(--c-dark);
  box-shadow: 0 0 0 3px rgba(255, 107, 43, 0.3);
}

.timeline-date {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--c-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--s-xs);
}

.timeline-title {
  font-size: 1.2rem;
  margin-bottom: var(--s-sm);
}

.timeline-desc {
  color: var(--c-gray);
  font-size: 0.9rem;
}

/* ==================== CAMPAIGN SLIDER ==================== */
.campaign-slider {
  position: relative;
  overflow: hidden;
}

.campaign-track {
  display: flex;
  transition: transform var(--t-slow);
}

.campaign-slide {
  min-width: 100%;
  padding: 0 var(--s-md);
}

.slider-controls {
  display: flex;
  gap: var(--s-md);
  margin-top: var(--s-xl);
  justify-content: center;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--t-med);
}

.slider-btn:hover {
  background: var(--c-orange);
  border-color: var(--c-orange);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: var(--s-sm);
  justify-content: center;
  margin-top: var(--s-lg);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all var(--t-fast);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--c-orange);
  transform: scale(1.3);
}

/* ==================== VOLUNTEER JOURNEY STEPS ==================== */
.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-lg);
  position: relative;
}

.journey-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-blue), var(--c-neon), var(--c-orange));
}

.journey-step {
  text-align: center;
  position: relative;
}

.journey-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-orange), var(--c-orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-heading);
  font-weight: 900;
  font-size: 1.5rem;
  margin: 0 auto var(--s-lg);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-glow-orange);
}

.journey-step-title {
  font-size: 1.1rem;
  margin-bottom: var(--s-sm);
}

.journey-step-desc {
  color: var(--c-gray);
  font-size: 0.85rem;
}

/* ==================== PROGRESS BARS ==================== */
.progress-bar-wrap {
  margin-bottom: var(--s-lg);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--s-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

.progress-label span:last-child {
  color: var(--c-orange);
}

.progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--c-orange), var(--c-neon));
  width: 0;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.progress-fill.animated {
  /* width set by JS */
}

/* ==================== PAGE BANNERS ==================== */
.page-banner {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: var(--s-3xl) 0 var(--s-2xl);
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.25;
}

.page-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--c-dark), transparent 50%, rgba(10, 10, 15, 0.5));
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner-content h1 {
  margin-bottom: var(--s-md);
}

.page-banner-content p {
  font-size: 1.15rem;
  color: var(--c-gray-light);
  max-width: 600px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .journey-steps::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: var(--s-xl); }
  .grid-asymmetric,
  .grid-asymmetric-reverse {
    grid-template-columns: 1fr;
  }
  .gallery-grid { columns: 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  
  .section { padding: var(--s-2xl) 0; }
  
  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }
  
  .hero { min-height: auto; padding-top: 100px; padding-bottom: var(--s-xl); }
  .hero-inner { text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-image-container { max-width: 400px; margin: 0 auto; }
  
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .gallery-grid { columns: 1; }
  
  .journey-steps { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  
  .page-banner { min-height: 40vh; }
  
  .btn-lg { padding: var(--s-md) var(--s-xl); }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .container { padding: 0 var(--s-md); }
  .stats-row { grid-template-columns: 1fr; }
  .hero-image-container { max-width: 300px; }
}

/* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--s-sm); }
.mt-md { margin-top: var(--s-md); }
.mt-lg { margin-top: var(--s-lg); }
.mt-xl { margin-top: var(--s-xl); }
.mt-2xl { margin-top: var(--s-2xl); }

.mb-sm { margin-bottom: var(--s-sm); }
.mb-md { margin-bottom: var(--s-md); }
.mb-lg { margin-bottom: var(--s-lg); }
.mb-xl { margin-bottom: var(--s-xl); }
.mb-2xl { margin-bottom: var(--s-2xl); }

.mx-auto { margin-left: auto; margin-right: auto; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--s-sm); }
.gap-md { gap: var(--s-md); }
.gap-lg { gap: var(--s-lg); }

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }

/* Background decorations */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.bg-glow-orange {
  background: rgba(255, 107, 43, 0.1);
}

.bg-glow-blue {
  background: rgba(30, 64, 255, 0.1);
}

.bg-glow-neon {
  background: rgba(57, 255, 20, 0.08);
}

/* ==================== KINETIC TYPING ==================== */
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--c-orange);
  margin-left: 4px;
  animation: blink-cursor 0.8s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes blink-cursor {
  50% { opacity: 0; }
}

/* ==================== CONTACT SPLIT ==================== */
.contact-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--s-2xl);
  align-items: start;
}

@media (max-width: 768px) {
  .contact-split { grid-template-columns: 1fr; }
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  margin-bottom: var(--s-lg);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(255, 107, 43, 0.1);
  color: var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.contact-info-text p {
  color: var(--c-gray);
  font-size: 0.9rem;
}

/* ==================== SVG ICONS (INLINE) ==================== */
.icon-svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
