/* ═══════════════════════════════════════════════════════════════
   OPCC / INC.in Frontend — main.css
   Brand: #18aaed  |  Footer: #ffffff  |  Bootstrap 5.3
   ═══════════════════════════════════════════════════════════════ */

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

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --brand:        #18aaed;
  --brand-dark:   #0e8dc5;
  --brand-deeper: #0a6fa0;
  --brand-light:  #e8f7fd;
  --brand-mid:    #b3e4f8;
  --text-dark:    #0d1b2a;
  --text-mid:     #344a5e;
  --text-muted:   #6b8299;
  --bg-white:     #ffffff;
  --bg-off:       #f5fbff;
  --bg-section:   #f0f8fd;
  --border:       #cce9f7;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow:       0 2px 16px rgba(24,170,237,.10);
  --shadow-md:    0 8px 32px rgba(24,170,237,.14);
  --transition:   .22s cubic-bezier(.4,0,.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); color: var(--text-dark); background: #fff; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.22; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Bootstrap Overrides ────────────────────────────────────── */
.btn-brand {
  background: var(--brand); border-color: var(--brand); color: #fff;
  font-weight: 600; border-radius: var(--radius); transition: var(--transition);
}
.btn-brand:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-brand-outline {
  color: var(--brand); border-color: var(--brand); background: transparent;
  font-weight: 600; border-radius: var(--radius); transition: var(--transition);
  border-width: 2px;
}
.btn-brand-outline:hover { background: var(--brand); color: #fff; }

.btn-brand-white {
  background: #fff; color: var(--brand); border: 2px solid rgba(255,255,255,.7);
  font-weight: 600; border-radius: var(--radius); transition: var(--transition);
}
.btn-brand-white:hover { background: rgba(255,255,255,.9); color: var(--brand-dark); }

.btn-white {
  background: #fff;
  color: var(--brand);
  border: none;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-white:hover {
  background: #fff;
  color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
@keyframes ticker   { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes pulse    { 0%,100% { opacity:1; } 50% { opacity:.6; } }

.fade-up   { animation: fadeUp .6s ease both; }
.fade-up-2 { animation: fadeUp .6s .12s ease both; }
.fade-up-3 { animation: fadeUp .6s .22s ease both; }
.fade-up-4 { animation: fadeUp .6s .34s ease both; }

/* ── TOPBAR ─────────────────────────────────────────────────── */
.site-topbar {
  background: var(--brand-deeper);
  color: #fff;
  padding: 7px 0;
  font-size: 12px;
}
.lang-toggle {
  background: #fff;
  color: var(--brand-deeper);
  border: none;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 3px;
  margin-left: 8px;
}
.lang-toggle:hover {
  background: var(--brand);
  color: #fff;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.12);
  border-radius: 4px;
  padding: 2px;
  margin-left: 8px;
}
.lang-toggle-btn {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: none;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 3px;
  letter-spacing: .3px;
  transition: background .15s, color .15s;
}
.lang-toggle-btn:hover { color: #fff; }
.lang-toggle-btn.active {
  background: #fff;
  color: var(--brand-deeper);
}
.topbar-links a {
  color: rgba(255,255,255,.85);
  font-size: 11.5px;
  font-weight: 500;
  transition: color .15s;
}
.topbar-links a:hover { color: #fff; }
.topbar-date { color: rgba(255,255,255,.65); font-size: 11px; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.site-navbar {
  background: #fff;
  border-bottom: 2.5px solid var(--brand);
  box-shadow: 0 2px 16px rgba(24,170,237,.08);
  padding: 0;
  z-index: 1030;
}
.site-navbar .container { min-height: 64px; }

.nav-logo-img {
  border-radius: 50%;
  object-fit: contain;
  padding: 2px;
  background: #fff;
  box-shadow: 0 0 0 2px var(--brand-mid);
  transition: var(--transition);
}
.navbar-brand:hover .nav-logo-img { box-shadow: 0 0 0 3px var(--brand); }

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
}
.nav-brand-sub {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand);
}

.site-navbar .nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid) !important;
  border-radius: 8px;
  padding: 8px 13px !important;
  transition: var(--transition);
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--brand) !important;
  background: var(--brand-light);
}

/* Search bar drop */
.search-bar-wrap {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  animation: fadeUp .2s ease both;
}

/* ── OFFCANVAS mobile nav ────────────────────────────────────── */
.offcanvas-nav-link {
  display: block;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid #f0f8fd;
  transition: var(--transition);
}
.offcanvas-nav-link:hover,
.offcanvas-nav-link.active {
  background: var(--brand-light);
  color: var(--brand);
}

/* ── TICKER ─────────────────────────────────────────────────── */
.ticker-bar {
  background: var(--brand);
  color: #fff;
  padding: 9px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
}
.ticker-label {
  background: rgba(0,0,0,.18);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track { flex: 1; overflow: hidden; }
.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  padding: 0 28px;
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
}

/* ── SECTION HELPERS ────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-sm { padding: 52px 0; }
.section-label {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 13px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(26px, 4vw, 40px); margin-bottom: 12px; }
.section-desc  { color: var(--text-mid); font-size: 15px; max-width: 520px; line-height: 1.8; }

/* ── CARDS ──────────────────────────────────────────────────── */
.inc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.inc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--brand-mid);
}
.card-img-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.tag-pill {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ── HERO SLIDER ───────────────────────────────────────────── */
.hero-slider-section { 
  padding: 0; 
}
.hero-slider-section .carousel { 
  margin-bottom: 0; 
}

.hero-slide {
  min-height: 520px;
  padding: 60px 0;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-slide {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.25);
}
.hero-slide-emoji {
  font-size: 16px;
}
.hero-slide-title {
  font-size: clamp(28px, 4vw, 46px);
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero-slide-desc {
  color: rgba(255,255,255,.9);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-slide-btn {
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  transition: var(--transition);
}
.hero-slide-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,.2);
}
.hero-slide-graphic {
  font-size: 160px;
  opacity: 0.2;
  filter: grayscale(100%);
  position: relative;
  z-index: 1;
}



@media (max-width: 991px) {
  .hero-slide { min-height: 480px; padding: 50px 0; text-align: center; }
  .hero-slide::before { width: 100%; opacity: 0.3; }
  .hero-slide-desc { margin-left: auto; margin-right: auto; }
}
@media (max-width: 576px) {
  .hero-slide { min-height: 420px; padding: 40px 0; }
  .hero-slide-title { font-size: 24px; }
  .hero-slide-graphic { font-size: 100px; }
}



/* ── FEATURED GRID ──────────────────────────────────────────── */
.featured-main .card-body { padding: 20px 22px; }
.featured-main .article-title { font-family: var(--font-display); font-size: 21px; margin: 9px 0; line-height: 1.3; }
.featured-main .article-meta  { font-size: 12px; color: var(--text-muted); }
.featured-main .article-excerpt{ font-size: 13.5px; color: var(--text-mid); margin-top: 7px; line-height: 1.7; }

.mini-card {
  display: flex; gap: 13px; padding: 13px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; transition: var(--transition);
}
.mini-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--brand-mid); }
.mini-card-img {
  width: 68px; height: 68px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-mid));
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.mini-card-title { font-size: 13px; font-weight: 600; color: var(--text-dark); line-height: 1.4; margin: 4px 0 5px; }
.mini-card-meta  { font-size: 11px; color: var(--text-muted); }

/* ── CATEGORY TABS ──────────────────────────────────────────── */
.cat-tab {
  padding: 7px 17px; border-radius: 20px;
  font-size: 13px; font-weight: 500;
  border: 1.5px solid var(--border);
  background: #fff; color: var(--text-mid);
  transition: var(--transition); cursor: pointer;
  white-space: nowrap;
}
.cat-tab:hover { border-color: var(--brand); color: var(--brand); }
.cat-tab.active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ── ARTICLE CARDS ──────────────────────────────────────────── */
.article-card .card-body { padding: 16px 18px; }
.article-card .article-title { font-family: var(--font-display); font-size: 15.5px; margin: 7px 0 7px; line-height: 1.38; }
.article-card .article-meta  { font-size: 11px; color: var(--text-muted); }
.article-card .article-excerpt{ font-size: 13px; color: var(--text-mid); margin-top: 5px; line-height: 1.65; }
.read-more { font-size: 12px; font-weight: 700; color: var(--brand); display: inline-flex; align-items: center; gap: 3px; margin-top: 10px; }

/* ── STATS BANNER ───────────────────────────────────────────── */
.stats-banner { background: var(--brand); padding: 54px 0; }
.stat-num   { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: #fff; line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.78); margin-top: 5px; font-weight: 500; }

/* ── EVENTS ─────────────────────────────────────────────────── */
.event-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.event-date-band {
  background: var(--brand); color: #fff;
  padding: 15px 18px; display: flex; align-items: center; gap: 13px;
}
.event-day  { font-family: var(--font-display); font-size: 34px; font-weight: 700; line-height: 1; }
.event-body { padding: 16px 18px; }
.event-title{ font-family: var(--font-display); font-size: 15.5px; margin-bottom: 5px; }
.event-venue{ font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.event-type-badge {
  font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 20px;
  background: rgba(255,255,255,.2); color: #fff;
}

/* ── SCROLL TO TOP BUTTON ─────────────────────────────────── */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #18aaed;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
}
.scroll-to-top svg {
  width: 24px;
  height: 24px;
  fill: white;
}
.scroll-to-top:hover {
  background: #0e8dc5;
}

/* ── IN FOCUS CARDS ───────────────────────────────────────── */
.in-focus-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); height: 100%;
}
.in-focus-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--brand);
}
.in-focus-img {
  aspect-ratio: 16/9;
  background-size: cover; background-position: center;
  background-color: var(--brand-light);
}
.in-focus-body { padding: 18px 20px; }
.in-focus-date { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.in-focus-title { font-size: 15px; font-weight: 600; color: var(--text-dark); line-height: 1.4; margin-bottom: 12px; }

/* ── COMMITMENT CARDS ─────────────────────────────────────── */
.commitment-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px;
  text-align: center; transition: var(--transition); height: 100%;
}
.commitment-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.commitment-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 16px;
  transition: var(--transition);
}
.commitment-card:hover .commitment-icon { background: var(--brand); transform: scale(1.08); }
.commitment-title { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.commitment-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; }

/* ── IN FOCUS MORE ─────────────────────────────────────────── */
.in-focus-more { font-size: 12px; font-weight: 700; color: var(--brand); }

/* ── COMMUNITY CARDS ────────────────────────────────────────── */
.community-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 20px;
  text-align: center; transition: var(--transition); cursor: pointer;
}
.community-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.community-icon {
  width: 54px; height: 54px; border-radius: 13px;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 14px;
  transition: var(--transition);
}
.community-card:hover .community-icon { background: var(--brand); transform: scale(1.08); }
.community-card-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 7px; }
.community-card-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }

/* ── VOLUNTEER STEPS ────────────────────────────────────────── */
.vol-step  { text-align: center; padding: 22px 14px; }
.vol-num   {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand); color: #fff;
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 13px;
}
.vol-title { font-size: 14.5px; font-weight: 700; margin-bottom: 5px; }
.vol-desc  { font-size: 13px; color: var(--text-muted); }

/* ── NEWSLETTER SECTION ─────────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(130deg, var(--brand-deeper), var(--brand));
  padding: 66px 0;
}
.newsletter-title { font-family: var(--font-display); font-size: clamp(24px,3.5vw,36px); color: #fff; margin-bottom: 10px; }
.newsletter-desc  { color: rgba(255,255,255,.82); font-size: 14.5px; line-height: 1.78; }
.nl-input-wrap { display: flex; margin-top: 20px; }
.nl-input {
  flex: 1; padding: 13px 16px;
  border-radius: var(--radius) 0 0 var(--radius);
  border: none; font-size: 14px; font-family: var(--font-body); outline: none;
}
.nl-btn {
  padding: 13px 22px;
  background: var(--brand-deeper); color: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14px; font-weight: 700; font-family: var(--font-body);
  border: none; cursor: pointer; transition: var(--transition);
}
.nl-btn:hover { background: #053a55; }

/* ── MEMBERSHIP PLANS ───────────────────────────────────────── */
.plan-card {
  background: #fff; border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 24px;
  position: relative; transition: var(--transition);
}
.plan-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); }
.plan-card.featured { border-color: var(--brand); background: var(--brand-light); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}
.plan-name  { font-size: 12px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 7px; }
.plan-price { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--text-dark); }
.plan-price span { font-family: var(--font-body); font-size: 13px; font-weight: 400; color: var(--text-muted); }
.plan-desc  { font-size: 13px; color: var(--text-mid); margin: 9px 0 18px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 22px; }
.plan-features li {
  font-size: 13px; color: var(--text-mid);
  padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.plan-features li::before { content: '✓'; color: var(--brand); font-weight: 800; flex-shrink: 0; }

/* ── JOBS ───────────────────────────────────────────────────── */
.job-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 22px;
  display: flex; align-items: center; gap: 18px;
  transition: var(--transition);
}
.job-card:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.job-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.job-tag   { font-size: 11px; padding: 3px 10px; border-radius: 20px; background: var(--bg-section); color: var(--text-muted); border: 1px solid var(--border); }

/* ── DONATE ─────────────────────────────────────────────────── */
.donate-section { background: var(--bg-off); padding: 72px 0; }
.donate-amount-btn {
  padding: 9px 20px; border-radius: var(--radius);
  border: 2px solid var(--border);
  font-size: 14px; font-weight: 700;
  color: var(--text-mid); background: #fff;
  transition: var(--transition); cursor: pointer;
}
.donate-amount-btn:hover,
.donate-amount-btn.active { border-color: var(--brand); background: var(--brand); color: #fff; }
.donate-custom-wrap { position: relative; margin-bottom: 12px; }
.donate-currency {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  font-size: 15px; font-weight: 700; color: var(--text-muted);
}
.donate-input {
  width: 100%; padding: 12px 13px 12px 32px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-size: 15px; font-family: var(--font-body); outline: none;
  transition: var(--transition);
}
.donate-input:focus { border-color: var(--brand); }

/* ── OFFICES ────────────────────────────────────────────────── */
.office-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px;
  transition: var(--transition);
}
.office-card:hover { box-shadow: var(--shadow-md); border-color: var(--brand); }
.office-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 13px;
}
.office-name { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.office-type { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--brand); margin-bottom: 9px; }
.office-addr { font-size: 13px; color: var(--text-mid); line-height: 1.65; }
.office-phone{ font-size: 13px; font-weight: 600; color: var(--brand); margin-top: 7px; }

/* ── LEGAL PAGES ────────────────────────────────────────────── */
.legal-content h5 { font-family: var(--font-display); color: var(--text-dark); margin: 24px 0 8px; font-size: 18px; }
.legal-content p  { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(130deg, var(--brand-deeper) 0%, var(--brand) 100%);
  padding: 48px 0;
}
.page-hero h1 { color: #fff; font-size: clamp(24px, 4vw, 40px); }
.page-hero p  { color: rgba(255,255,255,.82); font-size: 15px; }
.breadcrumb-item a          { color: rgba(255,255,255,.7); }
.breadcrumb-item.active     { color: rgba(255,255,255,.9); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: #ffffff;
  border-top: 3px solid var(--brand);
  padding: 52px 0 0;
}
.footer-newsletter-strip {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 40px;
}
.newsletter-form { display: flex; }
.newsletter-input {
  flex: 1; padding: 10px 14px;
  border: 1.5px solid var(--border); border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 13px; font-family: var(--font-body); outline: none;
  min-width: 0;
}
.newsletter-input:focus { border-color: var(--brand); }
.newsletter-btn {
  padding: 10px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}

.footer-main { margin-bottom: 36px; }

.footer-logo {
  border-radius: 50%;
  border: 3px solid var(--brand-light);
  object-fit: contain;
  background: #fff;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px;
}
.footer-brand-desc {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.75; max-width: 270px;
}
.footer-social-link {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--bg-section); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 12px; font-weight: 700;
  transition: var(--transition); text-decoration: none;
}
.footer-social-link:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

.footer-col-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-dark); margin-bottom: 14px;
}
.footer-link {
  display: block; font-size: 13px; color: var(--text-muted);
  padding: 4px 0; transition: color .15s;
}
.footer-link:hover { color: var(--brand); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 4px; font-size: 12px; color: var(--text-muted); }
.footer-contact-item i { color: var(--brand); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: var(--text-muted); transition: color .15s; }
.footer-contact-item a:hover { color: var(--brand); }

.footer-divider { border-color: var(--border); margin: 0 0 18px; }

.footer-bottom { padding-bottom: 20px; }
.footer-copy   { font-size: 12px; color: var(--text-muted); }
.footer-legal-link {
  font-size: 12px; color: var(--text-muted);
  transition: color .15s;
}
.footer-legal-link:hover { color: var(--brand); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .section { padding: 52px 0; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1.5px solid var(--border); border-radius: var(--radius) var(--radius) 0 0; }
  .newsletter-btn   { border-radius: 0 0 var(--radius) var(--radius); }
}

@media (max-width: 767.98px) {
  .site-hero { padding: 40px 0 52px; }
  .hero-title { font-size: clamp(26px,7vw,36px); }
  .stats-banner .row > div + div { margin-top: 8px; }
  .nl-input-wrap { flex-direction: column; }
  .nl-input { border-radius: var(--radius) var(--radius) 0 0; }
  .nl-btn   { border-radius: 0 0 var(--radius) var(--radius); }
  .job-card { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal  { justify-content: center; }
}

@media (max-width: 575.98px) {
  .plan-card { margin-top: 16px; }
  .donate-section .row > div:first-child { margin-bottom: 24px; }
}
