/* ========== FGRF Pages Stylesheet ========== */
/* Shared by all inner pages — extends fgrf-shared.css */

/* ---- Page Hero ---- */
.page-hero {
  min-height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 10px 50px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,43,62,0.92) 0%, rgba(27,79,114,0.78) 100%);
  z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 10px;
  line-height: 1.2;
}
.page-hero .hero-subtitle { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 0; }

/* Breadcrumb */
.breadcrumb { background: none; padding: 0; margin-top: 14px; }
.breadcrumb-item a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.breadcrumb-item a:hover { color: var(--teal); }
.breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ---- About Sub-nav ---- */
.about-subnav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  top: 66px;
  z-index: 900;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
  white-space: nowrap;
}
.about-subnav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 14px 18px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.18s;
  display: inline-block;
}
.about-subnav a:hover,
.about-subnav a.active { color: var(--teal); border-bottom-color: var(--teal); }

/* ---- Filter Buttons ---- */
.filter-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn-page {
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-family: var(--font-head);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
}
.filter-btn-page:hover,
.filter-btn-page.active { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), var(--gold));
  border-radius: 2px;
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute;
  left: -24px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 2px var(--teal);
}
.timeline-year {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.timeline-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
[data-theme="dark"] .timeline-title { color: var(--text); }
.timeline-text { font-size: 0.87rem; color: var(--text-muted); line-height: 1.75; }

/* ---- Leadership Cards ---- */
.leader-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  cursor: pointer;
}
.leader-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.leader-img { width: 100%; height: 240px; object-fit: cover; display: block; }
.leader-img-ph {
  width: 100%; height: 240px;
  background: linear-gradient(135deg, var(--teal-light), var(--border));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--teal);
}
.leader-info { padding: 20px; }
.leader-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
[data-theme="dark"] .leader-name { color: var(--text); }
.leader-role {
  font-size: 0.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.leader-bio-short { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }

/* ---- Report Cards ---- */
.report-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 18px;
}
.report-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.report-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--teal-light), var(--border));
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1.6rem;
  flex-shrink: 0;
}
.report-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 3px;
}
[data-theme="dark"] .report-title { color: var(--text); }
.report-meta { font-size: 0.77rem; color: var(--text-muted); }

/* ---- Initiative Cards (listing) ---- */
.initiative-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.initiative-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.initiative-img { height: 200px; object-fit: cover; width: 100%; display: block; }
.initiative-img-ph {
  height: 200px; width: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--teal);
}
.initiative-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.initiative-category {
  font-family: var(--font-head);
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--teal); margin-bottom: 8px;
}
.initiative-title {
  font-family: var(--font-head);
  font-weight: 700; font-size: 1rem;
  color: var(--navy); margin-bottom: 8px; line-height: 1.3;
}
[data-theme="dark"] .initiative-title { color: var(--text); }
.initiative-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 16px; }

/* ---- Blog Cards ---- */
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  height: 100%;
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.blog-img { height: 200px; object-fit: cover; width: 100%; display: block; }
.blog-img-ph {
  height: 200px; width: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--teal);
}
.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-category {
  font-family: var(--font-head);
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--teal); margin-bottom: 8px;
}
.blog-title {
  font-family: var(--font-head);
  font-weight: 700; font-size: 1rem;
  color: var(--navy); margin-bottom: 8px; line-height: 1.35;
}
[data-theme="dark"] .blog-title { color: var(--text); }
.blog-excerpt { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; flex: 1; }
.blog-meta {
  font-size: 0.75rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.blog-meta i { color: var(--teal); }

/* ---- News Pagination ---- */
.news-pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.news-pagination-wrap nav {
  width: 100%;
}
.news-pagination-wrap .pagination {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.news-pagination-wrap .page-item {
  margin: 0;
}
.news-pagination-wrap .page-link {
  min-width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 999px !important;
  background: var(--surface);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--shadow-sm);
  transition: all 0.18s;
}
.news-pagination-wrap .page-link:hover,
.news-pagination-wrap .page-link:focus {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46,196,182,0.14);
}
.news-pagination-wrap .page-item.active .page-link {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 6px 18px rgba(46,196,182,0.28);
}
.news-pagination-wrap .page-item.disabled .page-link {
  background: var(--bg);
  border-color: var(--border);
  color: rgba(107,138,155,0.52);
  box-shadow: none;
}

/* ---- Impact Stats ---- */
.impact-stat {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.impact-number {
  font-family: var(--font-head);
  font-weight: 800; font-size: 1.9rem; line-height: 1;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 6px;
}
[data-theme="dark"] .impact-number {
  background: linear-gradient(135deg, var(--teal), #7fd8d2);
  -webkit-background-clip: text; background-clip: text;
}
.impact-label {
  font-family: var(--font-head); font-weight: 600; font-size: 0.8rem;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em;
}

/* ---- Lightbox ---- */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(5,15,25,0.95);
  z-index: 99999;
  display: none; align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(4px);
}
.lightbox-overlay.open { display: flex; }
.lightbox-img {
  max-width: 88vw; max-height: 82vh;
  border-radius: var(--radius-md);
  object-fit: contain; box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,0.12); border: none; color: #fff;
  font-size: 1.4rem; width: 44px; height: 44px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.28); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none; color: #fff;
  font-size: 1.4rem; width: 48px; height: 48px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.28); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.8); font-size: 0.85rem; text-align: center;
  white-space: nowrap;
}

/* ---- Gallery Grid ---- */
.gallery-grid { columns: 3; column-gap: 14px; }
.gallery-grid-item {
  break-inside: avoid; margin-bottom: 14px;
  border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; position: relative;
}
.gallery-grid-item img,
.gallery-grid-item .img-ph { width: 100%; display: block; }
.gallery-grid-item:hover .g-overlay { opacity: 1; }
.g-overlay {
  position: absolute; inset: 0;
  background: rgba(27,79,114,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s;
  color: #fff; font-size: 1.5rem;
}

/* ---- Search Box ---- */
.search-box { position: relative; }
.search-box input { padding-right: 44px; }
.search-box .search-icon {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%); color: var(--text-muted); pointer-events: none;
}

/* ---- Partner / Contact Form wrap ---- */
.partner-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

/* ---- Bank Details Card ---- */
.bank-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.bank-field {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.86rem; flex-wrap: wrap; gap: 8px;
}
.bank-field:last-child { border-bottom: none; }
.bank-field-label { color: var(--text-muted); font-family: var(--font-head); font-weight: 500; }
.bank-field-value { color: var(--text); font-family: var(--font-head); font-weight: 700; }
.copy-btn {
  background: var(--teal-light); border: none; color: var(--teal);
  border-radius: 6px; padding: 4px 10px; font-size: 0.73rem;
  font-family: var(--font-head); font-weight: 600; cursor: pointer; transition: all 0.18s;
}
.copy-btn:hover { background: var(--teal); color: #fff; }

/* ---- Donation Type Tabs ---- */
.donation-tabs {
  display: flex; background: var(--teal-light);
  border-radius: var(--radius-sm); padding: 4px; gap: 4px; margin-bottom: 18px;
}
.donation-tab {
  flex: 1; text-align: center; padding: 9px 8px;
  border-radius: 6px; font-family: var(--font-head);
  font-weight: 600; font-size: 0.8rem; cursor: pointer;
  border: none; background: transparent; color: var(--text-muted); transition: all 0.2s;
}
.donation-tab.active {
  background: var(--teal); color: #fff;
  box-shadow: 0 3px 12px rgba(46,196,182,0.35);
}

/* ---- Volunteer / Form Pages ---- */
.volunteer-page-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
  max-width: 720px; margin: 0 auto;
}
.form-group-label {
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.85rem; color: var(--text); margin-bottom: 6px; display: block;
}
.form-group-label .req { color: var(--teal); margin-left: 2px; }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; margin-bottom: 10px;
  background: var(--surface); box-shadow: var(--shadow-sm);
}
.faq-question {
  padding: 18px 22px; font-family: var(--font-head);
  font-weight: 600; font-size: 0.92rem; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: background 0.18s; user-select: none;
}
[data-theme="dark"] .faq-question { color: var(--text); }
.faq-question:hover { background: var(--teal-light); }
.faq-question.open { color: var(--teal); background: var(--teal-light); }
.faq-icon { transition: transform 0.3s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 22px; font-size: 0.87rem; color: var(--text-muted);
  line-height: 1.78; max-height: 0; overflow: hidden; transition: all 0.3s ease;
}
.faq-answer.open { max-height: 400px; padding-bottom: 18px; }

/* ---- Map embed ---- */
.map-wrap {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}

/* ---- Tags ---- */
.tag-pill {
  display: inline-block;
  background: var(--teal-light); color: var(--teal);
  border-radius: 50px; padding: 4px 12px;
  font-size: 0.74rem; font-family: var(--font-head); font-weight: 600;
  margin-right: 6px; margin-bottom: 6px; transition: all 0.18s; text-decoration: none;
}
.tag-pill:hover { background: var(--teal); color: #fff; }

/* ---- Share Buttons ---- */
.share-btn-sm {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--border); background: transparent;
  color: var(--text-muted); border-radius: 8px; padding: 7px 14px;
  font-size: 0.78rem; font-family: var(--font-head); font-weight: 600;
  cursor: pointer; transition: all 0.18s; text-decoration: none;
}
.share-btn-sm:hover { border-color: var(--teal); color: var(--teal); }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: var(--section-py) 0;
}
.cta-section .section-label { background: rgba(46,196,182,0.18); }

/* ---- Story Video Detail ---- */
.media-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.video-detail-wrap {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.video-player-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px;
}

.video-embed-ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: calc(var(--radius-md) - 4px);
  overflow: hidden;
  background: #000;
}

.video-embed-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.video-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.video-info-card h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 10px;
}

[data-theme="dark"] .video-info-card h2 {
  color: var(--text);
}

.video-info-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.94rem;
}

.video-detail-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 767px) {
  .video-player-shell {
    padding: 8px;
  }

  .video-info-card {
    padding: 18px;
  }

  .video-info-card p {
    font-size: 0.9rem;
  }
}

/* ---- Pillar Cards (Mission / Vision) ---- */
.pillar-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm);
  transition: all 0.25s; height: 100%; border-top: 3px solid var(--teal);
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pillar-icon {
  width: 50px; height: 50px; border-radius: var(--radius-sm);
  background: var(--teal-light); display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1.3rem; margin-bottom: 16px;
}
.pillar-title { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
[data-theme="dark"] .pillar-title { color: var(--text); }
.pillar-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.72; }

.pillar-card .qr-img1 img,
.pillar-card .qr-img2 img{ 
border-radius: 10px;
    margin: 0px auto;
    aspect-ratio: 180 / 180;
    width: 130px;
    margin-bottom: 15px;
    border: solid 5px #1b4f72;
}
.pillar-card .qr-img2 img{
  padding: 5px;
}


.pillar-card .qr-text {
  text-align: center;
  font-size: 1.5rem;
  line-height: 28px;
  text-transform: uppercase;
}

.pillar-card .qr-text .n-z-text{
  color:#2ec4b6;
}



/* ---- Success Message ---- */
.success-msg {
  background: linear-gradient(135deg, var(--teal-light), rgba(46,196,182,0.05));
  border: 1px solid rgba(46,196,182,0.3); border-radius: var(--radius-md);
  padding: 40px; text-align: center; display: none;
}
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--teal-light); display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 2rem; margin: 0 auto 16px;
}

/* ---- Contact Info Card ---- */
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--teal-light); display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-label {
  font-family: var(--font-head); font-weight: 600; font-size: 0.75rem;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px;
}
.contact-info-value { font-size: 0.9rem; color: var(--text); font-weight: 500; }

/* ---- Wallet Card ---- */
.wallet-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm);
  text-align: center; transition: all 0.22s;
}
.wallet-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.wallet-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-size: 1.5rem;
}
.wallet-name { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: var(--navy); margin-bottom: 4px; }
[data-theme="dark"] .wallet-name { color: var(--text); }
.wallet-id { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--teal); }

/* ---- gallery ---- */
.contact-info-card { background:#fff; border:1px solid rgba(0,0,0,.08); border-radius:var(--radius-md); padding:28px; height:100%; transition: box-shadow .25s, transform .25s; }
.contact-info-card:hover { box-shadow:0 8px 28px rgba(27,79,114,.1); transform:translateY(-3px); }
.contact-icon-circle { width:52px; height:52px; border-radius:50%; background:rgba(46,196,182,.12); color:var(--teal); display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin-bottom:16px; }
.contact-info-card h6 { font-family:var(--font-head); font-weight:700; color:var(--navy); margin-bottom:8px; }
.contact-info-card p { font-size:.88rem; color:var(--text-muted); margin:0; line-height:1.7; }
.contact-info-card a { color:var(--teal); text-decoration:none; font-weight:500; }
.contact-info-card a:hover { color:var(--navy); }
.contact-form-card { background:#fff; border:1px solid rgba(0,0,0,.08); border-radius:var(--radius-lg); padding:36px; }
.map-container { border-radius: var(--radius-lg); overflow:hidden; border:1px solid rgba(0,0,0,.08); }
.map-placeholder { background:linear-gradient(135deg, #e3f0ff 0%, #d1ecf1 100%); height:360px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; color:var(--navy); }
.map-placeholder i { font-size:3rem; color:var(--teal); }
.dept-card { background:#fff; border:1px solid rgba(0,0,0,.08); border-radius:var(--radius-md); padding:20px; transition:.25s; }
.dept-card:hover { border-color:var(--teal); box-shadow:0 4px 18px rgba(46,196,182,.12); }
.dept-card .dept-icon { font-size:1.4rem; margin-bottom:10px; }
.dept-card h6 { font-family:var(--font-head); font-weight:700; color:var(--navy); font-size:.9rem; margin-bottom:4px; }
.dept-card p { font-size:.82rem; color:var(--text-muted); margin:0; }
.dept-card a { font-size:.82rem; color:var(--teal); font-weight:600; text-decoration:none; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .gallery-grid { columns: 2; }
  .partner-form-wrap, .volunteer-page-wrap { padding: 28px; }
}
@media (max-width: 767px) {
  .page-hero { padding: 60px 10px 40px; min-height: 260px; }
  .gallery-grid { columns: 2; }
  .report-card { flex-direction: column; align-items: flex-start; }
  .donation-tabs { overflow-x: auto; }
}
@media (max-width: 575px) {
  .gallery-grid { columns: 1; }
  .volunteer-page-wrap, .partner-form-wrap { padding: 20px; }
  .lightbox-nav { display: none; }
  .impact-stat{
    padding: 24px 10px;
  }
  .news-pagination-wrap {
    margin-top: 34px;
  }
  .news-pagination-wrap .pagination {
    gap: 6px;
  }
  .news-pagination-wrap .page-link {
    min-width: 36px;
    height: 36px;
    padding: 0 11px;
    font-size: 0.78rem;
  }
}
