/* ---------------------------
   HERO SECTION
--------------------------- */
.involved-hero {
  background: linear-gradient(to top, rgba(0,107,87,0.9), rgba(0,152,121,0.3)),
    url("../assets/getInvolvedImg.jpg")
    center/cover no-repeat;
  text-align: center;
  padding: 150px 24px;
  color: white;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.involved-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.involved-hero p {
  font-size: 1.25rem;
  margin: 16px auto 32px auto;
  max-width: 700px;
  opacity: 0.95;
}

.btn-white {
  background: white;
  color: #009879;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: 0.3s ease;
}

.btn-white:hover {
  background: #f2f2f2;
  transform: translateY(-3px);
}

/* ---------------------------
   WHY JOIN
--------------------------- */
.why-join {
  padding: 100px 0;
  text-align: center;
}

.why-join h2 {
  color: #006b57;
  font-size: 2.5rem;
  font-weight: 700;
}

.why-join .subtitle {
  color: #666;
  margin-bottom: 60px;
  font-size: 1.125rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.why-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.why-card h3 {
  color: #009879;
  font-size: 1.35rem;
  margin: 20px;
  font-weight: 700;
}

.why-card p {
  color: #555;
  margin: 0 20px 24px;
  line-height: 1.7;
}

/* ---------------------------
   WAYS TO GET INVOLVED
--------------------------- */
.ways-section {
  background: #f2fbf8;
  padding: 100px 0;
  text-align: center;
}

.ways-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #006b57;
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.way-card {
  background: white;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
  text-align: left;
  transition: 0.3s;
}

.way-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.way-card h3 {
  color: #006b57;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
}

.link {
  color: #009879;
  font-weight: 600;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

/* ---------------------------
   MEMBERSHIP LEVELS
--------------------------- */
.membership {
  padding: 100px 0;
  text-align: center;
}

.membership h2 {
  color: #006b57;
  font-size: 2.4rem;
  font-weight: 700;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.member-card {
  background: white;
  padding: 34px;
  border-radius: 18px;
  border-top: 6px solid #009879;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.member-card:hover {
  transform: translateY(-10px);
}

.member-card p {
  color: #555;
  line-height: 1.7;
}

.tag {
  margin-top: 14px;
  font-weight: 700;
  color: #006b57;
  background: #e6fbf4;
  padding: 6px 12px;
  border-radius: 6px;
}

/* ---------------------------
   VOLUNTEER SECTION
--------------------------- */
.volunteer-section {
  padding: 100px 0;
  background: #f9f9f9;
}

.volunteer-section h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #006b57;
  margin-bottom: 50px;
}

.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.volunteer-card {
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: 0.3s;
}

.volunteer-card:hover {
  transform: translateY(-8px);
}

.volunteer-card h3 {
  color: #009879;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
}

/* ---------------------------
   CUSTOM CTA SECTION (ELITE)
--------------------------- */
.cta-join {
  background: linear-gradient(135deg, #009879, #006b57);
  padding: 100px 24px;
  text-align: center;
  color: white;
  border-radius: 20px;
  margin: 70px 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.cta-join h2 {
  font-size: 2.6rem;
  font-weight: 700;
}

.cta-join p {
  max-width: 650px;
  margin: 14px auto 30px;
  font-size: 1.2rem;
  opacity: 0.95;
}

.btn-primary {
  display: inline-block;
  background: #009879;
  color: white;
  padding: 14px 34px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: #006B57;
  border-color: #006B57;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 152, 121, 0.35);
}

/* ============================================
   ULTRA-CLEAN MOBILE RESPONSIVE STYLING
   (Max-width: 768px)
============================================ */
@media (max-width: 768px) {

  /* ---------- HERO ---------- */
  .involved-hero {
    padding: 100px 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .involved-hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .involved-hero p {
    font-size: 1rem;
    max-width: 90%;
    margin-bottom: 20px;
  }

  .btn-white {
    padding: 12px 24px;
    width: 100%;
    border-radius: 6px;
  }

  /* ---------- WHY JOIN ---------- */
  .why-join {
    padding: 60px 16px;
  }

  .why-join h2 {
    font-size: 1.9rem;
  }

  .why-join .subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-card img {
    height: 180px;
  }

  .why-card {
    border-radius: 14px;
  }

  /* ---------- WAYS TO GET INVOLVED ---------- */
  .ways-section {
    padding: 70px 16px;
  }

  .ways-section h2 {
    font-size: 1.9rem;
  }

  .ways-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .way-card {
    padding: 20px;
    border-radius: 14px;
  }

  /* ---------- MEMBERSHIP LEVELS ---------- */
  .membership {
    padding: 70px 16px;
  }

  .membership h2 {
    font-size: 2rem;
  }

  .membership-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .member-card {
    padding: 24px;
    border-radius: 14px;
  }

  .tag {
    font-size: 0.85rem;
    padding: 5px 10px;
  }

  /* ---------- VOLUNTEER SECTION ---------- */
  .volunteer-section {
    padding: 70px 16px;
  }

  .volunteer-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .volunteer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .volunteer-card {
    padding: 20px;
    border-radius: 14px;
  }

  /* ---------- CTA JOIN ---------- */
  .cta-join {
    margin: 40px 0;
    padding: 60px 20px;
    border-radius: 14px;
  }

  .cta-join h2 {
    font-size: 1.9rem;
  }

  .cta-join p {
    font-size: 1rem;
    margin: 10px auto 24px;
  }

  .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    border-radius: 8px;
  }
}
