/* ===================================
   GO GREEN FOUNDATION — STYLES.CSS
   =================================== */

/* ----- RESET & BASE ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Hind', sans-serif;
  font-size: 16px;
  color: #254151;
  line-height: 1.7;
  background: #fff;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; font-size: 16px; }

/* ----- CONTAINER ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-align: center;
}
.btn-gold {
  background: #efc94c;
  color: #254151;
  border-color: #efc94c;
}
.btn-gold:hover { background: #d8b952; border-color: #d8b952; }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover { background: #fff; color: #254151; }
.btn-outline-green {
  background: transparent;
  color: #22836c;
  border-color: #22836c;
}
.btn-outline-green:hover { background: #22836c; color: #fff; }
.btn-donate {
  background: #efc94c;
  color: #254151;
  border-color: #efc94c;
  padding: 8px 22px;
}
.btn-donate:hover { background: #d8b952; border-color: #d8b952; }
.full-width { display: block; width: 100%; margin-top: 14px; }

/* ----- SECTION LABELS ----- */
.section-sub {
  font-family: 'Cardo', serif;
  font-style: italic;
  color: #22836c;
  font-size: 17px;
  margin-bottom: 8px;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #254151;
  margin-bottom: 40px;
  line-height: 1.2;
}
.center { text-align: center; }

/* ===== TOP BAR ===== */
.top-bar {
  background: #22836c;
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left span { margin-right: 20px; }
.top-bar-left i, .top-bar-right i { margin-right: 6px; }
.top-bar-right a {
  color: #fff;
  margin-left: 14px;
  font-size: 14px;
  transition: color 0.2s;
}
.top-bar-right a:hover { color: #efc94c; }

/* ===== HEADER ===== */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo img { height: 60px; width: auto; }
.main-nav ul { display: flex; align-items: center; gap: 6px; }
.main-nav ul li a {
  padding: 8px 14px;
  font-weight: 600;
  font-size: 15px;
  color: #254151;
  border-radius: 3px;
  transition: color 0.2s;
}
.main-nav ul li a:hover { color: #22836c; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #254151;
  cursor: pointer;
}

/* ===== HERO SLIDER ===== */
.hero { position: relative; height: 100vh; min-height: 560px; overflow: hidden; }
.slider { width: 100%; height: 100%; position: relative; }
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 58, 81, 0.55);
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-left: 8%;
  color: #fff;
  animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide-sub {
  font-family: 'Cardo', serif;
  font-style: italic;
  font-size: 18px;
  color: #efc94c;
  margin-bottom: 14px;
}
.slide-content h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}
.slide-desc { font-size: 17px; margin-bottom: 28px; opacity: 0.92; max-width: 540px; }
.slide-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 2px solid #fff;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { background: rgba(255,255,255,0.35); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active { background: #efc94c; }

/* ===== MISSION ===== */
.mission {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: center;
}
.mission-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 58, 81, 0.72);
}
.mission-inner {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 760px;
  margin: 0 auto;
}
.mission-inner .section-sub { color: #efc94c; }
.mission-inner blockquote {
  font-family: 'Cardo', serif;
  font-size: 22px;
  font-style: italic;
  border-left: 4px solid #efc94c;
  padding-left: 20px;
  margin: 24px auto 24px;
  text-align: left;
  max-width: 620px;
  line-height: 1.6;
}
.mission-body { font-size: 16px; opacity: 0.9; margin-bottom: 32px; }

/* ===== SUPPORT ===== */
.support { padding: 80px 0; background: #ece7df; }
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.support-card {
  background: #fff;
  border-radius: 6px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.support-card:hover { transform: translateY(-6px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.support-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #fff;
}
.support-card h3 { font-size: 19px; margin-bottom: 12px; color: #254151; }
.support-card p { font-size: 14px; color: #7d7d7d; margin-bottom: 20px; }

/* ===== STATS ===== */
.stats {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 90px 0;
  text-align: center;
}
.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(34, 131, 108, 0.82);
}
.stats-inner { position: relative; z-index: 1; color: #fff; }
.stats-inner h2 { font-size: 30px; margin-bottom: 18px; }
.stats-highlight { font-size: 17px; opacity: 0.92; margin-bottom: 50px; line-height: 1.8; }
.stats-highlight strong { color: #efc94c; font-size: 20px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 30px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-number { font-size: 42px; font-weight: 700; color: #efc94c; line-height: 1; }
.stat-label { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }

/* ===== CAMPAIGNS ===== */
.campaigns { padding: 80px 0; background: #fff; }
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.campaign-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,0.09);
  transition: transform 0.25s, box-shadow 0.25s;
}
.campaign-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.14); }
.campaign-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.campaign-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #22836c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.campaign-body { padding: 20px; }
.campaign-body h3 { font-size: 17px; margin-bottom: 8px; color: #254151; }
.campaign-body p { font-size: 13px; color: #7d7d7d; margin-bottom: 14px; }
.progress-bar-wrap {
  background: #e0e0e0;
  border-radius: 10px;
  height: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #22836c, #efc94c);
  border-radius: 10px;
  transition: width 1s ease;
}
.campaign-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}
.raised { color: #22836c; font-weight: 600; }
.goal { color: #7d7d7d; }
.campaign-remaining { font-size: 13px; color: #e74c3c; font-weight: 600; margin-bottom: 4px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  text-align: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 58, 81, 0.78);
}
.cta-inner { position: relative; z-index: 1; color: #fff; }
.cta-inner h2 { font-size: 36px; margin-bottom: 14px; }
.cta-inner p { font-size: 17px; opacity: 0.9; margin-bottom: 34px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== EVENTS ===== */
.events { padding: 80px 0; background: #ece7df; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-card {
  background: #fff;
  border-radius: 6px;
  padding: 28px;
  display: flex;
  gap: 20px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.07);
  transition: transform 0.2s;
}
.event-card:hover { transform: translateY(-4px); }
.event-date {
  background: #22836c;
  color: #fff;
  border-radius: 4px;
  padding: 14px 16px;
  text-align: center;
  min-width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.event-day { font-size: 28px; font-weight: 700; line-height: 1; }
.event-month { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.event-info h3 { font-size: 17px; margin-bottom: 6px; color: #254151; }
.event-info p { font-size: 13px; color: #7d7d7d; margin-bottom: 6px; }
.event-info p i { color: #22836c; margin-right: 5px; }
.event-info .btn { margin-top: 12px; }

/* ===== JOIN / DONATE ===== */
.join-donate { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.join-side {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 60px 50px;
}
.join-overlay {
  position: absolute;
  inset: 0;
  background: rgba(34, 131, 108, 0.85);
}
.join-content { position: relative; z-index: 1; color: #fff; width: 100%; }
.join-content h2 { font-size: 28px; margin-bottom: 10px; }
.join-content p { font-size: 15px; opacity: 0.9; margin-bottom: 24px; }
.join-form, .donate-form { display: flex; flex-direction: column; gap: 14px; }
.join-form input,
.join-form select,
.donate-form input {
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.join-form input::placeholder,
.donate-form input::placeholder { color: rgba(255,255,255,0.7); }
.join-form select { color: rgba(255,255,255,0.85); }
.join-form select option { color: #254151; background: #fff; }

.donate-side {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 60px 50px;
}
.donate-content { width: 100%; }
.donate-content h2 { font-size: 28px; margin-bottom: 10px; color: #254151; }
.donate-content > p { font-size: 15px; color: #7d7d7d; margin-bottom: 24px; }
.donation-amounts { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.amount-btn {
  padding: 10px 20px;
  border: 2px solid #22836c;
  background: transparent;
  color: #22836c;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.amount-btn:hover, .amount-btn.active { background: #22836c; color: #fff; }
.donate-form input {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  color: #254151;
}
.donate-form input::placeholder { color: #aaa; }
.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ===== CONTACT ===== */
.contact { padding: 80px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-item i {
  font-size: 22px;
  color: #22836c;
  margin-top: 3px;
  width: 28px;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 15px; margin-bottom: 4px; color: #254151; }
.contact-item p { font-size: 14px; color: #7d7d7d; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  color: #254151;
  resize: vertical;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: #22836c; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #aaa; }

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  background: #123a51;
  color: #ccc;
  padding: 70px 0 0;
}
.footer-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}
.footer-overlay {
  position: absolute;
  inset: 0;
  background: #123a51;
  opacity: 0.95;
}
.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-logo { height: 55px; width: auto; margin-bottom: 16px; }
.footer-col > p { font-size: 14px; line-height: 1.8; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s;
}
.footer-social a:hover { background: #22836c; }
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #22836c;
  display: inline-block;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: #bbb; transition: color 0.2s; }
.footer-col ul li a:hover { color: #efc94c; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.newsletter-form input {
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: #888;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .campaigns-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 778px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 16px 0;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul li a { display: block; padding: 12px 24px; }

  .slide-content { margin-left: 5%; margin-right: 5%; }
  .slide-content h1 { font-size: 28px; }

  .events-grid { grid-template-columns: 1fr; }
  .join-donate { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .campaigns-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section-title { font-size: 24px; }
  .hero { min-height: 480px; height: 85vh; }
  .slide-content h1 { font-size: 22px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .top-bar-left span:last-child { display: none; }
  .join-side, .donate-side { padding: 40px 24px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* ===================================
   INNER PAGE STYLES
   =================================== */

/* Active nav link */
.main-nav ul li a.active {
  color: #22836c;
  border-bottom: 2px solid #22836c;
}

/* Page Hero */
.page-hero {
  position: relative;
  height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-overlay { position: absolute; inset: 0; background: rgba(18,58,81,0.65); }
.page-hero-content { position: relative; z-index: 1; text-align: center; color: #fff; }
.page-hero-content h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 700; margin-bottom: 14px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; opacity: 0.85; }
.breadcrumb a { color: #efc94c; }
.breadcrumb i { font-size: 10px; }

/* Page Intro */
.page-intro { padding: 60px 0 40px; background: #fff; }
.page-intro-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.intro-text { font-size: 16px; color: #555; line-height: 1.8; }

/* ===== CAMPAIGNS PAGE ===== */
.campaigns-page { padding: 20px 0 80px; }
.campaigns-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ===== ABOUT PAGE ===== */
.about-mv {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
}
.about-mv-overlay { position: absolute; inset: 0; background: rgba(18,58,81,0.80); }
.about-mv-inner { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mv-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  color: #fff;
  transition: background 0.25s;
}
.mv-card:hover { background: rgba(255,255,255,0.15); }
.mv-icon {
  width: 64px; height: 64px; border-radius: 50%; background: #22836c;
  color: #fff; font-size: 24px; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 18px;
}
.mv-card h3 { font-size: 20px; margin-bottom: 12px; color: #efc94c; }
.mv-card p { font-size: 14px; opacity: 0.88; line-height: 1.7; }

/* What We Do */
.what-we-do { padding: 80px 0; background: #ece7df; }
.wwd-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.wwd-item { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 3px 14px rgba(0,0,0,0.07); }
.wwd-item img { width: 100%; height: 220px; object-fit: cover; }
.wwd-body { padding: 24px; }
.wwd-body h3 { font-size: 18px; margin-bottom: 10px; color: #254151; }
.wwd-body h3 i { color: #22836c; margin-right: 8px; }
.wwd-body p { font-size: 14px; color: #7d7d7d; line-height: 1.7; }

/* Team */
.team { padding: 80px 0; background: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: #f9f9f9; border-radius: 8px; padding: 32px 20px; text-align: center;
  border: 1px solid #eee; transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(0,0,0,0.09); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; background: #22836c; color: #fff;
  font-size: 32px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.team-card h3 { font-size: 17px; color: #254151; margin-bottom: 4px; }
.team-role { display: inline-block; font-size: 13px; color: #22836c; font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: 13px; color: #7d7d7d; line-height: 1.6; margin-bottom: 16px; }
.team-social { display: flex; justify-content: center; gap: 10px; }
.team-social a {
  width: 32px; height: 32px; border-radius: 50%; background: #22836c; color: #fff;
  font-size: 13px; display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.team-social a:hover { background: #efc94c; color: #254151; }

/* ===== EVENTS PAGE ===== */
.featured-event { padding: 60px 0 40px; background: #fff; }
.featured-event-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.featured-event-img { height: 380px; background-size: cover; background-position: center; border-radius: 8px; position: relative; }
.featured-badge {
  position: absolute; top: 16px; left: 16px; background: #efc94c; color: #254151;
  font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px; text-transform: uppercase;
}
.event-date-block { display: inline-flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.event-date-block .event-day { font-size: 48px; font-weight: 700; color: #22836c; line-height: 1; }
.event-date-block .event-month { font-size: 18px; color: #7d7d7d; }
.featured-event-body h2 { font-size: 28px; margin-bottom: 10px; color: #254151; }
.event-meta-row { font-size: 14px; color: #22836c; margin-bottom: 14px; }
.featured-event-body > p { font-size: 15px; color: #555; margin-bottom: 18px; line-height: 1.7; }
.event-highlights { margin-bottom: 24px; }
.event-highlights li { font-size: 14px; color: #555; margin-bottom: 8px; }
.event-highlights li i { color: #22836c; margin-right: 8px; }

/* Events list */
.events-page { padding: 20px 0 80px; background: #ece7df; }
.events-list { display: flex; flex-direction: column; gap: 20px; }
.event-list-card {
  background: #fff; border-radius: 8px; padding: 24px 28px;
  display: grid; grid-template-columns: 70px 1fr auto; gap: 24px; align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.2s;
}
.event-list-card:hover { transform: translateX(4px); }
.event-list-card .event-date { background: #22836c; color: #fff; border-radius: 6px; text-align: center; padding: 12px 8px; }
.event-list-card .event-info h3 { font-size: 18px; color: #254151; margin-bottom: 6px; }
.event-list-card .event-info p { font-size: 13px; color: #7d7d7d; margin-bottom: 4px; }
.event-list-card .event-info p i { color: #22836c; margin-right: 5px; }
.event-tags { display: flex; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
.etag { font-size: 11px; background: #ece7df; color: #22836c; padding: 2px 10px; border-radius: 12px; font-weight: 600; text-transform: uppercase; }
.event-cta { white-space: nowrap; }

/* ===== JOIN PAGE ===== */
.ways-to-join { padding: 20px 0 60px; background: #fff; }
.ways-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.way-card { background: #f9f9f9; border-radius: 8px; padding: 32px 20px; text-align: center; border: 1px solid #eee; }
.way-icon { width: 64px; height: 64px; border-radius: 50%; color: #fff; font-size: 24px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.way-card h3 { font-size: 18px; margin-bottom: 10px; color: #254151; }
.way-card p { font-size: 14px; color: #7d7d7d; line-height: 1.6; }

.join-donate-page { padding: 60px 0 80px; background: #ece7df; }
.join-donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.form-panel { border-radius: 8px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.green-panel { background: #22836c; color: #fff; }
.green-panel h2 { color: #fff; margin-bottom: 8px; }
.green-panel > p { opacity: 0.88; margin-bottom: 28px; font-size: 15px; }
.white-panel { background: #fff; }
.white-panel h2 { color: #254151; margin-bottom: 8px; }
.white-panel > p { color: #7d7d7d; margin-bottom: 20px; font-size: 15px; }

.styled-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; }
.green-panel .form-group label { color: rgba(255,255,255,0.85); }
.white-panel .form-group label { color: #254151; }

.green-panel input, .green-panel select, .green-panel textarea {
  padding: 11px 14px; border: 1px solid rgba(255,255,255,0.3); border-radius: 4px;
  background: rgba(255,255,255,0.12); color: #fff; font-size: 15px;
}
.green-panel input::placeholder, .green-panel textarea::placeholder { color: rgba(255,255,255,0.55); }
.green-panel select { color: rgba(255,255,255,0.85); }
.green-panel select option { color: #254151; background: #fff; }

.white-panel input, .white-panel select, .white-panel textarea {
  padding: 11px 14px; border: 1px solid #ddd; border-radius: 4px;
  background: #fff; color: #254151; font-size: 15px; transition: border-color 0.2s; resize: vertical;
}
.white-panel input:focus, .white-panel select:focus, .white-panel textarea:focus { outline: none; border-color: #22836c; }
.white-panel input::placeholder, .white-panel textarea::placeholder { color: #aaa; }

/* ===== EFT BANKING DETAILS ===== */
.eft-details {
  background: #f0f8f5;
  border: 2px solid #22836c;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 16px 0 24px;
}
.eft-details h3 {
  font-size: 16px;
  color: #22836c;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eft-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.eft-table tr { border-bottom: 1px solid #d4ede6; }
.eft-table tr:last-child { border-bottom: none; }
.eft-table td {
  padding: 8px 6px;
  vertical-align: top;
}
.eft-table td:first-child {
  color: #555;
  width: 42%;
  white-space: nowrap;
}
.eft-table td:last-child { color: #254151; }
.eft-table strong { color: #22836c; }
.eft-note {
  margin-top: 14px;
  font-size: 13px;
  color: #22836c;
  background: #d4ede6;
  border-radius: 4px;
  padding: 8px 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.eft-note i { margin-top: 2px; flex-shrink: 0; }
.eft-sub-heading {
  font-size: 14px;
  font-weight: 600;
  color: #254151;
  margin-bottom: 4px;
  padding-top: 4px;
  border-top: 1px dashed #ddd;
}
.optional {
  font-size: 12px;
  font-weight: 400;
  color: #999;
}
.file-input {
  padding: 8px 0 !important;
  border: none !important;
  background: transparent !important;
  font-size: 14px !important;
  color: #555 !important;
  cursor: pointer;
}

/* ===== CONTACT PAGE ===== */
.contact-cards-section { padding: 60px 0 40px; background: #fff; }
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-card { background: #f9f9f9; border-radius: 8px; padding: 32px 20px; text-align: center; border: 1px solid #eee; }
.contact-card-icon { width: 60px; height: 60px; border-radius: 50%; color: #fff; font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.contact-card h3 { font-size: 17px; color: #254151; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: #7d7d7d; line-height: 1.7; }

.contact-main { padding: 20px 0 80px; background: #ece7df; }
.contact-grid-page { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.contact-form-wrap, .contact-map-wrap { background: #fff; border-radius: 8px; padding: 40px; box-shadow: 0 3px 16px rgba(0,0,0,0.07); }
.contact-form-wrap .section-title, .contact-map-wrap .section-title { font-size: 24px; margin-bottom: 24px; }
.contact-form-full label { font-size: 13px; font-weight: 600; color: #254151; }
.contact-form-full input, .contact-form-full select, .contact-form-full textarea {
  padding: 11px 14px; border: 1px solid #ddd; border-radius: 4px; font-size: 15px; color: #254151; transition: border-color 0.2s; resize: vertical;
}
.contact-form-full input:focus, .contact-form-full select:focus, .contact-form-full textarea:focus { outline: none; border-color: #22836c; }
.contact-form-full input::placeholder, .contact-form-full textarea::placeholder { color: #aaa; }
.map-placeholder { border-radius: 6px; overflow: hidden; }

.contact-social-links { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.social-link { display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 4px; font-weight: 600; font-size: 14px; color: #fff; transition: opacity 0.2s; }
.social-link:hover { opacity: 0.85; }
.social-link.facebook { background: #1877f2; }
.social-link.twitter { background: #1da1f2; }
.social-link.instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-link.youtube { background: #ff0000; }

/* FAQ */
.faq { padding: 80px 0; background: #fff; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid #ddd; border-radius: 6px; overflow: hidden; }
.faq-question {
  width: 100%; background: #f9f9f9; border: none; padding: 18px 20px; text-align: left;
  font-size: 16px; font-weight: 600; color: #254151; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; transition: background 0.2s;
}
.faq-question:hover { background: #ece7df; }
.faq-question.open { background: #22836c; color: #fff; }
.faq-question i { transition: transform 0.3s; font-size: 13px; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { display: none; padding: 18px 20px; background: #fff; }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 15px; color: #555; line-height: 1.7; }

/* ===== INNER PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-mv-inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .wwd-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .ways-grid { grid-template-columns: repeat(2, 1fr); }
  .join-donate-grid { grid-template-columns: 1fr; }
  .contact-grid-page { grid-template-columns: 1fr; }
  .featured-event-inner { grid-template-columns: 1fr; }
  .featured-event-img { height: 260px; }
  .campaigns-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 778px) {
  .page-hero { height: 240px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .event-list-card { grid-template-columns: 60px 1fr; }
  .event-cta { grid-column: 1 / -1; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .ways-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .ways-grid { grid-template-columns: 1fr; }
  .event-list-card { grid-template-columns: 1fr; }
  .form-panel { padding: 24px; }
  .campaigns-grid-3 { grid-template-columns: 1fr; }
}
