/* Modern Design System */
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --primary: #15b144;
  --primary-light: #009931;
  --primary-dark: #0e8a33;
  --secondary: #ffd700;
  --secondary-light: #ffe44d;
  --secondary-dark: #e6c200;
  --success: #10b981;
  --success-light: #34d399;
  --accent: #ebe832;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fbf9;
  --border-light: #e5ebe5;
  --white: #ffffff;
  --shadow-sm: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Enhanced Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #031301 0%, #041b03 100%);
  overflow: hidden;
  padding: 120px 0;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Content */
.hero-content {
  max-width: 600px;
}

.hero-tag {
  font-family: "Plus Jakarta Sans", sans-serif;
  display: inline-block;
  padding: 12px 24px;
  background: rgba(21, 177, 68, 0.08);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-family: "Unbounded", cursive;
  font-size: clamp(3rem, 4vw, 2.5rem);
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 600;
  background: linear-gradient(135deg, #15b144 0%, #ebe832 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-primary,
.btn-secondary {
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
  background: white;
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-value {
  font-family: "Unbounded", cursive;
  font-size: 2rem;
  font-weight: 600;
  /* color: var(--bg-light); */
  color: #95f4b1 !important;
  line-height: 1;
}

.stat-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.875rem;
  /* color: var(--text-light); */
  color: #95f4b1 !important;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-card {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: float 3s ease-in-out infinite;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
}

.card-text {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  color: var(--text-dark);
}

.card-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Background Shape */
.hero-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.03) 0%,
    rgba(16, 185, 129, 0.03) 100%
  );
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 60% 100%);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 5vw, 3rem);
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    text-align: center;
  }

  .floating-card {
    right: 50%;
    transform: translateX(50%);
  }
}

/* Enhanced Impact Metrics Section */
.impact-metrics {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.impact-metrics::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(21, 177, 68, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(235, 232, 50, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

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

/* Header Styles */
.metrics-header {
  text-align: center;
  margin-bottom: 80px;
}

.metrics-tag {
  font-family: "Plus Jakarta Sans", sans-serif;
  display: inline-block;
  padding: 12px 24px;
  background: rgba(21, 177, 68, 0.08);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metrics-header h2 {
  font-family: "Unbounded", cursive;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metrics-header p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Metric Card */
.metric-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.metric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(21, 177, 68, 0.12);
}

/* Metric Icon */
.metric-icon {
  width: 64px;
  height: 64px;
  background: rgba(21, 177, 68, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.metric-card:nth-child(1) .metric-icon {
  background: rgba(21, 177, 68, 0.1);
  color: var(--primary);
}

.metric-card:nth-child(2) .metric-icon {
  background: rgba(235, 232, 50, 0.1);
  color: var(--secondary-dark);
}

.metric-card:nth-child(3) .metric-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.metric-card:hover .metric-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

/* Metric Content */
.metric-number {
  font-family: "Unbounded", cursive;
  font-size: 2.5rem;
  color: var(--text-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-content h3 {
  font-family: "Unbounded", cursive;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 500;
}

.metric-content p {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Progress Bar */
.metric-progress {
  background: rgba(21, 177, 68, 0.03);
  padding: 20px;
  border-radius: 16px;
}

.progress-bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 16px;
}

.progress {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-radius: 100px;
  position: relative;
}

.metric-card:nth-child(2) .progress {
  background: linear-gradient(
    90deg,
    var(--secondary) 0%,
    var(--secondary-light) 100%
  );
}

.metric-card:nth-child(3) .progress {
  background: linear-gradient(
    90deg,
    var(--success) 0%,
    var(--success-light) 100%
  );
}

.progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 2s infinite linear;
}

/* Progress Stats */
.progress-stats {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-family: "Unbounded", cursive;
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
}

.stat-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.875rem;
  color: var(--text-light);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .impact-metrics {
    padding: 80px 0;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .metric-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .metrics-header {
    margin-bottom: 48px;
  }

  .progress-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .metric-number {
    font-size: 2rem;
  }
}

/* Enhanced Focus Areas Section */
.focus-areas {
  padding: 120px 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.focus-areas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(37, 99, 235, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(16, 185, 129, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

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

/* Enhanced Section Header */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-tag {
  font-family: "Plus Jakarta Sans", sans-serif;
  display: inline-block;
  padding: 12px 24px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header h2 {
  font-family: "Unbounded", cursive;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.section-header p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Enhanced Card Grid */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

/* Enhanced Card Design */
.focus-card {
  background: var(--bg-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

/* Enhanced Media Section */
.card-media {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #f8f9fa;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.focus-card:hover .card-media img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background: rgba(17, 60, 7, 0.9);
  color: white;
  border-radius: 100px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

/* Enhanced Content Section */
.card-content {
  padding: 32px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.card-content h3 {
  font-family: "Unbounded", cursive;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 500;
}

.card-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 1rem;
}

/* Enhanced Stats */
.stats {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  padding: 16px;
  background: rgba(37, 99, 235, 0.03);
  border-radius: 16px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
}

.stat i {
  color: var(--primary);
  font-size: 1rem;
}

/* Enhanced Progress Section */
.progress-wrapper {
  margin-bottom: 32px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.amount {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: "Unbounded", cursive;
}

.percentage {
  color: var(--success);
  font-weight: 600;
  font-size: 1rem;
}

.progress-bar {
  height: 8px;
  background: #f3f4f6;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 100px;
  position: relative;
}

.progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite linear;
}

.goal {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* Enhanced Button */
.donate-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.donate-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

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

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .focus-areas {
    padding: 80px 0;
  }

  .focus-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .card-media {
    height: 220px;
  }

  .stats {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: 48px;
  }

  .card-content {
    padding: 24px;
  }

  .stats {
    flex-direction: column;
    gap: 12px;
  }

  .progress-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Enhanced Get Involved Section */
.get-involved {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(21, 177, 68, 0.05) 0%,
    rgba(255, 215, 0, 0.05) 100%
  );
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(21, 177, 68, 0.1);
  color: #15b144;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 42px;
  color: #1f2937;
  margin-bottom: 16px;
}

.section-header p {
  color: #6b7280;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Layout */
.involvement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card Styles */
.involvement-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.involvement-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: #15b144;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card-icon i {
  color: white;
  font-size: 24px;
}

.involvement-card h3 {
  font-size: 24px;
  color: #1f2937;
  margin-bottom: 12px;
}

.involvement-card > p {
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Opportunity List */
.opportunity-list {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.opportunity {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.opportunity i {
  color: #15b144;
  font-size: 20px;
}

.opportunity h4 {
  color: #1f2937;
  margin-bottom: 4px;
}

.opportunity p {
  color: #6b7280;
  font-size: 14px;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #1f2937;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #15b144;
  outline: none;
  box-shadow: 0 0 0 3px rgba(21, 177, 68, 0.1);
}

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

/* Checkbox Style */
.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #15b144;
}

.checkbox label {
  color: #6b7280;
  font-size: 14px;
}

/* Button Styles */
.volunteer-button,
.submit-button {
  width: 100%;
  padding: 14px 24px;
  background: #15b144;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.volunteer-button:hover,
.submit-button:hover {
  background: #34d367;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .involvement-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .get-involved {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .involvement-card {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .section-header p {
    font-size: 16px;
  }

  .opportunity {
    flex-direction: column;
    text-align: center;
  }

  .opportunity i {
    margin: 0 auto;
  }
}

.donation-impact {
  padding: 120px 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.donation-impact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(21, 177, 68, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(235, 232, 50, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.impact-header {
  text-align: center;
  margin-bottom: 80px;
}

.impact-tag {
  font-family: "Plus Jakarta Sans", sans-serif;
  display: inline-block;
  padding: 12px 24px;
  background: rgba(21, 177, 68, 0.08);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.impact-header h2 {
  font-family: "Unbounded", cursive;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.impact-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(21, 177, 68, 0.12);
}

.impact-visual {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
}

.circle-progress {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.circle-progress path:last-child {
  stroke-linecap: round;
  transition: stroke-dasharray 1s ease;
}

.impact-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.percentage {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
}

.impact-info h3 {
  font-family: "Unbounded", cursive;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.impact-info p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.impact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.impact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.impact-list i {
  color: var(--primary);
  font-size: 0.875rem;
}

.donation-tiers {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.tier {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.tier.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.tier:hover:not(.active) {
  background: rgba(21, 177, 68, 0.08);
  border-color: var(--primary);
  color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .donation-impact {
    padding: 80px 0;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .impact-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .donation-tiers {
    flex-wrap: wrap;
  }

  .tier {
    width: calc(50% - 8px);
  }
}

/* Modern Testimonials Section */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(
    to right bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(21, 177, 68, 0.03) 100%
  );
  position: relative;
}

/* Floating Background Elements */
.testimonials::before,
.testimonials::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.testimonials::before {
  width: 300px;
  height: 300px;
  background: rgba(21, 177, 68, 0.05);
  top: -100px;
  right: -100px;
}

.testimonials::after {
  width: 250px;
  height: 250px;
  background: rgba(255, 215, 0, 0.05);
  bottom: -50px;
  left: -50px;
}

/* Enhanced Header */
.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-tag {
  background: rgba(21, 177, 68, 0.08);
  color: #15b144;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonials-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Featured Video Testimonial */
.video-testimonial {
  position: relative;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 60px;
}

.video-testimonial:hover {
  transform: translateY(-10px);
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  background: #1f2937;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #15b144;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 10px rgba(21, 177, 68, 0.2);
}

.play-btn:hover {
  background: #34d367;
  box-shadow: 0 0 0 15px rgba(21, 177, 68, 0.15);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Testimonial Cards Grid */
.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  position: absolute;
  top: -15px;
  left: 40px;
  width: 30px;
  height: 30px;
  background: #15b144;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

.testimonial-card blockquote {
  font-size: 18px;
  line-height: 1.8;
  color: #4b5563;
  margin: 20px 0 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
}

.author-image {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e5e7eb;
}

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

.author-details {
  flex: 1;
}

.author-details h4 {
  font-size: 18px;
  color: #1f2937;
  margin-bottom: 4px;
  font-weight: 600;
}

.donation-info {
  font-size: 14px;
  color: #6b7280;
}

.amount {
  color: #15b144;
  font-weight: 600;
}

.verification-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(21, 177, 68, 0.08);
  border-radius: 100px;
  font-size: 13px;
  color: #15b144;
  margin-left: auto;
}

/* Navigation Dots */
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 60px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e7eb;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: #15b144;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .testimonials-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 80px 0;
  }

  .testimonials-carousel {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .video-wrapper {
    padding-top: 75%;
  }

  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 30px 20px;
  }

  .verification-badge {
    display: none;
  }

  .testimonials-header h2 {
    font-size: 2rem;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card {
  animation: fadeUp 0.6s ease-out forwards;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.4s;
}

/* FAQ Section Styling */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(
    to bottom,
    rgba(21, 177, 68, 0.05),
    rgba(255, 255, 255, 1) 100%
  );
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(21, 177, 68, 0.1);
  color: #15b144;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.faq-header h2 {
  font-size: 42px;
  color: #1f2937;
  margin-bottom: 16px;
  font-weight: 700;
}

.faq-header p {
  color: #6b7280;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 30px;
}

.faq-item {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
}

.faq-item h3 {
  color: #15b144;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
}

.faq-item p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-header h2 {
    font-size: 32px;
  }

  .faq-item {
    padding: 24px;
  }

  .faq-item h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .faq-header h2 {
    font-size: 28px;
  }

  .faq-header p {
    font-size: 16px;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-item p {
    font-size: 15px;
  }
}

/* Final CTA Section */
.final-cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(2, 42, 14, 0.95) 0%,
    rgba(2, 10, 4, 0.8) 100%
  );
  overflow: hidden;
}

/* Background Shapes */
.cta-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.shape-1,
.shape-2 {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  animation: float 8s ease-in-out infinite;
}

/* Content Styling */
.final-cta h2 {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.final-cta p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: white;
  color: #15b144;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  background: #f8f9fa;
}

/* Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .final-cta {
    padding: 80px 0;
  }

  .final-cta h2 {
    font-size: 36px;
  }

  .final-cta p {
    font-size: 18px;
    padding: 0 20px;
  }

  .cta-button {
    padding: 14px 32px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .final-cta h2 {
    font-size: 28px;
  }

  .final-cta p {
    font-size: 16px;
  }

  .cta-button {
    padding: 12px 28px;
    font-size: 15px;
  }

  .shape-1 {
    width: 200px;
    height: 200px;
  }

  .shape-2 {
    width: 150px;
    height: 150px;
  }
}
