/* ================================================================
   Friends of Harare Hospital — Global Stylesheet
   ================================================================ */

/* --- Variables --- */
:root {
  --primary:           #004b43;
  --primary-dark:      #003530;
  --primary-light:     #006b60;
  --secondary:         #0069e0;
  --secondary-dark:    #005bc7;
  --accent:            #ff6f61;
  --accent-dark:       #e05a4c;
  --background:        #ffffff;
  --foreground:        #1a2332;
  --card:              #ffffff;
  --muted:             #f4f7f9;
  --muted-foreground:  #64748b;
  --border:            #dde4ed;
  --success:           #065f46;
  --radius:            10px;
  --radius-lg:         16px;
  --shadow-sm:         0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:            0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:         0 10px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-hover:      0 8px 30px rgba(0,75,67,0.18), 0 3px 10px rgba(0,0,0,0.08);
  --transition:        0.2s ease;
  --font:              'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- Typography helpers --- */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; letter-spacing: -0.01em; }
.text-lg   { font-size: 1.0625rem; line-height: 1.7; color: var(--foreground); margin-bottom: 1rem; }
.text-muted-foreground { color: var(--muted-foreground); }
.font-bold { font-weight: 700; }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  background: var(--primary);
  color: #fff;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 14px rgba(0,0,0,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}
.brand-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.logo.small { width: 38px; height: 38px; }

.menu-toggle {
  display: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  padding: 8px 13px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  transition: background var(--transition);
}
.menu-toggle:hover { background: rgba(255,255,255,0.2); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-link:hover { background: rgba(255,255,255,0.12); color: #fff; }
.nav-link.active { background: rgba(255,255,255,0.15); color: #fff; font-weight: 600; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1.4;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Primary */
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 2px 8px rgba(0,75,67,0.3); }
.btn-primary:hover { background: var(--primary-light); box-shadow: 0 4px 16px rgba(0,75,67,0.4); color: #fff; }

/* Secondary */
.btn-secondary { background: var(--secondary); color: #fff; box-shadow: 0 2px 8px rgba(0,105,224,0.3); }
.btn-secondary:hover { background: var(--secondary-dark); box-shadow: 0 4px 16px rgba(0,105,224,0.4); color: #fff; }

/* Accent / Donate */
.btn-accent, .donate-cta {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 10px rgba(255,111,97,0.35);
}
.btn-accent:hover, .donate-cta:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 18px rgba(255,111,97,0.45);
  transform: translateY(-1px);
  color: #fff;
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 8px 20px;
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* Ghost (on dark backgrounds) */
.btn-ghost {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
}
.btn-ghost:hover { background: rgba(255,255,255,0.24); color: #fff; }

/* Sizes */
.btn-lg { padding: 14px 30px; font-size: 1.0625rem; border-radius: 12px; }
.btn-sm { padding: 7px 14px; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* ================================================================
   LAYOUT
   ================================================================ */
.content  { min-height: 60vh; }
.section  { padding: 60px 24px; max-width: 1200px; margin: 0 auto; }
.section-sm { padding: 36px 24px; max-width: 1200px; margin: 0 auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Full-bleed wrapper */
.section-band { padding: 60px 24px; }

/* ================================================================
   PAGE BANNER (inner pages)
   ================================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  color: #fff;
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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-banner-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-banner img.logo { width: 80px; height: 80px; margin: 0 auto 18px; border: 3px solid rgba(255,255,255,0.3); }
.page-banner h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 12px; }
.page-banner p  { font-size: 1.125rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

/* ================================================================
   SECTION TITLES
   ================================================================ */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ================================================================
   CARDS
   ================================================================ */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card-hover:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.card-muted       { background: var(--muted); border-color: transparent; box-shadow: none; }
.card-transparent { background: transparent; box-shadow: none; border: none; padding: 0; }
.card-primary     { background: var(--primary); color: #fff; border-color: transparent; }

/* ================================================================
   GRIDS
   ================================================================ */
.grid          { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.grid-2        { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3        { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.features-grid { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.features-grid > .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

/* ================================================================
   FEATURE / ICON CARDS
   ================================================================ */
.feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.feature-icon-primary   { background: rgba(0,75,67,0.1); }
.feature-icon-secondary { background: rgba(0,105,224,0.1); }
.feature-icon-accent    { background: rgba(255,111,97,0.1); }

/* ================================================================
   HERO (Homepage)
   ================================================================ */
.hero {
  position: relative;
  background-image: url('hospital.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
/* Legacy classes kept */
.hero.light-bg  {}
.hero.single    {}
.hero.hero-parallax {}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(0,53,48,0.88) 0%,
    rgba(0,75,67,0.78) 45%,
    rgba(0,105,224,0.68) 100%);
}
.hero-logo { position: relative; z-index: 1; }
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 32px 24px;
}
.logo-hero {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 48px rgba(0,0,0,0.35);
  border: 4px solid rgba(255,255,255,0.35);
  margin-bottom: 28px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.hero p {
  font-size: 1.125rem;
  opacity: 0.92;
  margin-bottom: 32px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   STATS STRIP
   ================================================================ */
.stats-strip {
  background: var(--primary);
  color: #fff;
  padding: 40px 24px;
}
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.stat-label { font-size: 0.875rem; opacity: 0.82; letter-spacing: 0.02em; }

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
  color: #fff;
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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.03'%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");
}
.cta-band-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 14px; }
.cta-band p  { font-size: 1.0625rem; opacity: 0.92; margin-bottom: 28px; line-height: 1.65; }
.btn-group   { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   DONATION UI
   ================================================================ */
.frequency-tabs {
  display: flex;
  background: var(--muted);
  border-radius: var(--radius);
  padding: 5px;
  margin-bottom: 24px;
  gap: 4px;
}
.freq-tab {
  flex: 1;
  padding: 10px 16px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted-foreground);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}
.freq-tab.active {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
@media (min-width: 480px) { .amount-grid { grid-template-columns: repeat(6, 1fr); } }

.amount-btn {
  padding: 14px 6px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.amount-btn:hover  { border-color: var(--primary); color: var(--primary); }
.amount-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 2px 10px rgba(0,75,67,0.3); }

.custom-amount-wrap { position: relative; margin-bottom: 4px; }
.currency-symbol {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  font-weight: 700;
  pointer-events: none;
  font-size: 1rem;
}
.custom-amount-input {
  width: 100%;
  padding: 13px 14px 13px 30px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--foreground);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
}
.custom-amount-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,75,67,0.1);
}

/* PayPal container */
#paypal-button-container { min-height: 52px; margin-top: 8px; }
.paypal-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  padding: 16px;
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
}
.or-divider::before,
.or-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* Impact tiers */
.impact-card { text-align: center; padding: 24px 20px; }
.impact-amount {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

/* ================================================================
   BANK TRANSFER BOX
   ================================================================ */
.bank-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.bank-box-header {
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bank-grid { display: grid; grid-template-columns: 1fr 2fr; }
.bank-grid > div { padding: 13px 22px; border-bottom: 1px solid var(--border); font-size: 0.9375rem; }
.bank-grid > div:nth-child(odd)  { font-weight: 600; color: var(--muted-foreground); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.04em; background: var(--muted); }
.bank-grid > div:nth-last-child(-n+2) { border-bottom: none; }

/* Legacy compat */
.white-box { background: #fff; border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border); }

/* ================================================================
   CONTACT
   ================================================================ */
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.contact-method:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,75,67,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted-foreground);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

/* ================================================================
   FORMS
   ================================================================ */
.form-field   { margin-bottom: 18px; }
.form-label   { display: block; font-size: 0.875rem; font-weight: 600; color: var(--foreground); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--foreground);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,75,67,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* Legacy form compat */
.form { display: grid; gap: 14px; }
.form input, .form textarea, .form select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  color: var(--foreground);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form input:focus,
.form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,75,67,0.1); }
.form label { font-size: 0.875rem; font-weight: 600; color: var(--foreground); margin-bottom: 4px; display: block; }
.form button { border: none; cursor: pointer; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }

/* ================================================================
   NOTICES
   ================================================================ */
.notice { background: #ecfdf5; color: #065f46; padding: 14px 18px; border-radius: var(--radius); border: 1px solid #a7f3d0; font-size: 0.9375rem; }
.error  { background: #fef2f2; color: #991b1b; padding: 14px 18px; border-radius: var(--radius); border: 1px solid #fecaca; font-size: 0.9375rem; }

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--muted);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: #fff;
  padding: 28px 14px 12px;
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity 0.25s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ================================================================
   EVENTS
   ================================================================ */
.event-card { overflow: hidden; padding: 0; }
.event-banner {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 24px;
}
.event-banner h3 { font-size: 1.375rem; margin-bottom: 6px; }
.event-body { padding: 22px; }
.event-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ================================================================
   MEMBERSHIP PRICING
   ================================================================ */
.pricing-card { text-align: center; }
.pricing-amount { font-size: 2.75rem; font-weight: 800; margin: 10px 0 4px; letter-spacing: -0.04em; }
.pricing-period { font-size: 0.875rem; color: var(--muted-foreground); }

/* ================================================================
   INFO LISTS
   ================================================================ */
.info-list { list-style: none; padding: 0; }
.info-list li {
  padding: 7px 0 7px 26px;
  position: relative;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}
.info-list li:last-child { border-bottom: none; }
.info-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.875rem;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.88);
  padding: 52px 24px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 36px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand-row img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); }
.footer-brand-name { font-size: 0.9375rem; font-weight: 700; color: #fff; line-height: 1.3; }
.footer-desc { font-size: 0.875rem; opacity: 0.78; line-height: 1.65; max-width: 300px; }
.footer-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-text { font-size: 0.875rem; opacity: 0.8; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 0 auto 22px; max-width: 1200px; }
.copyright { font-size: 0.8125rem; opacity: 0.6; text-align: center; max-width: 1200px; margin: 0 auto; }

/* ================================================================
   TOAST NOTIFICATIONS
   ================================================================ */
.toast-container { position: fixed; right: 20px; bottom: 20px; display: grid; gap: 10px; z-index: 200; }
.toast {
  background: #1e293b;
  color: #f1f5f9;
  padding: 13px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.35s ease-out both;
  font-size: 0.9375rem;
  max-width: 320px;
  transition: opacity 0.3s, transform 0.3s;
}
.toast.success { background: #065f46; }
.toast.error   { background: #7f1d1d; }

/* ================================================================
   LIGHTBOX
   ================================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 9px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  backdrop-filter: blur(4px);
  transition: background var(--transition);
}
.lightbox .close:hover { background: rgba(255,255,255,0.22); }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeInUp    { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn     { from { opacity: 0; transform: scale(0.94);      } to { opacity: 1; transform: scale(1);    } }
@keyframes slideInRight{ from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0);} }

.animate-fade-in-up { animation: fadeInUp 0.55s ease-out both; }
.animate-scale-in   { animation: scaleIn  0.45s ease-out both; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col:first-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .menu-toggle { display: inline-block; }
  .nav {
    position: absolute;
    left: 0; right: 0;
    top: 68px;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 14px 16px;
    gap: 2px;
    display: none;
    box-shadow: 0 16px 32px rgba(0,0,0,0.25);
    z-index: 99;
  }
  .nav.open { display: flex; }
  .nav-link { width: 100%; padding: 12px 14px; border-radius: 8px; }
  .hero { background-attachment: scroll; min-height: 65vh; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: repeat(3, 1fr); }
  .page-banner { padding: 52px 20px; }
  .section { padding: 44px 16px; }
  .section-band { padding: 44px 16px; }
  .cta-band { padding: 52px 16px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .stat-number   { font-size: 2rem; }
  .hero h1       { font-size: 1.875rem; }
}
