@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --white: #FFFFFF;
  --pink-light: #FADADD;
  --pink-mid: #f9c0c8;
  --pink-main: #FF4FA3;
  --pink-dark: #e0357f;
  --pink-pale: #fff0f4;
  --black: #000000;
  --gray: #555555;
  --gray-light: #888888;
  --shadow: 0 4px 24px rgba(255, 79, 163, 0.10);
  --shadow-hover: 0 8px 36px rgba(255, 79, 163, 0.22);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p { font-size: 1rem; font-weight: 500; color: var(--gray); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--pink-main);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { background: var(--pink-dark); transform: scale(1.04); box-shadow: 0 6px 24px rgba(255,79,163,.35); }
.btn-outline { background: transparent; border: 2px solid var(--pink-main); color: var(--pink-main); }
.btn-outline:hover { background: var(--pink-main); color: #fff; }
.btn-white { background: #fff; color: var(--pink-main); }
.btn-white:hover { background: var(--pink-light); color: var(--pink-dark); transform: scale(1.04); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(255,79,163,0.08);
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 48px; width: 48px; object-fit: contain; border-radius: 8px; }
.nav-logo-text { font-size: 1.3rem; font-weight: 900; color: var(--black); letter-spacing: -0.5px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  color: var(--black);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--pink-main); background: var(--pink-pale); }
.nav-donate { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 1001;
}
.hamburger span { width: 24px; height: 2.5px; background: var(--black); border-radius: 3px; transition: var(--transition); display: block; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: #fff;
  padding: 20px 5% 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 998;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--pink-light);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  font-size: 1rem;
}
.mobile-menu a:hover { background: var(--pink-pale); color: var(--pink-main); }
.mobile-menu .btn { text-align: center; justify-content: center; margin-top: 8px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 5% 80px;
  position: relative;
  overflow: hidden;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: blur(4px);
  transform: scale(1.04);
  transition: opacity 1.2s ease;
}
.hero-slideshow .slide.active {
  opacity: 1;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(20,0,10,0.74) 50%, rgba(255,79,163,0.45) 100%);
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-text { animation: fadeInLeft 0.9s ease both; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,79,163,0.22);
  border: 1px solid rgba(255,79,163,0.55);
  color: #fff;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.hero-title { margin-bottom: 18px; color: #fff; }
.hero-title span { color: var(--pink-main); }
.hero-subtitle { margin-bottom: 32px; font-size: 1.05rem; color: rgba(255,255,255,0.88); }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { animation: fadeInRight 0.9s ease 0.2s both; }
.hero-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(255,79,163,0.12);
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}
.hero-stat {
  background: var(--pink-pale);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
}
.hero-stat-num { font-size: 1.5rem; font-weight: 900; color: var(--pink-main); }
.hero-stat-label { font-size: 0.78rem; font-weight: 600; color: var(--gray); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1607748862156-7c548e7e98f4?w=1600&q=80') center/cover no-repeat;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(253,218,221,0.85) 60%, rgba(255,79,163,0.2) 100%);
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-pale);
  border: 1px solid var(--pink-mid);
  color: var(--pink-dark);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ===== CIVIC PAGE HERO ===== */
.page-hero-civic {
  background-image: url('muswitgh pics (2).jpeg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
/* ===== GALLERY PAGE HERO ===== */
.page-hero-gallery {
  background-image: url('muswitgh pics (1).jpeg');
  background-size: cover;
  background-position: center 20%;
}
/* ===== CONTACT PAGE HERO ===== */
.page-hero-contact {
  background-image: url('muswitgh pics (1).jpeg');
}
/* ===== ABOUT PAGE HERO ===== */
.page-hero-about {
  background-image: url('muswitgh pics (18).jpeg');
}

/* ===== SECTION BASE ===== */
.section { padding: 80px 5%; }
.section-pink {
  position: relative;
  overflow: hidden;
}
.section-pink::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?w=1600&q=60') center/cover no-repeat;
  opacity: 0.06;
}
.section-pink-solid { background: linear-gradient(135deg, var(--pink-pale) 0%, var(--pink-light) 100%); }
.section-pink-solid.section-pink::before { display: none; }
.section-pink { background: linear-gradient(135deg, var(--pink-pale) 0%, var(--pink-light) 100%); }
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-pale);
  color: var(--pink-dark);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
  border: 1px solid var(--pink-mid);
}
.section-header h2 { margin-bottom: 14px; }
.container { max-width: 1200px; margin: 0 auto; }

/* ===== WHO WE ARE ===== */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.who-image-wrap { position: relative; }
.who-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-mid));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.who-image-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.section-bg-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.who-float {
  position: absolute;
  bottom: -16px; right: -16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid var(--pink-light);
}
.who-float i { color: var(--pink-main); font-size: 1.3rem; }
.who-text .section-tag { justify-content: flex-start; }
.who-text h2 { margin-bottom: 18px; }
.who-text p { margin-bottom: 20px; }

/* ===== IMPACT GRID ===== */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.impact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--pink-light);
}
.impact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.impact-icon { font-size: 2rem; margin-bottom: 10px; color: var(--pink-main); }
.impact-icon i { font-size: 2rem; color: var(--pink-main); }
.impact-num { font-size: 2.4rem; font-weight: 900; color: var(--pink-main); line-height: 1; margin-bottom: 6px; }
.impact-label { font-weight: 600; color: var(--gray); font-size: 0.9rem; }

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--pink-light);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-main), var(--pink-dark));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 52px; height: 52px;
  background: var(--pink-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: var(--transition);
  color: var(--pink-main);
}
.card-icon i { font-size: 1.3rem; color: var(--pink-main); }
.card:hover .card-icon { background: var(--pink-main); }
.card:hover .card-icon i { color: #fff; }
.card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.card p { font-size: 0.9rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-light);
  position: relative;
}
.testimonial-quote {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--pink-main);
  opacity: 0.25;
  position: absolute;
  top: 14px; left: 22px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 0.97rem;
  font-style: italic;
  margin-bottom: 22px;
  margin-top: 18px;
  color: var(--gray);
  line-height: 1.8;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--pink-main), var(--pink-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; }
.testimonial-role { font-size: 0.82rem; color: var(--gray-light); }

/* ===== DONATION CTA ===== */
.donation-section {
  position: relative;
  padding: 90px 5%;
  text-align: center;
  overflow: hidden;
  background: url('muswitgh pics (40).jpeg') center/cover no-repeat;
}
.donation-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,79,163,0.9) 0%, rgba(224,53,127,0.95) 100%);
}
.donation-section > * { position: relative; z-index: 1; }
.donation-section h2 { color: #fff; margin-bottom: 14px; }
.donation-section p { color: rgba(255,255,255,0.88); margin-bottom: 32px; font-size: 1.05rem; }
.donation-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== PARTNERS CAROUSEL ===== */
.partners-section {
  padding: 60px 0;
  background: var(--pink-pale);
  overflow: hidden;
}
.partners-header { text-align: center; padding: 0 5%; margin-bottom: 36px; }
.partners-header h2 { margin-bottom: 8px; }
.partners-header p { max-width: 560px; margin: 0 auto; }
.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: carousel-scroll 28s linear infinite;
  padding: 10px 0;
}
.carousel-wrapper:hover .carousel-track { animation-play-state: paused; }
.partner-logo {
  padding: 8px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.partner-logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
}
.partner-logo:hover { filter: grayscale(0); transform: scale(1.05); box-shadow: var(--shadow-hover); }
@keyframes carousel-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }

  
}

/* ===== FOOTER ===== */
.footer {
  background: #0d0d0d;
  color: #fff;
  padding: 64px 5% 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  max-width: 1200px;
  margin: 0 auto 44px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand-logo img { height: 48px; width: 48px; object-fit: contain; border-radius: 8px; }
.footer-logo-text { font-size: 1.3rem; font-weight: 900; color: #fff; }
.footer-logo-text span { color: var(--pink-main); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.footer-col h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 14px; color: #fff; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); margin-bottom: 9px; font-size: 0.9rem; transition: var(--transition); }
.footer-col a:hover { color: var(--pink-main); padding-left: 4px; }
.footer-socials { display: flex; gap: 8px; margin-top: 18px; }
.footer-social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.footer-social-btn:hover { background: var(--pink-main); color: #fff; transform: scale(1.1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== ABOUT VALUES ===== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-light);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.value-card-icon { font-size: 1.5rem; margin-bottom: 12px; color: var(--pink-main); }
.value-card-icon i { font-size: 1.5rem; color: var(--pink-main); }
.value-card h3 { margin-bottom: 8px; font-size: 1.02rem; }

/* ===== TIMELINE ===== */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 10px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--pink-main), var(--pink-light));
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 18px;
  margin-bottom: 36px;
  align-items: center;
}
.timeline-year {
  width: 58px; height: 58px;
  background: var(--pink-main);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  text-align: center;
  z-index: 1;
  box-shadow: 0 0 0 5px var(--pink-pale);
  justify-self: center;
}
.timeline-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-light);
}
.timeline-content h4 { font-size: 0.95rem; margin-bottom: 5px; }
.timeline-content p { font-size: 0.87rem; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--pink-light);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--pink-pale), var(--pink-light));
  color: var(--gray-light);
}
.gallery-item-placeholder i { font-size: 2.5rem; color: var(--pink-mid); }
.gallery-item-placeholder span { font-size: 0.85rem; font-weight: 600; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,79,163,0.75);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-overlay i { font-size: 1.8rem; color: #fff; }
.gallery-overlay span { color: #fff; font-weight: 700; font-size: 0.88rem; text-align: center; padding: 0 12px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.08); }

/* ===== GALLERY PAGE — SIMPLE GRID ===== */
.gallery-simple-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}
.gallery-simple-item {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1/1;
  cursor: pointer;
  background: #f0f0f0;
}
.gallery-simple-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-simple-item:hover img {
  transform: scale(1.05);
  opacity: 0.88;
}
.gallery-simple-item--more { position: relative; }
.gallery-more-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 4px;
  pointer-events: none;
}

/* ===== LIGHTBOX NAV ===== */
#galleryLightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
#galleryLightbox .lightbox-content {
  flex: 0 1 auto;
  max-width: 860px;
  width: 90vw;
}
.lb-nav {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  z-index: 1001;
}
.lb-nav:hover { background: rgba(255,255,255,0.3); }
.lb-counter {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-top: 10px;
  font-weight: 600;
}
.gallery-upload-hint {
  background: var(--pink-pale);
  border: 2px dashed var(--pink-mid);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-light);
}
.gallery-upload-hint:hover { border-color: var(--pink-main); background: #fff; }
.gallery-upload-hint i { font-size: 2.2rem; color: var(--pink-mid); }

/* ===== GALLERY FILTERS ===== */
.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: var(--radius-full);
  border: 2px solid var(--pink-light);
  background: #fff;
  color: var(--gray);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.filter-btn:hover, .filter-btn.active { background: var(--pink-main); border-color: var(--pink-main); color: #fff; }
.gallery-item.hidden { display: none !important; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox-content {
  position: relative;
  max-width: min(90vw, 900px);
  max-height: 85vh;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}
.lightbox-placeholder {
  width: 360px; max-width: 80vw;
  height: 260px;
  display: flex; align-items: center; justify-content: center;
  background: var(--pink-pale);
  font-size: 5rem;
}
.lightbox-close {
  position: absolute;
  top: 12px; right: 14px;
  color: var(--gray);
  font-size: 1.4rem;
  cursor: pointer;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--pink-main); color: #fff; }
.lightbox-caption {
  padding: 14px 24px;
  color: var(--gray);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  border-top: 1px solid var(--pink-light);
  width: 100%;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 44px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
.contact-info-card {
  background: var(--pink-pale);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--pink-mid);
}
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-icon {
  width: 42px; height: 42px;
  background: var(--pink-main);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.85rem; color: var(--gray-light); margin-bottom: 3px; font-weight: 700; }
.contact-item p { font-size: 0.92rem; color: var(--black); font-weight: 500; }
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-light);
}
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 5px; }
input, select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--pink-light);
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-size: 0.93rem;
  transition: var(--transition);
  color: var(--black);
  background: #fff;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--pink-main); box-shadow: 0 0 0 3px rgba(255,79,163,0.1); }
input.error, select.error, textarea.error { border-color: #e53e3e; }
.error-msg { color: #e53e3e; font-size: 0.78rem; font-weight: 600; margin-top: 3px; display: none; }
.error-msg.show { display: block; }
textarea { resize: vertical; min-height: 120px; }
.map-wrap {
  max-width: 1080px;
  margin: 44px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--pink-light);
}

/* ===== CIVIC CARDS ===== */
.civic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.civic-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-light);
  transition: var(--transition);
}
.civic-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.civic-card-icon { font-size: 1.8rem; margin-bottom: 14px; color: var(--pink-main); }
.civic-card-icon i { font-size: 1.8rem; color: var(--pink-main); }
.civic-card h3 { margin-bottom: 10px; font-size: 1rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-36px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(36px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .civic-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .who-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-simple-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  /* NAVBAR */
  .nav-links, .nav-donate { display: none !important; }
  .hamburger { display: flex; }
  
  /* HERO */
  .hero { padding: 90px 5% 60px; min-height: auto; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { justify-content: center; }
  
  /* SECTIONS */
  .section { padding: 60px 5%; }
  
  /* PAGE HERO */
  .page-hero { padding: 110px 5% 60px; }
  
  /* GRIDS */
  .cards-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .civic-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-simple-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  
  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  
  /* TIMELINE */
  .timeline::before { left: 28px; }
  .timeline-item { grid-template-columns: 58px 1fr; gap: 14px; }
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; }
  .timeline-item:nth-child(even) .timeline-year { grid-column: 1; }
  .timeline-item .timeline-empty,
  .timeline-item:nth-child(even) .timeline-empty { display: none; }
  .timeline-year { justify-self: start; }
  
  /* FORM */
  .form-row { grid-template-columns: 1fr; }
  
  /* CONTACT */
  .who-float { display: none; }
  
  /* FILTER BUTTONS */
  .gallery-filters { gap: 8px; }
  .filter-btn { padding: 7px 14px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .btn { padding: 11px 22px; font-size: 0.9rem; }
  .hero-badge { font-size: 0.78rem; padding: 6px 12px; }
  .section-tag { font-size: 0.78rem; }
  .donation-buttons { flex-direction: column; align-items: center; }
  .donation-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
  .contact-info-card { padding: 24px 20px; }
  .contact-form { padding: 24px 20px; }
}

