/* ==========================================================================
   REHYA PREMIUM DESIGN SYSTEM
   Renewed Hope Youth Ambassadors - "The Flame of a New Generation"
   Not AI Slop — Authentic Nigerian Youth Excellence
   ========================================================================== */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */
:root {
  /* Primary Colors - Sacred Trinity */
  --rehya-green: #008751;
  --rehya-green-light: #00A86B;
  --rehya-green-dark: #006B3F;
  --rehya-navy: #0A1628;
  --rehya-navy-light: #1A2A3F;
  --rehya-gold: #D4AF37;
  --rehya-gold-light: #E8C547;
  --rehya-gold-dark: #B8962E;

  /* Secondary Colors */
  --rehya-white: #FAFAFA;
  --rehya-cream: #F5F0E8;
  --rehya-cream-dark: #E8E0D4;
  --rehya-red: #C62828;
  --rehya-teal: #00695C;
  --rehya-sage: #4A6741;

  /* Flame Gradient Colors */
  --flame-blue: #1E88E5;
  --flame-white: #FFFFFF;
  --flame-red: #E53935;

  /* Gradients */
  --gradient-sunrise: linear-gradient(135deg, var(--rehya-green) 0%, var(--rehya-gold) 50%, var(--rehya-red) 100%);
  --gradient-night: linear-gradient(180deg, var(--rehya-navy) 0%, #1A3A5C 100%);
  --gradient-flame: linear-gradient(180deg, var(--flame-blue) 0%, var(--flame-white) 50%, var(--flame-red) 100%);
  --gradient-gold: linear-gradient(135deg, var(--rehya-gold) 0%, var(--rehya-gold-light) 50%, var(--rehya-gold) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(0, 105, 92, 0.85) 50%, rgba(0, 135, 81, 0.75) 100%);

  /* Functional Colors */
  --text-primary: #0A1628;
  --text-secondary: #5A6A7A;
  --text-muted: #8A9AAA;
  --text-inverse: #FAFAFA;
  --text-inverse-muted: rgba(250, 250, 250, 0.7);
  
  /* Surface Colors */
  --surface-primary: #FFFFFF;
  --surface-secondary: #F8F9FA;
  --surface-tertiary: #F0F2F5;
  --surface-dark: var(--rehya-navy);
  
  /* Border & Shadow */
  --border-light: #E8E8E8;
  --border-medium: #D0D0D0;
  --shadow-xs: 0 1px 2px rgba(10, 22, 40, 0.04);
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08), 0 1px 2px rgba(10, 22, 40, 0.04);
  --shadow-md: 0 4px 6px rgba(10, 22, 40, 0.07), 0 2px 4px rgba(10, 22, 40, 0.05);
  --shadow-lg: 0 10px 15px rgba(10, 22, 40, 0.1), 0 4px 6px rgba(10, 22, 40, 0.05);
  --shadow-xl: 0 20px 25px rgba(10, 22, 40, 0.15), 0 10px 10px rgba(10, 22, 40, 0.04);
  --shadow-glow-green: 0 0 30px rgba(0, 135, 81, 0.3);
  --shadow-glow-gold: 0 0 30px rgba(212, 175, 55, 0.4);
  --shadow-inner: inset 0 2px 4px rgba(10, 22, 40, 0.06);

  /* Typography Scale */
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-8xl: 6rem;

  /* Font Weights */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-40: 10rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Animation Timing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out-sine: cubic-bezier(0.37, 0, 0.63, 1);
  --duration-fast: 150ms;
  --duration-base: 300ms;
  --duration-slow: 500ms;
  --duration-slower: 800ms;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 960px;
  --header-height: 80px;
  --header-height-mobile: 70px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--rehya-white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-6xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

.text-display { font-family: var(--font-display); }
.text-body { font-family: var(--font-body); }
.text-accent { font-family: var(--font-accent); }
.text-mono { font-family: var(--font-mono); }

.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }
.text-6xl { font-size: var(--text-6xl); }
.text-7xl { font-size: var(--text-7xl); }

.font-light { font-weight: var(--weight-light); }
.font-regular { font-weight: var(--weight-regular); }
.font-medium { font-weight: var(--weight-medium); }
.font-semibold { font-weight: var(--weight-semibold); }
.font-bold { font-weight: var(--weight-bold); }
.font-extrabold { font-weight: var(--weight-extrabold); }

/* ==========================================================================
   4. LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-24) 0;
  position: relative;
}

.section-lg { padding: var(--space-32) 0; }
.section-sm { padding: var(--space-16) 0; }

.grid {
  display: grid;
  gap: var(--space-6);
}

.flex {
  display: flex;
}

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-out-quart);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform var(--duration-slow);
}

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

.btn-primary {
  background: var(--rehya-green);
  color: white;
  box-shadow: 0 4px 14px rgba(0, 135, 81, 0.35);
}

.btn-primary:hover {
  background: var(--rehya-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 135, 81, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-medium);
}

.btn-secondary:hover {
  border-color: var(--rehya-green);
  color: var(--rehya-green);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--rehya-gold);
  color: var(--rehya-navy);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  background: var(--rehya-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: white;
  color: var(--rehya-navy);
  border-color: white;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

/* ==========================================================================
   6. CARDS
   ========================================================================== */
.card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-out-quart);
}

.card-hover {
  box-shadow: var(--shadow-md);
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-content {
  padding: var(--space-6);
}

/* ==========================================================================
   7. ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

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

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

@keyframes flameFlicker {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

@keyframes drawPath {
  0% {
    stroke-dasharray: 0 1000;
    stroke-dashoffset: 0;
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    stroke-dasharray: 1000 0;
    stroke-dashoffset: -1000;
    opacity: 0.3;
  }
}

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

.animate-fadeInUp { animation: fadeInUp var(--duration-slow) var(--ease-out-expo) forwards; }
.animate-fadeIn { animation: fadeIn var(--duration-base) ease forwards; }
.animate-scaleIn { animation: scaleIn var(--duration-slow) var(--ease-out-expo) forwards; }
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }

/* Stagger delays */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

/* ==========================================================================
   8. REVEAL ANIMATIONS (Intersection Observer)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================================
   9. UTILITY CLASSES
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-sunrise);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nigerian Flag Stripe */
.nigeria-stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--rehya-green) 33.33%, white 33.33%, white 66.66%, var(--rehya-red) 66.66%);
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-dark {
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Focus Visible */
:focus-visible {
  outline: 2px solid var(--rehya-gold);
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: var(--rehya-green);
  color: white;
}

/* ==========================================================================
   10. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  :root {
    --text-6xl: 3rem;
    --text-7xl: 3.75rem;
    --text-8xl: 4.5rem;
  }
  
  .section {
    padding: var(--space-16) 0;
  }
  
  .section-lg {
    padding: var(--space-24) 0;
  }
}

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.25rem;
    --text-6xl: 2.5rem;
    --text-7xl: 3rem;
    --header-height: var(--header-height-mobile);
  }
  
  .container {
    padding: 0 var(--space-4);
  }
  
  .section {
    padding: var(--space-12) 0;
  }
  
  .section-lg {
    padding: var(--space-16) 0;
  }
  
  .btn {
    padding: var(--space-3) var(--space-5);
  }
}

/* ==========================================================================
   11. HEADER & NAVIGATION
   ========================================================================== */
.top-bar {
  background: var(--rehya-navy);
  color: white;
  padding: var(--space-2) 0;
  font-size: var(--text-xs);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lang-toggle {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.lang-toggle span {
  cursor: pointer;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast);
  opacity: 0.7;
}

.lang-toggle span:hover,
.lang-toggle span.active {
  opacity: 1;
  color: var(--rehya-gold);
  background: rgba(212, 175, 55, 0.1);
}

.badge-apc {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: var(--rehya-red);
  color: white;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  font-weight: var(--weight-bold);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  transition: all var(--duration-base) var(--ease-out-quart);
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.main-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--rehya-gold);
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: var(--weight-extrabold);
  font-size: var(--text-sm);
  line-height: 1.2;
  color: var(--rehya-navy);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  position: relative;
  padding: var(--space-2) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rehya-green);
  transition: width var(--duration-base) var(--ease-out-quart);
}

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

.nav-link:hover {
  color: var(--rehya-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  color: var(--rehya-navy);
}

@media (max-width: 1024px) {
  .nav-menu,
  .nav-actions .btn-secondary {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: white;
  z-index: 200;
  padding: var(--space-6);
  padding-top: calc(var(--header-height) + var(--space-6));
  transition: right var(--duration-slow) var(--ease-out-expo);
  box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-base);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  display: block;
  padding: var(--space-4) 0;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  border-bottom: 1px solid var(--border-light);
}

/* ==========================================================================
   12. HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  background: var(--gradient-night);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%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");
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-text {
  color: white;
}

.hero-title {
  font-size: var(--text-6xl);
  font-weight: var(--weight-extrabold);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title-accent {
  color: var(--rehya-gold);
}

.hero-subtitle {
  font-size: var(--text-xl);
  font-family: var(--font-accent);
  color: var(--text-inverse-muted);
  margin-bottom: var(--space-8);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-image {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--rehya-gold);
  color: var(--rehya-navy);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

.hero-stats {
  position: absolute;
  right: -30px;
  top: 30%;
  background: white;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.hero-stats-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-extrabold);
  color: var(--rehya-green);
}

.hero-stats-label {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--rehya-gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: var(--text-5xl);
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .hero-image {
    max-width: 320px;
  }
  
  .hero-badge,
  .hero-stats {
    display: none;
  }
}

/* ==========================================================================
   13. IMPACT COUNTER SECTION
   ========================================================================== */
.impact-section {
  background: var(--rehya-navy);
  color: white;
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.impact-item {
  position: relative;
}

.impact-item::after {
  content: '';
  position: absolute;
  right: -var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.1);
}

.impact-item:last-child::after {
  display: none;
}

.impact-number {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: var(--weight-extrabold);
  color: var(--rehya-gold);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.impact-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-inverse-muted);
}

.impact-tagline {
  text-align: center;
  margin-top: var(--space-8);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--text-inverse-muted);
}

@media (max-width: 768px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
  
  .impact-item::after {
    display: none;
  }
  
  .impact-number {
    font-size: var(--text-4xl);
  }
}

/* ==========================================================================
   14. VISION & MISSION SECTION
   ========================================================================== */
.vision-section {
  background: var(--rehya-cream);
  position: relative;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.vision-content {
  padding-right: var(--space-8);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--rehya-green);
  margin-bottom: var(--space-4);
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--rehya-green);
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--rehya-navy);
  margin-bottom: var(--space-6);
  line-height: 1.2;
}

.section-title-underline {
  position: relative;
  display: inline-block;
}

.section-title-underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--rehya-green);
  border-radius: 2px;
}

.vision-text {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.vision-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.vision-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.vision-card.vision::before {
  background: var(--rehya-navy);
}

.vision-card.mission::before {
  background: var(--rehya-green);
}

.vision-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--rehya-navy);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.vision-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
}

.vision-card.vision .vision-card-icon {
  background: rgba(10, 22, 40, 0.1);
}

.vision-card.mission .vision-card-icon {
  background: rgba(0, 135, 81, 0.1);
}

.vision-card-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .vision-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  
  .vision-content {
    padding-right: 0;
    text-align: center;
  }
  
  .section-title-underline::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   15. PILLARS SECTION (Our Focus Areas)
   ========================================================================== */
.pillars-section {
  background: white;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-16);
}

.section-subtitle {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  margin-top: var(--space-4);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.pillar-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-out-quart);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--rehya-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out-quart);
}

.pillar-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

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

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(0, 135, 81, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
  transition: all var(--duration-base);
}

.pillar-card:hover .pillar-icon {
  background: var(--rehya-green);
  transform: scale(1.1);
}

.pillar-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--rehya-navy);
  margin-bottom: var(--space-3);
}

.pillar-desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
}

.pillars-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 800px;
  margin: var(--space-6) auto 0;
}

@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pillars-grid,
  .pillars-bottom {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   16. CHAIRMAN MESSAGE SECTION
   ========================================================================== */
.message-section {
  background: var(--gradient-sunrise);
  position: relative;
  overflow: hidden;
}

.message-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.message-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.message-quote {
  font-family: var(--font-accent);
  font-size: var(--text-3xl);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: var(--space-8);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.message-author {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-2);
}

.message-role {
  font-size: var(--text-base);
  opacity: 0.9;
  margin-bottom: var(--space-8);
}

@media (max-width: 768px) {
  .message-quote {
    font-size: var(--text-2xl);
  }
}

/* ==========================================================================
   17. AGRICULTURE SPOTLIGHT
   ========================================================================== */
.agric-section {
  background: var(--rehya-cream);
}

.agric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.agric-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.agric-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--duration-slow);
}

.agric-image:hover img {
  transform: scale(1.05);
}

.agric-content {
  padding-left: var(--space-8);
}

.agric-list {
  margin: var(--space-6) 0 var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.agric-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-lg);
  color: var(--text-primary);
}

.agric-list-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rehya-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--text-sm);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .agric-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  
  .agric-content {
    padding-left: 0;
    text-align: center;
  }
  
  .agric-list {
    align-items: center;
  }
}

/* ==========================================================================
   18. LEADERSHIP SECTION
   ========================================================================== */
.leadership-section {
  background: white;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.leader-card {
  background: white;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-base) var(--ease-out-quart);
}

.leader-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.leader-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow);
}

.leader-card:hover .leader-image img {
  transform: scale(1.08);
}

.leader-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration-base);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-6);
}

.leader-card:hover .leader-overlay {
  opacity: 1;
}

.leader-social {
  display: flex;
  gap: var(--space-3);
}

.leader-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rehya-navy);
  transition: all var(--duration-fast);
}

.leader-social a:hover {
  background: var(--rehya-gold);
  color: var(--rehya-navy);
  transform: scale(1.1);
}

.leader-info {
  padding: var(--space-6);
  text-align: center;
}

.leader-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--rehya-navy);
  margin-bottom: var(--space-1);
}

.leader-title {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--rehya-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-3);
}

.leader-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   19. NEWS SECTION
   ========================================================================== */
.news-section {
  background: var(--rehya-cream);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.news-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-base) var(--ease-out-quart);
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
}

.news-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow);
}

.news-card:hover .news-image img {
  transform: scale(1.08);
}

.news-tag {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--rehya-gold);
  color: var(--rehya-navy);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-content {
  padding: var(--space-6);
}

.news-date {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.news-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--rehya-navy);
  margin-bottom: var(--space-3);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-excerpt {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.news-link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--rehya-green);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  transition: gap var(--duration-fast);
}

.news-link:hover {
  gap: var(--space-2);
}

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   20. CTA / GET INVOLVED SECTION
   ========================================================================== */
.cta-section {
  background: var(--rehya-navy);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(0, 135, 81, 0.15) 0%, transparent 50%);
}

.cta-header {
  text-align: center;
  color: white;
  margin-bottom: var(--space-16);
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-4);
}

.cta-subtitle {
  font-size: var(--text-xl);
  color: var(--text-inverse-muted);
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
  z-index: 10;
}

.cta-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-out-back);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}

.cta-card:nth-child(1)::before { background: var(--rehya-green); }
.cta-card:nth-child(2)::before { background: var(--rehya-gold); }
.cta-card:nth-child(3)::before { background: var(--flame-blue); }

.cta-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.cta-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-4xl);
  margin: 0 auto var(--space-6);
}

.cta-card:nth-child(1) .cta-icon { background: rgba(0, 135, 81, 0.1); }
.cta-card:nth-child(2) .cta-icon { background: rgba(212, 175, 55, 0.1); }
.cta-card:nth-child(3) .cta-icon { background: rgba(30, 136, 229, 0.1); }

.cta-card-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--rehya-navy);
  margin-bottom: var(--space-3);
}

.cta-card-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .cta-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   21. PARTNERS MARQUEE
   ========================================================================== */
.partners-section {
  background: white;
  padding: var(--space-16) 0;
  overflow: hidden;
}

.partners-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.partners-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
}

.marquee-container {
  display: flex;
  width: fit-content;
  animation: marquee 30s linear infinite;
}

.marquee-container:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  padding: 0 var(--space-8);
}

.partner-logo {
  height: 48px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all var(--duration-base);
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================================================
   22. FOOTER
   ========================================================================== */
.main-footer {
  background: var(--rehya-navy);
  color: white;
  padding-top: var(--space-16);
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-logo img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--rehya-gold);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  line-height: 1.2;
}

.footer-desc {
  font-size: var(--text-base);
  color: var(--text-inverse-muted);
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-6);
  color: var(--rehya-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--text-base);
  color: var(--text-inverse-muted);
  transition: color var(--duration-fast);
}

.footer-links a:hover {
  color: var(--rehya-gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-inverse-muted);
}

.footer-contact-icon {
  width: 20px;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-base);
}

.footer-social a:hover {
  background: var(--rehya-gold);
  color: var(--rehya-navy);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-6) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: var(--text-sm);
  color: var(--text-inverse-muted);
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal a {
  font-size: var(--text-sm);
  color: var(--text-inverse-muted);
  transition: color var(--duration-fast);
}

.footer-legal a:hover {
  color: var(--rehya-gold);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}

/* ==========================================================================
   23. PAGE HEADER (For subpages)
   ========================================================================== */
.page-header {
  background: var(--gradient-night);
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom, rgba(0, 135, 81, 0.2) 0%, transparent 60%);
}

.page-header-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
}

.page-title {
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-4);
}

.page-subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--text-inverse-muted);
}

/* ==========================================================================
   24. FORM STYLES
   ========================================================================== */
.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--rehya-navy);
  margin-bottom: var(--space-2);
}

.form-label-required::after {
  content: ' *';
  color: var(--rehya-red);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: all var(--duration-base);
  background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--rehya-green);
  box-shadow: 0 0 0 4px rgba(0, 135, 81, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.form-radio-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--duration-base);
}

.form-radio-label:hover {
  border-color: var(--rehya-green);
}

.form-radio-input:checked + .form-radio-label {
  border-color: var(--rehya-green);
  background: rgba(0, 135, 81, 0.05);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   25. UTILITY CLASSES
   ========================================================================== */
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

.text-white { color: white; }
.text-gold { color: var(--rehya-gold); }
.text-green { color: var(--rehya-green); }
.text-navy { color: var(--rehya-navy); }

.bg-navy { background-color: var(--rehya-navy); }
.bg-cream { background-color: var(--rehya-cream); }
.bg-white { background-color: white; }

.hidden { display: none; }

/* ==========================================================================
   26. PRINT STYLES
   ========================================================================== */
@media print {
  .main-header,
  .mobile-menu-btn,
  .hero-badge,
  .hero-stats,
  .btn {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .section {
    padding: 2rem 0;
  }
}
