/* ==========================================================================
   SAMANTA FOUNDATION — Premium NGO Design System
   Brand Colors ONLY from official logo
   ========================================================================== */

:root {
  --primary-blue: #093174;
  --secondary-blue: #046AB6;
  --primary-orange: #FB7103;
  --golden: #FCAB08;
  --purple: #5E318D;
  --pink: #BF2C57;
  --white: #FFFFFF;

  --navy-900: #061f4a;
  --navy-800: #093174;
  --navy-700: #0c3d8f;
  --blue-500: #046AB6;
  --blue-400: #1a8ad4;
  --blue-100: #e8f4fc;
  --blue-50: #f0f8ff;

  --orange-600: #e06502;
  --orange-500: #FB7103;
  --orange-100: #fff3e6;
  --gold-500: #FCAB08;
  --gold-100: #fff8e6;

  --purple-500: #5E318D;
  --pink-500: #BF2C57;

  --gray-900: #0f172a;
  --gray-800: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;

  --text: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-alt: #f0f8ff;
  --bg-dark: #093174;
  --surface: rgba(255, 255, 255, 0.72);
  --border: rgba(9, 49, 116, 0.12);

  --gradient-hero: linear-gradient(135deg, #093174 0%, #046AB6 55%, #5E318D 100%);
  --gradient-orange: linear-gradient(135deg, #FB7103 0%, #FCAB08 100%);
  --gradient-blue: linear-gradient(135deg, #093174 0%, #046AB6 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(240,248,255,0.7));
  --gradient-section: linear-gradient(180deg, #f0f8ff 0%, #ffffff 50%, #fff8e6 100%);
  --gradient-cta: linear-gradient(120deg, #093174, #046AB6 40%, #FB7103);

  --shadow-sm: 0 2px 8px rgba(9, 49, 116, 0.06);
  --shadow-md: 0 8px 24px rgba(9, 49, 116, 0.1);
  --shadow-lg: 0 16px 48px rgba(9, 49, 116, 0.14);
  --shadow-xl: 0 24px 64px rgba(9, 49, 116, 0.18);
  --shadow-orange: 0 12px 32px rgba(251, 113, 3, 0.28);
  --shadow-blue: 0 12px 32px rgba(4, 106, 182, 0.25);
  --shadow-glass: 0 8px 32px rgba(9, 49, 116, 0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font-primary: "Poppins", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --header-h: 96px;
  --container: 1200px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;
}

[data-theme="dark"] {
  --text: #f1f5f9;
  --text-muted: #cbd5e1;
  --text-light: #94a3b8;
  --bg: #061f4a;
  --bg-alt: #0a2a5c;
  --bg-dark: #041530;
  --surface: rgba(9, 49, 116, 0.55);
  --border: rgba(255, 255, 255, 0.1);
  --gray-50: #0a2a5c;
  --gray-100: #0c3470;
  --gray-200: #1a4a8a;
  --blue-50: #0a2a5c;
  --blue-100: #0c3470;
  --orange-100: #3a2508;
  --gold-100: #3a2e08;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
button { cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
p { color: var(--text-muted); }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  background: var(--primary-orange);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
:focus-visible {
  outline: 3px solid var(--primary-orange);
  outline-offset: 3px;
}

/* Floating shapes */
.floating-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.floating-shapes span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: float 12s ease-in-out infinite;
}
.floating-shapes span:nth-child(1) {
  width: 280px; height: 280px;
  background: var(--primary-orange);
  top: 10%; left: 5%;
  animation-delay: 0s;
}
.floating-shapes span:nth-child(2) {
  width: 180px; height: 180px;
  background: var(--golden);
  top: 60%; right: 8%;
  animation-delay: -3s;
}
.floating-shapes span:nth-child(3) {
  width: 120px; height: 120px;
  background: var(--secondary-blue);
  bottom: 15%; left: 30%;
  animation-delay: -6s;
}
.floating-shapes span:nth-child(4) {
  width: 90px; height: 90px;
  background: var(--purple);
  top: 25%; right: 25%;
  animation-delay: -2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-28px) rotate(8deg); }
}

/* Top bar */
.top-bar {
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.9); }
.top-bar a:hover { color: var(--golden); }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.top-bar .badge-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251, 113, 3, 0.2);
  border: 1px solid rgba(251, 113, 3, 0.4);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--golden);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}
[data-theme="dark"] .site-header {
  background: rgba(6, 31, 74, 0.88);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text strong {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  color: var(--primary-blue);
  letter-spacing: 0.02em;
}
[data-theme="dark"] .logo-text strong { color: var(--white); }
.logo-text span {
  font-size: 0.7rem;
  color: var(--secondary-blue);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-desktop > li { position: relative; }
.nav-desktop > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
[data-theme="dark"] .nav-desktop > li > a { color: var(--gray-300); }
.nav-desktop > li > a:hover,
.nav-desktop > li > a.active {
  color: var(--primary-blue);
  background: var(--blue-50);
}
[data-theme="dark"] .nav-desktop > li > a:hover,
[data-theme="dark"] .nav-desktop > li > a.active {
  color: var(--golden);
  background: rgba(252, 171, 8, 0.1);
}
.nav-desktop > li > a .chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}
.nav-desktop > li:hover > a .chevron { transform: rotate(180deg); }

/* Mega menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: min(720px, 90vw);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}
.nav-desktop > li:hover .mega-menu,
.nav-desktop > li:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}
.mega-menu h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary-blue);
  margin-bottom: 14px;
}
.mega-links {
  display: grid;
  gap: 6px;
}
.mega-links a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}
.mega-links a:hover { background: var(--blue-50); }
[data-theme="dark"] .mega-links a:hover { background: var(--gray-100); }
.mega-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--gradient-blue);
  color: var(--white);
  font-size: 1.1rem;
}
.mega-icon.orange { background: var(--gradient-orange); }
.mega-icon.purple { background: linear-gradient(135deg, var(--purple), var(--pink)); }
.mega-links strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
}
.mega-links small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}
.mega-featured {
  background: var(--gradient-hero);
  border-radius: var(--radius-md);
  padding: 24px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.mega-featured img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.mega-featured .content { position: relative; z-index: 1; }
.mega-featured h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.mega-featured p {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-50);
  color: var(--primary-blue);
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}
[data-theme="dark"] .btn-icon {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.btn-icon:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  color: var(--primary-blue);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn:hover::after { transform: translateX(100%); }
.btn-primary {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(251, 113, 3, 0.4);
}
.btn-secondary {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(4, 106, 182, 0.35);
}
.btn-outline {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: transparent;
}
[data-theme="dark"] .btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--primary-blue);
  color: var(--white);
}
.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-blue);
}
.btn-white {
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-block { width: 100%; }

/* Hero Slider — all slides absolute so 1st/2nd/3rd work the same */
.hero {
  position: relative;
  min-height: calc(100vh - 40px);
  min-height: 680px;
  height: clamp(560px, 88vh, 820px);
  overflow: hidden;
  background: var(--navy-900);
}
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}
.hero-slide .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero-slide.active .bg img { transform: scale(1); }
.hero-slide .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(9,49,116,0.92) 0%, rgba(9,49,116,0.75) 45%, rgba(4,106,182,0.45) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 1080px;
  width: 100%;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 22px;
  color: var(--golden);
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero-content h1 span {
  color: var(--golden);
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  background-clip: border-box;
}
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.6rem;
  color: var(--golden);
}
.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.hero-nav {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hero-dot.active {
  background: var(--primary-orange);
  width: 36px;
  border-radius: 8px;
}
.hero-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}
.hero-arrow {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.3s ease;
}
.hero-arrow:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
}

/* Section common */
.section {
  padding: 100px 0;
  position: relative;
}
.section-sm { padding: 60px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--gradient-hero);
  color: var(--white);
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.85); }
.section-gradient {
  background: var(--gradient-section);
}
[data-theme="dark"] .section-gradient {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-header.left {
  text-align: left;
  margin-left: 0;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-orange);
  margin-bottom: 14px;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--gradient-orange);
  border-radius: 2px;
}
.section-header h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-header h2 span {
  color: var(--secondary-blue);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}
[data-theme="dark"] .section-header h2 span {
  color: var(--golden);
}
.section-header p {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Glass card */
.glass-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  padding: 28px;
  transition: all var(--transition);
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(4, 106, 182, 0.25);
}

/* Cards */
.card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-img img { transform: scale(1.08); }
.card-img .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gradient-orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.card-body p {
  font-size: 0.95rem;
  margin-bottom: 18px;
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary-blue);
}
.card-link:hover { color: var(--primary-orange); gap: 10px; }

/* Focus areas grid */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 24px;
}
.focus-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.focus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.focus-card:hover::before { transform: scaleX(1); }
.focus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.focus-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 1.25rem;
  color: var(--white);
  background: var(--primary-blue);
  box-shadow: none;
}
.focus-card .icon-wrap i {
  line-height: 1;
}
.focus-card:nth-child(2) .icon-wrap { background: var(--primary-orange); }
.focus-card:nth-child(3) .icon-wrap { background: var(--secondary-blue); }
.focus-card:nth-child(4) .icon-wrap { background: var(--purple); }
.focus-card:nth-child(5) .icon-wrap { background: #c47a06; }
.focus-card:nth-child(6) .icon-wrap { background: #0a4a8a; }
.focus-card:nth-child(7) .icon-wrap { background: #0d7a4f; }
.focus-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.focus-card p { font-size: 0.95rem; margin-bottom: 16px; }
.focus-card a {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--secondary-blue);
  font-family: var(--font-primary);
}

/* About split */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-images .img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
}
.about-images .img-main img,
.about-images .img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-images .img-side {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.about-badge-float {
  position: absolute;
  bottom: 20%;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  animation: none;
}
[data-theme="dark"] .about-badge-float { background: var(--navy-800); }
.about-badge-float .num {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-orange);
  background: none;
}
.about-badge-float .lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
  font-weight: 500;
}
.about-content .section-label { justify-content: flex-start; }
.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}
.about-content > p { margin-bottom: 20px; font-size: 1.02rem; }
.about-content h2 span,
.page-hero h1 span {
  color: var(--secondary-blue);
}
[data-theme="dark"] .about-content h2 span { color: var(--golden); }

.mission-vision {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}
.mv-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--secondary-blue);
}
[data-theme="dark"] .mv-card { background: rgba(4,106,182,0.15); }
.mv-card.vision { border-left-color: var(--primary-orange); }
.mv-card .mv-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-blue);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}
.mv-card .mv-icon i,
.mv-icon i {
  line-height: 1;
}
.mv-card.vision .mv-icon { background: var(--primary-orange); }
.mv-icon.mv-icon-lg {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.mv-icon.mv-icon-lg.vision-icon {
  background: var(--primary-orange);
}
.mv-card h4 { font-size: 1rem; margin-bottom: 4px; }
.mv-card p { font-size: 0.9rem; margin: 0; }

/* Counters / Impact */
.impact-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.impact-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.impact-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-6px);
}
.impact-card .icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
  color: var(--golden);
}
.impact-card .icon i {
  line-height: 1;
}
/* Impact section sits on dark gradient — force light text */
.impact-section .section-header h2,
.impact-section .impact-heading {
  color: #fff;
}
.impact-section .section-header h2 span,
.impact-section .impact-heading span {
  color: var(--golden);
  background: none;
  -webkit-text-fill-color: currentColor;
  -webkit-background-clip: border-box;
  background-clip: border-box;
}
.impact-section .section-header p,
.impact-section .impact-lead {
  color: rgba(255, 255, 255, 0.9) !important;
}
.impact-section .section-label {
  color: var(--golden) !important;
}
.impact-card .counter {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--golden);
  line-height: 1.1;
  margin-bottom: 8px;
}
.impact-card .label {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Objectives */
.objectives-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 16px;
}
.objective-item {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.objective-item:hover {
  border-color: var(--secondary-blue);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.objective-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient-blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.objective-item:nth-child(3n+2) .objective-num { background: var(--gradient-orange); }
.objective-item:nth-child(3n) .objective-num { background: linear-gradient(135deg, var(--purple), var(--pink)); }
.objective-item p {
  font-size: 0.92rem;
  margin: 0;
  color: var(--text-muted);
}

/* Certificates */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 24px;
}
.cert-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.cert-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-blue);
}
.cert-card:nth-child(2)::before { background: var(--gradient-orange); }
.cert-card:nth-child(3)::before { background: linear-gradient(135deg, var(--purple), var(--secondary-blue)); }
.cert-card:nth-child(4)::before { background: linear-gradient(135deg, var(--golden), var(--primary-orange)); }
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cert-badge {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  color: var(--primary-blue);
  background: var(--blue-50);
  border: 2px solid var(--secondary-blue);
  position: relative;
}
.cert-badge > i {
  line-height: 1;
}
.cert-card:nth-child(2) .cert-badge { border-color: var(--primary-orange); background: var(--orange-100); }
.cert-card:nth-child(3) .cert-badge { border-color: var(--purple); background: rgba(94,49,141,0.1); }
.cert-card:nth-child(4) .cert-badge { border-color: var(--golden); background: var(--gold-100); }
.cert-badge .verified {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  background: #16a34a;
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
}
.cert-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.cert-card .cert-id {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--secondary-blue);
  font-size: 0.95rem;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.cert-card p {
  font-size: 0.88rem;
  margin-bottom: 16px;
}
.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}
[data-theme="dark"] .verified-pill {
  background: rgba(22, 163, 74, 0.2);
  color: #4ade80;
}

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-blue);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item.hide { display: none; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,49,116,0.9), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}
.gallery-overlay span {
  color: var(--golden);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(6, 31, 74, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 40px;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.4rem;
  display: grid;
  place-items: center;
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 100%;
  padding: 0 16px;
}
.testimonial-inner {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: center;
}
.quote-icon {
  font-size: 2.5rem;
  color: var(--primary-orange);
  opacity: 0.4;
  margin-bottom: 16px;
}
.testimonial-inner p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-primary);
  font-size: 1.1rem;
}
.author-info { text-align: left; }
.author-info strong {
  display: block;
  font-family: var(--font-primary);
  color: var(--text);
}
.author-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s;
}
.testimonial-dot.active {
  background: var(--primary-orange);
  width: 28px;
  border-radius: 6px;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.active { box-shadow: var(--shadow-md); border-color: var(--secondary-blue); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
}
.faq-question:hover { color: var(--secondary-blue); }
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--secondary-blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s;
  font-size: 1.2rem;
  line-height: 1;
}
.faq-item.active .faq-icon {
  background: var(--primary-orange);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 400px;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* CTA band */
.cta-band {
  background: var(--gradient-cta);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -100px;
  right: -50px;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}
.cta-band p {
  color: rgba(255,255,255,0.9);
  max-width: 480px;
  margin: 0;
}
.cta-band .cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text);
}
.form-group label .req { color: var(--pink); }
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  color: var(--text);
  transition: all var(--transition-fast);
}
.form-control:focus {
  border-color: var(--secondary-blue);
  box-shadow: 0 0 0 4px rgba(4, 106, 182, 0.15);
}
.form-control.error {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(191, 44, 87, 0.12);
}
.form-error {
  color: var(--pink);
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
}
.form-control.error + .form-error,
.form-group.has-error .form-error { display: block; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23093174' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--secondary-blue);
  flex-shrink: 0;
}
.form-check label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: var(--radius-lg);
  color: #15803d;
}
.form-success.show { display: block; }
.form-success h3 { color: #15803d; margin-bottom: 8px; }

/* Donation levels (shared) */
.donation-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.donation-level {
  padding: 16px 10px;
  text-align: center;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--bg);
  font-family: inherit;
  width: 100%;
}
.donation-level:hover {
  border-color: var(--primary-orange);
  transform: translateY(-2px);
}
.donation-level.active {
  border-color: var(--primary-orange);
  background: linear-gradient(180deg, var(--orange-100), #fff);
  box-shadow: var(--shadow-orange);
}
.donation-level .amount {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-blue);
  display: block;
}
[data-theme="dark"] .donation-level .amount { color: var(--golden); }
[data-theme="dark"] .donation-level.active {
  background: rgba(251, 113, 3, 0.15);
}
.donation-level .desc {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.progress-bar-wrap { margin-bottom: 12px; }
.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.progress-bar {
  height: 12px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--gradient-orange);
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.5s ease;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.contact-info-cards {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.contact-info-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--primary-blue);
  color: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}
.contact-info-card:nth-child(2) .icon { background: var(--primary-orange); }
.contact-info-card:nth-child(3) .icon { background: var(--secondary-blue); }
.contact-info-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact-info-card a:hover { color: var(--secondary-blue); }
.map-placeholder {
  width: 100%;
  height: 280px;
  background: var(--blue-100);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--secondary-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--primary-blue);
  font-family: var(--font-primary);
  font-weight: 500;
}
[data-theme="dark"] .map-placeholder {
  background: rgba(4,106,182,0.15);
  color: var(--white);
}
.map-placeholder svg { opacity: 0.6; }
.contact-form-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--gradient-hero);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.page-hero p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: var(--golden); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: 0.5; }

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.news-card .card-body .date {
  font-size: 0.8rem;
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-primary);
}

/* Partners */
.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.partner-badge {
  padding: 20px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
  min-width: 160px;
}
[data-theme="dark"] .partner-badge { color: var(--white); }
.partner-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-blue);
}
.partner-badge small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* Newsletter */
.newsletter {
  background: var(--navy-900);
  padding: 60px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.newsletter p {
  color: rgba(255,255,255,0.75);
  margin: 0;
  max-width: 400px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
  max-width: 480px;
  justify-content: flex-end;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(251,113,3,0.25);
}

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.8);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo {
  margin-bottom: 18px;
}
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text span { color: var(--golden); }
.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  color: var(--white);
  transition: all var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-links a:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateY(-2px);
}
.social-links a i {
  font-size: 0.95rem;
  line-height: 1;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--gradient-orange);
  border-radius: 2px;
}
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: var(--golden);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.footer-contact-item strong {
  display: block;
  color: var(--white);
  font-size: 0.82rem;
  margin-bottom: 2px;
}
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: var(--golden); }
.footer-credit a {
  font-weight: 600;
}
.legal-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
  line-height: 1.6;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-orange);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-orange);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 900;
  border: none;
  font-size: 1.2rem;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top i {
  font-size: 1rem;
  line-height: 1;
}

/* Theme toggle FA icons */
.btn-icon [data-theme-icon],
.btn-icon i[data-theme-icon] {
  font-size: 1rem;
  line-height: 1;
  pointer-events: none;
}

/* Hero badge with FA icons */
.hero-badge i {
  margin-right: 6px;
  opacity: 0.95;
}

/* Verified pills with FA */
.verified-pill i,
.badge-mini i {
  margin-right: 4px;
  font-size: 0.85em;
}

/* Donate / contact FA icon tweaks */
.why-icon i,
.donate-impact-icon i,
.donate-trust-icon i,
.contact-info-card .icon i,
.donate-contact-link i {
  line-height: 1;
}
.donate-contact-link i {
  margin-right: 8px;
  width: 1em;
  text-align: center;
}
.donate-secure-note i {
  margin-right: 6px;
}
.donate-trust-pills li i {
  margin-right: 6px;
  color: var(--primary-orange);
}

/* SVG Divider */
.svg-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin-top: -1px;
  line-height: 0;
}
.svg-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Mobile menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 100%);
  height: 100vh;
  background: var(--bg);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
  padding: 24px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--primary-blue);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
.mobile-nav ul { display: grid; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 14px 12px;
  font-family: var(--font-primary);
  font-weight: 500;
  border-radius: var(--radius-sm);
  color: var(--text);
}
.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--blue-50);
  color: var(--secondary-blue);
}
.mobile-nav .sub-links {
  padding-left: 16px;
  margin-bottom: 8px;
}
.mobile-nav .sub-links a {
  font-size: 0.9rem;
  padding: 10px 12px;
  color: var(--text-muted);
  font-weight: 400;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 31, 74, 0.6);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Legal table */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.legal-table th,
.legal-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.legal-table th {
  background: var(--blue-50);
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--primary-blue);
  width: 38%;
}
[data-theme="dark"] .legal-table th {
  background: rgba(4,106,182,0.2);
  color: var(--golden);
}
.legal-table tr:last-child th,
.legal-table tr:last-child td { border-bottom: none; }
.legal-table td { color: var(--text-muted); }
.legal-table td strong { color: var(--text); }

/* Team / directors */
.directors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 24px;
}
.director-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.director-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.director-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--gradient-blue);
  color: white;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-family: var(--font-primary);
  font-weight: 700;
  box-shadow: var(--shadow-blue);
}
.director-card:nth-child(2) .director-avatar {
  background: var(--gradient-orange);
  box-shadow: var(--shadow-orange);
}
.director-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.director-card .role {
  color: var(--secondary-blue);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 10px;
  font-family: var(--font-primary);
}
.director-card p { font-size: 0.88rem; margin: 0; }

/* Two column layouts */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.img-rounded {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.img-rounded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/11;
}

/* Utility */
.text-center { text-align: center; }
.text-orange { color: var(--primary-orange); }
.text-blue { color: var(--secondary-blue); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.gap-2 { gap: 16px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Parallax helper */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

/* Responsive — base breakpoints (see also DEEP RESPONSIVE block at end) */
@media (max-width: 1100px) {
  .nav-desktop > li > a {
    padding: 8px 10px;
    font-size: 0.82rem;
  }
  .header-actions .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .about-grid,
  .contact-grid,
  .two-col,
  .two-col.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .mega-menu { display: none !important; }
  .about-badge-float { left: 10px; bottom: 10%; }
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .directors-grid,
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners-row {
    justify-content: center;
  }
  .site-header .logo img,
  .logo-img {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }
  .top-bar { display: none; }
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .hero {
    min-height: min(100svh, 640px);
    height: min(100svh, 640px);
  }
  .hero-content { padding: 48px 0 72px; max-width: 100%; }
  .hero-content h1 { font-size: clamp(1.7rem, 6.5vw, 2.4rem); }
  .hero-content p { font-size: 0.98rem; max-width: 100%; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats-row {
    gap: 12px;
    flex-wrap: wrap;
  }
  .hero-stat strong { font-size: 1.35rem; }
  .hero-stat span { font-size: 0.75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band {
    padding: 32px 22px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .cta-band .cta-actions {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .cta-band .cta-actions .btn {
    flex: 1 1 140px;
    min-width: 0;
  }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form {
    max-width: 100%;
    justify-content: center;
    width: 100%;
  }
  .newsletter-form input { min-width: 0; width: 100%; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .impact-card { padding: 20px 12px; }
  .logo-text strong { font-size: 1rem; }
  .site-header .logo img,
  .logo img,
  .logo-img {
    width: 58px;
    height: 58px;
  }
  .footer-brand .logo img {
    width: 64px;
    height: 64px;
  }
  .page-hero {
    padding: 72px 0 48px;
    text-align: left;
  }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .page-hero p { font-size: 0.95rem; }
  .contact-form-card { padding: 22px 18px; }
  .testimonial-inner { padding: 24px 18px; }
  .hero-arrows { display: none; }
  .header-actions .btn-primary {
    padding: 10px 14px;
    font-size: 0.82rem;
  }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(1.45rem, 5.5vw, 2rem); }
  .focus-card { padding: 24px 20px; }
  .cert-card { padding: 24px 18px; }
  .about-images { gap: 10px; }
  .directors-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .gallery-filters {
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .filter-btn {
    flex: 0 0 auto;
    padding: 8px 16px;
    font-size: 0.82rem;
  }
  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(9,49,116,0.88), transparent 55%);
  }
  .partners-row {
    gap: 12px;
  }
  .partner-badge {
    flex: 1 1 140px;
    min-width: 0;
    text-align: center;
  }
  .objectives-list .objective-item,
  .objective-item {
    flex-direction: row;
  }
  .doc-card {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 18px;
  }
  .doc-card .btn {
    grid-column: 1 / -1;
    width: 100%;
  }
  .back-to-top {
    width: 44px;
    height: 44px;
    right: 14px;
    bottom: 14px;
  }
  table.legal-table,
  .legal-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .img-rounded,
  .card-img,
  .about-images img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root { --header-h: 68px; }
  .container { padding: 0 14px; }
  .impact-grid { grid-template-columns: 1fr; }
  .donation-levels { grid-template-columns: 1fr 1fr; }
  .btn-lg { padding: 13px 20px; font-size: 0.9rem; }
  .btn { padding: 11px 18px; font-size: 0.86rem; }
  .hero {
    min-height: min(100svh, 560px);
    height: min(100svh, 560px);
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 6px 12px;
  }
  .hero-stats-row {
    width: 100%;
  }
  .hero-stat {
    flex: 1 1 30%;
    min-width: 0;
  }
  .section { padding: 48px 0; }
  .focus-grid,
  .gallery-grid,
  .news-grid,
  .cert-grid {
    gap: 14px;
  }
  .focus-card,
  .card,
  .cert-card {
    padding: 20px 16px;
  }
  .mobile-nav {
    width: min(100%, 340px);
  }
  .footer-col h4 { margin-bottom: 14px; }
  .site-header .logo img,
  .logo img,
  .logo-img {
    width: 52px;
    height: 52px;
  }
  .header-actions {
    gap: 6px;
  }
  .btn-icon {
    width: 38px;
    height: 38px;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .header-actions .btn-primary {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
  .page-hero { padding: 64px 0 40px; }
  .cta-band h2 { font-size: 1.25rem; }
  .donate-hero-actions .btn,
  .hero-actions .btn {
    white-space: normal;
    text-align: center;
  }
}

/* Print */
@media print {
  .site-header, .top-bar, .back-to-top,
  .mobile-nav, .mobile-overlay, .hero-arrows, .newsletter { display: none !important; }
  body { color: #000; background: #fff; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .parallax-bg { background-attachment: scroll; }
}

/* ==========================================================================
   DONATE PAGE — Redesign
   ========================================================================== */
.donate-hero {
  position: relative;
  background: var(--gradient-hero);
  color: var(--white);
  padding: 100px 0 80px;
  overflow: hidden;
}
.donate-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(251, 113, 3, 0.25), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(252, 171, 8, 0.15), transparent 35%);
  pointer-events: none;
}
.donate-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: center;
}
.donate-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}
.donate-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}
.donate-hero .breadcrumb a:hover {
  color: var(--golden);
}
.donate-hero h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}
.donate-hero h1 span {
  color: var(--golden);
  background: none;
  -webkit-text-fill-color: currentColor;
}
.donate-hero-copy > p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  margin-bottom: 28px;
}
.donate-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.donate-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.donate-trust-pills li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}
.donate-hero-highlight {
  display: grid;
  gap: 14px;
}
.donate-stat-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: grid;
  gap: 4px;
}
.donate-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.donate-stat-card strong {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  color: var(--golden);
  line-height: 1.2;
}
.donate-stat-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Steps */
.donate-steps-section {
  padding-bottom: 40px;
}
.donate-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.donate-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
}
.donate-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.donate-step-num {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-orange);
  background: none;
  margin-bottom: 10px;
  line-height: 1;
}
.donate-step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--primary-blue);
}
[data-theme="dark"] .donate-step h3 { color: var(--white); }
.donate-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Main donate layout */
.donate-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.donate-form-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
[data-theme="dark"] .donate-form-panel {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
}
.donate-form-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.donate-form-header h2 {
  font-size: 1.65rem;
  margin-bottom: 8px;
  color: var(--primary-blue);
}
[data-theme="dark"] .donate-form-header h2 { color: var(--white); }
.donate-form-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.donate-amount-block {
  margin-bottom: 8px;
}
.donate-block-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--text);
}
.donate-custom-amount {
  margin-top: 8px;
}
.donate-amount-input {
  position: relative;
  display: flex;
  align-items: center;
}
.donate-amount-input .currency {
  position: absolute;
  left: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-blue);
  pointer-events: none;
  z-index: 1;
}
[data-theme="dark"] .donate-amount-input .currency { color: var(--golden); }
.donate-amount-input .form-control {
  padding-left: 40px;
  font-size: 1.15rem;
  font-weight: 600;
}
.donate-secure-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 14px 0 0;
}

/* Donate QR panel (replaces form) */
.donate-qr-panel {
  text-align: center;
}
.donate-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 360px;
  margin: 0 auto;
}
.donate-qr-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 8px;
}
.donate-qr-caption {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-blue);
  line-height: 1.45;
}
[data-theme="dark"] .donate-qr-caption {
  color: var(--golden);
}
.donate-now-link {
  width: 100%;
  max-width: 320px;
}

/* Side cards */
.donate-side {
  display: grid;
  gap: 20px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.donate-side-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .donate-side-card {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(255, 255, 255, 0.08);
}
.donate-side-card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--primary-blue);
}
[data-theme="dark"] .donate-side-card h3 { color: var(--white); }
.donate-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.donate-why-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-100);
  color: var(--primary-blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1rem;
}
[data-theme="dark"] .why-icon {
  background: rgba(4, 106, 182, 0.2);
  color: var(--golden);
}
.donate-why-list strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 2px;
  color: var(--text);
}
.donate-why-list p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.donate-contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.donate-contact-link {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--secondary-blue);
  margin-bottom: 10px;
  word-break: break-all;
}
.donate-contact-link:hover {
  color: var(--primary-orange);
}
.donate-contact-card .btn {
  margin-top: 8px;
}
.donate-payment-note {
  background: linear-gradient(145deg, var(--blue-50), var(--gold-100));
  border-color: transparent;
}
[data-theme="dark"] .donate-payment-note {
  background: rgba(4, 106, 182, 0.15);
}
.donate-payment-note p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Impact grid */
.donate-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.donate-impact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.donate-impact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(251, 113, 3, 0.35);
}
.donate-impact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.donate-impact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: none;
}
.donate-impact-amt {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary-blue);
}
[data-theme="dark"] .donate-impact-amt { color: var(--golden); }
.donate-impact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--primary-blue);
}
[data-theme="dark"] .donate-impact-card h3 { color: var(--white); }
.donate-impact-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Trust grid */
.donate-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.donate-trust-card {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.donate-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.donate-trust-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--primary-blue);
}
[data-theme="dark"] .donate-trust-icon {
  color: var(--golden);
}
.donate-trust-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--primary-blue);
}
[data-theme="dark"] .donate-trust-card h3 { color: var(--white); }
.donate-trust-id {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin: 0 0 12px;
  word-break: break-word;
}

/* Bottom CTA */
.donate-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px;
  border-radius: var(--radius-xl);
  background: var(--gradient-cta);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.donate-bottom-cta h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.donate-bottom-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  line-height: 1.55;
}
.donate-bottom-cta .btn-primary {
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: none;
  flex-shrink: 0;
}
.donate-bottom-cta .btn-primary:hover {
  background: var(--gold-100);
  color: var(--primary-blue);
}

/* Donate responsive */
@media (max-width: 1024px) {
  .donate-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .donate-hero-highlight {
    grid-template-columns: repeat(3, 1fr);
  }
  .donate-layout {
    grid-template-columns: 1fr;
  }
  .donate-side {
    position: static;
    grid-template-columns: 1fr;
  }
  .donate-impact-grid,
  .donate-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .donate-hero {
    padding: 80px 0 56px;
  }
  .donate-hero-highlight {
    grid-template-columns: 1fr;
  }
  .donate-steps {
    grid-template-columns: 1fr;
  }
  .donation-levels {
    grid-template-columns: 1fr 1fr;
  }
  .donate-form-panel {
    padding: 24px 18px;
  }
  .donate-impact-grid,
  .donate-trust-grid {
    grid-template-columns: 1fr;
  }
  .donate-bottom-cta {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px;
  }
  .donate-bottom-cta p {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .donation-levels {
    grid-template-columns: 1fr 1fr;
  }
  .donate-hero-actions {
    flex-direction: column;
  }
  .donate-hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   SITE-WIDE POLISH (safe addons)
   ========================================================================== */

/* Anchor jump offset under sticky header */
section[id],
[id="donate-form"],
[id="apply"],
[id="impact"] {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

/* Donate button current page */
.header-actions a.btn-primary.is-current {
  box-shadow: 0 0 0 3px rgba(251, 113, 3, 0.35);
  pointer-events: none;
}

/* Footer phone links */
.footer-contact-item a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}
.footer-contact-item a[href^="tel:"]:hover {
  color: var(--golden);
}

/* Content images quality */
.img-rounded img,
.two-col img,
.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Quick contact floating buttons */
.quick-contact {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qc-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.qc-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-xl);
}
.qc-call {
  background: var(--gradient-blue);
  color: #fff;
}
.qc-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}
.qc-donate {
  background: var(--gradient-orange);
  color: #fff;
}
@media (max-width: 480px) {
  .quick-contact {
    right: 12px;
    bottom: 76px;
  }
  .qc-btn {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }
}

/* Gallery caption category chip */
.gallery-overlay span {
  text-transform: capitalize;
}

/* Form polish */
.form-control:focus {
  border-color: var(--secondary-blue);
  box-shadow: 0 0 0 3px rgba(4, 106, 182, 0.15);
  outline: none;
}

/* Page hero breadcrumb links */
.page-hero .breadcrumb a {
  color: inherit;
  opacity: 0.9;
}
.page-hero .breadcrumb a:hover {
  opacity: 1;
  color: var(--golden);
}


/* Volunteer info cards */
.impact-donate-cards {
  display: grid;
  gap: 14px;
}
.impact-donate-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
}
.impact-donate-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-blue);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.impact-donate-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.impact-donate-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}


/* ==========================================================================
   DOCUMENTS PAGE
   ========================================================================== */
.docs-notice {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  margin-bottom: 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(251, 113, 3, 0.25);
  background: var(--orange-100);
}
.docs-notice > i {
  color: var(--primary-orange);
  font-size: 1.35rem;
  margin-top: 2px;
}
.docs-notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}
.docs-notice p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}
[data-theme="dark"] .docs-notice {
  background: rgba(251, 113, 3, 0.12);
  border-color: rgba(251, 113, 3, 0.3);
}
.docs-grid {
  display: grid;
  gap: 18px;
}
.doc-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.doc-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.doc-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary-blue);
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.doc-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--primary-blue);
}
[data-theme="dark"] .doc-card-body h3 { color: var(--white); }
.doc-card-body p {
  margin: 0 0 8px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.doc-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-orange);
}
.doc-card .btn {
  white-space: nowrap;
}
@media (max-width: 720px) {
  .doc-card {
    grid-template-columns: auto 1fr;
  }
  .doc-card .btn {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
  }
}


/* Header/footer logo with text (logo-with-text-backup) */
.logo {
  gap: 0;
}
.site-header .logo img,
.logo-img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}
.footer-brand .logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}
.mobile-nav-header .logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}


/* ==========================================================================
   DEEP RESPONSIVE — Mobile, Tablet, Touch (all pages)
   ========================================================================== */

/* Global safety */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
img, video, canvas, svg, iframe {
  max-width: 100%;
  height: auto;
}
iframe {
  width: 100%;
}
table {
  max-width: 100%;
}
.container,
.container-wide {
  width: 100%;
}
body {
  overflow-x: hidden;
}

/* Prevent long words / emails overflowing */
p, li, td, th, a, .footer-contact-item, .legal-note, .doc-card-body p {
  overflow-wrap: anywhere;
  word-break: break-word;
}
h1, h2, h3, h4 {
  overflow-wrap: break-word;
}

/* Touch-friendly targets */
@media (hover: none) and (pointer: coarse) {
  .nav-desktop > li > a,
  .filter-btn,
  .btn,
  .footer-links a,
  .social-links a {
    min-height: 44px;
  }
  .gallery-item:hover img {
    transform: none;
  }
  .gallery-overlay {
    opacity: 1;
  }
  .focus-card:hover,
  .cert-card:hover,
  .card:hover,
  .doc-card:hover {
    transform: none;
  }
}

/* Tablet portrait / small laptop */
@media (max-width: 992px) {
  .section-header p {
    font-size: 0.98rem;
  }
  .hero-content {
    max-width: 100%;
  }
  .about-grid {
    gap: 36px;
  }
  .donate-layout {
    gap: 24px;
  }
  .card-body {
    padding: 18px 16px 20px;
  }
  .footer-grid {
    gap: 28px 20px;
  }
}

/* Header stays usable with logo + actions */
@media (max-width: 1024px) {
  .header-inner {
    gap: 10px;
  }
  .header-actions {
    margin-left: auto;
  }
  .mobile-nav {
    max-width: 360px;
    width: 86vw;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
  .mobile-nav ul a {
    padding: 14px 8px;
    font-size: 1rem;
  }
  .mobile-nav .btn {
    margin: 12px 0 8px;
    width: 100%;
  }
}

/* Medium phones / large phones landscape */
@media (max-width: 640px) {
  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }
  .section-label::before {
    width: 20px;
  }
  .breadcrumb {
    font-size: 0.82rem;
    flex-wrap: wrap;
  }
  .faq-question {
    font-size: 0.92rem;
    padding: 16px 14px;
    gap: 10px;
    text-align: left;
  }
  .faq-answer-inner {
    font-size: 0.9rem;
    padding: 0 14px 16px;
  }
  .mission-vision {
    gap: 12px;
  }
  .mv-card {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .director-card {
    padding: 22px 18px;
  }
  .objective-item {
    gap: 12px;
    padding: 14px 0;
  }
  .objective-num {
    min-width: 36px;
    font-size: 0.9rem;
  }
  .docs-notice {
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
  }
  .doc-card-icon {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }
  .doc-card-body h3 {
    font-size: 1rem;
  }
  .contact-info-card {
    padding: 14px;
    gap: 12px;
  }
  .contact-info-card .icon {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
  .impact-donate-card {
    padding: 12px;
  }
  .testimonial-card {
    min-width: 0;
  }
  .quote-icon {
    font-size: 1.4rem;
  }
  .news-card .card-img {
    max-height: 180px;
  }
  .footer-brand p {
    font-size: 0.88rem;
  }
  .social-links a {
    width: 40px;
    height: 40px;
  }
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter-form .btn {
    width: 100%;
  }
  .viewer-toolbar {
    gap: 8px;
  }
  .viewer-toolbar-right {
    width: 100%;
    justify-content: space-between;
  }
  .viewer-stage {
    padding: 12px 8px 28px;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero-actions {
    max-width: 100%;
  }
  .donation-levels {
    grid-template-columns: 1fr;
  }
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .site-header .logo img,
  .logo-img {
    width: 48px;
    height: 48px;
  }
  .partner-badge {
    flex: 1 1 100%;
  }
  .cta-band .cta-actions .btn {
    flex: 1 1 100%;
  }
}

/* Tablet landscape fine-tune */
@media (min-width: 769px) and (max-width: 1024px) {
  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .impact-card {
    padding: 22px 12px;
  }
  .impact-card .counter {
    font-size: 1.7rem;
  }
  .hero {
    min-height: 520px;
    height: 560px;
  }
  .about-images .img-main {
    min-height: 220px;
  }
  .donate-hero-highlight {
    grid-template-columns: repeat(3, 1fr);
  }
  .docs-grid {
    gap: 16px;
  }
  .doc-card {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  .doc-card .btn {
    grid-column: auto;
    width: auto;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-grid .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Large tablet / small desktop */
@media (min-width: 1025px) and (max-width: 1200px) {
  .container {
    padding: 0 28px;
  }
  .nav-desktop {
    gap: 0;
  }
  .focus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Landscape phones: don't hide content under short height */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    height: 100vh;
    padding: 0;
  }
  .hero-content {
    padding: 32px 0 48px;
  }
  .hero-stats-row {
    display: none;
  }
  .page-hero {
    padding: 56px 0 32px;
  }
  .mobile-nav {
    overflow-y: auto;
  }
}

/* Forms always full-width on narrow screens */
@media (max-width: 600px) {
  .form-control,
  .btn-block,
  .donate-now-link {
    width: 100%;
    max-width: 100%;
  }
  .form-check {
    align-items: flex-start;
  }
  input[type="number"],
  input[type="email"],
  input[type="tel"],
  input[type="text"],
  select,
  textarea {
    font-size: 16px;
  }
}

/* Sticky elements safe areas (notches / home bar) */
.site-header {
  padding-top: env(safe-area-inset-top);
}
.back-to-top {
  bottom: max(16px, env(safe-area-inset-bottom));
  right: max(16px, env(safe-area-inset-right));
}
.quick-contact {
  bottom: max(76px, calc(env(safe-area-inset-bottom) + 70px));
  right: max(12px, env(safe-area-inset-right));
}

/* Document viewer mobile */
@media (max-width: 768px) {
  .viewer-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .viewer-toolbar-left,
  .viewer-toolbar-right {
    justify-content: space-between;
  }
  .viewer-title {
    max-width: none;
    flex: 1;
  }
  .viewer-toolbar-right .btn {
    padding: 8px 12px;
  }
}

/* Images with forced heights from HTML shouldn't blow layout */
.about-images img,
.gallery-item img,
.card-img img,
.img-rounded img,
.img-main img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .about-images .img-main,
  .about-images .img-side {
    min-height: 0;
  }
  .about-images img[style*="height"] {
    height: auto !important;
    max-height: 280px;
  }
  .gallery-item img[style*="height"] {
    height: 100% !important;
  }
}


/* ==========================================================================
   SITE ADDONS — Privacy, Map, Progress, Contact actions
   ========================================================================== */

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 2000;
  background: linear-gradient(90deg, var(--primary-orange), var(--golden));
  pointer-events: none;
  transition: width 0.05s linear;
}

/* Privacy / long-form content */
.content-prose {
  max-width: 820px;
  margin: 0 auto;
}
.content-prose h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--primary-blue);
}
[data-theme="dark"] .content-prose h2 { color: var(--white); }
.content-prose p,
.content-prose li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.content-prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.5rem;
}
.content-prose a {
  color: var(--secondary-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.content-prose .legal-updated {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  padding: 12px 16px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.content-prose .btn {
  text-decoration: none;
  margin-right: 10px;
  margin-top: 8px;
}

/* Contact map */
.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--gray-100);
  margin-bottom: 24px;
}
.contact-map {
  display: block;
  width: 100%;
  min-height: 320px;
  height: 380px;
  border: 0;
}
.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.contact-quick-actions .btn i {
  margin-right: 6px;
}

/* Footer bottom privacy link */
.footer-bottom a {
  color: var(--golden);
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* Quick contact FA icons */
.qc-btn i {
  font-size: 1.05rem;
  line-height: 1;
}

/* Slightly better card image loading */
.card-img img,
.gallery-item img {
  background: var(--gray-100);
}

@media (max-width: 768px) {
  .contact-map {
    min-height: 260px;
    height: 280px;
  }
  .contact-quick-actions {
    flex-direction: column;
  }
  .contact-quick-actions .btn {
    width: 100%;
  }
  .content-prose h2 {
    font-size: 1.2rem;
  }
}
