/* ============================================================
   جمعية البر بظهران الجنوب — Premium Design System v2
   خط: Tajawal | ألوان: أخضر إسلامي #0d5c3a + ذهبي #c9a84c
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --primary:        #0d5c3a;
  --primary-dark:   #083d27;
  --primary-mid:    #0f6b44;
  --primary-light:  #e6f2ec;
  --gold:           #c9a84c;
  --gold-light:     #f5eac8;
  --gold-dark:      #a07830;
  --white:          #ffffff;
  --gray-50:        #f8faf9;
  --gray-100:       #f1f5f2;
  --gray-200:       #e2ebe5;
  --gray-300:       #c8d8cc;
  --gray-400:       #96b09c;
  --gray-500:       #6b8872;
  --gray-600:       #4a6350;
  --gray-700:       #2d4532;
  --gray-800:       #1a2e1f;
  --gray-900:       #0f1c13;
  --text:           #1a2e1f;
  --text-muted:     #5a7060;
  --border:         #d8e8dc;
  --bg:             #f8faf9;
  --danger:         #dc2626;
  --success:        #16a34a;
  --radius:         0.75rem;
  --radius-lg:      1.25rem;
  --radius-xl:      2rem;
  --shadow-sm:      0 1px 4px rgba(13,92,58,0.07);
  --shadow:         0 4px 18px rgba(13,92,58,0.10);
  --shadow-lg:      0 12px 45px rgba(13,92,58,0.14);
  --shadow-gold:    0 6px 24px rgba(201,168,76,0.28);
  --font:           'Tajawal', sans-serif;
  --ease:           cubic-bezier(0.4,0,0.2,1);
  --transition:     all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { direction: rtl; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; }

/* ─── Top Bar ────────────────────────────────────────────── */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__inner {
  max-width: 1300px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.topbar__group { display: flex; align-items: center; gap: 1.5rem; }
.topbar__item {
  display: flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.78); transition: var(--transition);
}
.topbar__item:hover { color: var(--gold-light); }
.topbar__item svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }
.topbar__divider { width: 1px; height: 14px; background: rgba(255,255,255,0.12); }

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(13,92,58,0.06);
  transition: var(--transition);
}
.navbar__inner {
  max-width: 1300px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem; height: 70px;
}
/* Brand */
.navbar__brand { display: flex; align-items: center; gap: 0.85rem; flex-shrink: 0; }
.navbar__logo-box {
  width: 48px; height: 48px;
  background: var(--primary); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(13,92,58,0.32); transition: var(--transition); overflow: hidden;
}
.navbar__logo-box img { width: 34px; height: 34px; object-fit: contain; filter: brightness(0) invert(1); }
.navbar__logo-box:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(13,92,58,0.38); }
.navbar__brand-name { font-size: 1.05rem; font-weight: 800; color: var(--primary); line-height: 1.2; letter-spacing: -0.01em; }
.navbar__brand-sub { font-size: 0.7rem; font-weight: 700; color: var(--gold-dark); letter-spacing: 0.03em; }
/* Nav links */
.navbar__nav { display: flex; align-items: center; gap: 0.2rem; flex: 1; justify-content: center; }
.nav-link {
  position: relative; font-size: 0.9rem; font-weight: 700;
  color: var(--gray-600); padding: 0.5rem 0.9rem;
  border-radius: 50px; transition: var(--transition);
  display: flex; align-items: center; gap: 0.3rem; white-space: nowrap;
}
.nav-link:hover { color: var(--primary); background: var(--primary-light); }
.nav-link.active { color: var(--primary); background: var(--primary-light); }
/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown__toggle { cursor: pointer; }
.nav-dropdown__toggle svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown__toggle svg { transform: rotate(180deg); }
.nav-dropdown__menu {
  position: absolute; top: calc(100% + 12px); right: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  min-width: 200px; padding: 0.5rem; z-index: 200;
  opacity: 0; visibility: hidden; transform: translateY(-10px); transition: var(--transition);
}
.nav-dropdown:hover .nav-dropdown__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown__item {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.7rem 1rem; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 600; color: var(--gray-700); transition: var(--transition);
}
.nav-dropdown__item svg { width: 16px; height: 16px; color: var(--primary); }
.nav-dropdown__item:hover { background: var(--primary-light); color: var(--primary); }
/* Actions */
.navbar__actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.btn-donate {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--gold); color: var(--primary-dark);
  font-size: 0.9rem; font-weight: 800; padding: 0.58rem 1.4rem;
  border-radius: 50px; border: none; cursor: pointer;
  transition: var(--transition); box-shadow: var(--shadow-gold); white-space: nowrap;
}
.btn-donate svg { width: 15px; height: 15px; }
.btn-donate:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.42); }
/* Mobile */
.navbar__toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; border-radius: var(--radius); background: none; border: none;
}
.navbar__toggle span { display: block; width: 22px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }
.navbar__toggle:hover { background: var(--primary-light); }
.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 1.25rem 2rem 2rem; }
.mobile-menu.open { display: block; }
.mobile-menu .nav-link { display: block; padding: 0.7rem 1rem; font-size: 0.95rem; }
.mobile-menu .btn-donate { width: 100%; justify-content: center; margin-top: 1rem; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #156b45 100%);
  position: relative; overflow: hidden; display: flex; align-items: center;
}
.hero__pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}
.hero__glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: rgba(201,168,76,0.07); top: -300px; left: -200px; pointer-events: none; }
.hero__glow2 { position: absolute; width: 450px; height: 450px; border-radius: 50%; background: rgba(255,255,255,0.04); bottom: -150px; right: 5%; pointer-events: none; }
.hero__inner {
  max-width: 1300px; margin: 0 auto; padding: 5rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; position: relative; z-index: 2; width: 100%;
}
.hero__content { color: var(--white); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light); font-size: 0.8rem; font-weight: 700;
  padding: 0.42rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
  letter-spacing: 0.04em; backdrop-filter: blur(10px);
}
.hero__badge::before { content: ''; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.4)} }
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.9rem); font-weight: 900;
  line-height: 1.12; color: var(--white); margin-bottom: 1.25rem; letter-spacing: -0.025em;
}
.hero__title em { color: var(--gold); font-style: normal; }
.hero__desc { font-size: 1.08rem; color: rgba(255,255,255,0.8); line-height: 1.85; margin-bottom: 2.5rem; max-width: 480px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--primary-dark);
  font-weight: 800; font-size: 1rem; padding: 0.88rem 2.2rem;
  border-radius: 50px; border: none; cursor: pointer;
  transition: var(--transition); box-shadow: 0 6px 28px rgba(201,168,76,0.42);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 38px rgba(201,168,76,0.52); background: var(--gold-dark); color: var(--white); }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.1); color: var(--white);
  font-weight: 700; font-size: 1rem; padding: 0.88rem 2.2rem;
  border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.28);
  cursor: pointer; transition: var(--transition); backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); border-color: rgba(255,255,255,0.5); }
.hero__stats {
  display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat { }
.hero__stat-num { font-size: 2.1rem; font-weight: 900; color: var(--gold); line-height: 1; display: block; }
.hero__stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 0.3rem; }
/* Hero Visual */
.hero__visual { position: relative; }
.hero__img-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.42);
  transform: perspective(1200px) rotateY(4deg) rotateX(2deg);
  transition: var(--transition);
}
.hero__img-card:hover { transform: perspective(1200px) rotateY(2deg) rotateX(1deg) translateY(-8px); }
.hero__img-card img { width: 100%; height: 500px; object-fit: cover; }
.hero__img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,61,39,0.45) 0%, transparent 60%); }
.hero__img-pill {
  position: absolute; bottom: 2rem; right: 2rem;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(14px);
  border-radius: var(--radius-lg); padding: 1.1rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.hero__img-pill-icon {
  width: 46px; height: 46px; background: var(--primary-light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.hero__img-pill-icon svg { width: 22px; height: 22px; }
.hero__img-pill-num { font-size: 1.5rem; font-weight: 900; color: var(--primary); line-height: 1; }
.hero__img-pill-text { font-size: 0.78rem; color: var(--text-muted); }
.hero__float-badge {
  position: absolute; top: -1.8rem; left: -1.8rem;
  background: var(--gold); color: var(--primary-dark);
  padding: 0.85rem 1.3rem; border-radius: var(--radius-lg);
  font-weight: 900; font-size: 0.85rem; text-align: center;
  box-shadow: 0 8px 28px rgba(201,168,76,0.45); line-height: 1.3;
}

/* ─── Stats Bar ──────────────────────────────────────────── */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.stats-bar__grid {
  max-width: 1300px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stats-bar__item {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 2rem 2rem; border-left: 1px solid var(--border);
  transition: var(--transition); cursor: default;
}
.stats-bar__item:last-child { border-left: none; }
.stats-bar__item:hover { background: var(--primary-light); }
.stats-bar__icon {
  width: 52px; height: 52px; background: var(--primary-light);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0; transition: var(--transition);
}
.stats-bar__icon svg { width: 22px; height: 22px; }
.stats-bar__item:hover .stats-bar__icon { background: var(--primary); color: var(--white); }
.stats-bar__num { font-size: 2rem; font-weight: 900; color: var(--primary); line-height: 1; letter-spacing: -0.03em; }
.stats-bar__label { font-size: 0.83rem; color: var(--text-muted); margin-top: 0.2rem; font-weight: 500; }

/* ─── Section Base ───────────────────────────────────────── */
.section { padding: 5.5rem 0; }
.section--light { background: var(--gray-50); }
.section--dark { background: var(--gray-900); color: var(--white); }
.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--primary-light); color: var(--primary);
  font-size: 0.78rem; font-weight: 700; padding: 0.4rem 1rem;
  border-radius: 50px; margin-bottom: 1rem; letter-spacing: 0.04em;
  border: 1px solid rgba(13,92,58,0.14);
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.7rem); font-weight: 900;
  color: var(--text); line-height: 1.18; letter-spacing: -0.025em; margin-bottom: 0.75rem;
}
.section-title em { font-style: normal; color: var(--primary); }
.section--dark .section-title { color: var(--white); }
.section--dark .section-title em { color: var(--gold); }
.section-desc { font-size: 1rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.8; }
.section--dark .section-desc { color: rgba(255,255,255,0.65); }
.section-line { width: 56px; height: 4px; background: linear-gradient(90deg,var(--primary),var(--gold)); border-radius: 2px; margin: 1rem auto 0; }

/* ─── Program Cards ──────────────────────────────────────── */
.programs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.prog-card {
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border);
  padding: 2rem; transition: var(--transition); display: flex; flex-direction: column;
  gap: 1rem; position: relative; overflow: hidden;
}
.prog-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg,var(--primary),var(--gold));
  transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease);
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prog-card:hover::after { transform: scaleX(1); }
.prog-card__icon {
  width: 58px; height: 58px; background: var(--primary-light); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); transition: var(--transition);
}
.prog-card__icon svg { width: 26px; height: 26px; }
.prog-card:hover .prog-card__icon { background: var(--primary); color: var(--white); }
.prog-card__title { font-size: 1.12rem; font-weight: 800; color: var(--text); }
.prog-card__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; flex: 1; }
.prog-card__link {
  font-size: 0.86rem; font-weight: 700; color: var(--primary);
  display: flex; align-items: center; gap: 0.4rem; margin-top: auto;
  transition: var(--transition);
}
.prog-card__link:hover { gap: 0.7rem; }
.prog-card__link svg { width: 16px; height: 16px; }

/* ─── Project Cards ──────────────────────────────────────── */
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.proj-card {
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border);
  overflow: hidden; transition: var(--transition); display: flex; flex-direction: column;
}
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(13,92,58,0.18); }
.proj-card__img { position: relative; overflow: hidden; }
.proj-card__img img { width: 100%; height: 215px; object-fit: cover; transition: transform 0.5s var(--ease); }
.proj-card:hover .proj-card__img img { transform: scale(1.06); }
.proj-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,61,39,0.55), transparent); opacity: 0; transition: var(--transition); }
.proj-card:hover .proj-card__overlay { opacity: 1; }
.proj-card__status {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 0.72rem; font-weight: 800; padding: 0.28rem 0.75rem;
  border-radius: 50px; letter-spacing: 0.04em;
}
.proj-card__status--active { background: #dcfce7; color: #15803d; }
.proj-card__status--completed { background: var(--gold-light); color: var(--gold-dark); }
.proj-card__status--upcoming { background: #dbeafe; color: #1d4ed8; }
.proj-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.proj-card__cat { font-size: 0.74rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.proj-card__title { font-size: 1.08rem; font-weight: 800; color: var(--text); margin-bottom: 0.75rem; line-height: 1.4; }
.proj-card__title a:hover { color: var(--primary); }
.proj-card__desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.25rem; }
.proj-card__progress { margin-bottom: 1.1rem; }
.proj-card__progress-bar { height: 6px; background: var(--gray-100); border-radius: 3px; overflow: hidden; margin-bottom: 0.5rem; }
.proj-card__progress-fill { height: 100%; background: linear-gradient(90deg,var(--primary),var(--gold)); border-radius: 3px; }
.proj-card__progress-info { display: flex; justify-content: space-between; font-size: 0.78rem; }
.proj-card__progress-raised { font-weight: 700; color: var(--primary); }
.proj-card__progress-pct { color: var(--text-muted); }
.proj-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); margin-top: auto; }
.proj-card__date { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.3rem; }
.proj-card__link { font-size: 0.84rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 0.35rem; transition: var(--transition); }
.proj-card__link:hover { gap: 0.6rem; }

/* ─── News Cards ─────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.news-card {
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border);
  overflow: hidden; transition: var(--transition); display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.news-card__img { overflow: hidden; }
.news-card__img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s var(--ease); }
.news-card:hover .news-card__img img { transform: scale(1.05); }
.news-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-card__meta { display: flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.75rem; flex-wrap: wrap; }
.news-card__meta-dot { width: 4px; height: 4px; background: var(--gray-300); border-radius: 50%; }
.news-card__title { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 0.65rem; line-height: 1.45; flex: 1; }
.news-card__title a:hover { color: var(--primary); }
.news-card__excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.25rem; }
.news-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); margin-top: auto; }
.news-card__link { font-size: 0.84rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 0.35rem; transition: var(--transition); }
.news-card__link:hover { gap: 0.6rem; }

/* ─── About Split ─────────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-split__img { position: relative; }
.about-split__img-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-split__img-main img { width: 100%; height: 440px; object-fit: cover; }
.about-split__float {
  position: absolute; bottom: -2rem; left: -2rem;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 1rem; border: 1px solid var(--border);
}
.about-split__float-icon { width: 44px; height: 44px; background: var(--primary-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.about-split__float-icon svg { width: 22px; height: 22px; }
.about-split__float-num { font-size: 1.4rem; font-weight: 900; color: var(--primary); line-height: 1; }
.about-split__float-label { font-size: 0.78rem; color: var(--text-muted); }
.about-split__features { display: flex; flex-direction: column; gap: 1.35rem; margin-top: 2rem; }
.feat-item { display: flex; gap: 1rem; align-items: flex-start; }
.feat-item__icon { width: 46px; height: 46px; background: var(--primary-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.feat-item__icon svg { width: 20px; height: 20px; }
.feat-item__title { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 0.25rem; }
.feat-item__desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ─── Member Cards ───────────────────────────────────────── */
.members-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.mem-card {
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border);
  padding: 2rem 1.5rem; text-align: center; transition: var(--transition);
}
.mem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mem-card__avatar { width: 88px; height: 88px; border-radius: 50%; overflow: hidden; margin: 0 auto 1.25rem; border: 3px solid var(--primary-light); box-shadow: 0 4px 14px rgba(13,92,58,0.15); }
.mem-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.mem-card__initial { width: 100%; height: 100%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 900; color: var(--primary); }
.mem-card__name { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 0.3rem; }
.mem-card__pos { font-size: 0.82rem; color: var(--primary); font-weight: 700; margin-bottom: 0.5rem; }

/* ─── Bank Cards ─────────────────────────────────────────── */
.bank-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.bank-card {
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border);
  overflow: hidden; transition: var(--transition);
}
.bank-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bank-card__header { background: var(--primary); color: var(--white); padding: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.bank-card__header-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bank-card__header-icon svg { width: 22px; height: 22px; color: var(--white); }
.bank-card__bank-name { font-size: 1.05rem; font-weight: 800; }
.bank-card__body { padding: 1.5rem; }
.bank-row { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0; border-bottom: 1px solid var(--border); gap: 1rem; }
.bank-row:last-child { border-bottom: none; }
.bank-row__label { font-size: 0.84rem; color: var(--text-muted); flex-shrink: 0; }
.bank-row__value { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.bank-row__value--mono { font-family: monospace; direction: ltr; font-size: 1rem; }

/* ─── CTA ────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; width: 600px; height: 600px; background: rgba(201,168,76,0.06); border-radius: 50%; top: -250px; left: -150px; }
.cta-section__inner { position: relative; z-index: 2; }
.cta-section__title { font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 900; color: var(--white); margin-bottom: 1rem; letter-spacing: -0.02em; }
.cta-section__desc { font-size: 1rem; color: rgba(255,255,255,0.78); margin-bottom: 2.5rem; line-height: 1.8; }
.cta-section__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Page Header ─────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 4rem 0; text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(45deg,#fff 0,#fff 1px,transparent 0,transparent 50%);
  background-size: 28px 28px;
}
.page-header__inner { position: relative; z-index: 2; }
.page-header__breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.84rem; color: rgba(255,255,255,0.6); margin-bottom: 0.85rem; }
.page-header__breadcrumb a { color: rgba(255,255,255,0.6); }
.page-header__breadcrumb a:hover { color: var(--gold-light); }
.page-header__breadcrumb span { color: var(--gold); font-weight: 700; }
.page-header__title { font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: var(--white); margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.page-header__desc { font-size: 1rem; color: rgba(255,255,255,0.72); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--gray-900); color: rgba(255,255,255,0.7); }
.footer__main {
  max-width: 1300px; margin: 0 auto; padding: 4.5rem 2rem 3.5rem;
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
  gap: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07);
}
/* Brand col */
.footer__brand-logo { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem; }
.footer__brand-icon { width: 46px; height: 46px; background: var(--primary); border-radius: 13px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(13,92,58,0.42); flex-shrink: 0; }
.footer__brand-icon img { width: 30px; height: 30px; object-fit: contain; filter: brightness(0) invert(1); }
.footer__brand-icon svg { width: 22px; height: 22px; color: var(--white); }
.footer__brand-name { font-size: 0.98rem; font-weight: 800; color: var(--white); line-height: 1.2; }
.footer__brand-sub { font-size: 0.68rem; color: var(--gold); font-weight: 700; }
.footer__desc { font-size: 0.87rem; line-height: 1.85; color: rgba(255,255,255,0.55); margin-bottom: 1.75rem; }
.footer__social { display: flex; gap: 0.55rem; }
.footer__social-btn {
  width: 38px; height: 38px; background: rgba(255,255,255,0.06);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition); border: 1px solid rgba(255,255,255,0.07);
}
.footer__social-btn svg { width: 16px; height: 16px; }
.footer__social-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-2px); }
/* Cols */
.footer__col-title {
  font-size: 0.88rem; font-weight: 800; color: var(--white);
  margin-bottom: 1.25rem; padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--primary); display: inline-block;
}
.footer__links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__link { font-size: 0.86rem; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 0.45rem; transition: var(--transition); }
.footer__link svg { width: 12px; height: 12px; color: var(--gold); flex-shrink: 0; transition: var(--transition); }
.footer__link:hover { color: var(--white); padding-right: 4px; }
.footer__link:hover svg { color: var(--gold-light); }
/* Contact col */
.footer__contact-row { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.86rem; color: rgba(255,255,255,0.55); margin-bottom: 1rem; line-height: 1.65; }
.footer__contact-row svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
/* Bottom bar */
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.05); }
.footer__bottom-inner {
  max-width: 1300px; margin: 0 auto; padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer__copy strong { color: var(--gold); font-weight: 700; }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-link { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer__bottom-link:hover { color: var(--white); }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font); font-weight: 700; border-radius: 50px;
  border: 2px solid transparent; cursor: pointer; transition: var(--transition);
  text-decoration: none; white-space: nowrap; font-size: 0.95rem; padding: 0.7rem 1.75rem;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn--primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(13,92,58,0.3); color: var(--white); }
.btn--gold { background: var(--gold); color: var(--primary-dark); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn--outline-white:hover { background: rgba(255,255,255,0.14); border-color: var(--white); }
.btn--danger { background: var(--danger); color: var(--white); border-color: var(--danger); }
.btn--danger:hover { opacity: 0.85; }
.btn--secondary { background: var(--gray-100); color: var(--gray-700); border-color: var(--gray-200); }
.btn--secondary:hover { background: var(--gray-200); }
.btn--sm { padding: 0.42rem 1rem; font-size: 0.84rem; }
.btn--lg { padding: 0.9rem 2.2rem; font-size: 1.05rem; }
.btn--full { width: 100%; }
.btn-primary { background: var(--primary); color: var(--white); padding: 0.7rem 1.75rem; border-radius: 50px; font-family: var(--font); font-weight: 700; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.5rem; border: none; cursor: pointer; transition: var(--transition); text-decoration: none; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(13,92,58,0.3); color: var(--white); }

/* ─── Forms ───────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-label { font-size: 0.87rem; font-weight: 700; color: var(--text); }
.form-label .required { color: var(--danger); }
.form-input, .form-control, .form-select, .form-textarea {
  width: 100%; padding: 0.72rem 1rem;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-family: var(--font); font-size: 0.95rem; color: var(--text);
  background: var(--white); transition: var(--transition); outline: none; direction: rtl;
}
.form-input:focus, .form-control:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13,92,58,0.1); }
.form-input::placeholder, .form-control::placeholder { color: var(--gray-400); }
.form-textarea { resize: vertical; min-height: 120px; }
select.form-select, select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b8872' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: left 1rem center; padding-left: 2.5rem; }
.form-input-file { width: 100%; padding: 0.65rem; border: 2px dashed var(--gray-200); border-radius: var(--radius); font-family: var(--font); font-size: 0.88rem; color: var(--text-muted); cursor: pointer; transition: var(--transition); }
.form-input-file:hover { border-color: var(--primary); background: var(--primary-light); }
.form-error { font-size: 0.8rem; color: var(--danger); display: flex; align-items: center; gap: 0.3rem; }
.form-hint { font-size: 0.8rem; color: var(--text-muted); }
.form-check { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.form-check input { width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer; }
.form-check-label { font-size: 0.9rem; font-weight: 500; color: var(--text); }
.form-actions { display: flex; gap: 0.75rem; align-items: center; padding-top: 0.5rem; }
.form-actions--sticky { position: sticky; bottom: 0; background: var(--white); border-top: 1px solid var(--border); padding: 1rem 1.5rem; margin: 0 -1.5rem -1.5rem; display: flex; gap: 0.75rem; z-index: 10; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.form-grid { display: grid; gap: 1.25rem; }
.form-grid--2 { grid-template-columns: 1fr 1fr; }
.form-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
.image-preview { margin-top: 0.5rem; border-radius: var(--radius); overflow: hidden; display: inline-block; border: 2px solid var(--border); }
.image-preview img { max-height: 150px; max-width: 300px; object-fit: cover; display: block; }

/* ─── Alerts ──────────────────────────────────────────────── */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; }
.alert--success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.alert--error   { background: #fef2f2; color: var(--danger); border: 1px solid #fecaca; }
.alert--warning { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }
.alert--info    { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }

/* ─── Badges ──────────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.73rem; font-weight: 700; padding: 0.28rem 0.75rem; border-radius: 50px; }
.badge--green  { background: #dcfce7; color: #15803d; }
.badge--gray   { background: var(--gray-100); color: var(--gray-600); }
.badge--gold   { background: var(--gold-light); color: var(--gold-dark); }
.badge--red    { background: #fee2e2; color: var(--danger); }
.badge--blue   { background: #dbeafe; color: #1d4ed8; }
.badge--teal   { background: var(--primary-light); color: var(--primary); }

/* ─── Admin Layout ───────────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; background: var(--gray-50); }
.admin-sidebar {
  width: 256px; background: var(--gray-900);
  position: fixed; top: 0; right: 0; height: 100vh;
  overflow-y: auto; z-index: 200; display: flex; flex-direction: column; flex-shrink: 0;
}
.admin-sidebar::-webkit-scrollbar { width: 4px; }
.admin-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }
.admin-sidebar__brand {
  padding: 1.4rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; gap: 0.85rem;
}
.admin-sidebar__brand-icon { width: 40px; height: 40px; background: var(--primary); border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(13,92,58,0.42); }
.admin-sidebar__brand-icon svg { color: var(--white); width: 20px; height: 20px; }
.admin-sidebar__brand-name { font-size: 0.88rem; font-weight: 800; color: var(--white); line-height: 1.2; }
.admin-sidebar__brand-sub { font-size: 0.67rem; color: var(--gold); font-weight: 700; }
.admin-sidebar__nav { flex: 1; padding: 1rem 0.75rem; }
.admin-nav-section { margin-bottom: 1.5rem; }
.admin-nav-section__label { font-size: 0.67rem; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; padding: 0 0.5rem; margin-bottom: 0.5rem; }
.admin-nav-link {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.68rem 0.75rem;
  border-radius: var(--radius); font-size: 0.87rem; font-weight: 600;
  color: rgba(255,255,255,0.6); transition: var(--transition); margin-bottom: 0.12rem;
}
.admin-nav-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.admin-nav-link:hover { background: rgba(255,255,255,0.07); color: var(--white); }
.admin-nav-link.active { background: var(--primary); color: var(--white); box-shadow: 0 4px 14px rgba(13,92,58,0.42); }
.admin-nav-link__badge { margin-right: auto; background: var(--gold); color: var(--primary-dark); font-size: 0.68rem; font-weight: 800; padding: 0.12rem 0.5rem; border-radius: 50px; }
.admin-sidebar__footer { padding: 1rem 0.75rem; border-top: 1px solid rgba(255,255,255,0.07); }
.admin-main { margin-right: 256px; flex: 1; display: flex; flex-direction: column; min-height: 100vh; }
.admin-topbar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 0 2rem; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm);
}
.admin-topbar__title { font-size: 1rem; font-weight: 800; color: var(--text); }
.admin-topbar__actions { display: flex; align-items: center; gap: 1rem; }
.admin-topbar__avatar { width: 36px; height: 36px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 800; font-size: 0.85rem; cursor: pointer; }
.admin-topbar__username { font-size: 0.86rem; font-weight: 700; color: var(--text); }
.admin-content { padding: 2rem; flex: 1; }
/* Admin Cards */
.admin-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden; }
.admin-card__header { padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.admin-card__title { font-size: 0.98rem; font-weight: 800; color: var(--text); display: flex; align-items: center; gap: 0.6rem; }
.admin-card__title svg { width: 18px; height: 18px; color: var(--primary); }
.admin-card__body { padding: 1.5rem; }
/* Stat cards */
.admin-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-bottom: 2rem; }
.stat-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 1.5rem; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 1.25rem; transition: var(--transition); }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stat-card__icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-card__icon--green { background: #dcfce7; color: var(--success); }
.stat-card__icon--blue  { background: #dbeafe; color: #2563eb; }
.stat-card__icon--gold  { background: var(--gold-light); color: var(--gold-dark); }
.stat-card__icon--red   { background: #fee2e2; color: var(--danger); }
.stat-card__icon svg { width: 22px; height: 22px; }
.stat-card__num { font-size: 1.8rem; font-weight: 900; color: var(--text); line-height: 1; }
.stat-card__label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }
/* Table */
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th { background: var(--gray-50); font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; padding: 0.85rem 1.25rem; text-align: right; border-bottom: 1px solid var(--border); white-space: nowrap; }
.admin-table td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--gray-50); }
.admin-table__img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; border: 2px solid var(--border); }
.admin-table__actions { display: flex; gap: 0.4rem; align-items: center; }
.admin-page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.75rem; gap: 1rem; flex-wrap: wrap; }
.admin-page-header__title { font-size: 1.45rem; font-weight: 900; color: var(--text); }
.admin-page-header__sub { font-size: 0.84rem; color: var(--text-muted); margin-top: 0.15rem; }
/* Settings */
.settings-grid { display: grid; grid-template-columns: 230px 1fr; gap: 1.75rem; align-items: start; }
.settings-nav { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); position: sticky; top: 5rem; }
.settings-nav__link { display: flex; align-items: center; gap: 0.75rem; padding: 0.88rem 1.25rem; font-size: 0.88rem; font-weight: 600; color: var(--gray-600); border-bottom: 1px solid var(--border); transition: var(--transition); cursor: pointer; }
.settings-nav__link:last-child { border-bottom: none; }
.settings-nav__link svg { width: 17px; height: 17px; color: var(--gray-400); flex-shrink: 0; }
.settings-nav__link:hover { background: var(--primary-light); color: var(--primary); }
.settings-nav__link.active { background: var(--primary-light); color: var(--primary); border-right: 3px solid var(--primary); }
.settings-nav__link.active svg { color: var(--primary); }
.settings-panel { display: none; }
.settings-panel.active { display: block; }
/* Admin Form */
.admin-form { display: flex; flex-direction: column; }
.admin-form-section__title { font-size: 0.82rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.2rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border); }
/* Admin Login */
.login-page { min-height: 100vh; background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid)); display: flex; align-items: center; justify-content: center; padding: 2rem; position: relative; overflow: hidden; }
.login-page::before { content: ''; position: absolute; width: 700px; height: 700px; background: rgba(201,168,76,0.06); border-radius: 50%; top: -300px; left: -200px; }
.login-card { background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem; width: 100%; max-width: 420px; box-shadow: 0 28px 70px rgba(0,0,0,0.28); position: relative; z-index: 2; }
.login-card__logo { text-align: center; margin-bottom: 2rem; }
.login-card__logo-icon { width: 64px; height: 64px; background: var(--primary); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.85rem; box-shadow: 0 8px 28px rgba(13,92,58,0.38); }
.login-card__logo-icon svg { color: var(--white); width: 32px; height: 32px; }
.login-card__name { font-size: 1.05rem; font-weight: 800; color: var(--text); }
.login-card__sub { font-size: 0.78rem; color: var(--gold-dark); font-weight: 700; }
.login-card__title { font-size: 1.4rem; font-weight: 900; color: var(--text); margin-bottom: 0.35rem; }
.login-card__desc { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 2rem; }

/* ─── Contact ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.65fr; gap: 3rem; align-items: start; }
.contact-info { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); border-radius: var(--radius-xl); padding: 2.5rem; color: var(--white); }
.contact-info__title { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.5rem; }
.contact-info__desc { font-size: 0.9rem; color: rgba(255,255,255,0.72); margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-info-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-item__icon { width: 44px; height: 44px; background: rgba(255,255,255,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold-light); }
.contact-info-item__icon svg { width: 20px; height: 20px; }
.contact-info-item__label { font-size: 0.76rem; color: rgba(255,255,255,0.55); margin-bottom: 0.25rem; font-weight: 600; }
.contact-info-item__val { font-size: 0.94rem; font-weight: 700; color: var(--white); }
.contact-form { background: var(--white); border-radius: var(--radius-xl); border: 1px solid var(--border); padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form__title { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 1.75rem; }

/* ─── Pagination ─────────────────────────────────────────── */
.pagination-wrap { display: flex; justify-content: center; margin-top: 3rem; }
.pagination-nav { display: flex; justify-content: center; }
.pagination-nav .pagination { display: flex; gap: 0.4rem; list-style: none; padding: 0; margin: 0; }
.pagination__link { display: inline-flex; align-items: center; padding: 0.5rem 1.1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.88rem; font-weight: 700; color: var(--text); transition: var(--transition); text-decoration: none; }
.pagination__link:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }
.pagination__item--disabled .pagination__link { opacity: 0.4; cursor: default; pointer-events: none; }
nav.pagination { display: flex; gap: 0.25rem; }
nav.pagination a, nav.pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 2.2rem; height: 2.2rem; padding: 0 0.5rem; border-radius: var(--radius); font-size: 0.88rem; font-weight: 600; border: 1px solid var(--border); color: var(--text); transition: var(--transition); }
nav.pagination a:hover { background: var(--primary-light); color: var(--primary); }
nav.pagination .active span, nav.pagination span.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ─── Message Detail ─────────────────────────────────────── */
.message-detail__meta { display: flex; flex-wrap: wrap; gap: 1rem; padding: 1.25rem; background: var(--gray-50); border-radius: var(--radius); margin-bottom: 1.5rem; border: 1px solid var(--border); }
.message-detail__meta-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.86rem; }
.message-detail__meta-label { font-weight: 700; color: var(--text-muted); }
.message-detail__body { font-size: 1rem; line-height: 1.9; white-space: pre-line; padding: 1.5rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 1.5rem; }
.message-detail__subject { padding: 0.85rem 0; border-bottom: 1px solid var(--border); margin-bottom: 1.25rem; font-size: 1rem; font-weight: 600; }
.message-detail__subject-label { color: var(--text-muted); font-weight: 400; margin-left: 0.4rem; }
.message-detail__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ─── Project Card Link ─────────────────────────────────── */
.proj-card__link { font-size: 0.84rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 0.35rem; transition: var(--transition); text-decoration: none; }
.proj-card__link:hover { gap: 0.6rem; color: var(--primary-dark); }

/* ─── Fade-up Animation ──────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Hero Buttons (standalone) ─────────────────────────── */
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--gold); color: var(--primary-dark); font-family: var(--font);
  font-weight: 800; font-size: 1rem; padding: 0.85rem 2rem;
  border-radius: 50px; border: none; cursor: pointer; transition: var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-hero-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(255,255,255,0.12); color: var(--white); font-family: var(--font);
  font-weight: 700; font-size: 1rem; padding: 0.85rem 2rem;
  border-radius: 50px; border: 2px solid rgba(255,255,255,0.35); cursor: pointer; transition: var(--transition);
  text-decoration: none; white-space: nowrap; backdrop-filter: blur(4px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); color: var(--white); transform: translateY(-2px); }

/* ─── Misc ────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state__icon { width: 80px; height: 80px; background: var(--gray-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--gray-400); }
.empty-state__icon svg { width: 36px; height: 36px; }
.empty-state__title { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 0.5rem; }
.empty-state__desc { font-size: 0.9rem; color: var(--text-muted); }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.container--narrow { max-width: 860px; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.breadcrumb__link { color: rgba(255,255,255,0.65); }
.breadcrumb__link:hover { color: var(--gold-light); }
.breadcrumb__sep { opacity: 0.45; }
.breadcrumb__current { color: var(--gold); font-weight: 700; }
.donation-note { display: flex; gap: 1rem; background: #fffbeb; border: 1px solid var(--gold); border-radius: var(--radius); padding: 1.25rem 1.5rem; align-items: flex-start; }
.donation-note svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.about-vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.vm-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 2rem; }
.vm-card--dark { background: var(--primary); color: var(--white); border-color: var(--primary); }
.vm-card__title { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.75rem; }
.vm-card__text { font-size: 0.92rem; line-height: 1.8; color: var(--text-muted); }
.vm-card--dark .vm-card__text { color: rgba(255,255,255,0.8); }
.objective-item { display: flex; gap: 0.75rem; align-items: flex-start; background: var(--white); padding: 1rem 1.25rem; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }

/* ─── Article / Show Pages ───────────────────────────────── */
.article-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.article-cover { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; box-shadow: var(--shadow-md); }
.article-cover img { width: 100%; height: 380px; object-fit: cover; display: block; }
.article-lead { font-size: 1.15rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1.75rem; border-right: 4px solid var(--gold); padding-right: 1.25rem; font-weight: 600; }
.article-body.prose { line-height: 1.9; color: var(--text); }
.article-body.prose h2 { font-size: 1.35rem; font-weight: 800; color: var(--primary-dark); margin: 2rem 0 1rem; }
.article-body.prose h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin: 1.5rem 0 0.75rem; }
.article-body.prose p { margin-bottom: 1.25rem; }
.article-body.prose ul { padding-right: 1.5rem; margin-bottom: 1.25rem; }
.article-body.prose ul li { margin-bottom: 0.5rem; }
.article-actions { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }
.article-main { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.article-meta { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.article-meta__item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; color: var(--text-muted); }
.article-meta__item svg { width: 16px; height: 16px; color: var(--primary); }

/* Sidebar */
.article-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 6rem; }
.sidebar-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.sidebar-card__title { font-size: 1.05rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 0.75rem; }
.sidebar-card__text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.sidebar-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-link { display: flex; align-items: center; gap: 0.5rem; color: var(--text); font-size: 0.9rem; font-weight: 600; padding: 0.6rem 0.75rem; border-radius: var(--radius); transition: var(--transition); text-decoration: none; }
.sidebar-link::before { content: '›'; color: var(--primary); font-size: 1.1rem; font-weight: 900; }
.sidebar-link:hover { background: var(--bg-light); color: var(--primary); padding-right: 1rem; }
.sidebar-tag { display: inline-block; background: var(--primary-light); color: var(--primary); font-size: 0.8rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 50px; }
.sidebar-progress-wrap { margin-top: 0.75rem; }
.sidebar-progress-label { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.sidebar-progress-bar { height: 8px; background: var(--bg-light); border-radius: 50px; overflow: hidden; }
.sidebar-progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--gold)); border-radius: 50px; transition: width 1s ease; }

/* Info blocks */
.info-block { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.5rem; border-radius: var(--radius-lg); margin-bottom: 1.25rem; }
.info-block--blue { background: #eff6ff; border: 1px solid #bfdbfe; }
.info-block--green { background: #f0fdf4; border: 1px solid #bbf7d0; }
.info-block__icon { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-block--blue .info-block__icon { background: #dbeafe; color: #2563eb; }
.info-block--green .info-block__icon { background: #dcfce7; color: var(--primary); }
.info-block__icon svg { width: 22px; height: 22px; }
.info-block__title { font-size: 1rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 0.4rem; }
.info-block__text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* Project progress bar */
.proj-detail-progress { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 1.5rem; }
.proj-detail-progress__label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.proj-detail-progress__pct { font-size: 1.4rem; font-weight: 900; color: var(--primary); }
.proj-detail-progress__bar { height: 12px; background: var(--bg-light); border-radius: 50px; overflow: hidden; }
.proj-detail-progress__fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--gold)); border-radius: 50px; }
.proj-stats-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.25rem; }
.proj-stat-mini { text-align: center; }
.proj-stat-mini__value { display: block; font-size: 1.15rem; font-weight: 800; color: var(--primary-dark); }
.proj-stat-mini__label { font-size: 0.8rem; color: var(--text-muted); }

/* Page hero small */
.page-hero--sm { min-height: 260px; padding: 3.5rem 0 3rem; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero__visual { display: none; }
  .hero__desc { margin: 0 auto 2.5rem; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .stats-bar__grid { grid-template-columns: repeat(2,1fr); }
  .programs-grid, .projects-grid, .news-grid { grid-template-columns: repeat(2,1fr); }
  .members-grid { grid-template-columns: repeat(3,1fr); }
  .bank-grid { grid-template-columns: repeat(2,1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-split { grid-template-columns: 1fr; }
  .about-split__img { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .admin-stats-grid { grid-template-columns: repeat(2,1fr); }
  .article-grid { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .navbar__toggle { display: flex; }
  .navbar__actions .btn-donate { display: none; }
  .topbar__group:last-child { display: none; }
  .section { padding: 3.5rem 0; }
  .programs-grid, .projects-grid, .news-grid, .members-grid, .bank-grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .admin-sidebar { width: 100%; position: relative; height: auto; }
  .admin-main { margin-right: 0; }
  .form-grid--2, .form-grid--3 { grid-template-columns: 1fr; }
  .settings-grid { grid-template-columns: 1fr; }
  .about-vm-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .navbar__inner { padding: 0 1.25rem; }
  .stats-bar__grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 1rem; align-items: center; }
  .hero__actions { flex-direction: column; }
  .admin-stats-grid { grid-template-columns: 1fr; }
  .cta-section__actions { flex-direction: column; align-items: center; }
}
