:root {
  --white: #FFFFFF;
  --dark-blue: #0D1B2A;
  --mid-blue: #1A3A5C;
  --dark-orange: #C84B11;
  --light-orange: #E8651A;
  --cream: #FFF8F4;
  --gray: #6B7280;
  --light-gray: #F3F4F6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--dark-blue);
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: var(--dark-blue);
  padding: 0 4%;
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  transition: box-shadow 0.3s;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-svg {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.nav-logo-text .line1 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo-text .line2 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-orange);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: #CBD5E0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--dark-orange); }

.nav-donate-btn {
  background: var(--dark-orange) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 5px;
  transition: background 0.3s !important;
}

.nav-donate-btn:hover { background: var(--light-orange) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-blue);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: #CBD5E0;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 0;
  width: 80%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--dark-orange); }

.mobile-nav .mobile-donate {
  background: var(--dark-orange);
  color: #fff !important;
  border-radius: 8px;
  padding: 16px 40px;
  margin-top: 20px;
  border-bottom: none;
  font-size: 1.1rem;
}

/* ===== HERO ===== */
#home {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 6s ease;
  transform: scale(1.05);
}
.hero-slide.active { opacity: 1; transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.3));
  pointer-events: none;
  z-index: 1;
}

.hero-main {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
}

.hero-content { max-width: 820px; animation: fadeUp 1s ease; }

.hero-badge {
  display: inline-block;
  background: rgba(200,75,17,0.2);
  border: 1px solid var(--dark-orange);
  color: #F0956A;
  padding: 6px 22px;
  border-radius: 30px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content h1 span { color: var(--dark-orange); }

.hero-content p {
  color: #A8C4E0;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--dark-orange);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-block;
  border: none; cursor: pointer;
}

.btn-primary:hover {
  background: var(--light-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200,75,17,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 34px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.slider-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.45;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.slider-dot.active { opacity: 1; transform: scale(1.3); background: var(--dark-orange); }

/* ===== STATS ===== */
.stats-bar {
  background: var(--cream);
  padding: 40px 5%;
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  border-bottom: 1px solid #E5E7EB;
}

.stat-item { text-align: center; }
.stat-item .number { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--dark-orange); line-height: 1; }
.stat-item .label { color: var(--gray); font-size: 0.85rem; font-weight: 600; margin-top: 4px; }

/* ===== SECTION BASE ===== */
section { padding: 80px 5%; }

.section-tag {
  display: inline-block;
  background: rgba(200,75,17,0.1);
  color: var(--dark-orange);
  padding: 4px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-sub { color: var(--gray); font-size: 1rem; line-height: 1.7; max-width: 600px; }

/* ===== ABOUT ===== */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.about-img-box {
  width: 100%;
  background: linear-gradient(135deg, var(--mid-blue), var(--dark-blue));
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem 2rem;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(13,27,42,0.3);
}

.about-img-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(200,75,17,0.12) 0%, transparent 70%);
}

.about-img-box img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 50%;
  border: 4px solid rgba(200,75,17,0.5);
  box-shadow: 0 0 0 8px rgba(200,75,17,0.12), 0 12px 40px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
  background: #fff;
}

.about-stats-row {
  display: flex;
  gap: 1rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.about-stat {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1rem 0.5rem;
  text-align: center;
}

.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark-orange);
  line-height: 1;
}

.about-stat-lbl {
  font-size: 0.68rem;
  color: #8BA8C4;
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.about-text p { color: #374151; line-height: 1.8; margin-bottom: 1rem; }

.about-values { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }

.value-pill {
  background: var(--cream);
  border: 1px solid #E5E7EB;
  border-left: 3px solid var(--dark-orange);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark-blue);
}

/* ===== PROGRAMS ===== */
#work { background: var(--cream); }

.programs-header { text-align: center; margin-bottom: 3rem; }
.programs-header .section-sub { margin: 0 auto; }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.program-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}

.program-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }

.program-card-header { padding: 1.75rem 2rem 0; display: flex; align-items: center; gap: 1rem; }
.program-icon { width: 54px; height: 54px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.program-card-body { padding: 0.75rem 2rem 1.5rem; }
.program-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--dark-blue); }
.program-card-body p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }
.program-card-footer { padding: 0.9rem 2rem; border-top: 1px solid #F3F4F6; display: flex; align-items: center; gap: 0.5rem; color: var(--dark-orange); font-weight: 700; font-size: 0.82rem; }

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(13,27,42,0.85);
  z-index: 2000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.modal-overlay.active { display: flex; }

.modal {
  background: var(--white);
  border-radius: 16px;
  max-width: 680px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}

.modal-hero {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  border-radius: 16px 16px 0 0;
  position: relative;
}

.modal-body { padding: 2rem; }
.modal-body h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--dark-blue); margin-bottom: 0.75rem; }
.modal-body p { color: #374151; line-height: 1.8; margin-bottom: 1rem; }
.modal-body ul { list-style: none; padding: 0; }
.modal-body ul li {
  padding: 8px 0;
  border-bottom: 1px solid #F3F4F6;
  display: flex; align-items: flex-start; gap: 0.6rem;
  color: #374151; font-size: 0.92rem; line-height: 1.5;
}
.modal-body ul li::before { content: '✓'; color: var(--dark-orange); font-weight: 900; flex-shrink: 0; margin-top: 2px; }

.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.9);
  border: none; border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* ===== GALLERY ===== */
#gallery {
  background: linear-gradient(180deg, #0D1B2A 0%, #1A3A5C 100%);
  padding: 80px 5%;
}

.gallery-header { text-align: center; margin-bottom: 3rem; }
#gallery .section-title { color: #fff; }
#gallery .section-sub { color: #8BA8C4; margin: 0 auto; }
#gallery .section-tag { background: rgba(200,75,17,0.3); }

.uniform-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.ugrid-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: #0D1B2A;
}

.ugrid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.88);
}

.ugrid-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.6);
}

.ugrid-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(200,75,17,0.2);
}

.ugrid-item:hover .ugrid-overlay { opacity: 1; }

.ugrid-overlay span {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.95);
  color: #C84B11;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700;
  transform: scale(0.7);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.ugrid-item:hover .ugrid-overlay span { transform: scale(1); }

.ugrid-item::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border-color 0.3s;
  pointer-events: none;
}
.ugrid-item:hover::after { border-color: #C84B11; }

/* ===== CONTACT ===== */
#contact { background: var(--cream); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--dark-blue); }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-item-icon { width: 44px; height: 44px; min-width: 44px; background: var(--dark-orange); color: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item-text { font-size: 0.9rem; color: #374151; line-height: 1.6; }
.contact-item-text strong { color: var(--dark-blue); display: block; margin-bottom: 2px; }

.contact-form { background: var(--white); padding: 2rem; border-radius: 12px; box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--dark-blue); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 2px solid #E5E7EB; border-radius: 6px;
  font-family: 'Nunito', sans-serif; font-size: 0.95rem;
  color: var(--dark-blue); transition: border-color 0.3s; background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--dark-orange); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ===== DONATE ===== */
#donate {
  background: #0D1B2A;
  padding: 80px 5%;
}

.donate-header { text-align: center; margin-bottom: 3rem; }
.donate-header p { color: #8BA8C4; font-size: 1rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }

.donate-grid {
  display: grid;
  grid-template-columns: 1fr 220px 1.4fr;
  gap: 2.5rem;
  max-width: 1150px;
  margin: 0 auto;
  align-items: start;
}

.donate-left h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; margin-bottom: 0.75rem; }
.donate-left > p { color: #8BA8C4; line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.92rem; }

.impact-list { display: flex; flex-direction: column; gap: 0.6rem; }
.impact-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--dark-orange);
  border-radius: 8px;
}
.impact-amt { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--dark-orange); min-width: 75px; font-size: 0.95rem; }
.impact-desc { color: #8BA8C4; font-size: 0.82rem; }

.donate-form-box {
  background: #fff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.donate-form-box h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #0D1B2A; margin-bottom: 1.2rem; }

.amt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 1.2rem;
}

.amt-btn {
  padding: 11px 5px;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #0D1B2A;
  cursor: pointer;
  transition: all 0.2s;
}

.amt-btn:hover { border-color: var(--dark-orange); color: var(--dark-orange); background: #FFF0E8; }
.amt-btn.active { border-color: var(--dark-orange); background: var(--dark-orange); color: #fff; }

.custom-amt-div { display: none; margin-bottom: 1rem; }

.flabel { display: block; font-size: 0.8rem; font-weight: 700; color: #0D1B2A; margin-bottom: 5px; }

.finput {
  width: 100%; padding: 10px 14px;
  border: 2px solid #E5E7EB; border-radius: 7px;
  font-family: 'Nunito', sans-serif; font-size: 0.92rem;
  color: #0D1B2A; background: #fff;
  display: block; box-sizing: border-box;
  transition: border-color 0.2s;
}
.finput:focus { outline: none; border-color: var(--dark-orange); }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 1rem; }
.fgroup { margin-bottom: 1rem; }

.donate-submit {
  width: 100%;
  background: var(--dark-orange);
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.25rem;
}
.donate-submit:hover { background: var(--light-orange); transform: translateY(-2px); }

.secure-note { text-align: center; margin-top: 0.75rem; color: var(--gray); font-size: 0.76rem; }

/* ===== QR PAYMENT BOX ===== */
.qr-payment-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.qr-scan-label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.qr-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.qr-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.qr-detail-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(200,75,17,0.15);
  border: 1px solid rgba(200,75,17,0.35);
  border-radius: 8px;
  padding: 8px 14px;
}

.qr-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #F0956A;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.qr-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  font-family: monospace;
  letter-spacing: 0.03em;
}

.qr-note {
  font-size: 0.72rem;
  color: #6B8BAA;
  line-height: 1.5;
}

/* ===== SUCCESS MESSAGES ===== */
.success-msg {
  background: #D1FAE5;
  border: 1px solid #6EE7B7;
  color: #065F46;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}

/* ===== FOOTER ===== */
footer {
  background: #060D15;
  color: #8BA8C4;
  padding: 50px 5% 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }

.footer-logo { display: flex; align-items: center; gap: 14px; }

.footer-logo-svg { width: 56px; height: 56px; flex-shrink: 0; border-radius: 50%; object-fit: cover; background: #fff; }

.footer-logo-text .line1 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 700; color: var(--white);
  line-height: 1.3; display: block;
}
.footer-logo-text .line2 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 700; color: var(--dark-orange);
  line-height: 1.3; display: block;
}

.footer-tagline { color: #6B8BAA; font-size: 0.88rem; line-height: 1.7; }

.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); margin-bottom: 1rem; }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: #8BA8C4; text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--dark-orange); }

.footer-col .contact-line { display: flex; align-items: flex-start; gap: 0.5rem; color: #8BA8C4; font-size: 0.85rem; margin-bottom: 0.75rem; line-height: 1.5; }
.footer-col .contact-line span:first-child { flex-shrink: 0; margin-top: 1px; }

.social-icons { display: flex; gap: 0.75rem; margin-top: 1rem; }
.soc-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.soc-icon:hover { opacity: 0.85; }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 0 auto 1.5rem; max-width: 1100px; }

.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom .reg { font-size: 0.78rem; color: #4A6A8A; }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(5,10,18,0.94);
  z-index: 3000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.lightbox-overlay.active { display: flex; }

.lightbox-content { max-width: 820px; width: 100%; animation: slideUp 0.3s ease; }
.lightbox-content img { width: 100%; max-height: 70vh; object-fit: contain; border-radius: 10px; display: block; }
.lightbox-caption { display: none; }

.lightbox-close {
  position: fixed; top: 1.2rem; right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 50%;
  width: 42px; height: 42px;
  cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; z-index: 3001;
  transition: background 0.2s;
}
.lightbox-close:hover { background: var(--dark-orange); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .uniform-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .uniform-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .donate-grid { grid-template-columns: 1fr; }
  .qr-payment-box { max-width: 320px; margin: 0 auto; }
  .frow { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-logo-text .line1,
  .nav-logo-text .line2 { font-size: 0.8rem; }

  nav { height: 68px; padding: 0 5%; }
  .mobile-nav { top: 68px; }
  .nav-logo-svg { width: 46px; height: 46px; }

  section { padding: 60px 5%; }
  #donate { padding: 60px 5%; }

  .slider-dots { bottom: 30px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; text-align: center; }

  .stats-bar { gap: 1.5rem 2.5rem; padding: 30px 5%; }
  .stat-item .number { font-size: 2rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-box img { width: 160px; height: 160px; }

  .programs-grid { grid-template-columns: 1fr; }

  .uniform-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  .donate-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .amt-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .uniform-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badge { font-size: 0.7rem; padding: 5px 14px; }
  .modal-body h2 { font-size: 1.3rem; }
  .modal-body { padding: 1.5rem; }
}