/* ══════════════════════════════════════════════
   FDF Canada — style.css
   ══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #0abfbf;
  --teal-dark:  #089a9a;
  --orange:     #f5a623;
  --navy:       #1a2332;
  --navy-light: #233044;
  --text-dark:  #222;
  --text-mid:   #444;
  --text-light: #666;
  --white:      #fff;
  --bg-light:   #f8f9fa;
  --border:     #e5e7eb;
  --sidebar-w:  300px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

p { font-family: 'Inter', sans-serif; }

a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
img { max-width: 100%; display: block; }

/* ─────────────────────────────
   BUTTONS
───────────────────────────── */
.btn-teal {
  background: var(--teal); color: var(--white);
  padding: 12px 28px; border-radius: 6px;
  font-size: 14px; font-weight: 600;
  font-family: 'Poppins', sans-serif; border: none; cursor: pointer;
  transition: background .2s, transform .2s; display: inline-block;
}
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); }

.btn-orange {
  background: var(--orange); color: var(--white);
  padding: 12px 28px; border-radius: 6px;
  font-size: 14px; font-weight: 600;
  font-family: 'Poppins', sans-serif; border: none; cursor: pointer;
  transition: background .2s, transform .2s; display: inline-block;
}
.btn-orange:hover { background: #d4891a; transform: translateY(-2px); }

.btn-dark {
  background: var(--navy); color: var(--white);
  padding: 11px 26px; border-radius: 6px;
  font-size: 14px; font-weight: 600;
  font-family: 'Poppins', sans-serif; border: none; cursor: pointer;
  transition: background .2s, transform .2s; display: inline-block;
}
.btn-dark:hover { background: #111; transform: translateY(-2px); }

.btn-outline-white {
  background: transparent; color: var(--white);
  padding: 11px 32px; border-radius: 6px;
  font-size: 14px; font-weight: 600;
  font-family: 'Poppins', sans-serif; border: 2px solid var(--white); cursor: pointer;
  transition: background .2s, color .2s; display: inline-block;
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

/* ─────────────────────────────
   SECTION COMMONS
───────────────────────────── */
section { padding: 72px 5%; }

.section-label {
  font-size: 13px; font-weight: 600; color: var(--teal);
  text-transform: capitalize; letter-spacing: .3px;
  margin-bottom: 8px; display: block;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-body { font-size: 14px; color: var(--text-light); line-height: 1.8; }

/* ─────────────────────────────
   NAVBAR  — fixed, transparent → teal on scroll
───────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 100; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}

.navbar.scrolled {
  background: #093834;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: 0 2px 16px rgba(0,0,0,.18);
}

.navbar-logo { display: flex; align-items: center; gap: 8px; }

.nav-logo-img { height: 44px; width: auto; border-radius: 50%; object-fit: cover; }

.logo-icon {
  width: 40px; height: 40px; background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon i { color: var(--teal); font-size: 18px; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > li { list-style: none; }
.nav-links a { color: var(--white); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a.active,
.nav-links a:hover { color: var(--teal); }
.nav-links li.active > a { color: var(--teal); }

/* ── Navbar dropdown ── */
.nav-has-dropdown { position: relative; }
.nav-drop-arrow {
  font-size: 9px; margin-left: 3px;
  transition: transform .25s; vertical-align: middle;
}
.nav-has-dropdown:hover .nav-drop-arrow { transform: rotate(180deg); }

/* invisible bridge that fills the gap so hover doesn't break */
.nav-has-dropdown::after {
  content: ''; position: absolute;
  top: 100%; left: -12px; right: -12px;
  height: 18px;
}

.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff; border-radius: 12px; min-width: 230px;
  box-shadow: 0 12px 40px rgba(0,0,0,.16); list-style: none;
  padding: 8px 0; z-index: 1000;
  opacity: 0; visibility: hidden; pointer-events: none;
  /* delay visibility on hide so cursor has time to reach the dropdown */
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
}
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .2s ease, transform .2s ease, visibility 0s;
}
/* arrow caret */
.nav-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  border-left: 7px solid transparent; border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
}
.nav-dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 18px; color: var(--text-dark) !important;
  font-size: 13.5px; font-weight: 500; transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown li a i { color: var(--teal); font-size: 13px; width: 16px; text-align: center; }
.nav-dropdown li a:hover { background: #f0faf9; color: var(--teal) !important; }
.nav-dropdown-empty {
  display: block; padding: 10px 18px; font-size: 13px; color: #aaa; font-style: italic;
}
.nav-dropdown-viewall a {
  border-top: 1px solid #f0f0f0; margin-top: 4px;
  color: var(--teal) !important; font-weight: 600 !important; font-size: 13px !important;
}
.nav-dropdown-viewall a:hover { background: #e6faf9 !important; }

.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-switcher { position: relative; }
.lang-btn {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.4);
  color: var(--white); font-size: 13px; font-family: 'Poppins', sans-serif;
  padding: 5px 13px; border-radius: 6px; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: background .2s;
}
.lang-btn:hover { background: rgba(255,255,255,.25); }
.lang-chevron { font-size: 9px; transition: transform .2s; }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border-radius: 10px; min-width: 150px;
  box-shadow: 0 8px 30px rgba(0,0,0,.18); list-style: none;
  padding: 6px 0; z-index: 999; overflow: hidden;
}
.lang-dropdown.open { display: block; }
.lang-option {
  width: 100%; background: none; border: none; text-align: left;
  padding: 10px 16px; font-size: 13px; font-family: 'Poppins', sans-serif;
  color: var(--text-dark); cursor: pointer; transition: background .15s;
  display: flex; align-items: center; gap: 8px;
}
.lang-option:hover { background: var(--bg-light); }
.lang-option.active { color: var(--teal); font-weight: 600; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: .3s;
}

/* ─────────────────────────────
   SIDEBAR OVERLAY
───────────────────────────── */
.sidebar-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.sidebar-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ─────────────────────────────
   SIDEBAR PANEL  (slides from right)
───────────────────────────── */
.sidebar {
  position: fixed;
  top: 0; right: calc(-1 * var(--sidebar-w) - 10px);
  width: var(--sidebar-w);
  height: 100%;
  background: var(--navy);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transition: right .38s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -6px 0 32px rgba(0,0,0,.3);
  overflow-y: auto;
}
.sidebar.open { right: 0; }

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.sidebar-logo { display: flex; align-items: center; gap: 10px; }

.sidebar-logo .logo-icon {
  width: 38px; height: 38px;
  background: var(--teal); border-radius: 50%;
}
.sidebar-logo .logo-icon i { font-size: 16px; }

.sidebar-logo-img {
  height: 40px; width: 40px;
  border-radius: 50%; object-fit: cover;
}

.sidebar-close {
  background: rgba(255,255,255,.1); border: none;
  color: var(--white); width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.sidebar-close:hover { background: rgba(255,255,255,.2); }

.sidebar-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}
.sidebar-nav a {
  display: block;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-left: 3px solid transparent;
  transition: color .2s, background .2s, border-color .2s;
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.06);
  border-left-color: var(--teal);
}

/* ── Sidebar sub-menu ── */
.sidebar-has-sub { display: flex; flex-direction: column; }
.sidebar-sub-toggle {
  display: flex; align-items: center; justify-content: space-between;
  border-left: 3px solid transparent;
  transition: border-color .2s, background .2s;
}
.sidebar-has-sub.active .sidebar-sub-toggle { border-left-color: var(--teal); }
.sidebar-sub-toggle a {
  flex: 1; color: rgba(255,255,255,.8); font-size: 15px; font-weight: 500;
  padding: 14px 0 14px 28px; border-left: none !important;
  transition: color .2s;
}
.sidebar-sub-toggle:hover a,
.sidebar-has-sub.active .sidebar-sub-toggle a { color: var(--white); }
.sidebar-sub-btn {
  background: none; border: none; color: rgba(255,255,255,.6);
  padding: 14px 20px; cursor: pointer; transition: color .2s;
}
.sidebar-sub-btn i { font-size: 10px; transition: transform .25s; }
.sidebar-sub-toggle:hover .sidebar-sub-btn { color: rgba(255,255,255,.9); }
.sidebar-has-sub.sub-open .sidebar-sub-btn i { transform: rotate(180deg); }

.sidebar-sub-items {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  background: rgba(0,0,0,.15);
}
.sidebar-has-sub.sub-open .sidebar-sub-items { max-height: 600px; }
.sidebar-sub-link {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.65) !important; font-size: 13.5px; font-weight: 400;
  padding: 10px 24px 10px 40px;
  border-left: 3px solid transparent !important;
  transition: color .2s, background .2s !important;
}
.sidebar-sub-link i { color: var(--teal); font-size: 12px; width: 14px; }
.sidebar-sub-link:hover { color: var(--white) !important; background: rgba(255,255,255,.06) !important; }
.sidebar-sub-empty { display: block; padding: 10px 40px; color: rgba(255,255,255,.4); font-size: 13px; font-style: italic; }
.sidebar-sub-viewall { color: var(--teal) !important; font-weight: 600 !important; font-size: 13px !important; border-top: 1px solid rgba(255,255,255,.06) !important; margin-top: 2px; }

.sidebar-footer {
  padding: 20px 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.sidebar-footer p {
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}
.sidebar-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.sidebar-socials a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.sidebar-socials a:hover { background: var(--teal); color: var(--white); }

.sidebar-lang {
  padding: 18px 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.sidebar-lang-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 10px;
}
.sidebar-lang-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-lang-btn {
  background: none;
  border: none;
  text-align: left;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.sidebar-lang-btn:hover { background: rgba(255,255,255,.1); color: var(--white); }
.sidebar-lang-btn.active { background: rgba(255,255,255,.12); color: var(--teal); font-weight: 600; }

/* ─────────────────────────────
   HERO  (home page only)
───────────────────────────── */
/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s cubic-bezier(.25,.46,.45,.94), transform 1s cubic-bezier(.25,.46,.45,.94);
}
.reveal.reveal-left  { transform: translateX(-40px); }
.reveal.reveal-right { transform: translateX(40px); }
.reveal.revealed {
  opacity: 1;
  transform: translate(0, 0);
}
.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .3s; }
.reveal-delay-3 { transition-delay: .45s; }
.reveal-delay-4 { transition-delay: .6s; }

/* ── Hero entrance animations ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero {
  position: relative; min-height: 100vh;
  background-color: var(--navy);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  display: flex; align-items: center; padding: 0 5%;
}

.hero-content { max-width: 500px; padding-top: 70px; }

.hero-content .hero-label {
  animation: heroFadeUp 1.2s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .3s;
}
.hero-content h1 {
  font-size: clamp(28px, 4.5vw, 52px); font-weight: 800;
  color: var(--white); line-height: 1.18; margin-bottom: 18px;
  animation: heroFadeUp 1.3s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .5s;
}
.hero-content h1 span { display: block; }
.hero-content h1 span:nth-child(2) { margin-bottom: 40px; }
.hero-content p {
  font-size: 14px; color: rgba(255,255,255,.85);
  line-height: 1.7; max-width: 460px; margin-bottom: 32px;
  animation: heroFadeUp 1.2s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .85s;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: heroFadeUp 1.2s cubic-bezier(.16,1,.3,1) both;
  animation-delay: 1.1s;
}
.hero-overlay-badge {
  animation: heroFadeIn 1.2s ease both;
  animation-delay: 1.4s;
}

/* ─────────────────────────────
   PAGE BANNER  (sub-pages)
───────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 5% 52px;
  margin-top: 70px;
}

.page-banner-inner { max-width: 700px; }

.page-banner h1 {
  font-size: clamp(28px, 4vw, 46px); font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 12px;
}
.page-banner p {
  font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.7;
}

/* ─────────────────────────────
   WHAT WE DO
───────────────────────────── */
.what-we-do { background: var(--white); }

.what-we-do-inner {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 60px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.what-left .section-body { max-width: 380px; margin-bottom: 28px; }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 22px 18px 16px;
  transition: box-shadow .25s, transform .25s;
  display: flex; flex-direction: column; color: inherit;
}
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.09); transform: translateY(-3px); }
.service-card-inner { display: block; color: inherit; flex: 1; }

.service-icon {
  width: 44px; height: 44px; background: #e8f8f8; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.service-icon i { color: var(--teal); font-size: 18px; }
.service-card h4 { font-size: 13.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.3; }
.service-card p  { font-size: 12px; color: var(--text-light); line-height: 1.7; margin-bottom: 0; }

/* Get Service button on card */
.get-service-btn {
  margin-top: 16px;
  width: 100%;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  transition: background .2s, transform .2s;
}
.get-service-btn:hover { background: var(--teal-dark); transform: translateY(-1px); }
.get-service-btn i { font-size: 11px; }

/* Large button inside service detail */
.get-service-btn-lg {
  width: auto;
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 8px;
  gap: 10px;
}
.get-service-btn-lg i { font-size: 14px; }

/* Service detail cover image */
.service-detail-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 32px;
  max-height: 420px;
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
}
.service-detail-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  max-height: 420px;
}

/* Service inquiry popup (reuses .svc-overlay / .svc-modal) */
.svc-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,20,40,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.svc-overlay.active { opacity: 1; pointer-events: all; }
.svc-modal {
  background: #fff; border-radius: 16px;
  width: 90%; max-width: 520px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  overflow: hidden;
  transform: translateY(24px);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.svc-overlay.active .svc-modal { transform: translateY(0); }
.svc-modal-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 24px 28px 16px;
  border-bottom: 1px solid #f0f0f0;
}
.svc-modal-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .6px;
  text-transform: uppercase; color: var(--teal);
  background: rgba(10,191,191,.1);
  padding: 3px 10px; border-radius: 20px;
  display: inline-block; margin-bottom: 6px;
}
.svc-modal-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--navy); margin: 0;
}
.svc-close {
  background: none; border: none; font-size: 24px;
  cursor: pointer; color: var(--text-light); line-height: 1;
  padding: 2px 6px; transition: color .15s;
}
.svc-close:hover { color: var(--text-dark); }
.svc-modal-body { padding: 20px 28px; }

/* programme full grid */
.programme-all { padding: 60px 5%; }
.programme-all-inner { max-width: 1200px; margin: 0 auto; }
.section-header-center { text-align: center; margin-bottom: 40px; }
.services-grid-full {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

/* ─────────────────────────────
   ABOUT
───────────────────────────── */
.about-us { background: var(--bg-light); }
.about-page { background: var(--white); }

.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}

.about-img-wrap {
  position: relative;
  padding: 0 28px 28px 0;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  background: var(--teal);
  border-radius: 16px;
  z-index: 0;
}
.about-img-wrap img {
  position: relative; z-index: 1; width: 100%;
  border-radius: 14px; object-fit: cover; aspect-ratio: 4/3;
  display: block;
}

.about-right .section-body { margin-bottom: 12px; }
.about-mission { margin: 16px 0 20px; }
.about-mission p { font-size: 13px; color: var(--text-light); line-height: 1.8; margin-bottom: 10px; }
.about-mission strong { color: var(--teal); font-size: 14px; }

/* ─────────────────────────────
   LEADERSHIP
───────────────────────────── */
.leadership-section {
  background: var(--white);
  padding: 80px 5%;
}

.leadership-header {
  text-align: center;
  margin-bottom: 64px;
}
.leadership-header .section-label { color: var(--teal); }
.leadership-header .section-title { color: var(--navy); }

.leadership-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.leadership-card {
  background: transparent;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.leadership-card:last-child { border-bottom: none; }

.leadership-row {
  display: flex;
  align-items: center;
  gap: 72px;
}

.leadership-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leadership-designation {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.leadership-name {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
}

.leadership-quote {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.9;
  border: none;
  padding: 0;
  margin: 0;
  font-style: normal;
}

.leadership-quote-icon {
  color: var(--teal);
  font-size: 18px;
  margin-right: 6px;
  opacity: .6;
}

.leadership-photo-wrap {
  flex: 0 0 46%;
  min-height: 440px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.15);
  box-shadow: 0 24px 64px rgba(0,0,0,.40);
}

.leadership-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  color: rgba(255,255,255,.2);
}

@media (max-width: 900px) {
  .leadership-row { gap: 40px; }
}

@media (max-width: 767px) {
  .leadership-row {
    flex-direction: column;
    gap: 28px;
  }
  .leadership-photo-wrap {
    flex: none;
    width: 100%;
    min-height: 300px;
    order: -1;
  }
  .leadership-card { padding: 40px 0; }
}

/* ─────────────────────────────
   VOLUNTEER POPUP
───────────────────────────── */
.vol-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,20,40,.75); z-index: 9999;
  align-items: center; justify-content: center; padding: 20px;
}
.vol-overlay.active { display: flex; }

.vol-modal {
  background: var(--white); border-radius: 16px;
  width: 100%; max-width: 640px; max-height: 90vh;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  animation: volSlideIn .3s ease;
}
@keyframes volSlideIn {
  from { opacity:0; transform:translateY(-30px); }
  to   { opacity:1; transform:translateY(0); }
}

.vol-modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 16px 16px 0 0;
}
.vol-modal-tag {
  display: inline-block; background: var(--teal);
  color: var(--white); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 6px;
}
.vol-modal-title {
  color: var(--white); font-size: 22px; font-weight: 700; margin: 0;
}
.vol-close {
  background: rgba(255,255,255,.12); border: none; color: var(--white);
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  font-size: 20px; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: background .2s; flex-shrink: 0; margin-top: 2px;
}
.vol-close:hover { background: rgba(255,255,255,.25); }

.vol-modal-body {
  padding: 28px 32px; overflow-y: auto; flex: 1;
}
.vol-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.vol-col-full { grid-column: 1 / -1; }
.vol-form-group { display: flex; flex-direction: column; gap: 6px; }
.vol-label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.vol-req { color: var(--teal); }
.vol-optional { font-weight: 400; color: var(--text-light); font-size: 12px; }
.vol-input {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 14px; font-family: 'Poppins', sans-serif;
  color: var(--text-dark); background: var(--bg-light);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.vol-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,191,191,.12); background: var(--white); }
.vol-input:disabled { background: #f0f0f0; color: var(--text-light); cursor: not-allowed; }
.vol-textarea { resize: vertical; min-height: 100px; }
.vol-same-check { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.vol-same-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--teal); cursor: pointer; }
.vol-same-check label { font-size: 13px; color: var(--text-light); cursor: pointer; }

.vol-msg { margin-top: 12px; font-size: 13px; font-weight: 500; min-height: 20px; }
.vol-msg.success { color: #16a34a; }
.vol-msg.error   { color: #dc2626; }

.vol-modal-footer {
  padding: 18px 32px; border-top: 1px solid var(--border);
  display: flex; justify-content: flex-end; gap: 12px;
  border-radius: 0 0 16px 16px;
}
.vol-btn-cancel {
  padding: 10px 22px; border-radius: 8px; border: 1.5px solid var(--border);
  background: var(--white); color: var(--text-mid); font-size: 14px;
  font-family: 'Poppins', sans-serif; font-weight: 500; cursor: pointer;
  transition: background .2s;
}
.vol-btn-cancel:hover { background: var(--bg-light); }
.vol-btn-submit {
  padding: 10px 26px; border-radius: 8px; border: none;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white); font-size: 14px; font-family: 'Poppins', sans-serif;
  font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 8px;
  transition: transform .2s, box-shadow .2s;
}
.vol-btn-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,191,191,.4); }
.vol-btn-submit:disabled { opacity: .7; transform: none; cursor: not-allowed; }

/* interest checkboxes */
.vol-interests-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.vol-interest-item {
  cursor: pointer;
  display: block;
}
.vol-interest-item input[type="checkbox"] { display: none; }
.vol-interest-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid #e0e6f0;
  border-radius: 8px;
  font-size: 13.5px;
  color: #374151;
  background: #f9fafb;
  transition: border-color .18s, background .18s, color .18s;
  line-height: 1.3;
}
.vol-interest-box i { font-size: 14px; color: var(--teal); flex-shrink: 0; }
.vol-interest-item input:checked + .vol-interest-box {
  border-color: var(--teal);
  background: #e6fafa;
  color: var(--teal-dark);
  font-weight: 600;
}
.vol-interest-item input:checked + .vol-interest-box i { color: var(--teal-dark); }
.vol-interest-item:hover .vol-interest-box { border-color: var(--teal); background: #f0fafa; }

@media (max-width: 540px) {
  .vol-modal-header, .vol-modal-body, .vol-modal-footer { padding-left: 20px; padding-right: 20px; }
  .vol-form-grid { grid-template-columns: 1fr; }
  .vol-modal-title { font-size: 18px; }
}

/* ─────────────────────────────
   COMMUNITY IMPACT
───────────────────────────── */
.impact-section {
  background: #eef5ff;
  overflow: hidden;
  position: relative;
}

/* ── top row: text left | photo right ── */
.impact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 250px;
}
.impact-text {
  padding: 56px 48px 36px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.impact-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1.2;
  margin: 0 0 14px;
}
.impact-text p {
  font-size: 14px;
  color: #5a6a7a;
  line-height: 1.75;
  max-width: 420px;
  margin: 0;
}
.impact-photo {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}
.impact-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: .88;
}
/* soft fade on left edge of photo — blends into background */
.impact-photo::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, #eef5ff 0%, rgba(238,245,255,.6) 25%, transparent 55%);
  pointer-events: none;
}
.impact-photo-placeholder {
  width: 100%; height: 100%; min-height: 250px;
  background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
  display: flex; align-items: center; justify-content: center;
}
.impact-photo-placeholder i { font-size: 80px; color: rgba(255,255,255,.5); }

/* ── cards row ── */
.impact-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 16px 8% 60px;
}

/* individual card */
.impact-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.10), 0 1px 4px rgba(0,0,0,.06);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
}
.impact-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 50px rgba(0,0,0,.15);
}

/* colored top section */
.impact-card-top {
  padding: 30px 18px 48px;   /* extra bottom padding leaves room for the badge */
  text-align: center;
  border-radius: 20px 20px 0 0;
}

/* number */
.impact-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  letter-spacing: -1px;
  color: #fff;
}

/* description below number (in colored section) */
.impact-label {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
  display: block;
  color: rgba(255,255,255,.88);
}

/* ── circular icon badge that straddles top/bottom border ── */
.impact-badge-wrap {
  display: flex;
  justify-content: center;
  margin-top: -34px;   /* pull badge up so it overlaps colored top */
  position: relative;
  z-index: 2;
}
.impact-icon-badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.13);
  border: 3px solid #fff;
  flex-shrink: 0;
}
.impact-icon-badge i { font-size: 28px; }

/* white bottom section */
.impact-card-bottom {
  padding: 14px 16px 28px;
  background: #fff;
  text-align: center;
  border-radius: 0 0 20px 20px;
}
.impact-sublabel {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a2332;
  line-height: 1.3;
  display: block;
}

/* ── color variants ── */

/* BLUE — vibrant solid blue, white text */
.impact-color-blue .impact-card-top { background: linear-gradient(145deg, #4f93f5 0%, #2563eb 100%); }
.impact-color-blue .impact-icon-badge i { color: #2563eb; }

/* TEAL/MINT — soft mint, dark text */
.impact-color-teal .impact-card-top { background: linear-gradient(145deg, #a7f3d0 0%, #34d399 100%); }
.impact-color-teal .impact-number   { color: #064e3b; }
.impact-color-teal .impact-label    { color: rgba(6,78,59,.8); }
.impact-color-teal .impact-icon-badge i { color: #059669; }

/* PINK — soft pink gradient, dark text */
.impact-color-pink .impact-card-top { background: linear-gradient(145deg, #fce7f3 0%, #f9a8d4 100%); }
.impact-color-pink .impact-number   { color: #831843; }
.impact-color-pink .impact-label    { color: rgba(131,24,67,.8); }
.impact-color-pink .impact-icon-badge i { color: #db2777; }

/* ORANGE — vibrant orange, white text */
.impact-color-orange .impact-card-top { background: linear-gradient(145deg, #fdba74 0%, #f97316 100%); }
.impact-color-orange .impact-icon-badge i { color: #ea580c; }

/* NAVY — deep blue, white text */
.impact-color-navy .impact-card-top { background: linear-gradient(145deg, #3b82f6 0%, #1e3a8a 100%); }
.impact-color-navy .impact-icon-badge i { color: #1e3a8a; }

/* GREEN — soft green, dark text */
.impact-color-green .impact-card-top { background: linear-gradient(145deg, #bbf7d0 0%, #4ade80 100%); }
.impact-color-green .impact-number  { color: #14532d; }
.impact-color-green .impact-label   { color: rgba(20,83,45,.8); }
.impact-color-green .impact-icon-badge i { color: #16a34a; }

/* ── responsive ── */
@media (max-width: 1024px) {
  .impact-cards-row { grid-template-columns: repeat(2, 1fr); padding: 16px 6% 48px; }
}
@media (max-width: 768px) {
  .impact-top { grid-template-columns: 1fr; }
  .impact-photo { min-height: 200px; }
  .impact-text  { padding: 44px 6% 30px; }
}
@media (max-width: 500px) {
  .impact-cards-row { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 12px 4% 36px; }
  .impact-number { font-size: 30px; }
  .impact-icon-badge { width: 56px; height: 56px; }
  .impact-icon-badge i { font-size: 22px; }
}

/* ─────────────────────────────
   VOLUNTEER CTA (home page)
───────────────────────────── */
.volunteer {
  background: linear-gradient(to right, rgba(10,20,40,.80), rgba(10,20,40,.75)),
    url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=1400&q=80') center/cover no-repeat;
  text-align: center; padding: 72px 5%;
}
.volunteer h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; color: var(--orange); margin-bottom: 12px; }
.volunteer p   { font-size: 14px; color: rgba(255,255,255,.8); max-width: 500px; margin: 0 auto 28px; line-height: 1.7; }

/* ─────────────────────────────
    VOLUNTEER SECTION (about page grid)
───────────────────────────── */
.volunteer-section {
  background: var(--white);
  padding: 80px 20px;
}
.volunteer-section .volunteer-header {
  text-align: center;
  margin-bottom: 10px;
}
.volunteer-section .section-label {
  color: var(--teal);
}
.volunteer-section .section-title {
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 24px;
}
.volunteer-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.volunteer-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
}
.volunteer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.volunteer-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--teal);
}
.volunteer-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.volunteer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.volunteer-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.volunteer-role {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .volunteer-list {
    grid-template-columns: 1fr;
  }
  .volunteer-card {
    padding: 20px;
  }
}

/* ─────────────────────────────
   DONATE
───────────────────────────── */
.donate { background: var(--white); }

.donate-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.donate-left .section-body { margin-bottom: 10px; }
.donate-list { margin: 16px 0 28px; }
.donate-list li {
  font-size: 14px; color: var(--text-light);
  margin-bottom: 6px; padding-left: 16px; position: relative;
}
.donate-list li::before { content: '•'; position: absolute; left: 0; color: var(--text-mid); }

.donate-img {
  position: relative;
  padding: 0 28px 28px 0;
}
.donate-img::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  background: var(--teal);
  border-radius: 16px;
  z-index: 0;
}
.donate-img img {
  position: relative; z-index: 1; width: 100%;
  border-radius: 14px; object-fit: cover; aspect-ratio: 4/3;
  display: block;
}

.donate-cta-btn { font-size: 15px; padding: 13px 36px; }

/* ─────────────────────────────
   DONATE PAGE  (amount selection layout)
───────────────────────────── */
.donate-page-section {
  padding: 120px 5% 80px;
  min-height: calc(100vh - 300px);
  background: var(--white);
}

.donate-page-inner {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}

.donate-org-name {
  font-size: clamp(18px, 2.2vw, 24px); font-weight: 800;
  color: var(--text-dark); line-height: 1.3; margin-bottom: 10px;
}

.donate-desc {
  font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 28px;
}

.donate-amounts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px;
}

.amount-btn {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 22px 16px;
  font-size: 16px; font-weight: 700; color: var(--text-dark);
  font-family: 'Poppins', sans-serif; cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.amount-btn:hover   { border-color: var(--teal); }
.amount-btn.selected { border-color: var(--teal); background: #e8f9f9; color: var(--teal-dark); }

.custom-amount-wrap { display: none; margin-bottom: 16px; }

.custom-amount-input {
  width: 100%; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 12px 16px; font-size: 15px; font-family: 'Poppins', sans-serif;
  color: var(--text-dark); outline: none; transition: border-color .2s;
}
.custom-amount-input:focus { border-color: var(--teal); }

.donate-card-btn {
  width: 100%; background: var(--orange); color: var(--white);
  border: none; border-radius: 10px; padding: 16px 24px;
  font-size: 15px; font-weight: 600; font-family: 'Poppins', sans-serif;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 12px;
  transition: background .2s, transform .2s; margin-top: 4px;
}
.donate-card-btn:hover { background: #d4891a; transform: translateY(-2px); }

.mastercard-icon { display: flex; align-items: center; flex-shrink: 0; }
.mc-circle { width: 22px; height: 22px; border-radius: 50%; display: inline-block; }
.mc-red    { background: #eb001b; margin-right: -8px; z-index: 1; position: relative; }
.mc-yellow { background: #f79e1b; }

/* ── E-Transfer donation box ── */
.etransfer-box {
  margin-top: 20px;
  background: #f0faf9;
  border: 2px dashed var(--teal);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.etransfer-icon {
  flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.etransfer-icon i { color: #fff; font-size: 18px; }
.etransfer-content { flex: 1; }
.etransfer-label {
  font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 4px;
}
.etransfer-hint {
  font-size: 13px; color: var(--text-light); margin-bottom: 8px;
}
.etransfer-email {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 600;
  color: var(--teal);
  background: #fff;
  border: 1px solid #b2e8e5;
  border-radius: 8px;
  padding: 7px 16px;
  letter-spacing: .3px;
}
.etransfer-note {
  font-size: 12px; color: #999; margin-top: 8px; font-style: italic;
}

/* ─────────────────────────────
   PAYMENT MODAL
───────────────────────────── */
.payment-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 500;
  display: none; align-items: flex-start; justify-content: center;
  padding: 30px 20px; overflow-y: auto;
}
.payment-modal-overlay.open { display: flex; }

.payment-modal {
  background: var(--white); border-radius: 16px;
  width: 100%; max-width: 480px;
  position: relative; padding: 40px 32px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,.28);
  margin: auto;
}

.payment-modal-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; font-size: 26px; line-height: 1;
  cursor: pointer; color: var(--text-mid); font-weight: 300;
}
.payment-modal-close:hover { color: var(--text-dark); }

.payment-modal-header { text-align: center; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.donate-to-text { font-size: 13px; color: var(--text-light); margin-bottom: 4px; }
.donate-to-org  { font-size: 14px; font-weight: 800; color: var(--text-dark); margin-bottom: 14px; line-height: 1.3; }
.donate-amount-display { font-size: 36px; font-weight: 800; color: var(--text-dark); }

.payment-section-title {
  font-size: 13px; font-weight: 600; color: var(--text-dark);
  margin: 16px 0 10px;
}
.payment-section-title:first-child { margin-top: 0; }

.payment-field { margin-bottom: 10px; }
.payment-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }

.payment-input {
  width: 100%; border: 1px solid var(--border); border-radius: 8px;
  padding: 11px 14px; font-size: 14px; font-family: 'Poppins', sans-serif;
  color: var(--text-dark); outline: none; transition: border-color .2s;
  background: var(--white); -webkit-appearance: none; appearance: none;
}
.payment-input::placeholder { color: #bbb; }
.payment-input:focus { border-color: var(--teal); }

.save-info-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-mid); margin: 14px 0 20px; cursor: pointer;
}

.donate-now-modal-btn {
  width: 100%; background: var(--orange); color: var(--white);
  border: none; border-radius: 10px; padding: 15px;
  font-size: 16px; font-weight: 700; font-family: 'Poppins', sans-serif;
  cursor: pointer; transition: background .2s;
}
.donate-now-modal-btn:hover { background: #d4891a; }

.payment-note {
  font-size: 12px; text-align: center; margin-top: 12px;
  min-height: 18px; color: var(--text-light);
}
.payment-note.success { color: #16a34a; font-weight: 600; }
.payment-note.error   { color: #dc2626; }

/* ─────────────────────────────
   EVENTS
───────────────────────────── */
.events { background: var(--bg-light); }

.events-header { text-align: center; margin-bottom: 40px; }

.events-slider-wrap {
  position: relative; max-width: 1200px; margin: 0 auto; padding: 0 12px;
}

.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* events page — full static grid */
.events-page { background: var(--bg-light); }
.events-full-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}

.event-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07); transition: box-shadow .25s, transform .25s;
  display: block; color: inherit; cursor: pointer;
}
.event-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.12); transform: translateY(-4px); }

.event-img-wrap { position: relative; overflow: hidden; }
.event-img-wrap img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .35s; }
.event-card:hover .event-img-wrap img { transform: scale(1.05); }

.event-link-icon {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--text-dark);
  pointer-events: none;
}
.event-body {
  padding: 16px 18px; display: flex;
  align-items: center; justify-content: space-between;
}
.event-meta   { display: flex; flex-direction: column; gap: 4px; }
.event-date   { font-size: 11px; color: var(--text-light); }
.event-title  { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.event-share  { color: var(--text-light); font-size: 14px; transition: color .2s; pointer-events: none; }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; background: var(--white);
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; color: var(--text-mid);
  transition: background .2s, color .2s; z-index: 5;
}
.slider-arrow:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.slider-arrow.prev { left: -20px; }
.slider-arrow.next { right: -20px; }

.no-content-msg {
  text-align: center; font-size: 15px; color: var(--text-light);
  padding: 40px 0;
}

/* ─────────────────────────────
   TESTIMONIALS
───────────────────────────── */
.testimonials { background: var(--white); }

.testimonials-header { text-align: center; margin-bottom: 48px; }

/* slider row: arrow — grid — arrow */
.testi-slider {
  display: flex; align-items: center; gap: 20px;
  max-width: 1000px; margin: 0 auto;
}

.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; flex: 1;
}

.testi-card {
  background: var(--white);
  border: 1.5px solid var(--teal);
  border-radius: 60px 0 60px 0;
  padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 20px;
  transition: box-shadow .25s;
}
.testi-card:hover { box-shadow: 0 8px 28px rgba(10,191,191,.12); }

.testi-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}

.testi-content { flex: 1; }
.stars   { color: #f5a623; font-size: 20px; letter-spacing: 2px; margin-bottom: 10px; }
.testi-name { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.testi-text { font-size: 13px; color: var(--text-light); line-height: 1.8; }

.testi-arrow {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; color: var(--text-mid);
  background: var(--white);
  transition: background .2s, color .2s, border-color .2s;
}
.testi-arrow:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* ─────────────────────────────
   CONTACT PAGE
───────────────────────────── */
.contact-page {
  padding: 80px 5%;
  margin-top: 70px;
  min-height: calc(100vh - 70px - 300px);
}

.contact-page-inner {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
  max-width: 1000px; margin: 0 auto;
}

.contact-company-name {
  font-size: clamp(18px, 2.5vw, 26px); font-weight: 800;
  color: var(--text-dark); line-height: 1.3; margin-bottom: 20px;
}

.contact-detail {
  font-size: 14px; color: var(--text-mid);
  margin-bottom: 8px; line-height: 1.6;
}
.contact-detail strong { color: var(--text-dark); }
.contact-group-title {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--teal);
  margin: 16px 0 6px;
}
.contact-item-label { font-weight: 600; color: var(--text-dark); }
.contact-map-link {
  color: var(--teal); text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  transition: color .2s;
}
.contact-map-link:hover { color: var(--teal-dark); text-decoration: underline; }

.contact-socials {
  display: flex; gap: 10px; margin-top: 20px;
}

.contact-social-icon {
  width: 38px; height: 38px;
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-mid);
  transition: background .2s, color .2s, border-color .2s;
}
.contact-social-icon:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

.contact-form-wrap { display: flex; flex-direction: column; gap: 18px; }

.contact-form-group { display: flex; flex-direction: column; gap: 6px; }

.contact-label {
  font-size: 13px; font-weight: 600; color: var(--text-dark);
}

.contact-input {
  width: 100%;
  border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 16px; font-size: 14px; font-family: 'Poppins', sans-serif;
  color: var(--text-dark); outline: none; transition: border-color .2s;
  background: var(--white);
}
.contact-input::placeholder { color: #bbb; }
.contact-input:focus { border-color: var(--teal); }

.contact-textarea {
  min-height: 140px; resize: vertical;
}

.btn-submit-page {
  background: var(--teal); color: var(--white);
  padding: 13px 40px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  font-family: 'Poppins', sans-serif; border: none; cursor: pointer;
  transition: background .2s, transform .2s;
  align-self: flex-start;
}
.btn-submit-page:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* ─────────────────────────────
   FOOTER
───────────────────────────── */
footer {
  position: relative;
  background-color: var(--navy);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  color: rgba(255,255,255,.80);
}

.footer-overlay {
  position: absolute; inset: 0;
  background: rgba(14, 24, 42, 0.88);
  z-index: 0;
}

.footer-inner { position: relative; z-index: 1; padding: 56px 5% 0; }

.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 48px; max-width: 1200px; margin: 0 auto; padding-bottom: 48px;
}

.footer-brand .logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }

.footer-logo-img {
  height: 50px; width: 50px; border-radius: 50%; object-fit: cover;
}
.logo-icon-footer {
  width: 46px; height: 46px; background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon-footer i { color: var(--white); font-size: 20px; }

.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 6px; }
.footer-contact-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--teal) !important; margin-top: 14px !important; margin-bottom: 4px !important; }

.footer-brand .socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-brand .socials a {
  width: 34px; height: 34px; background: rgba(255,255,255,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,.7); transition: background .2s, color .2s;
}
.footer-brand .socials a:hover { background: var(--teal); color: var(--white); }

.footer-links h3,
.footer-contact h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 20px; }

.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { font-size: 13.5px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-links ul li a:hover { color: var(--teal); }

.footer-contact .form-group { margin-bottom: 14px; }
.footer-contact label { display: block; font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.footer-contact input {
  width: 100%; background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18); border-radius: 6px;
  padding: 10px 14px; font-size: 13px; font-family: 'Poppins', sans-serif;
  color: rgba(255,255,255,.8); outline: none; transition: border-color .2s;
}
.footer-contact input::placeholder { color: rgba(255,255,255,.35); }
.footer-contact input:focus { border-color: var(--teal); }

.btn-submit {
  background: var(--teal); color: var(--white); padding: 11px 32px;
  border-radius: 6px; font-size: 14px; font-weight: 600;
  font-family: 'Poppins', sans-serif; border: none; cursor: pointer;
  transition: background .2s; width: 100%;
}
.btn-submit:hover { background: var(--teal-dark); }

.contact-msg {
  font-size: 13px; margin-top: 8px; text-align: center;
  min-height: 20px; transition: color .2s;
}
.contact-msg.success { color: #4ade80; }
.contact-msg.error   { color: #f87171; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11.5px; color: rgba(255,255,255,.4);
  flex-wrap: wrap; gap: 8px;
  max-width: 1200px; margin: 0 auto;
}
.footer-link {
  color: var(--teal);
  font-weight: 600;
  transition: opacity .2s;
}
.footer-link:hover { opacity: .75; }

/* ─────────────────────────────
   RESPONSIVE
───────────────────────────── */
@media (max-width: 1024px) {
  .what-we-do-inner, .about-inner, .donate-inner { gap: 40px; }
  .services-grid-full { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-right { display: none; }
  .hamburger             { display: flex; }

  .what-we-do-inner, .about-inner, .donate-inner {
    grid-template-columns: 1fr; gap: 40px;
  }
  .about-img-wrap { padding: 0; }
  .about-img-wrap::before { display: none; }
  .donate-inner .donate-img { order: -1; padding: 0; }
  .donate-inner .donate-img::before { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }

  .contact-page-inner { grid-template-columns: 1fr; gap: 48px; }
  .events-full-grid   { grid-template-columns: 1fr 1fr; }

  .donate-page-inner { grid-template-columns: 1fr; gap: 40px; }
  .donate-page-inner .donate-img { order: -1; }
  .payment-modal { padding: 32px 20px 24px; }
}

@media (max-width: 700px) {
  section { padding: 52px 4%; }
  .events-grid, .events-full-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .testi-slider { gap: 10px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-avatar { width: 64px; height: 64px; }
  .slider-arrow { display: none; }
  .services-grid { gap: 16px; }
  .services-grid-full { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .services-grid   { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .hero-content h1 { font-size: 26px; }
  .hero-content h1 span:nth-child(2) { margin-bottom: 12px; }
}

@media (max-width: 420px) {
  .hero-btns             { flex-direction: column; }
  .btn-teal, .btn-orange { width: 100%; text-align: center; }
  .sidebar               { width: 85vw; right: calc(-85vw - 10px); }
}
