@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --primary: #2E7D32;
  --primary-dark: #1B5E20;
  --primary-light: #4CAF50;
  --accent: #FF8F00;
  --accent-light: #FFB300;
  --text-dark: #1a1a2e;
  --text-mid: #444;
  --text-light: #777;
  --bg-light: #f8faf8;
  --white: #fff;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); }

/* ── TOP BAR ── */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  padding: 0.4rem 2rem;
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
}
.top-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; }
.top-bar a { color: rgba(255,255,255,0.85); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: var(--transition); }
.top-bar a:hover { color: var(--accent-light); }
.top-bar a i { font-size: 0.75rem; }
.top-bar-sep { color: rgba(255,255,255,0.3); }
.top-bar-addr, .top-bar-reg { color: rgba(255,255,255,0.7); display: inline-flex; align-items: center; gap: 5px; font-size: 0.75rem; }
.top-bar-social { display: flex; gap: 0.5rem; margin-left: 0.5rem; }
.top-bar-social a { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.68rem; }
.top-bar-social a:hover { background: var(--accent); color: #fff; }

/* ── NAVBAR ── */
.pub-nav {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  transition: var(--transition);
}
.pub-nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.13); }
.pub-nav .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo-wrap { width: 48px; height: 48px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.08); overflow: hidden; }
.brand-logo-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pub-nav .brand-text { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--primary-dark); font-weight: 700; line-height: 1.2; display: block; }
.pub-nav .brand-sub { font-size: 0.6rem; color: var(--text-light); display: block; line-height: 1.3; }
.pub-nav ul { list-style: none; display: flex; align-items: center; gap: 0.1rem; }
.pub-nav ul li a {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.55rem; border-radius: 8px; text-decoration: none;
  font-size: 0.81rem; font-weight: 500; color: var(--text-dark);
  transition: var(--transition); white-space: nowrap;
}
.pub-nav ul li a > i:first-of-type {
  width: 1rem; flex-shrink: 0; text-align: center;
  opacity: 0.88;
  font-size: 0.9em;
}
.pub-nav ul li a:hover > i:first-of-type,
.pub-nav ul li a.active > i:first-of-type { opacity: 1; }
.pub-nav ul li a:hover, .pub-nav ul li a.active { background: var(--primary); color: #fff; }
.nav-auth-sep { width: 1px; height: 20px; background: #ddd; margin: 0 0.2rem; }
.nav-login-btn {
  background: rgba(46,125,50,0.1) !important; color: var(--primary) !important;
  border: 1.5px solid rgba(46,125,50,0.3) !important; border-radius: 50px !important;
  font-weight: 600 !important; padding: 0.35rem 0.8rem !important;
}
.nav-login-btn:hover { background: var(--primary) !important; color: #fff !important; }
.nav-register-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important;
  color: #fff !important; border-radius: 50px !important;
  font-weight: 600 !important; padding: 0.35rem 0.85rem !important;
  box-shadow: 0 3px 12px rgba(255,143,0,0.3);
}
.nav-register-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(255,143,0,0.4); }
.nav-donate-btn {
  background: linear-gradient(135deg, #c62828, #ef5350) !important;
  color: #fff !important; border-radius: 50px !important;
  font-weight: 700 !important; padding: 0.35rem 0.85rem !important;
  box-shadow: 0 3px 12px rgba(198,40,40,0.3);
  animation: donate-pulse 2.4s infinite;
}
.nav-donate-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(198,40,40,0.45); }
.nav-donate-btn.active { background: linear-gradient(135deg, #b71c1c, #c62828) !important; }
@keyframes donate-pulse {
  0%, 100% { box-shadow: 0 3px 12px rgba(198,40,40,0.3); }
  50%      { box-shadow: 0 3px 16px rgba(198,40,40,0.55); }
}
.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.nav-login-btn-mob { display: none; width: 36px; height: 36px; border-radius: 50%; background: rgba(46,125,50,0.1); color: var(--primary); align-items: center; justify-content: center; text-decoration: none; font-size: 0.95rem; transition: var(--transition); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; border-radius: 8px; }
.nav-hamburger span { display: block; width: 23px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 999; backdrop-filter: blur(2px); }
.nav-overlay.active { display: block; }

/* ── PUBLIC NAV DROPDOWN (Media) ── */
.nav-item-has-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  font-size: 0.81rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  user-select: none;
}
.nav-dropdown-toggle > i:first-of-type {
  width: 1rem;
  flex-shrink: 0;
  text-align: center;
  opacity: 0.88;
  font-size: 0.9em;
}
.nav-dropdown-caret {
  font-size: 0.6rem !important;
  width: auto !important;
  opacity: 0.65;
  margin-left: 0.1rem;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  background: var(--primary);
  color: #fff;
  outline: none;
}
.nav-dropdown-toggle:hover > i:first-of-type,
.nav-dropdown-toggle:focus-visible > i:first-of-type,
.nav-dropdown-toggle.active > i:first-of-type { opacity: 1; }
.nav-dropdown-toggle:hover .nav-dropdown-caret,
.nav-dropdown-toggle:focus-visible .nav-dropdown-caret { opacity: 1; }
.nav-dropdown-toggle.active {
  background: var(--primary);
  color: #fff;
}
.nav-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  border: 1px solid rgba(0,0,0,0.06);
}
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.52rem 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
.nav-dropdown-menu a > i:first-of-type {
  width: 1.05rem;
  text-align: center;
  color: var(--primary);
  opacity: 0.9;
  font-size: 0.88rem;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(46,125,50,0.12);
  color: var(--primary-dark);
}

@media (min-width: 769px) {
  .pub-nav > ul > .nav-item-has-dropdown > .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.35rem;
    z-index: 1200;
  }
  .pub-nav > ul > .nav-item-has-dropdown:hover > .nav-dropdown-menu,
  .pub-nav > ul > .nav-item-has-dropdown:focus-within > .nav-dropdown-menu {
    display: block;
  }
}

/* Mobile drawer extras (hidden on desktop) */
.nav-drawer-header,
.nav-drawer-sep {
  display: none !important;
}
.nav-drawer-header { list-style: none; margin: 0; padding: 0; }
.nav-drawer-close {
  width: 44px; height: 44px; padding: 0; border: none; border-radius: 12px;
  background: #edf2ee; color: var(--text-dark); font-size: 1rem;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); flex-shrink: 0;
}
.nav-drawer-close:hover { background: #e2e8e3; color: var(--primary-dark); }
.nav-drawer-close:focus-visible {
  outline: 2px solid var(--primary); outline-offset: 2px;
}

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative; overflow: hidden;
  height: 680px; min-height: 680px; max-height: 680px;
  padding-top: 102px; /* top-bar + nav */
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
  opacity: 0; transform: scale(1.04);
  transition: opacity 0.9s ease, transform 0.9s ease;
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.hero-slide.active {
  opacity: 1; transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(27,94,32,0.82) 0%, rgba(46,125,50,0.55) 60%, rgba(56,142,60,0.30) 100%);
}
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 20; background: rgba(255,255,255,0.18); border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff; width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer; transition: var(--transition);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: rgba(255,255,255,0.32); transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }
.slider-dots { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 20; }
.dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.6); background: transparent; cursor: pointer; transition: var(--transition); padding: 0; }
.dot.active { background: #fff; border-color: #fff; width: 28px; border-radius: 6px; }
.hero-content { position: relative; z-index: 2; padding: 4rem 0; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.82rem; font-weight: 500;
  margin-bottom: 1.5rem; backdrop-filter: blur(8px);
}
.hero-slide h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; line-height: 1.2; margin-bottom: 1.2rem; }
.hero-slide h1 span { color: var(--accent-light); }
.hero-slide p { font-size: 1rem; color: rgba(255,255,255,0.88); line-height: 1.8; margin-bottom: 2rem; max-width: 600px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-btns .btn { white-space: nowrap; }

/* ── CONTACT STRIP ── */
.contact-strip { background: var(--white); border-bottom: 1px solid #eee; padding: 1.8rem 0; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.contact-strip-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.contact-strip-item { display: flex; align-items: flex-start; gap: 0.9rem; }
.cs-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-strip-item strong { display: block; font-size: 0.78rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 3px; }
.contact-strip-item a, .contact-strip-item span { font-size: 0.88rem; color: var(--text-dark); text-decoration: none; font-weight: 500; display: block; line-height: 1.5; }
.contact-strip-item a:hover { color: var(--primary); }

/* ── FOUNDER INFO ── */
.founder-info { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.8rem; padding: 1rem 1.2rem; background: rgba(46,125,50,0.06); border-radius: 12px; border-left: 3px solid var(--primary); }
.founder-badge { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.founder-info strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--primary-dark); }
.founder-info span { font-size: 0.78rem; color: var(--text-light); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 0.75rem 1.8rem; border-radius: 50px; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: var(--transition); cursor: pointer; border: none; }
.btn-white { background: #fff; color: var(--primary-dark); }
.btn-white:hover { background: var(--bg-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,125,50,0.35); }
.btn-accent { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: #fff; }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,143,0,0.35); }

/* Stats bar */
.stats-bar {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; text-align: center;
  position: relative; z-index: 10; margin-top: -3rem;
}
.stat-item .num { font-size: 2rem; font-weight: 800; color: var(--primary); display: block; }
.stat-item .label { font-size: 0.82rem; color: var(--text-light); font-weight: 500; margin-top: 0.2rem; }

/* ── SECTIONS ── */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-light); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-tag {
  display: inline-block; background: rgba(46,125,50,0.1); color: var(--primary);
  padding: 0.3rem 0.9rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.8rem;
}
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--text-dark); margin-bottom: 1rem; line-height: 1.3; }
.section-title span { color: var(--primary); }
.section-sub { color: var(--text-light); font-size: 1.05rem; line-height: 1.7; max-width: 600px; }

/* ── CARDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.card-pub {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; transition: var(--transition);
}
.card-pub:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.14); }
.card-pub img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-icon { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; margin-bottom: 1rem; }
.card-tag { font-size: 0.75rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.card-title { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.6rem; line-height: 1.4; }
.card-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 0.88rem; text-decoration: none; margin-top: 1rem; transition: var(--transition); }
.card-link:hover { gap: 10px; }

/* Initiative cards */
.init-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column; transition: var(--transition);
}
.init-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,0.13); }
.init-card-img { position: relative; height: 200px; overflow: hidden; }
.init-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.init-card:hover .init-card-img img { transform: scale(1.06); }
.init-card-img .badge-overlay {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #fff;
  padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.72rem; font-weight: 700;
}
.init-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.init-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-dark); }
.init-card-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; flex: 1; }

/* ── ABOUT SPLIT ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); }
/* Text left / image right on desktop; stack sensibly on small screens */
.about-split--reverse { direction: rtl; }
.about-split--reverse > * { direction: ltr; }
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent); color: #fff;
  padding: 1.2rem 1.5rem; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow);
}
.about-badge-float .big { font-size: 2.2rem; font-weight: 800; display: block; line-height: 1; }
.about-badge-float .sm { font-size: 0.78rem; font-weight: 600; opacity: 0.9; }

/* About page: stat tiles & values grid */
.about-stats-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1rem;
  margin-top: 1rem;
}
.about-split-side-img {
  width: 100%;
  height: auto;
  min-height: 260px;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.values-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.values-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.95rem; color: var(--text-mid); }
.values-list li .ico { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; flex-shrink: 0; margin-top: 2px; }

/* Services / initiative blocks */
.initiative-quick-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.services-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.initiative-highlight-box {
  margin-top: 1.5rem;
  background: rgba(46, 125, 50, 0.07);
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.initiative-highlight-box > span:first-child {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.initiative-partner-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius);
  color: #fff;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff; padding: 4rem 0; text-align: center;
}
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 1rem; }
.cta-band p { font-size: 1.05rem; opacity: 0.85; margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info-card { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); border-radius: var(--radius); padding: 2.5rem; color: #fff; }
.contact-info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 0.5rem; }
.contact-info-card p { opacity: 0.85; margin-bottom: 2rem; font-size: 0.95rem; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item .ico { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-item .details strong { display: block; font-size: 0.82rem; opacity: 0.7; font-weight: 500; margin-bottom: 2px; }
.contact-item .details span,
.contact-item .details a { font-size: 0.95rem; word-break: break-word; overflow-wrap: anywhere; }
.social-links { display: flex; gap: 0.7rem; margin-top: 2rem; }
.social-links a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; font-size: 0.95rem; transition: var(--transition); }
.social-links a:hover { background: rgba(255,255,255,0.3); }
.contact-form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid #e0e0e0; border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; color: var(--text-dark);
  transition: var(--transition); outline: none; background: var(--white);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(46,125,50,0.12); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Contact page: map + bottom CTA columns */
.contact-map-section { padding: 0 0 5rem; }
.contact-map-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}
.contact-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.cta-band-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 2rem auto 0;
  text-align: center;
}

/* ── BLOG ── */
.blog-hero { padding: 7rem 0 4rem; background: linear-gradient(120deg, var(--primary-dark), var(--primary)); color: #fff; text-align: center; }
.blog-hero h1 { font-family: 'Playfair Display', serif; font-size: 2.8rem; margin-bottom: 1rem; }
.blog-hero p { font-size: 1.1rem; opacity: 0.85; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,0.13); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.4rem; }
.blog-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem; }
.blog-cat { background: rgba(46,125,50,0.1); color: var(--primary); padding: 0.2rem 0.7rem; border-radius: 50px; font-size: 0.72rem; font-weight: 600; }
.blog-date { font-size: 0.78rem; color: var(--text-light); }
.blog-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card-body p { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 7rem 0 4rem;
  background: linear-gradient(120deg, var(--primary-dark) 0%, #2e7d32 60%, #388e3c 100%);
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('../images/hero_banner.png') center/cover; opacity: 0.12; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.8rem; }
.page-hero p { font-size: 1.05rem; opacity: 0.85; max-width: 560px; margin: 0 auto; }
.breadcrumb-pub { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1rem; }
.breadcrumb-pub a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.85rem; }
.breadcrumb-pub a:hover { color: #fff; }
.breadcrumb-pub span { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* ── FOOTER ── */
.pub-footer {
  position: relative;
  color: rgba(255,255,255,0.88);
  padding: 0 0 1.75rem;
  overflow: hidden;
  background: linear-gradient(168deg, #0f1118 0%, var(--text-dark) 42%, #162a1f 100%);
}
.pub-footer::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-light) 45%, var(--accent-light));
}
.pub-footer::after {
  content: '';
  position: absolute;
  inset: 4px 0 0;
  background:
    radial-gradient(ellipse 90% 55% at 15% -15%, rgba(76,175,80,0.22), transparent 52%),
    radial-gradient(ellipse 70% 45% at 92% 105%, rgba(255,143,0,0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.pub-footer-inner {
  position: relative;
  z-index: 1;
  padding-top: 2.75rem;
}

.footer-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.15rem 1.35rem;
  margin-bottom: 2.75rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(46,125,50,0.35), rgba(27,94,32,0.2));
  border: 1px solid rgba(76,175,80,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.footer-cta-text { flex: 1; min-width: 200px; }
.footer-cta-text p {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}
.footer-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.95);
}
.footer-cta-badge i { color: var(--accent-light); font-size: 0.85rem; }
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #c62828, #ef5350);
  box-shadow: 0 4px 18px rgba(198,40,40,0.35);
  transition: var(--transition);
  white-space: nowrap;
}
.footer-cta-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(198,40,40,0.45);
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem 3rem; margin-bottom: 2.75rem; }
.footer-brand .brand-text {
  color: #fff;
  font-size: 1.28rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  display: block;
  line-height: 1.25;
}
.footer-brand-tagline {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}
.footer-brand-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.footer-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.footer-brand-desc { font-size: 0.89rem; line-height: 1.72; color: rgba(255,255,255,0.62); max-width: 34rem; }

.pub-footer .footer-social.social-links { margin-top: 1.35rem; gap: 0.55rem; }
.pub-footer .footer-soc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.92rem;
  transition: var(--transition);
}
.pub-footer .footer-soc:hover {
  transform: translateY(-3px);
  border-color: transparent;
  color: #fff;
}
.pub-footer .footer-soc-fb:hover { background: #1877f2; }
.pub-footer .footer-soc-tw:hover { background: #1da1f2; }
.pub-footer .footer-soc-ig:hover { background: linear-gradient(225deg, #f09433, #e6683c, #dc2743); }
.pub-footer .footer-soc-yt:hover { background: #ff0000; }
.pub-footer .footer-soc-wa:hover { background: #25d366; }

.footer-col h4 {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  padding-bottom: 0.65rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.25rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent-light));
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  font-size: 0.87rem;
  transition: var(--transition);
  padding: 0.15rem 0;
}
.footer-link-chevron { font-size: 0.58rem; opacity: 0.45; transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; padding-left: 2px; }
.footer-col ul li a:hover .footer-link-chevron { opacity: 1; color: var(--primary-light); }
.footer-link-donate {
  color: var(--accent-light) !important;
  font-weight: 700;
}
.footer-link-donate:hover {
  color: #ffc107 !important;
}

.footer-contact-list .footer-contact-row,
.footer-contact-list .footer-founder {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.87rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.68);
}
.footer-contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.87rem;
  transition: var(--transition);
}
.footer-contact-list a:hover { color: var(--primary-light); }
.footer-contact-icon {
  flex-shrink: 0;
  width: 1.15rem;
  text-align: center;
  color: var(--primary-light);
  margin-top: 3px;
  font-size: 0.82rem;
}
.footer-founder {
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.52) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.65rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer-bottom-copy p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.5;
}
.footer-reg-line {
  margin-top: 0.35rem !important;
  font-size: 0.76rem !important;
  color: rgba(255,255,255,0.42) !important;
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.81rem;
  text-decoration: none;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  transition: var(--transition);
}
.footer-bottom-links a:hover {
  color: #fff;
  border-color: rgba(76,175,80,0.45);
  background: rgba(76,175,80,0.15);
}

/* ── MISSION/VISION CARDS ── */
.mv-card {
  padding: 2rem; border-radius: var(--radius); border-left: 4px solid var(--primary);
  background: var(--white); box-shadow: var(--shadow); margin-bottom: 1.5rem;
}
.mv-card h3 { color: var(--primary); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.5rem; }
.mv-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.75; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--primary-light)); }
.tl-item { position: relative; margin-bottom: 2rem; padding-left: 1.5rem; }
.tl-item::before { content: ''; position: absolute; left: -23px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--primary); border: 2px solid #fff; box-shadow: 0 0 0 3px rgba(46,125,50,0.2); }
.tl-item h4 { font-weight: 700; color: var(--text-dark); margin-bottom: 0.3rem; }
.tl-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }
.tl-year { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.2rem; }

/* ── ALERT ── */
.alert-success-pub { background: rgba(46,125,50,0.1); border: 1px solid rgba(46,125,50,0.3); color: var(--primary-dark); padding: 1rem 1.2rem; border-radius: 10px; font-size: 0.92rem; margin-bottom: 1rem; }
.alert-danger-pub { background: rgba(211,47,47,0.1); border: 1px solid rgba(211,47,47,0.3); color: #c62828; padding: 1rem 1.2rem; border-radius: 10px; font-size: 0.92rem; margin-bottom: 1rem; }

/* ── PUBLIC MEDIA GALLERY PAGES ── */
.gallery-pub-hero {
  padding: 6.5rem 1.5rem 3rem;
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gallery-pub-hero-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.gallery-pub-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin: 0.5rem 0 0.75rem;
  line-height: 1.2;
}
.gallery-pub-hero p { opacity: 0.9; font-size: 1rem; line-height: 1.6; margin: 0; }
.gallery-pub-tag { background: rgba(255,255,255,0.2); color: #fff; }
.gallery-pub-tabs {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
.gallery-pub-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.45);
  color: #fff;
  background: rgba(255,255,255,0.08);
  transition: var(--transition);
}
.gallery-pub-tab:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.gallery-pub-tab.is-active {
  background: #fff;
  color: var(--primary-dark);
  border-color: #fff;
}
.gallery-pub-section { padding-top: 2.5rem; padding-bottom: 4rem; }
.gallery-pub-empty {
  text-align: center;
  padding: 3.5rem 1rem;
  color: var(--text-light);
}
.gallery-pub-empty i {
  font-size: 2.75rem;
  color: var(--primary-light);
  opacity: 0.65;
  margin-bottom: 1rem;
}
.gallery-pub-empty h3 { color: var(--text-dark); margin-bottom: 0.35rem; }
.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery-photo-card {
  display: block;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  font-family: inherit;
}
.gallery-photo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}
.gallery-photo-card:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}
.gallery-photo-card-img {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-light);
}
.gallery-photo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-photo-card:hover .gallery-photo-card-img img { transform: scale(1.05); }
.gallery-photo-card-cap {
  display: block;
  padding: 0.75rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
}
.gallery-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.75rem;
}
.gallery-video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-video-frame-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
}
.gallery-video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.gallery-video-body { padding: 1rem 1.15rem 1.2rem; }
.gallery-video-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.35rem;
  line-height: 1.35;
}
.gallery-video-body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(6px);
}
.gallery-lightbox[hidden] { display: none !important; }
.gallery-lightbox-inner {
  margin: 0;
  max-width: min(96vw, 1100px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-lightbox-inner img {
  max-width: 100%;
  max-height: calc(92vh - 5rem);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.gallery-lightbox-inner figcaption {
  margin-top: 0.85rem;
  color: #fff;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 560px;
}
.gallery-lb-sub { opacity: 0.85; font-weight: 400; }
.gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox-close:hover { background: rgba(255,255,255,0.28); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .pub-nav ul li a { padding: 0.4rem 0.65rem; font-size: 0.82rem; }
  .contact-strip-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 2rem; }
  .about-split--reverse { direction: ltr; }
  .about-split--reverse .about-img-wrap { order: 2; }
  .about-split--reverse > div:not(.about-img-wrap) { order: 1; }
  .about-img-wrap img { height: auto; min-height: 260px; max-height: 420px; object-fit: cover; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .about-split-side-img { max-height: 340px; min-height: 200px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-band-steps { grid-template-columns: repeat(2, 1fr); gap: 1.15rem; max-width: 720px; margin-top: 1.5rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .top-bar-reg { display: none; }
}
@media (max-width: 768px) {
  body { padding-top: 0; }
  .top-bar { position: relative; padding: 0.35rem 1rem; }
  .top-bar-inner { flex-direction: column; gap: 0.3rem; align-items: flex-start; }
  .top-bar-left, .top-bar-right { gap: 0.5rem; }
  .hide-sm { display: none !important; }
  .top-bar-social { margin-left: 0; }
  .pub-nav {
    position: sticky; top: 0; height: 60px; padding: 0 1rem;
  }
  .brand-logo-wrap { width: 44px; height: 44px; }
  .pub-nav .brand-text { font-size: 1rem; }
  .pub-nav .brand-sub { font-size: 0.58rem; }
  .pub-nav ul {
    display: none; position: fixed;
    top: 0; left: 0; width: min(86vw, 320px); height: 100vh; height: 100dvh;
    max-width: none;
    background: #fff; flex-direction: column;
    padding: max(12px, env(safe-area-inset-top)) 1.125rem max(28px, env(safe-area-inset-bottom));
    box-shadow: 4px 0 32px rgba(0,0,0,0.12);
    overflow-y: auto; z-index: 1050; align-items: stretch; gap: 0.125rem;
    transform: translateX(-100%); transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  }
  .pub-nav ul.open { display: flex; transform: translateX(0); }
  .nav-drawer-header {
    display: flex !important; align-items: center; justify-content: space-between;
    flex-shrink: 0;
    padding: 0.35rem 0 1rem;
    margin-bottom: 0.35rem;
    border-bottom: 1px solid #e8ebe8;
  }
  .nav-drawer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.02em;
  }
  .nav-drawer-sep {
    display: block !important;
    height: 1px; background: #e8ebe8;
    margin: 0.65rem 0; padding: 0 !important;
    min-height: 0;
    overflow: hidden;
    pointer-events: none;
    flex-shrink: 0;
  }
  .nav-drawer-sep.nav-drawer-sep--subtle {
    margin: 0.45rem 0;
    opacity: 0.85;
  }
  .pub-nav ul li { width: 100%; }
  .pub-nav ul > .nav-item-has-dropdown > .nav-dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(46,125,50,0.06);
    border-radius: 10px;
    padding: 0.25rem;
    margin: 0.15rem 0 0.35rem 0.75rem;
    min-width: 0;
    width: calc(100% - 0.75rem);
  }
  .pub-nav ul > .nav-item-has-dropdown.open > .nav-dropdown-menu {
    display: block;
  }
  .pub-nav ul > .nav-item-has-dropdown > .nav-dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
    padding: 0.72rem 0.95rem;
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--text-mid);
  }
  .pub-nav ul > .nav-item-has-dropdown > .nav-dropdown-toggle.active {
    background: rgba(46,125,50,0.14);
    color: var(--primary-dark);
    font-weight: 600;
  }
  .pub-nav ul > .nav-item-has-dropdown > .nav-dropdown-toggle:hover {
    background: rgba(46,125,50,0.12);
    color: var(--primary-dark);
  }
  .nav-dropdown-menu a {
    padding: 0.62rem 0.85rem;
    font-size: 0.9rem;
    border-radius: 8px;
  }
  .pub-nav ul li a {
    padding: 0.72rem 0.95rem;
    border-radius: 12px;
    font-size: 0.94rem;
    font-weight: 500;
    width: 100%;
    white-space: normal;
    line-height: 1.35;
  }
  .pub-nav ul li a:not(.nav-donate-btn):not(.nav-login-btn):not(.nav-register-btn) {
    color: var(--text-mid);
  }
  .pub-nav ul li a:not(.nav-donate-btn):not(.nav-login-btn):not(.nav-register-btn).active {
    background: rgba(46,125,50,0.14);
    color: var(--primary-dark);
    font-weight: 600;
  }
  .pub-nav ul li a.nav-donate-btn,
  .pub-nav ul li a.nav-login-btn,
  .pub-nav ul li a.nav-register-btn {
    justify-content: center;
    gap: 0.55rem;
    font-weight: 600 !important;
  }
  .pub-nav ul li a > i:first-of-type { width: 1.25rem; font-size: 1rem; opacity: 1; }
  .nav-auth-sep { display: none; }
  .nav-cta-mt { margin-top: auto; padding-top: 0.85rem; }
  .nav-donate-btn { animation: none !important; box-shadow: 0 2px 10px rgba(198,40,40,0.2) !important; }
  .nav-register-btn { box-shadow: 0 2px 10px rgba(255,143,0,0.22) !important; margin-top: 0; }
  .nav-login-btn, .nav-register-btn {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0.78rem 1rem !important;
  }
  .nav-login-btn {
    background: #fff !important;
    color: var(--primary-dark) !important;
    border: 2px solid var(--primary) !important;
    box-shadow: none !important;
  }
  .nav-login-btn:hover {
    background: var(--primary) !important;
    color: #fff !important;
  }
  .nav-hamburger { display: flex; }
  .nav-login-btn-mob { display: flex; }
  .hero-slider {
    height: 650px; min-height: 650px; max-height: 650px;
    padding-top: 0;
    width: 100%;
  }
  .hero-slide {
    position: absolute; inset: 0;
    min-height: 100%; height: 100%;
    background-position: center center;
    align-items: flex-end;
    width: 100%;
  }
  .hero-slide.active { z-index: 2; }
  .slide-overlay {
    background: linear-gradient(180deg, rgba(27,94,32,0.55) 0%, rgba(27,94,32,0.78) 55%, rgba(27,94,32,0.92) 100%);
  }
  .hero-content { padding: 2.5rem 0 5rem; max-width: 100%; }
  .hero-badge { font-size: 0.74rem; padding: 0.35rem 0.85rem; margin-bottom: 1rem; }
  .hero-slide h1 { font-size: clamp(1.6rem, 6.5vw, 2.4rem); line-height: 1.25; margin-bottom: 0.9rem; }
  .hero-slide p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; }
  .hero-btns { gap: 0.7rem; }
  .hero-btns .btn { padding: 0.65rem 1.3rem; font-size: 0.88rem; }
  .slider-btn {
    width: 38px; height: 38px; font-size: 0.85rem;
    top: 42%;
  }
  .slider-prev { left: 0.6rem; }
  .slider-next { right: 0.6rem; }
  .slider-dots { bottom: 1.2rem; gap: 0.45rem; }
  .dot { width: 9px; height: 9px; }
  .dot.active { width: 22px; }
  .contact-strip-grid { grid-template-columns: 1fr; gap: 1rem; }
  .section:has(.about-split) { padding: 3rem 0; }
  .services-lead { padding: 2.75rem 0; }
  .initiative-quick-stats { justify-content: center; gap: 1.2rem 1.5rem; }
  .initiative-highlight-box { flex-direction: column; text-align: center; padding: 1.05rem 1rem; }
  .initiative-partner-card { padding: 1.25rem 1.1rem; }
  .initiative-partner-card .btn { width: 100%; justify-content: center; box-sizing: border-box; }
  .section:has(.contact-grid) { padding: 3rem 0; }
  .contact-grid { gap: 1.5rem; }
  .contact-info-card, .contact-form-card { padding: 1.35rem 1.1rem; }
  .contact-info-card h3 { font-size: clamp(1.35rem, 5vw, 1.55rem); }
  .contact-form-card .form-group input,
  .contact-form-card .form-group textarea,
  .contact-form-card .form-group select { font-size: 16px; }
  .contact-map-section { padding: 0 0 3rem; }
  .contact-map-frame {
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 220px;
    max-height: 56vh;
  }
  .cta-band-steps { grid-template-columns: 1fr; max-width: 520px; gap: 1rem; padding: 0 0.15rem; box-sizing: border-box; }
  .grid-3, .grid-2, .blog-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-cta-strip {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.25rem 1.1rem;
  }
  .footer-cta-btn { justify-content: center; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-bottom-links { justify-content: center; }
  .about-split { grid-template-columns: 1fr; gap: 1.75rem; }
  .about-img-wrap img { max-height: 360px; }
  .about-badge-float {
    bottom: 12px;
    right: 12px;
    left: auto;
    padding: 1rem 1.15rem;
    border-radius: 12px;
  }
  .about-badge-float .big { font-size: 1.85rem; }
  .about-badge-float .sm { font-size: 0.72rem; max-width: 8.5rem; line-height: 1.3; margin: 0 auto; display: block; }
  .about-stats-mini { gap: 0.75rem; margin-top: 1.5rem; }
  .about-stats-mini > div { padding: 1rem 0.75rem !important; }
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .about-values-grid > div { padding: 0.85rem 0.5rem !important; }
  .about-split-side-img { max-height: 260px; min-height: 180px; border-radius: 14px; }
  .mv-card { padding: 1.35rem 1.2rem; }
  .mv-card h3 { font-size: 1rem; line-height: 1.35; }
  .page-hero { padding: 4.75rem 1.25rem 2.85rem; }
  .page-hero h1 { font-size: clamp(1.5rem, 7vw, 2.15rem); }
  .page-hero p { font-size: 0.93rem; max-width: 100%; padding: 0 0.15rem; }
  .breadcrumb-pub { flex-wrap: wrap; row-gap: 0.35rem; }
  .about-page .section { padding: 3rem 0; }
  .about-section-head { margin-bottom: clamp(1.75rem, 5vw, 2.25rem); }
  .cta-band { padding: 2.75rem 1.25rem; }
  .cta-band h2 { font-size: clamp(1.45rem, 6.5vw, 1.9rem); line-height: 1.25; }
  .cta-band p { font-size: 0.93rem; margin-bottom: 1.35rem; }
  .cta-btns { flex-direction: column; align-items: stretch; gap: 0.65rem; }
  .cta-btns .btn { justify-content: center; width: 100%; box-sizing: border-box; }
  .timeline { padding-left: 1.5rem; }
  .timeline::before { left: 7px; }
  .tl-item { padding-left: 1.15rem; margin-bottom: 1.65rem; }
  .tl-item::before { left: -21px; }
  .blog-grid { grid-template-columns: 1fr; }
  .founder-info { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 576px) {
  .services-pillar-grid { grid-template-columns: 1fr; gap: 0.85rem; }
}

@media (max-width: 480px) {
  .top-bar { display: none; }
  .pub-nav { top: 0; }
  .hero-slider { height: 600px; min-height: 600px; max-height: 600px; }
  .hero-slide { min-height: 100%; height: 100%; }
  .hero-content { padding: 2rem 0 4.5rem; }
  .hero-badge { font-size: 0.7rem; padding: 0.3rem 0.75rem; margin-bottom: 0.85rem; }
  .hero-slide h1 { font-size: 1.65rem; line-height: 1.22; margin-bottom: 0.75rem; }
  .hero-slide p { font-size: 0.88rem; line-height: 1.55; margin-bottom: 1.25rem; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .hero-btns .btn { justify-content: center; width: 100%; padding: 0.75rem 1rem; font-size: 0.9rem; }
  .slider-btn {
    width: 34px; height: 34px; font-size: 0.8rem;
    background: rgba(0,0,0,0.28); border-color: rgba(255,255,255,0.5);
  }
  .slider-prev { left: 0.4rem; }
  .slider-next { right: 0.4rem; }
  .slider-dots { bottom: 0.9rem; }
  .stats-bar { grid-template-columns: repeat(2,1fr); gap: 0.7rem; padding: 1.2rem; }
  .stat-item .num { font-size: 1.5rem; }
  .about-stats-mini { gap: 0.65rem; }
  .about-stats-mini > div { padding: 0.9rem 0.7rem !important; }
  .contact-info-card, .contact-form-card { padding: 1.15rem 1rem; }
  .contact-item .ico { width: 38px; height: 38px; font-size: 0.92rem; }
  .about-split .btn.btn-primary { width: 100%; justify-content: center; box-sizing: border-box; }
}

@media (max-width: 360px) {
  .hero-slider { height: 500px; min-height: 500px; max-height: 500px; }
  .hero-slide { min-height: 100%; height: 100%; }
  .hero-slide h1 { font-size: 1.45rem; }
  .hero-slide p { font-size: 0.84rem; }
  .slider-btn { width: 30px; height: 30px; font-size: 0.72rem; }
}
@media (max-width: 768px) and (orientation: landscape) {
  .hero-slider { height: 500px; min-height: 500px; max-height: 500px; }
  .hero-slide { min-height: 100%; height: 100%; align-items: center; }
  .hero-content { padding: 1.5rem 0 3.5rem; }
  .hero-slide h1 { font-size: 1.6rem; margin-bottom: 0.6rem; }
  .hero-slide p { font-size: 0.85rem; margin-bottom: 1rem; -webkit-line-clamp: 2; line-clamp: 2; }
  .hero-btns .btn { padding: 0.55rem 1.1rem; font-size: 0.82rem; }
  .slider-dots { bottom: 0.7rem; }
}

/* ---- Events & Programs (public) ---- */
.ep-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}
.ep-section-past { margin-top: 2.75rem; }
.ep-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}
.ep-event-card--past { opacity: 0.92; }
.ep-event-card--past img { filter: saturate(0.88); }
.blog-date--muted { color: var(--text-light); font-size: 0.78rem; }
.ep-venue {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.ep-loc-detail {
  display: block;
  font-weight: 400;
  color: var(--text-mid);
  font-size: 0.82rem;
  margin-top: 0.2rem;
}
.ep-desc {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-top: 0.5rem;
}
.ep-empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--text-light);
  background: var(--bg-light);
  border-radius: var(--radius);
  max-width: 520px;
  margin: 0 auto;
}
.ep-empty-state i { font-size: 2.25rem; margin-bottom: 1rem; opacity: 0.5; color: var(--primary); }
.ep-empty-state h3 { color: var(--text-dark); font-size: 1.15rem; margin-bottom: 0.5rem; }
.ep-empty-state code { font-size: 0.78rem; }
.ep-program-list { display: flex; flex-direction: column; gap: 2rem; max-width: 800px; margin: 0 auto; }
.ep-program-block {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(0,0,0,0.06);
}
.ep-program-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.ep-program-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin: 0;
  color: var(--text-dark);
  flex: 1;
  min-width: 200px;
}
.ep-download { white-space: nowrap; align-self: flex-start; }
.ep-file-size { font-weight: 400; opacity: 0.9; font-size: 0.85rem; }
.ep-program-summary { color: var(--text-mid); line-height: 1.7; margin-bottom: 0.75rem; }
.ep-program-body {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}
@media (max-width: 576px) {
  .ep-program-head { flex-direction: column; }
  .ep-download { width: 100%; text-align: center; justify-content: center; }
}
