/* ==========================================================
   Markaz Alburhan – Site Stylesheet
   ========================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --navy: #101b3d;
  --deep-navy: #08122d;
  --donation-red: #d83f5b;
  --donation-red-dark: #b8304a;
  --gold: #f5e84b;
  --white: #ffffff;
  --muted: #a8b1c7;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 6px 16px rgba(8, 18, 45, 0.08);
  --shadow-md: 0 14px 38px rgba(8, 18, 45, 0.15);
  --shadow-lg: 0 24px 60px rgba(8, 18, 45, 0.25);

  --font-en: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-ur: 'Noto Nastaliq Urdu', 'Noto Naskh Arabic', serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-en);
  color: #1f2541;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
.urdu {
  font-family: var(--font-ur);
  direction: rtl;
  line-height: 2;
}

/* ---------- Helpers ---------- */
.bg-navy { background: var(--navy); }
.bg-deep-navy { background: var(--deep-navy); }
.section { padding: 80px 0; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
}
.eyebrow.gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn { border-radius: 999px; padding: 10px 22px; font-weight: 600; transition: all .25s ease; }
.btn-lg { padding: 12px 28px; }
.btn-donate {
  background: var(--donation-red);
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(216, 63, 91, 0.35);
}
.btn-donate:hover {
  background: var(--donation-red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(216, 63, 91, 0.45);
}
.btn-whatsapp { background: var(--whatsapp); color: #fff; border: none; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); color: #fff; transform: translateY(-2px); }
.btn-outline-light:hover { color: var(--navy); }
.btn-outline-navy {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--deep-navy);
  color: #cdd5ee;
  font-size: 0.875rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.top-bar a { color: #cdd5ee; margin-left: 12px; transition: color .2s; }
.top-bar a:hover { color: var(--gold); }
.top-bar-social a {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  margin-left: 8px;
}

/* ---------- Navbar ---------- */
.site-navbar {
  background: var(--navy);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1020;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
/* Circular logo (wrapper) next to brand text */
.brand-logo {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold) 0%, #e8d530 100%);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.brand-logo img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
  background: #fff;
  z-index: 2;
}
/* Fallback letters shown when no logo.png is present */
.brand-logo::before {
  content: "MA";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  z-index: 1;
}
@media (max-width: 575.98px) {
  .brand-logo { width: 56px; height: 56px; }
  .brand-logo::before { font-size: 1.15rem; }
}
.brand-text strong {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .4px;
  display: block;
  line-height: 1.15;
}
.brand-text small {
  color: var(--gold);
  font-family: var(--font-ur);
  font-size: 1.1rem;
  line-height: 1.5;
}
@media (max-width: 575.98px) {
  .brand-text strong { font-size: 1.15rem; }
  .brand-text small { font-size: 0.95rem; }
}
.site-navbar .nav-link {
  color: #d6dcf0;
  font-weight: 500;
  padding: 8px 16px !important;
  position: relative;
  transition: color .2s;
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active { color: var(--gold); }
.site-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-center { gap: 4px; }
.navbar-toggler {
  border-color: rgba(255,255,255,.3);
}
.navbar-toggler-icon {
  filter: invert(1) brightness(1.5);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  background-color: var(--deep-navy); /* fallback if image missing */
  overflow: hidden;
}
/* Soft dark overlay — image stays clearly visible, text still pops */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,18,45,0.45) 0%, rgba(8,18,45,0.60) 100%),
    radial-gradient(circle at center, rgba(8,18,45,0.25) 0%, rgba(8,18,45,0.65) 85%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}
.hero-eyebrow {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 6px 28px rgba(0,0,0,.75), 0 2px 6px rgba(0,0,0,.55);
  line-height: 1.5;
}
.hero-sub {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--gold);
  margin-bottom: 0;
  font-weight: 600;
  text-shadow: 0 4px 16px rgba(0,0,0,.6);
}

/* ---------- Donation Appeal ---------- */
.donation-appeal {
  background: #f6f7fb;
}
.appeal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(8,18,45,.06);
  margin-top: -60px; /* sits over hero slightly */
  position: relative;
  z-index: 3;
}
.appeal-body h2 { color: var(--navy); }
.appeal-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.appeal-list li {
  padding: 8px 0;
  color: #2a2f4a;
  display: flex; gap: 10px; align-items: center;
}
.appeal-list li i { color: var(--donation-red); }

/* ---------- Stats ---------- */
.stats-section { background: #fff; }
.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid rgba(8,18,45,.06);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-icon {
  width: 60px; height: 60px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--navy), #1a2a5c);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.stat-card h6 { color: var(--navy); text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem; }
.stat-value { font-weight: 700; color: var(--navy); margin: 0; font-size: 1.05rem; }

/* ---------- Facilities ---------- */
.facilities-section {
  background: var(--navy);
  color: #fff;
  position: relative;
}
.facility-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 30px 22px;
  height: 100%;
  text-align: center;
  transition: transform .25s, background .25s, border-color .25s;
}
.facility-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.07);
  border-color: var(--gold);
}
.facility-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.facility-card h5 { color: #fff; }
.facility-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }
/* Facility card thumbnail: full image visible, no cropping, fits the card */
.facility-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.facility-thumb img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .4s ease;
}
.facility-card:hover .facility-thumb img { transform: scale(1.04); }

/* ---------- Project model showcase (home + projects) ---------- */
.model-section { background: #f6f7fb; }
.model-section h2 { color: var(--navy); }
.model-frame {
  max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(8, 18, 45, .06);
  box-shadow: var(--shadow-md);
}
.model-frame img { width: 100%; display: block; }

/* ---------- Gallery ---------- */
.gallery-section { background: #f6f7fb; }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ---------- CTA ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 100%);
  padding: 70px 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--deep-navy);
  color: #cdd5ee;
  padding: 60px 0 20px;
}
.site-footer h5, .site-footer h6 { margin-bottom: 14px; }
.footer-social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: #fff;
  margin-right: 8px;
  transition: all .25s;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.footer-divider { border-color: rgba(255,255,255,.08); margin: 30px 0 20px; }
.footer-trust {
  display: inline-block;
  margin-top: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(245, 232, 75, .1);
  border: 1px solid rgba(245, 232, 75, .3);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 56px; height: 56px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  z-index: 1050;
  transition: transform .2s;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.08); }

/* ==========================================================
   Page-specific styles
   ========================================================== */

/* ---------- Page Header ---------- */
.page-header {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 100%);
  padding: 80px 0 60px;
  text-align: center;
}
.donate-hero { padding: 90px 0 70px; }
.about-hero { padding: 100px 0 80px; }

/* ==========================================================
   ABOUT PAGE
   ========================================================== */
.about-main { background: #f6f7fb; }
.about-main h2 { color: var(--navy); font-size: clamp(1.9rem, 3vw, 2.6rem); }

/* Dark navy quote/info card (right column of About) */
.about-quote-card {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--deep-navy) 100%);
  color: #e7ecf8;
  border-radius: var(--radius-lg);
  padding: 50px 38px 42px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(245,232,75,.08);
  font-style: italic;
  line-height: 1.85;
}
.about-quote-card::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--donation-red) 100%);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.about-quote-card .quote-icon {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(245,232,75,0.25);
  font-size: 3.2rem;
}
.about-quote-card p {
  margin: 0 0 14px;
  color: #e7ecf8;
  font-size: 1rem;
}
.about-quote-card p:last-child { margin-bottom: 0; }
.about-quote-card strong {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
}

/* Feature cards used on the About facilities grid */
.feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 32px 26px;
  height: 100%;
  color: #fff;
  transition: transform .25s, background .25s, border-color .25s;
}
.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.07);
  border-color: var(--gold);
}
.feature-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(245,232,75,.18), rgba(245,232,75,.05));
  color: var(--gold);
  font-size: 1.5rem;
  border: 1px solid rgba(245,232,75,.25);
  margin-bottom: 18px;
}
.feature-card h5 { color: #fff; font-weight: 700; font-size: 1.05rem; }
.feature-card p { color: var(--muted); margin: 0; font-size: 0.92rem; }

/* Status pill — e.g. "Place reserved, not yet operational" */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245, 232, 75, .12);
  border: 1px solid rgba(245, 232, 75, .38);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .3px;
  line-height: 1.4;
}
.status-pill.light { margin-top: 0; }

/* ---------- Governing trust card (About + Contact) ---------- */
.trust-strip { background: #f6f7fb; padding: 60px 0 0; }
.trust-card {
  position: relative;
  background: linear-gradient(135deg, var(--navy), var(--deep-navy));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 232, 75, .28);
  box-shadow: var(--shadow-md);
  padding: 44px 40px;
  color: #fff;
  overflow: hidden;
}
.trust-card::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,232,75,.16), transparent 70%);
}
.trust-badge {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.trust-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}
.trust-title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  margin: 10px 0 14px;
}
.trust-text { color: #d6dcf0; max-width: 720px; margin-bottom: 26px; }
.trust-text strong { color: var(--gold); }
.trust-contact {
  position: relative;
  border-top: 1px dashed rgba(255,255,255,.18);
  padding-top: 22px;
}
.trust-contact-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.trust-contact-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 575.98px) {
  .trust-card { padding: 32px 24px; }
}

@media (max-width: 575.98px) {
  .about-quote-card { padding: 38px 24px 30px; }
  .about-quote-card .quote-icon { font-size: 2.4rem; top: 14px; right: 18px; }
  .feature-card { padding: 26px 22px; }
}

/* ==========================================================
   EVENTS PAGE
   ========================================================== */
.events-hero { padding: 100px 0 60px; }
.bg-light-gray { background: #f4f6fb; }

/* Hero mini stats */
.hero-stats { margin-top: 50px; }
.hero-stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  color: #fff;
  height: 100%;
  transition: transform .25s, border-color .25s, background .25s;
}
.hero-stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.09);
  border-color: var(--gold);
}
.hero-stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat-label {
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d6dcf0;
}

/* Intro statement */
.intro-statement { background: #fff; padding: 70px 0; }
.intro-heading {
  color: #1a3a8f;                /* royal blue */
  font-weight: 800;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  max-width: 920px;
  line-height: 1.4;
  margin: 0 auto;
}

/* Generic event sections + headings */
.events-section { background: #fff; padding: 90px 0; }
.event-heading {
  color: #1a3a8f;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.event-subheading-urdu {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #102663;
  margin: 6px 0 18px;
  line-height: 1.4;
}
.event-description {
  color: #4a5170;
  max-width: 760px;
  font-size: 1rem;
  margin-top: 8px;
}

/* Event image cards */
.event-gallery .event-card { height: 100%; }
.event-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #eef0f7;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}
/* Portrait (story-format) event photos: show the full frame instead of cropping it */
.event-card.portrait {
  aspect-ratio: 3/4;
  background: var(--deep-navy);
}
.event-card.portrait img { object-fit: contain; }
.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.event-card:hover img { transform: scale(1.06); }

.event-card-wide { aspect-ratio: 21/9; }
@media (max-width: 767.98px) {
  .event-card-wide { aspect-ratio: 16/9; }
}

/* ----- Dopamine Detox vertical video shorts (compact) ----- */
.video-shorts-grid { margin-top: 20px; }
.short-card { text-align: center; }
.short-video {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  height: 220px;                /* fixed compact height — whole video visible */
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-md);
}
.short-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;          /* show the WHOLE video, no cropping */
  display: block;
  background: #000;
}
@media (max-width: 991.98px) {
  .short-video { height: 200px; }
}
@media (max-width: 575.98px) {
  .short-video { height: 180px; }
}
.short-caption {
  margin: 14px 0 0;
  font-weight: 600;
  color: #1a3a8f;
  font-size: 0.95rem;
}

@media (max-width: 991.98px) {
  .hero-stat-num { font-size: 1.6rem; }
  .events-section { padding: 70px 0; }
}
@media (max-width: 575.98px) {
  .hero-stat-card { padding: 18px 12px; }
  .hero-stat-label { font-size: 0.72rem; letter-spacing: .5px; }
  .events-section { padding: 56px 0; }
}

/* ---------- Projects ---------- */
.project-section { color: #fff; }
.project-section .text-muted { color: var(--muted) !important; }
.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-sm);
}
.media-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: contain;          /* whole picture visible inside the card */
  background: rgba(255,255,255,.04);
  display: block;
  transition: transform .4s;
}
.dopaminedetox
{ 

  height: 600px;
  width: auto;
  margin-left: 400px;
  

}
.facilities
{
width: 100%;
}

.media-card:hover img { transform: scale(1.03); }
.media-card.video-card {
  background: #000;
  padding: 0;
  width: 100%;
  max-width: 460px;             /* wider so less empty space */
  margin: 0 auto;
  aspect-ratio: 3 / 4;          /* portrait but less extreme than 9:16 */
  height: auto;
  max-height: none;
}
.media-card.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;            /* fills the card edge-to-edge */
  display: block;
  background: #000;
  border-radius: var(--radius);
}
@media (max-width: 991.98px) {
  .media-card.video-card { max-width: 380px; }
}
@media (max-width: 575.98px) {
  .media-card.video-card { max-width: 300px; }
}

/* ---------- Donate page: bank details pinned to the top ---------- */
.bank-top-section {
  background: #f6f7fb;
  padding: 0 0 60px;
}
.bank-top-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--donation-red);
  padding: 40px;
  /* Pulled up over the hero so it is the first thing a donor sees */
  margin-top: -50px;
  position: relative;
  z-index: 3;
}
.bank-top-icon {
  width: 58px; height: 58px;
  flex-shrink: 0;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--donation-red), #ec5b75);
  color: #fff;
  font-size: 1.5rem;
}
.bank-top-title {
  color: var(--navy);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}
.bank-detail-list { list-style: none; padding: 0; margin: 0; }
.bank-detail-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 18px;
  padding: 14px 0;
  border-bottom: 1px dashed #dde2f0;
}
.bank-detail-list li:last-child { border-bottom: none; }
.bank-label {
  min-width: 130px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #7c86a5;
}
.bank-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  word-break: break-all;
}
.bank-top-aside {
  background: linear-gradient(135deg, var(--navy), var(--deep-navy));
  border-radius: var(--radius);
  padding: 28px 26px;
  color: #fff;
  height: 100%;
}
.bank-unit-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.bank-unit-value { font-size: 2rem; font-weight: 700; margin: 0; line-height: 1.1; }
.bank-unit-note { color: var(--muted); font-size: 0.88rem; margin: 4px 0 0; }
.bank-aside-divider { border-color: rgba(255,255,255,.15); margin: 20px 0; }
.bank-aside-text { color: #d6dcf0; font-size: 0.9rem; }
.bank-top-aside .btn-outline-navy { border-color: rgba(255,255,255,.5); color: #fff; }
.bank-top-aside .btn-outline-navy:hover { background: #fff; color: var(--navy); border-color: #fff; }

@media (max-width: 767.98px) {
  .bank-top-card { padding: 28px 22px; margin-top: -34px; }
  .bank-label { min-width: 100%; }
}

/* ---------- Donate page ---------- */
.appeal-emotional { background: #f6f7fb; }
.appeal-quote {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  box-shadow: var(--shadow-sm);
  border-left: 6px solid var(--donation-red);
}
.appeal-quote .lead { font-style: italic; color: #2a2f4a; }

.donate-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 30px 26px;
  color: #fff;
  height: 100%;
  transition: transform .25s, border-color .25s;
}
.donate-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.donate-card.highlight {
  background: linear-gradient(135deg, var(--donation-red), #ec5b75);
  border: none;
  box-shadow: 0 18px 40px rgba(216, 63, 91, .35);
}
.donate-card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12);
  color: var(--gold);
  border-radius: 14px;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.donate-card.highlight .donate-card-icon {
  background: rgba(255,255,255,.22);
  color: #fff;
}
.donate-card h6 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.donate-card.highlight h6 { color: #fff; }
.donate-value { font-size: 1.8rem; font-weight: 700; margin: 0; line-height: 1.1; }
.donate-value-alt {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin: 4px 0 6px;
}
.donate-card .donate-value-alt { color: var(--gold); }
.donate-card.highlight .donate-value-alt { color: #fff; }
.donate-line { margin: 4px 0; color: #d6dcf0; font-size: 0.95rem; }
.donate-card.highlight .donate-line { color: #fff; }

/* Campaign-focus banner (e.g. "First Roof of the Masjid") */
.campaign-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, rgba(245,232,75,.12), rgba(245,232,75,.04));
  border: 1px solid rgba(245,232,75,.35);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 24px;
  color: #fff;
}
.campaign-banner h5 { color: #fff; font-weight: 700; }
.campaign-banner p { color: #d6dcf0; font-size: 0.95rem; }
.campaign-icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
@media (max-width: 575.98px) {
  .campaign-banner { flex-direction: column; text-align: center; padding: 22px 18px; }
}

/* ---------- Contact ---------- */
.contact-section { background: #f6f7fb; }
.contact-list { list-style: none; padding: 0; margin: 30px 0 0; }
.contact-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px dashed #d6dcf0;
}
.contact-list li:last-child { border-bottom: none; }
.contact-list i {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 12px;
  flex-shrink: 0;
}
.contact-list strong { display: block; color: var(--navy); margin-bottom: 2px; }
.contact-list a { color: #2a2f4a; text-decoration: none; }
.contact-list a:hover { color: var(--donation-red); }

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(8,18,45,.06);
}
.contact-form-card .form-control {
  border-radius: 10px;
  border-color: #e3e6f3;
  padding: 12px 14px;
}
.contact-form-card .form-control:focus {
  border-color: var(--donation-red);
  box-shadow: 0 0 0 0.2rem rgba(216, 63, 91, 0.15);
}
.contact-form-card .form-label { font-weight: 500; color: var(--navy); }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .site-navbar .nav-link.active::after { display: none; }
  .nav-center { padding: 10px 0; }
  .appeal-card { margin-top: 0; }
}

@media (max-width: 575.98px) {
  .section { padding: 60px 0; }
  .hero { min-height: 80vh; }
  .hero-content { padding: 60px 0; }
  .appeal-body { padding: 28px 22px !important; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.4rem; }
}
