.donate-container {
  margin: 0 auto;
}

/* Header Section */
.donate-header-section {
  margin-top: 60px;
  text-align: center;
  padding: 60px 0;
  background-image: url("../images/wwa-banner1.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
}

.donate-header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.8)
  );
  backdrop-filter: saturate(150%);
  -webkit-backdrop-filter: blur(50px) saturate(180%);
  z-index: 1;
}

.donate-header-content {
  position: relative;
  z-index: 2;
}

.donate-main-title {
  padding: 3rem 0;
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 15px;
  letter-spacing: 1px;
  background: linear-gradient(to top right, #3b82f6, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Intro Card */
.donate-intro-card {
  /* background: #ffffff; */
  color: #242424;
  margin: 0rem 5rem 0.5rem 5rem;
  padding: 4rem;
  border-radius: 1.5rem;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.donate-intro-text {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  color: #4a5568;
}

/* Main Content */
.donate-main-content {
  margin: 0 5rem;
  background: white;
  border-radius: 1rem;
  margin-bottom: 3rem;
}

/* Donation Info Grid */
.donate-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.donate-info-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 2px solid #e2e8f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.donate-info-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.donate-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.donate-info-card:nth-child(2) .donate-info-icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.donate-info-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
  line-height: 1.3;
  background: linear-gradient(to top right, #3b82f6, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.donate-info-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
}

.donate-info-description p {
  margin-bottom: 1.5rem;
}

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

/* .contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
} */

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0 0 0.5rem 0;
}

.contact-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.contact-link:hover {
  color: #2563eb;
  text-decoration: underline;
}

.address {
  margin: 0;
  line-height: 1.5;
  color: #4a5568;
}

/* Impact List */
.impact-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.impact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #4a5568;
}

.impact-list li i {
  color: #22c55e;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Call to Action Section */
.donate-cta-section {
  margin-top: 3rem;
}

.donate-cta-card {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  padding: 3rem;
  border-radius: 1.5rem;
  text-align: center;
  color: white;
}

.donate-cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.donate-cta-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  opacity: 0.9;
}

.donate-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.donate-btn.primary {
  background: white;
  color: #3b82f6;
}

.donate-btn.primary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.donate-btn.secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.donate-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .donate-main-title {
    font-size: 2.5rem;
    padding: 3rem 0;
  }

  .donate-intro-card,
  .donate-main-content {
    margin: 1.2rem;
    padding: 1.5rem;
  }

  .donate-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .donate-info-card {
    padding: 1.5rem;
  }

  .donate-info-header {
    flex-direction: column;
    text-align: center;
  }

  .donate-info-icon {
    align-self: center;
  }

  .donate-header-section {
    margin-top: 60px;
    padding: 40px 0;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
  }

  .contact-details {
    text-align: center;
  }

  .donate-cta-card {
    padding: 2rem;
  }

  .donate-cta-content h2 {
    font-size: 1.5rem;
  }

  .donate-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .donate-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .donate-main-title {
    font-size: 2rem;
  }

  .donate-intro-text {
    font-size: 1rem;
  }

  .donate-info-title {
    font-size: 1.2rem;
  }

  .donate-cta-content h2 {
    font-size: 1.3rem;
  }

  .donate-cta-content p {
    font-size: 1rem;
  }

  .contact-link {
    font-size: 0.90rem;
  }
}

/* Animation for cards on scroll */
.donate-info-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.donate-info-card:nth-child(1) {
  animation-delay: 0.1s;
}

.donate-info-card:nth-child(2) {
  animation-delay: 0.2s;
}

.donate-cta-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}