/* ============================================================
   Suwamansala - Cancer Care Welfare Foundation
   Main Stylesheet
   ============================================================ */

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

/* ============================================================
   TOP STRIP  – slim dark contact bar above the navbar
   ============================================================ */
.top-strip {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: var(--green-dark);
  height: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.top-strip-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.ts-item {
  display: flex; align-items: center; gap: .55rem;
  padding: 0 1.4rem;
  border-right: 1px solid rgba(255,255,255,.15);
  white-space: nowrap;
}
.ts-item:last-child { border-right: none; }
.ts-item i {
  font-size: .75rem; color: var(--yellow); flex-shrink: 0;
}
.ts-item a, .ts-item span {
  font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.85);
  transition: color .2s;
}
.ts-item a:hover { color: var(--yellow); }

@media (max-width: 1024px) {
  .ts-item { padding: 0 1rem; }
}
@media (max-width: 768px) {
  .top-strip { display: none; }
}

/* ---- CSS Variables ---- */
:root {
  --green-dark:   #0f5132;
  --green-mid:    #157347;
  --green-light:  #198754;
  --green-pale:   #d1e7dd;
  --yellow:       #ffc107;
  --yellow-dark:  #e0a800;
  --white:        #ffffff;
  --off-white:    #f8faf9;
  --text-dark:    #1a1a2e;
  --text-mid:     #3d4a5c;
  --text-light:   #6c757d;
  --border:       #e2e8f0;
  --shadow-sm:    0 2px 12px rgba(0,0,0,.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.18);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;
  --transition:   all .35s cubic-bezier(.4,0,.2,1);
  --font-main:    'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-main); }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--green-light); border-radius: 3px; }

/* ============================================================
   PAGE LOADER
   ============================================================ */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--green-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--white); margin-bottom: 1.5rem; letter-spacing: 1px;
}
.loader-logo span { color: var(--yellow); }
.loader-bar {
  width: 200px; height: 3px; background: rgba(255,255,255,.2); border-radius: 2px; overflow: hidden;
}
.loader-bar-inner {
  height: 100%; background: var(--yellow);
  animation: loaderFill .7s ease forwards;
}
@keyframes loaderFill { from { width: 0; } to { width: 100%; } }

/* ---- Inner page fade-in ---- */
body { opacity: 0; transition: opacity .4s ease; }
body.page-ready { opacity: 1; }
/* Home page: show immediately (loader handles it) */
body:has(#page-loader) { opacity: 1; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed; top: 40px; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  transition: var(--transition);
}
/* On mobile – floating sticky navbar with side margins */
@media (max-width: 768px) {
  .navbar {
    position: fixed !important;
    top: .6rem;
    left: .75rem;
    right: .75rem;
    border-radius: 14px;
    padding: .7rem 0;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    z-index: 1000;
  }
}
.navbar.scrolled {
  padding: .8rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}
.nav-container {
  max-width: 1300px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
}
.nav-logo-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--yellow); font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(15,81,50,.25);
}
.nav-logo-img {
  height: 46px; width: auto;
  flex-shrink: 0;
  display: block;
  border-radius: 8px;
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1.2;
  background: var(--green-dark);
  padding: .4rem 1rem;
  border-radius: 50px;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700; color: var(--white);
}
.nav-logo-sub { font-size: .62rem; color: var(--yellow); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a {
  color: var(--text-mid);
  font-size: .875rem; font-weight: 500;
  padding: .5rem .9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--green-mid); border-radius: 1px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--green-dark); }
.nav-links a:hover::after, .nav-links a.active::after { left: .9rem; right: .9rem; }

.nav-donate-btn {
  background: var(--yellow);
  color: var(--green-dark) !important;
  font-weight: 700 !important;
  padding: .6rem 1.4rem !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 16px rgba(255,193,7,.4);
}
.nav-donate-btn::after { display: none !important; }
.nav-donate-btn:hover { background: var(--yellow-dark) !important; transform: translateY(-2px); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; flex-shrink: 0; }
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--green-dark); border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative; height: 100vh; min-height: 640px; overflow: hidden;
  /* sit below top-strip (40px) + navbar (~66px) on desktop */
  margin-top: 106px;
}
@media (max-width: 768px) {
  .hero-slider { margin-top: 76px; }
}
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}
.slide.active .slide-img { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,40,20,.82) 45%, rgba(10,40,20,.35) 100%);
}
.slide-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center;
  padding: 0 2rem;
}
.slide-inner {
  max-width: 700px; margin-left: 8%;
  opacity: 0; transform: translateY(40px);
  transition: opacity .9s ease .4s, transform .9s ease .4s;
}
.slide.active .slide-inner { opacity: 1; transform: translateY(0); }

.slide-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,193,7,.2);
  border: 1px solid rgba(255,193,7,.5);
  color: var(--yellow); font-size: .78rem;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.25rem;
}
.slide-tag i { font-size: .7rem; }
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700; color: var(--white);
  line-height: 1.2; margin-bottom: 1.25rem;
}
.slide-title span { color: var(--yellow); }
.slide-desc {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.85);
  max-width: 540px; margin-bottom: 2rem;
}
.slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--yellow);
  color: var(--green-dark);
  font-weight: 700; font-size: .95rem;
  padding: .875rem 2rem; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(255,193,7,.45);
  transition: var(--transition);
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,193,7,.5); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white); font-weight: 600; font-size: .95rem;
  padding: .875rem 2rem; border-radius: 50px;
  transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn-green {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--green-light); color: var(--white);
  font-weight: 700; font-size: .95rem;
  padding: .875rem 2rem; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(25,135,84,.35);
  transition: var(--transition);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-3px); }

.btn-outline-green {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 2px solid var(--green-light);
  color: var(--green-light); font-weight: 600; font-size: .95rem;
  padding: .875rem 2rem; border-radius: 50px;
  transition: var(--transition);
}
.btn-outline-green:hover { background: var(--green-light); color: var(--white); }

/* Slider Controls */
.slider-controls {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; align-items: center; gap: 1rem;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer; transition: var(--transition);
}
.slider-dot.active { background: var(--yellow); width: 28px; border-radius: 5px; }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem;
  cursor: pointer; transition: var(--transition);
}
.slider-arrow:hover { background: var(--yellow); color: var(--green-dark); border-color: var(--yellow); }
.slider-arrow.prev { left: 2rem; }
.slider-arrow.next { right: 2rem; }

/* ============================================================
   HERO TICKER – yellow bar pinned to slider bottom
   ============================================================ */
.hero-ticker {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 10;
  background: var(--yellow);
  overflow: hidden;
  padding: .85rem 0;
}
.hero-ticker-track {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap;
  animation: heroTickerScroll 28s linear infinite;
  width: max-content;
}
.hero-ticker:hover .hero-ticker-track { animation-play-state: paused; }
.ht-item {
  display: inline-flex; align-items: center; gap: .7rem;
  color: var(--green-dark);
  font-size: .78rem; font-weight: 800;
  letter-spacing: 1.8px; text-transform: uppercase;
  padding: 0 2rem;
  flex-shrink: 0;
}
.ht-dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-dark);
  opacity: .5; flex-shrink: 0;
}
@keyframes heroTickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; right: 3rem; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.scroll-indicator span {
  font-size: .7rem; color: rgba(255,255,255,.6);
  letter-spacing: 2px; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 50px; background: rgba(255,255,255,.3);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; right: 0;
  height: 100%; background: var(--yellow);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine { to { top: 100%; } }

/* ============================================================
   SECTIONS – GENERAL
   ============================================================ */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }

.section-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--green-light); font-size: .78rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-tag::before {
  content: ''; display: block; width: 28px; height: 2px; background: var(--green-light);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700; color: var(--text-dark); line-height: 1.25;
  margin-bottom: 1rem;
}
.section-title span { color: var(--green-light); }
.section-title .accent { color: var(--yellow); }
.section-subtitle {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 580px; line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .section-tag { justify-content: center; }
.text-center .section-tag::before { display: none; }
.text-center .section-tag::after {
  content: ''; display: block; width: 28px; height: 2px; background: var(--green-light);
}

/* ============================================================
   IMPACT TICKER
   ============================================================ */
.impact-ticker {
  background: var(--green-dark); padding: .85rem 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 3rem;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.85); font-size: .82rem; font-weight: 500;
  flex-shrink: 0;
}
.ticker-item i { color: var(--yellow); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-section { background: var(--off-white); }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.story-img-wrap {
  position: relative;
}
.story-img-main {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.story-img-card {
  position: absolute; bottom: -2rem; right: -2rem;
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 1rem;
}
.story-img-card-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--green-dark); flex-shrink: 0;
}
.story-img-card-text strong {
  display: block; font-size: 1.4rem; font-weight: 800; color: var(--green-dark);
}
.story-img-card-text span { font-size: .78rem; color: var(--text-light); }

.story-badge {
  position: absolute; top: 1.5rem; left: -1.5rem;
  background: var(--yellow); color: var(--green-dark);
  font-weight: 800; font-size: .75rem;
  padding: .6rem 1rem; border-radius: var(--radius-sm);
  text-align: center; box-shadow: var(--shadow-sm);
}
.story-badge strong { display: block; font-size: 1.6rem; }

.story-text blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem; font-style: italic; color: var(--green-dark);
  border-left: 4px solid var(--yellow);
  padding: .75rem 1.5rem; margin: 1.5rem 0;
  background: var(--green-pale); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.story-text p { color: var(--text-mid); margin-bottom: 1rem; }
.story-text .btn-wrap { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card-img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img { transform: scale(1.07); }
.service-card-img-wrap { overflow: hidden; }
.service-card-body { padding: 1.5rem; }
.service-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--green-dark);
  margin-bottom: 1rem;
}
.service-card-title {
  font-weight: 700; font-size: 1.05rem; color: var(--text-dark);
  margin-bottom: .5rem;
}
.service-card-desc { font-size: .875rem; color: var(--text-light); line-height: 1.7; }
.service-card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--green-light); font-weight: 600; font-size: .85rem;
  margin-top: 1rem; transition: var(--transition);
}
.service-card-link:hover { gap: .7rem; color: var(--green-dark); }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--green-dark); position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1600&q=80') center/cover;
  opacity: .08;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  position: relative;
}
.stat-item { text-align: center; padding: 2rem 1rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--yellow);
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,.75); font-size: .9rem; margin-top: .5rem; }
.stat-divider {
  width: 1px; background: rgba(255,255,255,.15);
  margin: auto; display: none;
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-collage { position: relative; height: 560px; }
.about-img-1, .about-img-2, .about-img-3 {
  position: absolute; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.about-img-1 { width: 68%; top: 0; left: 0; }
.about-img-1 img { width: 100%; height: 340px; object-fit: cover; }
.about-img-2 { width: 44%; bottom: 0; right: 0; }
.about-img-2 img { width: 100%; height: 250px; object-fit: cover; }
.about-img-3 { width: 36%; bottom: 2rem; left: 0; }
.about-img-3 img { width: 100%; height: 180px; object-fit: cover; }
.about-founded {
  position: absolute; top: 50%; right: -1rem;
  background: var(--yellow); color: var(--green-dark);
  font-weight: 800; padding: 1rem 1.25rem;
  border-radius: var(--radius-md); text-align: center;
  box-shadow: var(--shadow-md);
}
.about-founded strong { display: block; font-size: 2rem; line-height: 1; }
.about-founded span { font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.75rem 0; }
.about-feature {
  display: flex; align-items: center; gap: .85rem;
  padding: 1rem 1.1rem; background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-light);
}
.about-feature i { color: var(--green-light); font-size: 1.2rem; flex-shrink: 0; }
.about-feature div strong { display: block; font-size: .92rem; color: var(--text-dark); white-space: nowrap; }
.about-feature div span { font-size: .8rem; color: var(--text-light); display: block; margin-top: .15rem; }

@media (max-width: 768px) {
  .about-features { grid-template-columns: 1fr; gap: .75rem; }
  .about-feature { padding: .9rem 1.1rem; }
  .about-feature div strong { font-size: 1rem; }
  .about-feature div span { font-size: .875rem; }
}

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-preview { background: var(--off-white); }
.gallery-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem; margin-top: 3rem;
}
.gallery-item {
  overflow: hidden; border-radius: var(--radius-sm);
  cursor: pointer; position: relative;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
  min-height: 180px;
}
.gallery-item:first-child img { min-height: 100%; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(15,81,50,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { color: var(--white); font-size: 2rem; }
.gallery-cta { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.team-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-pale); }
.team-photo-wrap {
  width: 100px; height: 100px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 1.25rem;
  border: 4px solid var(--green-pale);
  transition: var(--transition);
}
.team-card:hover .team-photo-wrap { border-color: var(--yellow); }
.team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: .25rem; }
.team-role { font-size: .8rem; color: var(--green-light); font-weight: 600; margin-bottom: .75rem; }
.team-bio { font-size: .82rem; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   DONATION CTA
   ============================================================ */
.donation-cta {
  background: var(--green-dark); position: relative; overflow: hidden; text-align: center;
}
.donation-cta::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1532938911079-1b06ac7ceec7?w=1600&q=80') center/cover;
  opacity: .1;
}
.donation-cta-inner { position: relative; max-width: 800px; margin: 0 auto; }
.donation-cta-tag {
  display: inline-block;
  background: rgba(255,193,7,.2); border: 1px solid rgba(255,193,7,.4);
  color: var(--yellow); font-size: .75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: .4rem 1.2rem; border-radius: 50px; margin-bottom: 1.25rem;
}
.donation-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white); font-weight: 700; line-height: 1.25; margin-bottom: 1.25rem;
}
.donation-cta p {
  font-size: 1.05rem; color: rgba(255,255,255,.8); margin-bottom: 2.5rem;
}
.donation-amounts { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.amount-btn {
  padding: .7rem 1.6rem; border-radius: 50px;
  border: 2px solid rgba(255,255,255,.35);
  color: var(--white); font-weight: 600; font-size: .9rem;
  transition: var(--transition);
}
.amount-btn:hover, .amount-btn.active {
  background: var(--yellow); border-color: var(--yellow); color: var(--green-dark);
}
.donation-cta .btn-wrap { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   VOLUNTEER SECTION
   ============================================================ */
.volunteer-section { background: var(--off-white); }
.volunteer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.volunteer-img {
  width: 100%; height: 440px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.volunteer-text p { color: var(--text-mid); margin-bottom: 1.5rem; }
.volunteer-list { margin: 1.5rem 0 2rem; }
.volunteer-list li {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem 0; border-bottom: 1px solid var(--border);
  color: var(--text-mid); font-size: .92rem;
}
.volunteer-list li:last-child { border-bottom: none; }
.volunteer-list li i { color: var(--green-light); font-size: .9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #060f0a; color: rgba(255,255,255,.7); }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand-logo {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem;
}
.footer-logo-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--yellow); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--green-dark); font-weight: 800;
}
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.footer-logo-main { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.footer-logo-sub { font-size: .6rem; color: var(--yellow); text-transform: uppercase; letter-spacing: .5px; }
.footer-brand p { font-size: .875rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--green-dark); }

.footer-col h4 { color: var(--white); font-size: .95rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .875rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--yellow); padding-left: 4px; }

.footer-contact li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .875rem; margin-bottom: .9rem;
}
.footer-contact li i { color: var(--yellow); font-size: .9rem; margin-top: .25rem; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0; text-align: center; font-size: .82rem;
}
.footer-bottom span { color: var(--yellow); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-donate {
  position: fixed; bottom: 6rem; right: 1.5rem; z-index: 500;
  background: var(--yellow); color: var(--green-dark);
  font-weight: 700; font-size: .85rem;
  padding: .85rem 1.5rem; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(255,193,7,.5);
  transition: var(--transition);
  display: flex; align-items: center; gap: .5rem;
}
.float-donate:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(255,193,7,.6); }

.scroll-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); font-size: 1rem;
  opacity: 0; transform: translateY(10px);
  transition: var(--transition); pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { background: var(--green-light); }

/* WhatsApp */
.float-whatsapp {
  position: fixed; bottom: 10.5rem; right: 1.5rem; z-index: 500;
  width: 48px; height: 48px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--transition);
}
.float-whatsapp:hover { transform: scale(1.1); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-aos] {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="zoom-in"]    { transform: scale(.92); }
[data-aos].aos-animate  { opacity: 1 !important; transform: none !important; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  height: 420px; position: relative;
  display: flex; align-items: flex-end;
  padding-bottom: 3rem;
  /* sit below top-bar (65px) + navbar (~68px) */
  margin-top: 106px;
}
@media (max-width: 768px) {
  .page-hero { margin-top: 76px; }
}
.page-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,40,20,.9) 0%, rgba(10,40,20,.5) 60%, transparent 100%);
}
.page-hero-content { position: relative; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white); font-weight: 700; margin-bottom: .5rem;
}
.breadcrumb {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.75); font-size: .875rem; transition: var(--transition); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,.4); font-size: .75rem; }
.breadcrumb .current { color: var(--yellow); font-size: .875rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.mission-card {
  padding: 2.5rem; border-radius: var(--radius-md);
  background: var(--white); box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: var(--transition);
}
.mission-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-pale); }
.mission-card-icon {
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  background: var(--green-pale); display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--green-dark); margin-bottom: 1.25rem;
}
.mission-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .75rem; color: var(--text-dark); }
.mission-card p { color: var(--text-mid); font-size: .9rem; line-height: 1.8; }

.timeline { position: relative; margin-top: 3rem; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--green-pale); transform: translateX(-50%);
}
.timeline-item {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem;
  align-items: start; margin-bottom: 3rem;
}
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; grid-row: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-date  { grid-column: 3; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; grid-row: 1; text-align: left; }
.timeline-item:nth-child(even) .timeline-date  { grid-column: 1; grid-row: 1; text-align: right; }
.timeline-dot {
  grid-column: 2; width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-light); border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .9rem; flex-shrink: 0;
}
.timeline-content {
  padding: 1.5rem; background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.timeline-content h4 { font-weight: 700; margin-bottom: .5rem; color: var(--text-dark); }
.timeline-content p { font-size: .875rem; color: var(--text-light); }
.timeline-date {
  font-size: 2rem; font-weight: 800; color: var(--green-pale);
  font-family: var(--font-display); line-height: 1; padding-top: 1rem;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-list { display: grid; gap: 4rem; margin-top: 2rem; }
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-row-img {
  width: 100%; height: 400px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.service-row-icon {
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  background: var(--green-pale); display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--green-dark); margin-bottom: 1.25rem;
}
.service-row h3 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 1rem; color: var(--text-dark); }
.service-row p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
.service-row ul { margin: 1rem 0; }
.service-row ul li {
  display: flex; align-items: center; gap: .6rem;
  color: var(--text-mid); font-size: .9rem; padding: .4rem 0;
}
.service-row ul li i { color: var(--green-light); font-size: .85rem; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters { display: flex; justify-content: center; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .5rem 1.4rem; border-radius: 50px;
  border: 2px solid var(--border);
  color: var(--text-light); font-size: .875rem; font-weight: 500;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-light); border-color: var(--green-light); color: var(--white);
}
.gallery-masonry {
  columns: 3; gap: 1rem;
}
.gallery-masonry .gallery-item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius-sm); }
.gallery-masonry .gallery-item img { width: 100%; height: auto; display: block; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.95);
  display: none; align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer; transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; transition: var(--transition);
}
.lightbox-arrow:hover { background: var(--yellow); color: var(--green-dark); }
.lightbox-arrow.prev { left: 1.5rem; }
.lightbox-arrow.next { right: 1.5rem; }
.lightbox-caption {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.75); font-size: .875rem; text-align: center;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
.contact-form {
  background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.contact-form h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.75rem; color: var(--text-dark); }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: .85rem; font-weight: 600; color: var(--text-mid); margin-bottom: .4rem; }
input, textarea, select {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-main); font-size: .9rem; color: var(--text-dark);
  transition: var(--transition); background: var(--off-white);
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--green-light);
  background: var(--white); box-shadow: 0 0 0 4px rgba(25,135,84,.1);
}
textarea { height: 140px; resize: vertical; }
.form-submit { width: 100%; padding: 1rem; margin-top: .5rem; }
.form-success {
  display: none; text-align: center; padding: 1.5rem;
  background: var(--green-pale); border-radius: var(--radius-sm);
  color: var(--green-dark); font-weight: 600; margin-top: 1rem;
}

.contact-info-cards { display: grid; gap: 1rem; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem; background: var(--white);
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--green-pale); box-shadow: var(--shadow-md); }
.contact-info-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--green-pale); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--green-dark); flex-shrink: 0;
}
.contact-info-card h4 { font-size: .9rem; font-weight: 700; color: var(--text-dark); margin-bottom: .25rem; }
.contact-info-card p { font-size: .85rem; color: var(--text-light); line-height: 1.6; }
.contact-info-card a { color: var(--green-light); }

.map-container { margin-top: 3rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-container iframe { width: 100%; height: 400px; border: none; display: block; }

/* ============================================================
   CCWF SERVICE CARDS – image + category pill tag
   ============================================================ */
.service-card .service-card-img-wrap { position: relative; }
.service-card-tag {
  position: absolute; bottom: -1px; left: 1.25rem;
  background: var(--yellow); color: var(--green-dark);
  font-size: .78rem; font-weight: 700;
  padding: .35rem 1.1rem; border-radius: 50px 50px 0 0;
  letter-spacing: .5px;
}

/* Story highlight bar */
.story-highlight {
  background: var(--off-white);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem; margin: 1.5rem 0;
  font-size: .95rem; color: var(--text-mid); line-height: 1.7;
}
.story-highlight .hi { color: var(--yellow-dark); font-weight: 800; }
.story-highlight .hi-green { color: var(--green-dark); font-weight: 800; }

/* ============================================================
   VOLUNTEER TWO-CARD SECTION
   ============================================================ */
.vol-cards-section { background: var(--off-white); }
.vol-cards-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3.5rem;
}
.vol-card {
  border-radius: var(--radius-lg); padding: 2.75rem;
  position: relative; overflow: hidden;
}
.vol-card-green {
  background: var(--green-dark);
}
.vol-card-yellow {
  background: #f5c400;
}
/* paint-splash deco on yellow card */
.vol-card-yellow::before {
  content: '';
  position: absolute; bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(15,81,50,.12);
  border-radius: 50%;
}
.vol-card-yellow::after {
  content: '';
  position: absolute; bottom: 20px; right: 30px;
  width: 120px; height: 120px;
  background: rgba(15,81,50,.08);
  border-radius: 50%;
}
.vol-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700; line-height: 1.25;
  margin-bottom: .5rem;
}
.vol-card-green .vol-card-title { color: var(--white); }
.vol-card-yellow .vol-card-title { color: var(--green-dark); }
.vol-card-subtitle {
  font-size: .85rem; font-style: italic; margin-bottom: 1.5rem;
}
.vol-card-green .vol-card-subtitle { color: rgba(255,255,255,.6); }
.vol-card-yellow .vol-card-subtitle { color: rgba(15,81,50,.65); }
.vol-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.vol-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .875rem; line-height: 1.5;
}
.vol-card-green .vol-list li { color: rgba(255,255,255,.85); }
.vol-card-yellow .vol-list li { color: var(--green-dark); }
.vol-list li i { flex-shrink: 0; margin-top: .2rem; font-size: .9rem; }
.vol-card-green .vol-list li i { color: var(--yellow); }
.vol-card-yellow .vol-list li i { color: var(--green-dark); }
.vol-card-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 50px;
  font-weight: 700; font-size: .9rem;
  transition: var(--transition);
}
.vol-card-green .vol-card-btn {
  background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.35); color: var(--white);
}
.vol-card-green .vol-card-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--green-dark); }
.vol-card-yellow .vol-card-btn {
  background: var(--green-dark); border: 2px solid var(--green-dark); color: var(--white);
}
.vol-card-yellow .vol-card-btn:hover { background: var(--green-mid); border-color: var(--green-mid); }

@media (max-width: 768px) {
  .vol-cards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-masonry { columns: 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .story-grid, .about-grid, .volunteer-grid, .contact-grid { grid-template-columns: 1fr; }
  .story-img-card { right: 0; }
  .about-img-collage { height: 380px; }
  .gallery-grid-home { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-home .gallery-item:first-child { grid-column: span 2; }
  .timeline::before { left: 1.5rem; }
  .timeline-item { grid-template-columns: 3rem 1fr; }
  .timeline-item .timeline-dot { grid-column: 1; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; text-align: left; }
  .timeline-item:nth-child(odd) .timeline-date,
  .timeline-item:nth-child(even) .timeline-date { display: none; }
  .service-row { grid-template-columns: 1fr; }
  .service-row.reverse { direction: ltr; }
  .mission-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: .65rem 0; }

  /* ---- Mobile Menu Overlay ---- */
  .nav-links {
    display: flex;
    position: fixed;
    top: 70px; left: .75rem; right: .75rem; bottom: 1rem;
    background: #0a2414;
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.5rem 0 2rem;
    gap: 0;
    overflow-y: auto;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform .35s cubic-bezier(.4,0,.2,1), visibility .35s;
    z-index: 999;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }

  /* Each nav link */
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-links a {
    display: flex; align-items: center; gap: 1rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: rgba(255,255,255,.9) !important;
    padding: 1.1rem 2rem;
    width: 100%;
    border-radius: 0;
    letter-spacing: .3px;
    transition: background .2s, color .2s, padding-left .2s;
  }
  .nav-links a::before {
    content: '';
    display: block;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--yellow);
    flex-shrink: 0;
    opacity: 0;
    transition: opacity .2s;
  }
  .nav-links a::after { display: none; }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--yellow) !important;
    background: rgba(255,255,255,.05);
    padding-left: 2.5rem;
  }
  .nav-links a:hover::before,
  .nav-links a.active::before { opacity: 1; }

  /* Donate button inside mobile menu */
  .nav-donate-btn {
    margin: 1.5rem 2rem 0 !important;
    width: calc(100% - 4rem) !important;
    justify-content: center;
    font-size: 1.1rem !important;
    padding: 1rem 1.4rem !important;
    border-radius: 50px !important;
    text-align: center;
  }

  .nav-hamburger { display: flex; margin-left: 1rem; }
  .nav-container { padding: 0 1.25rem; }
  /* Keep white bg on mobile even when scrolled */
  .navbar.scrolled {
    background: #ffffff !important;
    left: .75rem; right: .75rem;
    border-radius: 14px;
  }
  .section { padding: 4rem 0; }
  .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-card-img { height: 220px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .slider-arrow { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
  .float-donate { font-size: .75rem; padding: .75rem 1.1rem; }
}

@media (max-width: 480px) {
  .hero-slider { min-height: 560px; }
  .slide-inner { margin-left: 0; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid-home { grid-template-columns: 1fr; }
  .gallery-grid-home .gallery-item:first-child { grid-column: span 1; }
  .gallery-masonry { columns: 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-img-collage { height: 280px; }
  .about-img-3 { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
