/* ============================================================
   SAVE LIFE FOUNDATION — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --blue-deep:   #1565C0;
  --blue-mid:    #1E88E5;
  --blue-light:  #E3F2FD;
  --blue-pale:   #F0F8FF;
  --teal:        #00ACC1;
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-600:    #475569;
  --gray-800:    #1E293B;
  --text-main:   #1E293B;
  --text-muted:  #64748B;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(21,101,192,0.10);
  --shadow-lg:   0 8px 32px rgba(21,101,192,0.14);
  --radius:      12px;
  --radius-sm:   8px;
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'Source Sans 3', 'Segoe UI', sans-serif;
  --nav-h:       110px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-deep); }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.25; }

/* ── Utility ────────────────────────────────────────────── */
.container { width: 90%; max-width: 1180px; margin: 0 auto; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }

.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--gray-800);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ── Button ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(21,101,192,0.30);
}
.btn-primary:hover {
  background: #0D47A1;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21,101,192,0.35);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue-deep);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover { background: #00838F; color: var(--white); transform: translateY(-2px); }

/* ── Image Placeholder ──────────────────────────────────── */
/* .img-placeholder {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--gray-100) 100%);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  font-size: 0.85rem;
  font-weight: 600;
  gap: 10px;
} */
.img-placeholder {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--gray-100) 100%);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;  
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills box without distortion */
  display: block;
}
.img-placeholder svg { opacity: 0.6; }
.img-placeholder span { opacity: 0.7; letter-spacing: 0.04em; }

/* ── HEADER & NAV ───────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  /* height: var(--nav-h); */
}
.nav-inner {
  /* height: var(--nav-h); */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-placeholder {
  width: 70px; height: 70px;
  /* background: linear-gradient(135deg, var(--blue-deep), var(--teal)); */
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--blue-deep);
}
.logo-text small {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 6px 11px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--blue-light);
  color: var(--blue-deep);
}
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7em; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.87rem;
  color: var(--gray-600);
}
.dropdown-menu a:hover { background: var(--blue-light); color: var(--blue-deep); }
.nav-cta {
  background: var(--blue-deep);
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
}
.nav-cta:hover { background: #0D47A1 !important; color: var(--white) !important; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all var(--transition); }

/* ── TOP BAR ────────────────────────────────────────────── */
.top-bar {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 1px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: white; }

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #1565C0 40%, var(--teal) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: white; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 540px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 0.85rem; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.45); }

/* ── HERO (HOME) ────────────────────────────────────────── */
/* ── HERO ───────────────────────── */

.home-hero {
  min-height: calc(100vh - var(--nav-h) - 36px);
  background: linear-gradient(135deg, #0D47A1 0%, #1565C0 50%, #00838F 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h80v80H0V0zm20 20v40h40V20H20zm20 35a15 15 0 1 1 0-30 15 15 0 0 1 0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: white;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-title em {
  font-style: normal;
  color: #81D4FA;
}

.hero-desc {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.hero-stat {
  text-align: center;
  color: white;
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 700;
}

.hero-stat-label {
  font-size: 0.9rem;
  opacity: 0.85;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}
.hero-stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  padding: 24px 20px;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 6px; }

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-body { padding: 24px; }
.card-title { font-size: 1.1rem; color: var(--gray-800); margin-bottom: 8px; }
.card-text { font-size: 0.92rem; color: var(--text-muted); }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── STATS CARDS ────────────────────────────────────────── */
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border-top: 4px solid var(--blue-mid);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.stat-card:hover { transform: translateY(-4px); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1;
}
.stat-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 8px; font-weight: 500; }

/* ── FACILITY CARDS ─────────────────────────────────────── */
.facility-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.facility-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.facility-img { height: 200px; }
.facility-body { padding: 24px; }
.facility-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-deep);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.facility-name { font-size: 1.15rem; color: var(--gray-800); margin-bottom: 12px; }
.facility-info { display: flex; flex-direction: column; gap: 7px; }
.facility-info-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 7px;
}
.facility-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.facility-info-row span:first-child { color: var(--text-muted); }
.facility-info-row strong { color: var(--gray-800); }
.facility-contact { margin-top: 16px; font-size: 0.88rem; font-weight: 600; color: var(--blue-mid); }

/* ── SERVICES CARDS ─────────────────────────────────────── */
.service-card { text-align: center; }
.service-img { height: 200px; border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.service-body { padding: 20px; }
.service-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--blue-deep);
}

/* ── EVENTS ─────────────────────────────────────────────── */
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  margin-bottom: 36px;
}
.event-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-100);
}
.event-date-box {
  background: var(--blue-deep);
  color: white;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  text-align: center;
  flex-shrink: 0;
  min-width: 60px;
}
.event-date-box .day { font-size: 1.5rem; font-weight: 700; line-height: 1; font-family: var(--font-display); }
.event-date-box .mon { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.event-title { font-size: 1.2rem; color: var(--gray-800); margin-bottom: 6px; }
.event-meta { font-size: 0.85rem; color: var(--text-muted); }
.event-body { padding: 20px 28px; }
.event-desc { color: var(--text-muted); margin-bottom: 20px; }
.event-images { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.event-img { height: 160px; border-radius: var(--radius-sm); }

/* ── TABLE ──────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-md); }
table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
thead { background: var(--blue-deep); color: white; }
thead th { padding: 14px 18px; text-align: left; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.04em; }
tbody tr { border-bottom: 1px solid var(--gray-100); transition: background var(--transition); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--blue-pale); }
tbody td { padding: 14px 18px; color: var(--gray-600); }
tbody td:first-child { font-weight: 600; color: var(--gray-800); }

/* ── ORG STRUCTURE ──────────────────────────────────────── */
.org-chart { display: flex; flex-direction: column; align-items: center; gap: 0; }
.org-level { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; position: relative; padding: 20px 0; }
.org-connector { width: 2px; height: 30px; background: var(--blue-mid); margin: 0 auto; }
.org-node {
  background: var(--white);
  border: 2px solid var(--blue-mid);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: center;
  min-width: 140px;
  box-shadow: var(--shadow-sm);
}
.org-node.top { border-color: var(--blue-deep); background: var(--blue-deep); color: white; }
.org-node.top h4 { color: white; }
.org-node h4 { font-size: 0.9rem; color: var(--blue-deep); margin-bottom: 4px; }
.org-node p { font-size: 0.78rem; color: var(--text-muted); }

/* ── TEAM CARDS ─────────────────────────────────────────── */
.team-card { text-align: center; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: var(--white); }
.team-photo { height: 200px; }
.team-body { padding: 20px 16px; }
.team-name { font-size: 1rem; color: var(--gray-800); margin-bottom: 4px; }
.team-role { font-size: 0.83rem; color: var(--blue-mid); font-weight: 600; }

/* ── QUOTE ──────────────────────────────────────────────── */
.quote-section {
  background: var(--blue-pale);
  border-left: 6px solid var(--blue-deep);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 36px 40px;
  font-size: 1.08rem;
  color: var(--gray-800);
  font-style: italic;
  line-height: 1.9;
}

/* ── RECOGNITION GRID ───────────────────────────────────── */
.recognition-logo {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  text-align: center;
  gap: 14px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.recognition-logo:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-mid); }
.recognition-logo-img {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--blue-light);
  border: 2px dashed var(--blue-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-mid); font-size: 0.7rem; font-weight: 600; text-align: center;
}
.recognition-logo span { font-size: 0.88rem; font-weight: 600; color: var(--gray-600); }

/* ── DOWNLOADS ──────────────────────────────────────────── */
.download-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.download-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); border-color: var(--blue-mid); }
.download-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue-deep);
}
.download-info { flex: 1; }
.download-name { font-weight: 600; color: var(--gray-800); margin-bottom: 4px; }
.download-meta { font-size: 0.83rem; color: var(--text-muted); }
.download-btn {
  padding: 8px 18px;
  background: var(--blue-deep);
  color: white;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition);
}
.download-btn:hover { background: #0D47A1; color: white; }

/* ── CONTACT ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.contact-info-card {
  background: var(--blue-deep);
  border-radius: var(--radius);
  padding: 40px 36px;
  color: white;
}
.contact-info-card h3 { color: white; margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-text p:first-child { font-weight: 600; margin-bottom: 2px; }
.contact-item-text p:last-child { font-size: 0.9rem; color: rgba(255,255,255,0.72); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.9rem; color: var(--gray-800); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--blue-mid);
  background: white;
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* ── MISSION VISION ─────────────────────────────────────── */
.mv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mv-card {
  border-radius: var(--radius);
  padding: 32px 28px;
  background: var(--white);
  border-top: 4px solid transparent;
  box-shadow: var(--shadow-md);
}
.mv-card.mission { border-top-color: var(--blue-deep); }
.mv-card.vision  { border-top-color: var(--teal); }
.mv-card.values  { border-top-color: #1976D2; }
.mv-icon { font-size: 2rem; margin-bottom: 14px; }
.mv-title { font-size: 1.15rem; color: var(--gray-800); margin-bottom: 10px; }

/* ── ABOUT DETAIL ───────────────────────────────────────── */
.about-flex { display: flex; gap: 60px; align-items: center; }
.about-img-wrap { flex: 0 0 44%; }
.about-img { height: 420px; border-radius: var(--radius); }
.about-text { flex: 1; }
.reg-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.reg-badge {
  background: var(--blue-light);
  color: var(--blue-deep);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ── FOOTER ─────────────────────────────────────────────── */
#site-footer {
  background: #0D1B2A;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}
.footer-logo .logo-placeholder { }
.footer-logo .logo-text strong { color: #90CAF9; }
.footer-logo .logo-text small { color: rgba(255,255,255,0.45); }
.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer-col h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: #90CAF9; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.88rem; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; opacity: 0.7; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 10px;
}

/* ── DFP (Drug Free Peshawar) ───────────────────────────── */
.dfp-hero-box {
  background: linear-gradient(135deg, var(--blue-deep), var(--teal));
  border-radius: var(--radius);
  padding: 48px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}
.dfp-hero-box::after {
  content: 'DFP';
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 9rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
}
.dfp-hero-box h2 { font-size: 1.8rem; margin-bottom: 14px; }
.dfp-hero-box p { color: rgba(255,255,255,0.82); max-width: 600px; }

/* ── CHAIRMAN ───────────────────────────────────────────── */
.chairman-grid { display: grid; grid-template-columns: 320px 1fr; gap: 60px; align-items: start; }
.chairman-photo { height: 380px; border-radius: var(--radius); }
.chairman-name { font-size: 1.5rem; color: var(--blue-deep); margin: 20px 0 4px; }
.chairman-title { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

/* ── HIGHLIGHT BOX ──────────────────────────────────────── */
.highlight-box {
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 32px;
  border-left: 5px solid var(--blue-deep);
}
.highlight-box p { color: var(--gray-700, #374151); }

/* ── SECTION DIVIDER ────────────────────────────────────── */
.wave-divider { height: 60px; overflow: hidden; }
.wave-divider svg { width: 100%; height: 100%; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .chairman-grid { grid-template-columns: 1fr; }
  .chairman-photo { height: 260px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: white; padding: 16px; box-shadow: var(--shadow-lg); gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-dropdown .dropdown-menu { position: static; opacity: 1; transform: none; box-shadow: none; pointer-events: all; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .about-flex { flex-direction: column; gap: 32px; }
  .about-img-wrap { flex: none; width: 100%; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .event-images { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .section-pad { padding: 56px 0; }
  .top-bar .container { flex-direction: column; gap: 4px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: 1fr; }
  .event-header { flex-direction: column; }
}
