:root {
  --primary: #15b144;
  --primary-dark: #0e8a33;
  --primary-light: rgba(21, 177, 68, 0.08);
  --secondary: #2a4b5a;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --bg-light: #f9fafb;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  --border-light: #e5e7eb;
}

/* Base Styles */
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  line-height: 1.5;
  background-color: var(--bg-light);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background: #0a0a0a;
  color: #ffffff;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-text h1 {
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
}

.highlight {
  background: linear-gradient(45deg, #FFD700, #15b144);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient 8s ease infinite;
}

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

.hero-text p {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.btn-primary, .btn-secondary {
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  background: #15b144;
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #128f38;
  transform: translateY(-2px);
}

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

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

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(45deg, #FFD700, #15b144);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-image {
  position: relative;
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.4),
    rgba(21, 177, 68, 0.2)
  );
}

@media (max-width: 1200px) {
  .hero-container {
    padding: 100px 40px;
    gap: 60px;
  }

  .hero-image {
    height: 500px;
  }
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 80px 24px;
  }

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

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

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

  .hero-image {
    height: 400px;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 40px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 60px 20px;
  }

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

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

/* Why Matters Section */
.why-matters {
  padding: 120px 0;
  background: linear-gradient(to bottom, var(--white) 0%, var(--bg-light) 100%);
}

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

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-header h2 {
  font-family: "Unbounded", cursive;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  margin: 20px 0;
  color: var(--text-dark);
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.6;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.reason-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.reason-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
  background: var(--primary);
  transform: scale(1.1) rotate(5deg);
}

.reason-icon i {
  font-size: 24px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.reason-card:hover .reason-icon i {
  color: var(--white);
}

.reason-content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--text-dark);
}

.reason-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
}

.stat-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.stat-number {
  font-family: "Unbounded", cursive;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-description {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

@media (max-width: 992px) {
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

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

  .impact-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reason-card {
    padding: 30px;
  }

  .stat-card {
    padding: 30px;
  }

  .stat-number {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .reason-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .reason-icon {
    margin-bottom: 20px;
  }

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

/* Join Volunteer Section */
.join-volunteer {
  padding: 120px 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.image-union {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.image-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-item:hover {
  transform: translateY(-10px);
}

.image-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  color: var(--white);
}

.overlay span {
  font-family: "Unbounded", cursive;
  font-size: 18px;
  font-weight: 600;
}

.content-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  width: 90%;
  z-index: 2;
}

.content-overlay h2 {
  font-family: "Unbounded", cursive;
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.content-overlay p {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.6;
}

.apply-btn {
  position: relative;
  padding: 18px 36px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(21, 177, 68, 0.2);
}

.btn-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }

  .image-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

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

  .content-overlay {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin: 40px auto 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }

  .content-overlay h2 {
    font-size: 28px;
  }

  .image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }

  .image-item.large {
    grid-column: span 1;
  }
}

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

  .apply-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Large Screens (1400px and up) */
@media (min-width: 1400px) {
  .mosaic-grid {
    grid-template-rows: repeat(2, 400px);
  }

  .item-content h3 {
    font-size: 42px;
  }

  .item-content h4 {
    font-size: 28px;
  }

  .cta-overlay {
    max-width: 520px;
    padding: 50px;
  }
}

/* Medium-Large Screens (992px to 1199px) */
@media (max-width: 1199px) {
  .mosaic-grid {
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
  }

  .item-content {
    padding: 24px;
  }

  .item-content h3 {
    font-size: 28px;
  }

  .item-content h4 {
    font-size: 20px;
  }

  .cta-overlay {
    padding: 32px;
  }

  .cta-content h2 {
    font-size: 32px;
  }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
  .join-volunteer {
    padding: 80px 0;
  }

  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 240px);
  }

  .mosaic-item.featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .cta-overlay {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    margin-top: 30px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

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

/* Large Phones (576px to 767px) */
@media (max-width: 767px) {
  .join-volunteer {
    padding: 60px 0;
  }

  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
    gap: 16px;
  }

  .mosaic-item.featured,
  .mosaic-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .item-content {
    padding: 20px;
  }

  .category-tag {
    padding: 6px 12px;
    font-size: 12px;
  }

  .cta-overlay {
    padding: 24px;
    margin-top: 24px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

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

  .apply-btn {
    padding: 16px 32px;
  }
}

/* Small Phones (575px and below) */
@media (max-width: 575px) {
  .join-volunteer {
    padding: 40px 0;
  }

  .mosaic-grid {
    grid-template-rows: repeat(5, 200px);
    gap: 12px;
  }

  .item-content h3 {
    font-size: 24px;
  }

  .item-content h4 {
    font-size: 18px;
  }

  .item-content p {
    font-size: 14px;
  }

  .cta-overlay {
    padding: 20px;
    border-radius: 16px;
  }

  .cta-content h2 {
    font-size: 24px;
  }

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

  .stat-divider {
    display: none;
  }

  .apply-btn {
    font-size: 14px;
    padding: 14px 28px;
  }
}

/* Handle Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
  .mosaic-grid {
    grid-template-rows: repeat(2, 180px);
  }

  .cta-overlay {
    position: relative;
    bottom: auto;
    right: auto;
  }
}

/* High-DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .mosaic-item img {
    transform-style: preserve-3d;
    backface-visibility: hidden;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .cta-overlay {
    background: rgba(31, 41, 55, 0.95);
  }

  .cta-content h2 {
    color: var(--white);
  }

  .category-tag {
    background: rgba(255, 255, 255, 0.1);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .mosaic-item,
  .mosaic-item img,
  .item-content,
  .apply-btn {
    transition: none;
  }
}

.testimonials {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg-light) 0%, var(--white) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 60px 0;
}

.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

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

.testimonial-card.featured {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--white) 100%
  );
}

.testimonial-image {
  flex: 0 0 40%;
  height: 400px;
}

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

.testimonial-content {
  padding: 40px;
  flex: 1;
}

.featured .testimonial-content {
  padding: 60px;
}

.quote-icon {
  color: var(--primary);
  font-size: 32px;
  margin-bottom: 24px;
  opacity: 0.5;
}

blockquote {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.featured blockquote {
  font-size: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-details h4 {
  font-size: 18px;
  color: var(--text-dark);
  margin: 0 0 4px;
}

.author-details span {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}

.author-rating {
  margin-top: 12px;
  color: #ffb400;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

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

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
}

.stat-info {
  flex: 1;
}

.stat-number {
  display: block;
  font-family: "Unbounded", cursive;
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.stat-label {
  color: var(--text-light);
  font-size: 14px;
}

@media (max-width: 992px) {
  .testimonial-card.featured {
    flex-direction: column;
  }

  .testimonial-image {
    height: 300px;
    width: 100%;
  }

  .featured .testimonial-content {
    padding: 40px;
  }
}

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .impact-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  blockquote {
    font-size: 16px;
  }

  .featured blockquote {
    font-size: 20px;
  }
}

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

  .stat-card {
    padding: 20px;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .stat-number {
    font-size: 24px;
  }
}

/* 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;
  }
}
