/* CSS Custom Properties */

:root {
  /* Colors */
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --text: #1f2937;
  --text-light: #6b7280;
  --text-lighter: #9ca3af;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --bg-dark: #111827;
  --border: #e5e7eb;
  --border-dark: #d1d5db;
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-secondary: 'Georgia', serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Transitions */
  --transition: all 0.2s ease-in-out;
  --transition-slow: all 0.3s ease-in-out;
}

/* Dark Mode Support - Same Colors for Both Modes */
@media (prefers-color-scheme: dark) {
  :root {
    /* Use the same colors for both light and dark modes */
    --text: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --border: #e5e7eb;
    --border-dark: #d1d5db;
  }
}

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

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-light);
}

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

a:hover {
  color: var(--brand-dark);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
  min-width: 44px;
}

.btn:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

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

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

.btn--secondary {
  background-color: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn--secondary:hover {
  background-color: var(--brand);
  color: white;
}

.btn--outline {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border-dark);
}

.btn--outline:hover {
  background-color: var(--bg-alt);
  border-color: var(--text);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
}

.nav__logo img {
  height: 60px;
  width: auto;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
  align-items: center;
}

.nav__link {
  font-weight: 500;
  color: var(--text);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--brand);
  background-color: var(--bg-alt);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  gap: 4px;
}

.nav__toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
  z-index: -1;
}

.hero__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  transform: translateY(-80%);
}

.hero__title {
  margin-bottom: var(--space-lg);
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 700;
  letter-spacing: 1px;
}

.hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--space-2xl);
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero__actions {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section {
  padding: var(--space-3xl) 0;
}

.section--alt {
  background-color: var(--bg-alt);
}

.section__title {
  margin-bottom: var(--space-lg);
  color: var(--text);
}

.section__title--center {
  text-align: center;
}

.section__text {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.section__text--center {
  text-align: center;
}

.section__actions {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* About Teaser */
.about-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-teaser__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Programs Grid */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.program-card {
  background: var(--bg);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
}

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

.program-card__icon {
  color: var(--brand);
  margin-bottom: var(--space-lg);
}

.program-card__title {
  margin-bottom: var(--space-md);
  color: var(--text);
}

.program-card__description {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.value-item {
  text-align: center;
  padding: var(--space-xl);
}

.value-item__icon {
  color: var(--accent);
  margin-bottom: var(--space-lg);
}

.value-item__title {
  margin-bottom: var(--space-md);
  color: var(--text);
}

.value-item__description {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Affiliates Grid */
.affiliates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.affiliate-item {
  background: var(--bg);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.affiliate-item__title {
  margin-bottom: var(--space-md);
  color: var(--text);
}

.affiliate-item__description {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: white;
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__title {
  color: white;
  margin-bottom: var(--space-lg);
}

.footer__subtitle {
  color: white;
  margin-bottom: var(--space-lg);
  font-size: 1.125rem;
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer__links a:hover {
  color: white;
}

.footer__social {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer__social a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer__social a:hover {
  color: white;
  transform: scale(1.1);
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer__contact a:hover {
  color: white;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Form Styles */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition);
  min-height: 44px;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* Toast */
.toast {
  position: fixed;
  top: var(--space-xl);
  right: var(--space-xl);
  background: var(--success);
  color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  transform: translateX(100%);
  transition: var(--transition-slow);
  max-width: 400px;
  word-wrap: break-word;
  line-height: 1.4;
}

.toast.show {
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg);
    flex-direction: column;
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
    z-index: 999;
    border-top: 1px solid var(--border);
  }
  
  .nav__menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav__menu li {
    width: 100%;
    text-align: center;
    margin: var(--space-sm) 0;
  }
  
  .nav__menu .nav__link {
    display: block;
    padding: var(--space-md) var(--space-lg);
    width: 100%;
    border-radius: var(--radius-md);
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .about-teaser__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .affiliates-grid {
    grid-template-columns: 1fr;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__social {
    justify-content: center;
  }
  
  .about-section__grid,
  .training-section__grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  /* Volunteer Section Mobile */
  .volunteer-section {
    padding: var(--space-2xl) 0;
  }
  
  .volunteer-content {
    flex-direction: column;
    gap: var(--space-xl);
  }
  
  .volunteer-text {
    text-align: center;
  }
  
  .volunteer-action {
    text-align: center;
  }
  
  .volunteer-action .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .affiliates-list {
    gap: var(--space-xl);
  }
  
  .impact-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-action__examples {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .hero {
    min-height: 60vh;
  }
  
  .hero__content {
    transform: translateY(-40%);
    padding: 0 var(--space-md);
  }
  
  .hero__title {
    font-size: 2rem;
    margin-bottom: var(--space-md);
  }
  
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
  }
  
  .program-card,
  .affiliate-item {
    padding: var(--space-xl);
  }
  
  .impact-grid,
  .benefits-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-actions,
  .become-partner__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .social-links__grid {
    flex-direction: column;
  }
  
  /* Mobile-specific improvements */
  .page-header {
    padding: var(--space-2xl) 0;
  }
  
  .page-header__title {
    font-size: 2rem;
  }
  
  .page-header__subtitle {
    font-size: 1rem;
  }
  
  .coming-soon h3 {
    font-size: 2rem;
  }
  
  .volunteer-content {
    padding: 0 var(--space-md);
  }
  
  .volunteer-text h2 {
    font-size: 1.75rem;
  }
  
  .volunteer-text p {
    font-size: 1rem;
  }
  
  .volunteer-action .btn {
    width: 100%;
    max-width: none;
    font-size: 1rem;
    padding: var(--space-md) var(--space-xl);
  }
  
  /* Improve form elements on mobile */
  .form-input,
  .form-textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  /* Better touch targets */
  .btn {
    min-height: 48px;
    min-width: 48px;
  }
  
  .nav__link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
  text-align: center;
  padding: var(--space-3xl) 0;
}

.page-header__title {
  color: white;
  margin-bottom: var(--space-md);
}

.page-header__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 0;
}

/* About Section */
.about-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-section__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Mission & Vision Sections */
.mission-quote,
.vision-quote {
  background: var(--bg-alt);
  border-left: 4px solid var(--brand);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  font-style: italic;
  font-size: 1.125rem;
  border-radius: var(--radius-md);
}

.mission-quote p,
.vision-quote p {
  margin-bottom: 0;
  color: var(--text);
}

/* Impact Grid */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.impact-item {
  text-align: center;
  padding: var(--space-xl);
}

.impact-item__number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: var(--space-md);
}

.impact-item__title {
  margin-bottom: var(--space-md);
  color: var(--text);
}

.impact-item__description {
  color: var(--text-light);
  margin-bottom: 0;
}

/* CTA Section */
.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

/* Programs Page */
.program-card__details {
  margin-top: var(--space-lg);
  text-align: left;
}

.program-card__details ul {
  list-style: none;
  padding: 0;
}

.program-card__details li {
  padding: var(--space-xs) 0;
  color: var(--text-light);
  position: relative;
  padding-left: var(--space-lg);
}

.program-card__details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

/* Training Section */
.training-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.training-section__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.training-features {
  margin-top: var(--space-xl);
}

.training-feature {
  margin-bottom: var(--space-lg);
}

.training-feature h4 {
  color: var(--brand);
  margin-bottom: var(--space-sm);
}

/* Values Page */
.value-card {
  background: var(--bg);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

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

.value-card__icon {
  color: var(--accent);
  margin-bottom: var(--space-lg);
}

.value-card__title {
  margin-bottom: var(--space-md);
  color: var(--text);
}

.value-card__description {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

.value-card__explanation {
  color: var(--text-light);
  margin-bottom: 0;
  text-align: left;
}

/* Values Action */
.values-action__examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.example-item {
  background: var(--bg-alt);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
}

.example-item h4 {
  color: var(--brand);
  margin-bottom: var(--space-md);
}

/* Affiliates Page */
.affiliates-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.affiliate-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.affiliate-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.affiliate-card__logo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.affiliate-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.affiliate-card:hover .affiliate-card__logo img {
  transform: scale(1.05);
}

.affiliate-card__title-section {
  flex: 1;
}

.affiliate-card__title {
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.affiliate-card__social {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.affiliate-card__social a {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-light);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color 0.3s ease;
}

.affiliate-card__social a:hover {
  color: var(--brand);
}

.affiliate-card__social svg {
  width: 20px;
  height: 20px;
}

.affiliate-card__content {
  padding: var(--space-xl);
}

.affiliate-card__description {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.affiliate-card__focus h4,
.affiliate-card__collaboration h4 {
  color: var(--brand);
  margin-bottom: var(--space-md);
}

.affiliate-card__focus ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.affiliate-card__focus li {
  padding: var(--space-xs) 0;
  color: var(--text-light);
  position: relative;
  padding-left: var(--space-lg);
}

.affiliate-card__focus li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

.affiliate-card__collaboration p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.benefit-item {
  text-align: center;
  padding: var(--space-xl);
}

.benefit-item__icon {
  color: var(--brand);
  margin-bottom: var(--space-lg);
}

.benefit-item__title {
  margin-bottom: var(--space-md);
  color: var(--text);
}

.benefit-item__description {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Become Partner */
.become-partner__criteria {
  margin: var(--space-xl) 0;
}

.become-partner__criteria h3 {
  color: var(--brand);
  margin-bottom: var(--space-lg);
}

.become-partner__criteria ul {
  list-style: none;
  padding: 0;
}

.become-partner__criteria li {
  padding: var(--space-sm) 0;
  color: var(--text-light);
  position: relative;
  padding-left: var(--space-lg);
}

.become-partner__criteria li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

.become-partner__actions {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-form {
  background: var(--bg);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.contact-item__icon {
  color: var(--brand);
  flex-shrink: 0;
}

.contact-item__content h3 {
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.contact-item__content p {
  color: var(--text-light);
  margin-bottom: 0;
}

.social-links {
  margin-top: var(--space-2xl);
}

.social-links h3 {
  margin-bottom: var(--space-md);
  color: var(--text);
}

.social-links__grid {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.social-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--brand);
  text-decoration: none;
  padding: var(--space-md);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--brand);
  background: var(--bg-alt);
}

/* Map Section */
.map-container {
  margin-top: var(--space-xl);
  text-align: center;
}

.map-container img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.faq-item {
  background: var(--bg);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  color: var(--brand);
  margin-bottom: var(--space-md);
}

.faq-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Loading State */
.loading {
  text-align: center;
  padding: var(--space-2xl);
  color: var(--text-light);
  font-style: italic;
}

/* Coming Soon Section */
.coming-soon {
  text-align: center;
  padding: var(--space-3xl) 0;
}

.coming-soon h3 {
  font-size: 2.5rem;
  color: var(--brand);
  margin-bottom: 0;
}

/* Volunteer Section */
.volunteer-section {
  background: var(--bg-alt);
  padding: var(--space-3xl) 0;
}

.volunteer-content {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  max-width: 800px;
  margin: 0 auto;
}

.volunteer-text {
  flex: 1;
}

.volunteer-text h2 {
  color: var(--text);
  margin-bottom: var(--space-lg);
}

.volunteer-text p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  font-size: 1.125rem;
}

.volunteer-action {
  flex-shrink: 0;
}

.volunteer-action .btn {
  font-size: 1.125rem;
  padding: var(--space-lg) var(--space-2xl);
  min-width: 200px;
}

.loading-dots {
  animation: loadingDots 1.5s infinite;
  display: inline-block;
}

@keyframes loadingDots {
  0%, 20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Button Loading State */
.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: none;
}

/* Glow Animation */
@keyframes glow {
  from {
    text-shadow: 
      0 0 10px rgba(37, 99, 235, 0.8),
      0 0 20px rgba(37, 99, 235, 0.6),
      0 0 30px rgba(37, 99, 235, 0.4),
      2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  to {
    text-shadow: 
      0 0 15px rgba(37, 99, 235, 1),
      0 0 25px rgba(37, 99, 235, 0.8),
      0 0 35px rgba(37, 99, 235, 0.6),
      2px 2px 4px rgba(0, 0, 0, 0.8);
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .nav__toggle,
  .btn {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    padding: var(--space-2xl) 0;
  }
  
  .hero__background {
    display: none;
  }
  
  .hero__overlay {
    display: none;
  }
  
  .hero__content {
    color: var(--text);
  }
  
  .hero__title {
    color: var(--text);
  }
  
  .hero__subtitle {
    color: var(--text-light);
  }
}

/* Additional Mobile Improvements */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }
  
  /* Better spacing for mobile */
  .section {
    padding: var(--space-2xl) 0;
  }
  
  /* Improve button touch targets */
  .btn {
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
  }
  
  /* Better form handling on mobile */
  input, textarea, select {
    font-size: 16px !important;
  }
  
  /* Improve card layouts */
  .program-card,
  .value-card,
  .affiliate-card {
    margin-bottom: var(--space-lg);
  }
  
  /* Better grid layouts */
  .programs-grid,
  .values-grid,
  .affiliates-grid {
    gap: var(--space-lg);
  }
}

/* Landscape mobile improvements */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 50vh;
  }
  
  .hero__content {
    transform: translateY(-20%);
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
}
