/* ================= BAG DONATION PAGE ================= */
.page-hero {
  position: relative;
  min-height: 75vh;
  padding: 5rem 0 3rem;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.page-hero .hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.page-hero .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.page-hero .hero-content p {
  font-size: 1.1rem;
  max-width: 680px;
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 60vh;
    padding: 4rem 0 2rem;
  }

  .page-hero .hero-content h1 {
    font-size: 2rem;
  }
}

.section-block {
  padding: 4rem 0;
}

.section-block .section-title {
  margin-bottom: 1rem;
}

.section-intro .content-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(11, 50, 97, 0.08);
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.objective-card {
  background: #fff;
  border: 1px solid #e7eaf3;
  border-radius: 18px;
  padding: 1.9rem;
  box-shadow: 0 10px 25px rgba(32, 56, 102, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objective-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(32, 56, 102, 0.12);
}

.objective-card i {
  font-size: 1.85rem;
  color: #0d6efd;
  margin-bottom: 0.85rem;
}

.objective-card h5 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.objective-card p {
  color: #5b6271;
  line-height: 1.75;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.stat-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.8rem;
  text-align: center;
  border: 1px solid rgba(13, 110, 253, 0.08);
  box-shadow: 0 8px 22px rgba(32, 56, 102, 0.08);
}

.stat-card h3 {
  font-size: 2.3rem;
  color: #0d6efd;
  margin-bottom: 0.75rem;
}

.stat-card p {
  color: #4e5a6b;
  margin: 0;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(9, 30, 66, 0.08);
}

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

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-caption {
  background: #f8f9fa;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: #333;
}
