/* ═══════════════════════════════════════════════════
   جمعية مبرة الملك حسين الخيرية — Premium v3
   ═══════════════════════════════════════════════════ */

:root {
    --c1: #166534;       /* primary dark green */
    --c2: #22c55e;       /* primary bright green */
    --c3: #15803d;       /* primary mid */
    --c4: #dcfce7;       /* primary light bg */
    --c5: #f0fdf4;       /* primary very light */
    --gold: #d97706;     /* accent gold */
    --gold-l: #fef3c7;   /* accent light */
    --ink: #111827;
    --ink2: #374151;
    --muted: #6b7280;
    --line: #e5e7eb;
    --bg: #f9fafb;
    --white: #fff;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xl: 24px;
    --shadow: 0 4px 20px rgba(0,0,0,.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
    --shadow-xl: 0 24px 60px rgba(0,0,0,.12);
    --transition: .35s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Tajawal', system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: var(--c1); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c3); }
img { max-width: 100%; }

/* ═══ BOOTSTRAP OVERRIDES ═══ */
.btn { border-radius: var(--radius-sm); font-weight: 600; transition: all var(--transition); }
.btn-outline-primary { color: var(--c1); border-color: var(--c1); }
.btn-outline-primary:hover { background: var(--c1); border-color: var(--c1); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,101,52,.2); }
.btn-outline-light:hover { background: rgba(255,255,255,.15); }
.text-primary { color: var(--c1) !important; }
.text-success { color: var(--c2) !important; }
.bg-light-green { background: var(--c5); }
.form-control { border-radius: var(--radius-sm); border: 2px solid var(--line); padding: .75rem 1rem; }
.form-control:focus { border-color: var(--c2); box-shadow: 0 0 0 4px rgba(34,197,94,.15); }
.accordion-item { border: 1px solid var(--line) !important; border-radius: var(--radius) !important; margin-bottom: .75rem; overflow: hidden; }
.accordion-button { font-weight: 700; font-size: 1rem; padding: 1.1rem 1.25rem; border-radius: var(--radius) !important; }
.accordion-button:not(.collapsed) { background: var(--c4); color: var(--c1); box-shadow: none; }
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
.accordion-button::after { margin-inline-start: 0; margin-inline-end: auto; }
.breadcrumb-item a { color: var(--c1); }
.breadcrumb-item.active { color: var(--muted); }
.page-link { color: var(--c1); border-radius: var(--radius-sm); }
.page-item.active .page-link { background: var(--c1); border-color: var(--c1); }
.alert { border: none; border-radius: var(--radius); }

/* ═══ TOP BAR ═══ */
.top-bar {
    background: var(--c1);
    color: rgba(255,255,255,.85);
    font-size: .82rem;
    padding: 8px 0;
}
.top-link { color: rgba(255,255,255,.85); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.top-link:hover { color: #fff; }
.top-link i { font-size: .9rem; }
.top-social { color: rgba(255,255,255,.7); font-size: 1rem; transition: color var(--transition); }
.top-social:hover { color: #fff; }

/* ═══ NAVBAR ═══ */
.main-header {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,.06);
    z-index: 1030;
    transition: all var(--transition);
}
.main-header.scrolled { box-shadow: var(--shadow); }

.brand-logo { width: 52px; height: 52px; object-fit: contain; border-radius: 12px; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-weight: 900; font-size: .95rem; color: var(--c1); line-height: 1.3; }
.brand-motto { font-size: .72rem; color: var(--muted); font-weight: 500; }

.navbar .nav-link { color: var(--ink2); font-weight: 600; font-size: .88rem; padding: .5rem .8rem; border-radius: 8px; transition: all var(--transition); }
.navbar .nav-link:hover { color: var(--c1); background: var(--c4); }
.navbar .nav-link.active { color: var(--white); background: var(--c1); }

.btn-donate {
    background: linear-gradient(135deg, var(--c1) 0%, var(--gold) 100%);
    color: #fff !important; border: none; border-radius: 50px; font-weight: 700;
    box-shadow: 0 4px 16px rgba(22,101,52,.25);
    position: relative; overflow: hidden;
}
.btn-donate::after { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,.2) 50%, transparent 70%); transform: translateX(-100%); transition: transform .5s; }
.btn-donate:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(22,101,52,.35); color: #fff !important; }
.btn-donate:hover::after { transform: translateX(100%); }

.hamburger { width: 28px; height: 20px; position: relative; cursor: pointer; }
.hamburger span { display: block; width: 100%; height: 3px; background: var(--ink); border-radius: 3px; position: absolute; transition: all .3s; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

/* ═══ SECTION UTILITIES ═══ */
.section-pad { padding: 6rem 0; }
.section-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--c4); color: var(--c1);
    font-size: .82rem; font-weight: 700;
    padding: 6px 16px; border-radius: 50px;
    letter-spacing: .01em;
}
.section-badge.accent { background: var(--gold-l); color: var(--gold); }
.section-badge.light { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
.section-heading {
    font-weight: 900; font-size: 2.1rem; color: var(--ink);
    position: relative; display: inline-block;
}
.section-heading::after {
    content: ''; position: absolute; bottom: -8px; right: 0;
    width: 50px; height: 4px; border-radius: 4px;
    background: linear-gradient(90deg, var(--c1), var(--gold));
}
.fw-900 { font-weight: 900; }

/* ═══ PAGE HEADER ═══ */
.page-header {
    background: linear-gradient(135deg, var(--c4) 0%, var(--c5) 50%, var(--gold-l) 100%);
    padding: 3rem 0;
    position: relative;
}
.page-header h1 { font-weight: 900; font-size: 2rem; }

/* ═══ HERO ═══ */
.hero-section { position: relative; }
.hero-slide { position: relative; min-height: 80vh; background: var(--ink); overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; filter: brightness(.55) saturate(1.2);
    transition: transform 15s linear;
}
.hero-slide:hover .hero-bg { transform: scale(1.08); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.6) 100%),
                radial-gradient(ellipse at 70% 20%, rgba(22,101,52,.4) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-title { font-size: 3.2rem; font-weight: 900; line-height: 1.2; text-shadow: 0 4px 20px rgba(0,0,0,.3); }
.hero-subtitle { font-size: 1.25rem; opacity: .85; margin-top: 1rem; font-weight: 400; }
.hero-btns { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.carousel-indicators { bottom: 2rem; }
.carousel-indicators [data-bs-target] { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5); background: transparent; }
.carousel-indicators .active { background: var(--gold); border-color: var(--gold); width: 36px; border-radius: 6px; }

/* ═══ STATS BAR ═══ */
.stats-bar {
    background: linear-gradient(135deg, var(--c1) 0%, #14532d 100%);
    padding: 3rem 0;
    margin-top: -2px;
    position: relative;
}
.stats-bar::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='%23ffffff' fill-opacity='.06'/%3E%3C/svg%3E"); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.5rem; position: relative; }
.stat-item {
    text-align: center; color: #fff;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    transition: all var(--transition);
}
.stat-item:hover { background: rgba(255,255,255,.15); transform: translateY(-4px); }
.stat-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: .5rem; opacity: .9; }
.stat-number { font-size: 2.6rem; font-weight: 900; line-height: 1; color: #fff; }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: .3rem; font-weight: 600; }

/* ═══ ABOUT VISUAL ═══ */
.about-visual { position: relative; }
.about-img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); width: 100%; height: 420px; object-fit: cover; }
.about-img-placeholder { background: var(--c4); border-radius: var(--radius-xl); height: 420px; display: flex; align-items: center; justify-content: center; }
.experience-badge {
    position: absolute; bottom: -20px; inset-inline-start: 20px;
    width: 120px; height: 120px; border-radius: 50%;
    background: linear-gradient(145deg, var(--c1), var(--gold));
    color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg); border: 5px solid var(--white);
    animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.exp-number { font-size: 2.2rem; font-weight: 900; line-height: 1; }
.exp-label { font-size: .65rem; font-weight: 600; opacity: .9; }

.info-box {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1rem 1.25rem; background: var(--c5); border-radius: var(--radius);
    border-right: 4px solid var(--c1);
    transition: all var(--transition);
}
.info-box:hover { transform: translateX(-4px); box-shadow: var(--shadow); }
.info-box-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.2rem;
}
.info-box-icon.primary { background: var(--c4); color: var(--c1); }
.info-box-icon.accent { background: var(--gold-l); color: var(--gold); }

/* ═══ PROGRAM CARDS ═══ */
.program-card {
    background: var(--white); border-radius: var(--radius-xl);
    overflow: hidden; border: 1px solid var(--line);
    transition: all var(--transition); height: 100%;
    display: flex; flex-direction: column;
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.program-img { height: 200px; overflow: hidden; }
.program-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.program-card:hover .program-img img { transform: scale(1.08); }
.program-img-icon { background: var(--c4); display: flex; align-items: center; justify-content: center; }
.program-img-icon i { font-size: 4rem; color: var(--c1); }
.program-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.program-body p { flex: 1; }

/* ═══ ACHIEVEMENT CARDS ═══ */
.achievement-card {
    background: var(--white); border-radius: var(--radius-xl);
    padding: 2rem; border: 1px solid var(--line);
    position: relative; overflow: hidden;
    transition: all var(--transition); height: 100%;
}
.achievement-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.achievement-card::before {
    content: ''; position: absolute; top: 0; right: 0; left: 0;
    height: 4px; background: linear-gradient(90deg, var(--gold), var(--c2));
}
.ach-icon { font-size: 2rem; color: var(--gold); }
.ach-date { display: inline-block; background: var(--gold-l); color: var(--gold); padding: 2px 12px; border-radius: 50px; font-size: .78rem; font-weight: 700; margin-top: .5rem; }

/* ═══ NEWS CARDS ═══ */
.news-card {
    background: var(--white); border-radius: var(--radius-xl);
    overflow: hidden; border: 1px solid var(--line);
    transition: all var(--transition); height: 100%;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-img { display: block; height: 200px; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.news-card:hover .news-img img { transform: scale(1.06); }
.news-img-placeholder { background: var(--c4); display: flex; align-items: center; justify-content: center; }
.news-img-placeholder i { font-size: 3rem; color: var(--c1); }
.news-body { padding: 1.25rem; }
.news-date { font-size: .78rem; color: var(--muted); margin-bottom: .5rem; display: flex; align-items: center; gap: 6px; }
.news-title a { color: var(--ink); font-weight: 700; text-decoration: none; }
.news-title a:hover { color: var(--c1); }
.read-more { color: var(--c1); font-weight: 700; font-size: .85rem; }

.slider-btn {
    width: 42px; height: 42px; border-radius: 50%;
    border: 2px solid var(--c1); background: transparent; color: var(--c1);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all var(--transition);
}
.slider-btn:hover { background: var(--c1); color: #fff; }

/* ═══ GALLERY CARDS ═══ */
.gallery-card-link { text-decoration: none; display: block; }
.gallery-card {
    position: relative; overflow: hidden;
    border-radius: var(--radius-xl); height: 280px;
    transition: all var(--transition);
}
.gallery-card-lg { height: 380px; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-card:hover img { transform: scale(1.1); }
.gallery-placeholder { height: 100%; background: var(--c4); display: flex; align-items: center; justify-content: center; }
.gallery-placeholder i { font-size: 4rem; color: var(--c1); }
.gallery-caption {
    position: absolute; bottom: 0; right: 0; left: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
    color: #fff; padding: 3rem 1.25rem 1.25rem;
}
.gallery-caption h5 { font-weight: 700; font-size: 1.1rem; margin-bottom: .5rem; }

/* ═══ MEMBER CARDS ═══ */
.member-card {
    text-align: center; padding: 1.5rem 1rem;
    background: var(--white); border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    transition: all var(--transition);
}
.member-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.member-avatar { width: 90px; height: 90px; margin: 0 auto; border-radius: 50%; overflow: hidden; border: 3px solid var(--c4); }
.member-avatar img { width: 100%; height: 100%; object-fit: cover; }
.member-initial {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--c4), var(--gold-l));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; font-weight: 900; color: var(--c1);
}

/* ═══ DONATE SECTION ═══ */
.donate-section {
    background: linear-gradient(135deg, var(--c1) 0%, #14532d 60%, var(--ink) 100%);
    border-radius: var(--radius-xl); padding: 4rem 3rem;
    position: relative; overflow: hidden;
}
.donate-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 90% 80%, rgba(217,119,6,.2), transparent 50%);
}
.bank-card {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius); padding: 1.25rem;
    backdrop-filter: blur(10px); transition: all var(--transition);
    color: #fff;
}
.bank-card:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }
.bank-name { font-weight: 700; font-size: 1rem; margin-bottom: .75rem; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: .5rem; }
.bank-detail { display: flex; justify-content: space-between; align-items: center; padding: .3rem 0; font-size: .82rem; }
.bank-detail span { color: rgba(255,255,255,.6); }

/* ═══ PARTNERS ═══ */
.partners-row {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
    align-items: center;
}
.partner-logo {
    width: 120px; height: 80px; background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius-sm); padding: .75rem;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.partner-logo:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--c1); }
.partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(.3); transition: filter var(--transition); }
.partner-logo:hover img { filter: grayscale(0); }

/* ═══ CTA SECTION ═══ */
.cta-section {
    background: linear-gradient(135deg, var(--c1) 0%, #14532d 50%, var(--ink) 100%);
    padding: 6rem 0; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(34,197,94,.2), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(217,119,6,.15), transparent 50%);
}

/* ═══ STAFF PAGE ═══ */
.staff-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 4px solid var(--c4); box-shadow: var(--shadow); }
.staff-photo-placeholder {
    width: 100px; height: 100px; border-radius: 50%;
    background: linear-gradient(135deg, var(--c4), var(--gold-l));
    display: flex; align-items: center; justify-content: center;
    color: var(--c1); margin: 0 auto; font-size: 2rem;
    border: 4px solid var(--white); box-shadow: var(--shadow);
}

.staff-card {
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius-xl); overflow: hidden;
    text-align: center; padding: 2rem 1rem; transition: all var(--transition);
    position: relative;
}
.staff-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 70px; background: linear-gradient(135deg, var(--c4), var(--gold-l)); }
.staff-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.staff-card > * { position: relative; z-index: 1; }

/* ═══ GALLERY PAGE ═══ */
.gallery-item {
    position: relative; overflow: hidden; border-radius: var(--radius-xl);
    border: 1px solid var(--line); cursor: pointer; transition: all var(--transition);
}
.gallery-item::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6), transparent 50%); opacity: 0; transition: opacity var(--transition); z-index: 1; }
.gallery-item:hover::before { opacity: 1; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item figcaption {
    position: absolute; inset-inline: 1rem; bottom: 1rem;
    color: #fff; font-size: .85rem; transform: translateY(12px);
    opacity: 0; transition: all var(--transition); z-index: 2;
}
.gallery-item:hover figcaption { transform: translateY(0); opacity: 1; }

/* ═══ ARTICLE ═══ */
.article-content { font-size: 1.1rem; color: var(--ink2); line-height: 2; }
.article-content img { border-radius: var(--radius); margin: 1.5rem 0; }

/* ═══ ICON CIRCLE ═══ */
.icon-circle { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ═══ FOOTER ═══ */
.site-footer { position: relative; }
.footer-wave { color: #0f172a; line-height: 0; margin-bottom: -1px; }
.footer-wave svg { width: 100%; height: 60px; }
.footer-body { background: #0f172a; }
.footer-logo { width: 56px; height: 56px; object-fit: contain; background: rgba(255,255,255,.08); padding: 6px; border-radius: 12px; }
.footer-muted { color: rgba(255,255,255,.5) !important; }
.footer-heading { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 1.25rem; position: relative; padding-bottom: .75rem; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; right: 0; width: 30px; height: 3px; background: var(--c2); border-radius: 3px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .9rem; transition: all var(--transition); }
.footer-links a:hover { color: var(--c2); padding-inline-start: 6px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; align-items: center; gap: 10px; margin-bottom: .75rem; }
.footer-contact i { font-size: 1rem; color: var(--c2); width: 20px; text-align: center; }
.footer-contact a, .footer-contact span { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer-contact a:hover { color: #fff; }
.footer-socials { display: flex; gap: .6rem; }
.footer-socials a {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 10px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.5);
    border: 1px solid rgba(255,255,255,.1); transition: all var(--transition);
}
.footer-socials a:hover { background: var(--c1); color: #fff; border-color: var(--c1); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); font-size: .82rem; color: rgba(255,255,255,.4); }

/* ═══ FAB + BACK TO TOP ═══ */
.fab-donate {
    position: fixed; inset-inline-end: 1.5rem; bottom: 1.5rem;
    width: 58px; height: 58px; border-radius: 50%;
    background: linear-gradient(145deg, var(--c1), var(--gold));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; z-index: 1040;
    box-shadow: 0 8px 28px rgba(22,101,52,.35);
    transition: all var(--transition); text-decoration: none;
    animation: pulse 3s ease infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(22,101,52,.3), 0 8px 28px rgba(22,101,52,.35); } 50% { box-shadow: 0 0 0 14px transparent, 0 8px 28px rgba(22,101,52,.35); } }
.fab-donate:hover { transform: translateY(-4px) scale(1.1); color: #fff; animation: none; }

.btn-top {
    position: fixed; inset-inline-end: 1.5rem; bottom: 5.5rem;
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--white); color: var(--c1); border: 2px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    z-index: 1039; box-shadow: var(--shadow);
    cursor: pointer; transition: all var(--transition);
    opacity: 0; visibility: hidden;
}
.btn-top.show { opacity: 1; visibility: visible; }
.btn-top:hover { background: var(--c1); color: #fff; border-color: var(--c1); transform: translateY(-3px); }

/* ═══ LIGHTBOX ═══ */
#lightbox .modal-content { background: rgba(0,0,0,.95); backdrop-filter: blur(20px); border: none; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1199.98px) {
    .navbar-collapse { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); padding: 1.5rem; margin-top: .5rem; border: 1px solid var(--line); }
    .navbar .nav-link.active { background: var(--c4); color: var(--c1); }
}
@media (max-width: 991.98px) {
    .hero-slide { min-height: 60vh; }
    .hero-title { font-size: 2.2rem; }
    .section-pad { padding: 4rem 0; }
    .section-heading { font-size: 1.7rem; }
    .donate-section { padding: 2.5rem 1.5rem; }
    .gallery-card, .gallery-card-lg { height: 220px; }
    .about-img { height: 320px; }
}
@media (max-width: 767.98px) {
    .hero-slide { min-height: 50vh; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .stat-number { font-size: 2rem; }
    .section-heading { font-size: 1.5rem; }
    .experience-badge { width: 90px; height: 90px; }
    .exp-number { font-size: 1.6rem; }
    .gallery-card, .gallery-card-lg { height: 180px; }
    .about-img, .about-img-placeholder { height: 260px; }
    .donate-section { padding: 2rem 1.25rem; }
}
@media (max-width: 575.98px) {
    .section-pad { padding: 3rem 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══ PRINT ═══ */
@media print { .fab-donate, .btn-top, .main-header, .top-bar, .cta-section, .site-footer { display: none !important; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
