:root {
    /* Unified Design Tokens System (Issue #59) */
    --color-bg: #f8fafc;
    --color-surface: #ffffff;
    --color-surface-elevated: #ffffff;
    --color-surface-subtle: #f1f5f9;
    --color-text-primary: #0f172a;
    --color-text-secondary: #475569;
    --color-text-muted: #64748b;
    --color-border: #e2e8f0;
    --color-border-subtle: #f1f5f9;
    --color-border-focus: #1c53a3;
    --color-cta-bg: #1c53a3;
    --color-cta-text: #ffffff;
    --color-cta-hover-bg: #12336b;
    --color-cta-disabled-bg: #cbd5e1;
    --color-cta-disabled-text: #64748b;
    --color-btn-secondary-bg: transparent;
    --color-btn-secondary-border: #1c53a3;
    --color-btn-secondary-text: #1c53a3;
    --color-btn-secondary-hover-bg: #f0f6fe;
    --color-btn-secondary-hover-text: #12336b;
    --color-success: #059669;
    --color-success-bg: rgba(5, 150, 105, 0.08);
    --color-success-border: rgba(5, 150, 105, 0.25);
    --color-danger: #dc2626;
    --color-danger-bg: rgba(220, 38, 38, 0.08);
    --color-danger-border: rgba(220, 38, 38, 0.25);
    --color-warning: #b45309;
    --color-warning-bg: rgba(245, 158, 11, 0.08);
    --color-warning-border: rgba(245, 158, 11, 0.25);
    --color-info: #1c53a3;
    --color-info-bg: rgba(28, 83, 163, 0.08);
    --color-info-border: rgba(28, 83, 163, 0.25);
    --color-input-bg: #ffffff;
    --color-input-border: #cbd5e1;
    --color-input-text: #0f172a;
    --color-input-placeholder: #94a3b8;
    --color-input-focus-border: #1c53a3;

    /* Brand & Calming Theme Colors (Issue #58 compatibility) */
    --blue: #1c53a3;
    --blue-dark: #12336b;
    --blue-mid: #2563eb;
    --blue-lt: #e0edfd;
    --blue-xs: #f0f6fe;
    --cream: #f8fafc;
    --ink: #0f172a;
    --mist: #475569;
    --border: #e2e8f0;
    --white: #ffffff;
    --card-bg: #ffffff;

    /* Spacing System (Consistent 4px baseline grid) */
    --space-2xs: 4px;
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Border Radii Tokens */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-pill: 9999px;

    /* Subtle, Calming Shadow Elevations (Issue #58) */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
    --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 10px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
    --shadow-focus: 0 0 0 3px rgba(28, 83, 163, 0.2);

    /* Transitions & Easings */
    --transition-fast: 150ms ease;
    --transition-normal: 200ms ease;
    --transition-smooth: 250ms ease;

    /* Typography Scale */
    --font-heading: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
}

header, footer, section, article, aside, nav, main {
    display: block;
}

header, footer, section, article, aside, nav, .container, .navbar, .hero-wrapper,
.about, .stats, .activities-list, .gallery, .core-values, .faq-section,
.contact-wrapper, .partners, .donate-container, .cards-grid, .page-header,
.modal, .modal-content, .hero-content, .hero-actions, .hero-btn, .hero-badge, .hero-overlay, .hero-vignette,
.activities-grid, .stats-grid, .values-grid, .gallery-grid, .partners-grid,
.about-box, .stat-card, .activity-item, .value-card, .gallery-card, .partner-card,
.faq-item, .faq-list {
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--color-bg);
    color: var(--color-text-primary);
    line-height: 1.7;
    transition: background-color 0.25s ease, color 0.2s ease;
}

/* Soothing Midnight Navy Dark Mode — Unified Tokens System (Issue #58 & #59) */
body.dark-mode {
    --color-bg: #0b1320;
    --color-surface: #152238;
    --color-surface-elevated: #1c2a44;
    --color-surface-subtle: #111c2e;
    --color-text-primary: #f1f5f9;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #94a3b8;
    --color-border: #223354;
    --color-border-subtle: #1a273e;
    --color-border-focus: #60a5fa;
    --color-cta-bg: #2563eb;
    --color-cta-text: #ffffff;
    --color-cta-hover-bg: #1d4ed8;
    --color-cta-disabled-bg: #334155;
    --color-cta-disabled-text: #64748b;
    --color-btn-secondary-bg: rgba(37, 99, 235, 0.12);
    --color-btn-secondary-border: #60a5fa;
    --color-btn-secondary-text: #93c5fd;
    --color-btn-secondary-hover-bg: rgba(37, 99, 235, 0.22);
    --color-btn-secondary-hover-text: #ffffff;
    --color-success: #34d399;
    --color-success-bg: rgba(5, 150, 105, 0.16);
    --color-success-border: rgba(52, 211, 153, 0.3);
    --color-danger: #f87171;
    --color-danger-bg: rgba(220, 38, 38, 0.16);
    --color-danger-border: rgba(248, 113, 113, 0.3);
    --color-warning: #fbbf24;
    --color-warning-bg: rgba(245, 158, 11, 0.16);
    --color-warning-border: rgba(251, 191, 36, 0.3);
    --color-info: #60a5fa;
    --color-info-bg: rgba(96, 165, 250, 0.16);
    --color-info-border: rgba(96, 165, 250, 0.3);
    --color-input-bg: #111c2e;
    --color-input-border: #223354;
    --color-input-text: #f1f5f9;
    --color-input-placeholder: #64748b;
    --color-input-focus-border: #60a5fa;

    /* Compatibility variables */
    --blue: #60a5fa;
    --blue-dark: #2563eb;
    --blue-mid: #93c5fd;
    --blue-lt: #dbeafe;
    --blue-xs: #162238;
    --cream: #0b1320;
    --ink: #f1f5f9;
    --mist: #94a3b8;
    --border: #223354;
    --white: #152238;
    --card-bg: #152238;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 10px 24px -4px rgba(0, 0, 0, 0.45);
    --shadow-focus: 0 0 0 3px rgba(96, 165, 250, 0.3);
    background: var(--color-bg);
}

body.dark-mode p,
body.dark-mode li,
body.dark-mode .stat-label,
body.dark-mode .activity-content p,
body.dark-mode .gallery-caption h3,
body.dark-mode .step-card p,
body.dark-mode .value-text,
body.dark-mode .faq-answer,
body.dark-mode .card p {
    color: var(--mist);
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode .section-title,
body.dark-mode .value-text strong,
body.dark-mode .faq-question span,
body.dark-mode .card h3,
body.dark-mode .activity-content h3,
body.dark-mode .contact-info h3 {
    color: var(--blue-lt);
}

body.dark-mode .logo,
body.dark-mode .logo span {
    background: linear-gradient(125deg, var(--blue), var(--blue-mid));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

body.dark-mode a {
    color: var(--blue-mid);
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
    background: var(--white);
    color: var(--ink);
    border-color: var(--border);
}

body.dark-mode footer {
    color: var(--blue-lt);
}

body.dark-mode .page-header {
    background: linear-gradient(120deg, #0d1a2e, #111f35, #0d1a2e);
}

body.dark-mode .page-header h1 {
    color: var(--blue-lt);
}

body.dark-mode .page-header p {
    color: var(--mist);
}

body.dark-mode .stat-number {
    color: var(--blue-mid);
}

body.dark-mode .faq-question {
    color: var(--blue-lt);
}

body.dark-mode .faq-item.active {
    border-color: var(--blue-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scrollReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   ENHANCED HEADER & VISUAL HIERARCHY
   ========================================================================== */

header.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    animation: fadeDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

header.site-header.scrolled {
    box-shadow: 0 10px 30px -10px rgba(18, 51, 107, 0.12);
    border-bottom-color: rgba(208, 226, 247, 0.6);
}

body.dark-mode header.site-header {
    background: rgba(12, 17, 23, 0.94);
    border-bottom-color: var(--border);
}

body.dark-mode header.site-header.scrolled {
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
    border-bottom-color: rgba(30, 46, 66, 0.9);
}

.site-header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 20px;
    position: relative;
}

/* 1. Brand & Logo */
.site-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.site-header .logo:hover {
    transform: scale(1.02);
}

.site-header .logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(28, 83, 163, 0.15));
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}

.logo-title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-mid) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

body.dark-mode .logo-title {
    background: linear-gradient(135deg, #ffffff 0%, var(--blue-lt) 55%, var(--blue-mid) 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.logo-badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--mist);
    letter-spacing: 0.2px;
}

/* 2. Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.desktop-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 5px 8px;
    background: rgba(234, 242, 253, 0.55);
    border: 1px solid rgba(221, 230, 245, 0.9);
    border-radius: 9999px;
    backdrop-filter: blur(8px);
}

body.dark-mode .desktop-nav .nav-links {
    background: rgba(18, 30, 48, 0.55);
    border-color: rgba(30, 46, 66, 0.85);
}

.nav-item {
    display: inline-block;
    padding: 7px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    position: relative;
}

.nav-item:hover {
    color: var(--blue);
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

body.dark-mode .nav-item {
    color: var(--mist);
}

body.dark-mode .nav-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

/* ACTIVE STATE */
.nav-item.active {
    color: var(--blue-dark);
    background: #ffffff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(28, 83, 163, 0.12), 0 1px 2px rgba(0, 0, 0, 0.04);
}

body.dark-mode .nav-item.active {
    color: #ffffff;
    background: var(--blue-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* 3. Header Action Bar */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Secondary Actions (Donation & Volunteering) */
.secondary-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-action-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    border: 1px solid var(--border);
    color: var(--blue-dark);
    background: rgba(255, 255, 255, 0.65);
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-action-secondary:hover {
    background: #ffffff;
    border-color: var(--blue-mid);
    color: var(--blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(46, 116, 212, 0.1);
}

.btn-action-secondary.active {
    border-color: var(--blue);
    background: var(--blue-xs);
    color: var(--blue);
    font-weight: 700;
}

body.dark-mode .btn-action-secondary {
    border-color: var(--border);
    background: rgba(18, 30, 48, 0.6);
    color: var(--blue-lt);
}

body.dark-mode .btn-action-secondary:hover {
    background: rgba(28, 83, 163, 0.3);
    border-color: var(--blue-mid);
    color: #ffffff;
}

body.dark-mode .btn-action-secondary.active {
    background: rgba(46, 116, 212, 0.25);
    border-color: var(--blue-mid);
    color: var(--blue-lt);
}

/* PRIMARY PROMINENT CTA (الدعم النفسي) */
.btn-primary-support {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;
    color: #ffffff !important;
    background: linear-gradient(135deg, #1c53a3 0%, #153e7e 100%);
    box-shadow: 0 4px 14px rgba(28, 83, 163, 0.35), 0 2px 4px rgba(28, 83, 163, 0.2);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-primary-support:hover {
    background: linear-gradient(135deg, #2464c2 0%, #1c53a3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 83, 163, 0.45), 0 2px 6px rgba(28, 83, 163, 0.25);
}

.btn-primary-support:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(28, 83, 163, 0.3);
}

.btn-primary-support.active {
    background: linear-gradient(135deg, #12336b 0%, #0d234a 100%);
    box-shadow: 0 0 0 3px rgba(46, 116, 212, 0.4), 0 4px 14px rgba(18, 51, 107, 0.4);
}

body.dark-mode .btn-primary-support {
    background: linear-gradient(135deg, #2e74d4 0%, #1c53a3 100%);
    box-shadow: 0 4px 16px rgba(46, 116, 212, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

body.dark-mode .btn-primary-support:hover {
    background: linear-gradient(135deg, #4489e8 0%, #2e74d4 100%);
    box-shadow: 0 6px 22px rgba(46, 116, 212, 0.55);
}

.btn-primary-support .cta-icon {
    font-size: 1.15rem;
    display: inline-block;
    animation: gentlePulse 2.5s infinite ease-in-out;
}

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.18); }
}

/* Actions Divider */
.actions-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
    margin: 0 2px;
}

/* Theme Toggle Button (Accessible & SVG) */
.theme-toggle {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border);
    color: var(--blue-dark);
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    position: relative;
}

.theme-toggle:hover {
    background: #ffffff;
    border-color: var(--blue-mid);
    color: var(--blue);
    transform: scale(1.06);
    box-shadow: 0 4px 12px rgba(46, 116, 212, 0.16);
}

.theme-toggle:focus-visible {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(46, 116, 212, 0.35);
}

body.dark-mode .theme-toggle {
    background: rgba(18, 30, 48, 0.85);
    border-color: var(--border);
    color: #facc15;
}

body.dark-mode .theme-toggle:hover {
    background: rgba(30, 46, 66, 0.95);
    border-color: #facc15;
    color: #fef08a;
    box-shadow: 0 4px 14px rgba(250, 204, 21, 0.25);
}

body.dark-mode .theme-toggle:focus-visible {
    outline: none;
    border-color: #facc15;
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.35);
}

.theme-svg-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.2s ease;
    pointer-events: none;
}

.theme-toggle:hover .theme-svg-icon {
    transform: rotate(15deg);
}

/* Screen reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


/* Admin Quick Menu */
.admin-quick-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 8px;
    background: rgba(244, 247, 252, 0.9);
    border: 1px dashed var(--blue-mid);
    border-radius: 9999px;
}

body.dark-mode .admin-quick-menu {
    background: rgba(18, 30, 48, 0.8);
    border-color: var(--blue-dark);
}

.admin-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    padding: 3px 6px;
    border-radius: 9999px;
}

.admin-logout-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 2px 6px;
    border-radius: 50%;
    transition: transform 0.2s;
    line-height: 1;
}

.admin-logout-btn:hover {
    transform: scale(1.2);
}

/* Mobile Controls in Navbar (Strictly hidden on desktop) */
.mobile-header-controls {
    display: none !important;
    align-items: center;
    gap: 8px;
}

.mobile-quick-support-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #ffffff !important;
    background: linear-gradient(135deg, #1c53a3 0%, #153e7e 100%);
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(28, 83, 163, 0.35);
    white-space: nowrap;
}

.mobile-quick-support-btn:active {
    transform: scale(0.96);
}

/* Hamburger menu button (Strictly hidden on desktop) */
.menu-toggle {
    display: none !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.2s ease;
}

.menu-toggle:hover {
    background: #ffffff;
    border-color: var(--blue);
}

body.dark-mode .menu-toggle {
    background: rgba(18, 30, 48, 0.8);
    border-color: var(--border);
}

.hamburger-bar {
    width: 22px;
    height: 2px;
    background-color: var(--blue-dark);
    border-radius: 2px;
    transition: all 0.25s ease;
    display: block;
}

body.dark-mode .hamburger-bar {
    background-color: var(--blue-lt);
}

.menu-toggle.open .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
    display: none;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 2px solid var(--border);
    box-shadow: 0 20px 40px -10px rgba(18, 51, 107, 0.18);
    padding: 18px 20px 24px;
    animation: drawerSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
    max-height: calc(100vh - 75px);
    overflow-y: auto;
}

.mobile-drawer[hidden] {
    display: none !important;
}

@keyframes drawerSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.dark-mode .mobile-drawer {
    background: rgba(12, 17, 23, 0.98);
    border-bottom-color: rgba(30, 46, 66, 0.9);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
}

.mobile-drawer.show {
    display: block;
}

.mobile-drawer-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* Mobile Support Card (Top highlight) */
.mobile-support-card {
    background: linear-gradient(135deg, rgba(234, 242, 253, 0.9) 0%, rgba(208, 226, 247, 0.4) 100%);
    border: 1px solid var(--blue-lt);
    border-radius: 18px;
    padding: 16px;
    text-align: center;
}

body.dark-mode .mobile-support-card {
    background: linear-gradient(135deg, rgba(18, 51, 107, 0.35) 0%, rgba(13, 26, 46, 0.6) 100%);
    border-color: rgba(46, 116, 212, 0.3);
}

.support-card-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue);
    background: #ffffff;
    padding: 3px 10px;
    border-radius: 9999px;
    margin-bottom: 6px;
    box-shadow: 0 2px 6px rgba(28, 83, 163, 0.08);
}

body.dark-mode .support-card-badge {
    background: var(--blue-dark);
    color: var(--blue-lt);
}

.support-card-sub {
    font-size: 0.85rem;
    color: var(--ink);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

body.dark-mode .support-card-sub {
    color: var(--mist);
}

.mobile-drawer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 18px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff !important;
    background: linear-gradient(135deg, #1c53a3 0%, #12336b 100%);
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(28, 83, 163, 0.3);
    transition: transform 0.2s ease;
}

.mobile-drawer-cta:active {
    transform: scale(0.98);
}

/* Mobile Secondary Actions Grid */
.mobile-secondary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mobile-secondary-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 10px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-secondary-card:hover,
.mobile-secondary-card.active {
    background: #ffffff;
    border-color: var(--blue-mid);
    box-shadow: 0 3px 10px rgba(46, 116, 212, 0.1);
}

body.dark-mode .mobile-secondary-card {
    background: rgba(18, 30, 48, 0.5);
    border-color: var(--border);
}

body.dark-mode .mobile-secondary-card:hover,
body.dark-mode .mobile-secondary-card.active {
    background: rgba(28, 83, 163, 0.25);
    border-color: var(--blue-mid);
}

.sec-icon {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.sec-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--blue-dark);
}

body.dark-mode .sec-title {
    color: var(--blue-lt);
}

.sec-desc {
    font-size: 0.72rem;
    color: var(--mist);
}

/* Mobile Navigation Section */
.mobile-nav-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 6px;
    border-top: 1px solid var(--border);
}

.mobile-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--mist);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 6px;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-nav-item .nav-icon {
    font-size: 1.1rem;
}

.mobile-nav-item:hover {
    background: var(--blue-xs);
    color: var(--blue);
}

.mobile-nav-item.active {
    background: var(--blue-xs);
    color: var(--blue);
    font-weight: 700;
}

body.dark-mode .mobile-nav-item {
    color: var(--ink);
}

body.dark-mode .mobile-nav-item:hover,
body.dark-mode .mobile-nav-item.active {
    background: rgba(46, 116, 212, 0.2);
    color: var(--blue-lt);
}

/* Mobile Drawer Footer */
.mobile-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.hotline-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--mist);
    padding: 8px 12px;
    background: rgba(244, 247, 252, 0.6);
    border-radius: 10px;
}

body.dark-mode .hotline-badge {
    background: rgba(18, 30, 48, 0.4);
}

.hotline-link {
    font-weight: 700;
    color: var(--blue) !important;
    text-decoration: none;
}

.mobile-admin-bar {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
    background: rgba(234, 242, 253, 0.4);
    border: 1px dashed var(--blue-mid);
    border-radius: 12px;
    margin-top: 6px;
}

.mobile-admin-info {
    font-size: 0.78rem;
    color: var(--mist);
    word-break: break-all;
}

.mobile-admin-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-admin-mobile {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    padding: 4px 10px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.btn-logout-mobile {
    font-size: 0.82rem;
    color: #c0392b;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
}

/* Responsive Header Navigation Breakpoint (Unified at 1024px for Tablet & Mobile) */
@media (max-width: 1024px) {
    .site-header .navbar {
        gap: 12px;
    }
    .secondary-actions {
        display: none !important;
    }
    .desktop-nav {
        display: none !important;
    }
    .header-actions {
        display: none !important;
    }
    .mobile-header-controls {
        display: flex !important;
    }
    .menu-toggle {
        display: flex !important;
    }
}


.btn {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(28, 83, 163, 0.25);
}

.btn-card {
    background: var(--blue);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    width: 100%;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-card:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(28, 83, 163, 0.3);
}

.hero {
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(130deg, var(--blue-dark), var(--blue-mid));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    animation: fadeUp 0.6s ease both 0.1s;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--mist);
    margin-bottom: 35px;
    max-width: 500px;
    animation: fadeUp 0.6s ease both 0.2s;
}

.hero-text .btn {
    animation: fadeUp 0.6s ease both 0.3s;
}

.hero-image {
    flex: 1;
    text-align: center;
    animation: fadeRight 0.7s ease both 0.2s;
}

.hero-image img {
    max-width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-12px) rotate(0.5deg);
    }

    66% {
        transform: translateY(-6px) rotate(-0.5deg);
    }
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    color: var(--blue-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    inset-inline-start: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-mid));
    border-radius: 3px;
    animation: lineGrow 0.8s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes lineGrow {
    from {
        width: 0;
    }

    to {
        width: 60px;
    }
}

.about {
    padding: 60px 0;
}

.about-box {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 32px;
    border: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 32px;
    border: 1px solid var(--border);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.about-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 16px;
    position: relative;
}

.about-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    inset-inline-start: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-mid));
    border-radius: 3px;
}

.about-card p {
    color: var(--mist);
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   SERVICES PILLARS & SCOPE CLARITY (About Section)
   -------------------------------------------------------------------------- */
.about-services-block {
    margin-top: 48px;
}

.about-services-header {
    text-align: center;
    margin-bottom: 24px;
}

.about-services-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin: 0 0 8px;
    position: relative;
    display: inline-block;
}

.about-services-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-mid));
    border-radius: 3px;
}

.about-services-subtitle {
    font-size: 0.95rem;
    color: var(--mist);
    margin: 14px 0 0;
}

.services-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.pillar-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.pillar-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-mid);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--blue-xs);
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.pillar-card:hover .pillar-icon {
    background: var(--blue);
    color: #ffffff;
}

.pillar-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin: 0 0 10px;
    line-height: 1.4;
}

.pillar-card p {
    font-size: 0.92rem;
    color: var(--mist);
    line-height: 1.7;
    margin: 0 0 20px;
    flex-grow: 1;
}

.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    transition: color var(--transition-fast), gap var(--transition-fast);
    padding: 4px 0;
}

.pillar-link .ui-svg-icon {
    transition: transform var(--transition-fast);
}

.pillar-link:hover {
    color: var(--blue-mid);
    gap: 12px;
}

.pillar-link:hover .ui-svg-icon {
    transform: translateX(-4px);
}

/* About Scope Notice Banner */
.about-scope-notice {
    margin-top: 32px;
    background: linear-gradient(135deg, rgba(234, 242, 253, 0.7) 0%, rgba(208, 226, 247, 0.45) 100%);
    border: 1.5px solid rgba(46, 116, 212, 0.3);
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.about-scope-notice .notice-icon {
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-scope-notice .notice-text {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--ink);
}

.about-scope-notice .notice-text strong {
    display: block;
    color: var(--blue-dark);
    font-weight: 700;
    margin-bottom: 4px;
}

.stats {
    padding: 50px 0;
}

.stats-meta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 32px;
    text-align: center;
}

.stats-date-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--blue-xs);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    color: var(--blue-dark);
    font-size: 0.85rem;
    font-weight: 700;
}

.stats-date-pill .ui-svg-icon {
    color: var(--blue);
}

.stats-source-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--mist);
    font-size: 0.86rem;
    font-weight: 500;
}

.stats-source-note .ui-svg-icon {
    color: var(--color-success);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
    justify-content: center;
}

.stat-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 24px 18px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-mid);
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-xs);
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.stat-card:hover .stat-icon {
    background: var(--blue);
    color: #ffffff;
}

.stat-number {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--blue);
    transition: color 0.3s ease;
    line-height: 1.2;
}

.stat-card:hover .stat-number {
    color: var(--blue-mid);
}

.stat-label {
    margin-top: 8px;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
}

.stat-source {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px dashed var(--border);
    font-size: 0.76rem;
    color: var(--mist);
    line-height: 1.45;
    width: 100%;
}

.stats-methodology-footer {
    margin-top: 36px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.stats-methodology-footer .ui-svg-icon {
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.activities-list {
    padding: 60px 0;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.activity-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 26px 22px;
    border: 1px solid var(--border);
    transition: transform 0.35s cubic-bezier(.22, 1, .36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.activity-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-mid);
}

.activity-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.activity-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.activity-top-row h3 {
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity-top-row h3 .ui-svg-icon {
    color: var(--blue);
    flex-shrink: 0;
}

.activity-cost-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
    background: var(--color-success-bg);
    color: var(--color-success);
    border: 1px solid rgba(22, 163, 74, 0.25);
}

.activity-cost-badge.partnership {
    background: var(--blue-xs);
    color: var(--blue);
    border-color: rgba(46, 116, 212, 0.25);
}

.activity-desc {
    color: var(--ink);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0 0 16px;
}

.activity-meta-list {
    background: var(--color-surface-subtle);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    margin-top: auto;
}

.activity-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    line-height: 1.4;
}

.activity-meta-item .meta-icon {
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.activity-meta-item .meta-label {
    font-weight: 700;
    color: var(--blue-dark);
    flex-shrink: 0;
}

.activity-meta-item .meta-val {
    color: var(--mist);
}

.activity-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.btn-activity-details {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 12px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--blue-mid);
    color: var(--blue);
    background: transparent;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.btn-activity-details:hover {
    background: var(--blue-xs);
    color: var(--blue-dark);
    transform: translateY(-1px);
}

.btn-activity-register {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 12px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: #ffffff !important;
    border: 1.5px solid transparent;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(28, 83, 163, 0.25);
    transition: all var(--transition-fast);
}

.btn-activity-register:hover {
    background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(28, 83, 163, 0.35);
}

.gallery {
    padding: 60px 0 70px;
    background: linear-gradient(180deg, rgba(235, 245, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
}

.gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(28, 83, 163, 0.08);
    color: var(--blue);
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 9999px;
    margin-bottom: 12px;
    border: 1px solid rgba(28, 83, 163, 0.18);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 36px;
}

.gallery-card {
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border: 1px solid rgba(28, 83, 163, 0.12);
    border-radius: 24px;
    overflow: hidden;
    text-align: start;
    box-shadow: 0 10px 30px rgba(28, 83, 163, 0.06);
    transition: transform 0.35s cubic-bezier(.22, 1, .36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.gallery-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(28, 83, 163, 0.25);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #e2e8f0;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image-wrapper img {
    transform: scale(1.02);
}

.gallery-image-overlay {
    position: absolute;
    bottom: 14px;
    inset-inline: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.gallery-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 9999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gallery-pill-date {
    background: rgba(15, 23, 42, 0.8);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.gallery-pill-type {
    background: rgba(28, 83, 163, 0.9);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(28, 83, 163, 0.35);
}

.gallery-caption {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 24px 22px;
    gap: 14px;
}

.gallery-occasion-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    color: var(--blue-mid);
    font-weight: 600;
}

.gallery-occasion-label {
    color: var(--text-muted);
    font-weight: 500;
}

.gallery-card-title {
    font-size: 1.22rem;
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1.45;
    margin: 0;
}

.gallery-card-desc {
    font-size: 0.94rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.gallery-impact-box {
    margin-top: auto;
    padding: 14px 16px;
    background: rgba(28, 83, 163, 0.05);
    border-radius: 14px;
    border-inline-start: 3px solid var(--blue);
}

.gallery-impact-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 4px;
}

.gallery-impact-desc {
    font-size: 0.88rem;
    color: var(--text-main);
    line-height: 1.55;
    margin: 0;
}

.gallery-card-action {
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(28, 83, 163, 0.1);
}

.btn-gallery-action {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--blue);
    background: rgba(28, 83, 163, 0.06);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(28, 83, 163, 0.16);
    min-height: 44px;
}

.btn-gallery-action:hover {
    background: var(--blue);
    color: #ffffff;
    border-color: var(--blue);
    transform: translateX(-3px);
}

.btn-gallery-action:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

/* Trust, Consent & Privacy Disclaimer */
.gallery-trust-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 22px 24px;
    background: var(--card-bg);
    border: 1px solid rgba(28, 83, 163, 0.14);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(28, 83, 163, 0.04);
}

.gallery-trust-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(28, 83, 163, 0.08);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-trust-content {
    flex-grow: 1;
    text-align: start;
}

.gallery-trust-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin: 0 0 4px 0;
}

.gallery-trust-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.gallery-trust-link-wrap {
    flex-shrink: 0;
}

.btn-trust-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--blue);
    background: transparent;
    border: 1.5px solid var(--blue);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    min-height: 44px;
}

.btn-trust-view:hover {
    background: var(--blue);
    color: #ffffff;
}

.btn-trust-view:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

/* Dark mode adjustments for gallery */
body.dark-mode .gallery {
    background: transparent;
}

body.dark-mode .gallery-badge {
    background: rgba(43, 114, 186, 0.16);
    color: var(--blue-lt);
    border-color: rgba(122, 184, 245, 0.25);
}

body.dark-mode .gallery-card {
    border-color: var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.dark-mode .gallery-card-title {
    color: var(--blue-lt);
}

body.dark-mode .gallery-card-desc {
    color: var(--mist);
}

body.dark-mode .gallery-occasion-tag {
    color: var(--blue-lt);
}

body.dark-mode .gallery-occasion-label {
    color: var(--mist);
}

body.dark-mode .gallery-impact-box {
    background: rgba(26, 38, 54, 0.7);
    border-inline-start-color: var(--blue-mid);
}

body.dark-mode .gallery-impact-title {
    color: var(--blue-lt);
}

body.dark-mode .gallery-impact-desc {
    color: var(--ink);
}

body.dark-mode .gallery-card-action {
    border-top-color: var(--border);
}

body.dark-mode .btn-gallery-action {
    background: rgba(43, 114, 186, 0.16);
    color: var(--blue-lt);
    border-color: rgba(122, 184, 245, 0.24);
}

body.dark-mode .btn-gallery-action:hover {
    background: var(--blue-mid);
    color: #ffffff;
    border-color: var(--blue-mid);
}

body.dark-mode .gallery-trust-banner {
    border-color: var(--border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body.dark-mode .gallery-trust-icon {
    background: rgba(43, 114, 186, 0.16);
    color: var(--blue-lt);
}

body.dark-mode .gallery-trust-title {
    color: var(--blue-lt);
}

body.dark-mode .gallery-trust-desc {
    color: var(--mist);
}

body.dark-mode .btn-trust-view {
    color: var(--blue-lt);
    border-color: var(--blue-mid);
}

body.dark-mode .btn-trust-view:hover {
    background: var(--blue-mid);
    color: #ffffff;
}

@media (max-width: 768px) {
    .gallery-trust-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
    }
    
    .gallery-trust-link-wrap {
        width: 100%;
    }
    
    .btn-trust-view {
        width: 100%;
        justify-content: center;
    }
}


.core-values {
    padding: 60px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.value-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.value-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-mid);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-mid);
    transition: color 0.25s ease;
}

.value-card:hover .value-icon {
    color: var(--blue-dark);
}

.value-text {
    color: var(--mist);
    font-size: 0.9rem;
}

.value-text strong {
    color: var(--blue-dark);
    display: block;
    margin-bottom: 8px;
}

.faq-section {
    padding: 70px 0 80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(235, 245, 255, 0.45) 100%);
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(28, 83, 163, 0.08);
    color: var(--blue);
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 9999px;
    margin-bottom: 12px;
    border: 1px solid rgba(28, 83, 163, 0.18);
}

.faq-list {
    max-width: 840px;
    margin: 36px auto 0;
}

.faq-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1.5px solid var(--border);
    border-inline-start: 4px solid transparent;
    transition: transform 0.3s cubic-bezier(.22, 1, .36, 1), 
                box-shadow 0.3s ease, 
                border-color 0.3s ease, 
                background-color 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(28, 83, 163, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 83, 163, 0.08);
}

.faq-item.active {
    border-color: var(--blue-mid);
    border-inline-start-color: var(--blue);
    background: rgba(28, 83, 163, 0.035);
    box-shadow: 0 10px 28px rgba(28, 83, 163, 0.12);
}

.faq-item-heading {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: 700;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    margin: 0;
    font-family: inherit;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--blue-dark);
    text-align: start;
    cursor: pointer;
    gap: 16px;
    transition: color 0.2s ease, background-color 0.2s ease;
    min-height: 52px;
}

.faq-question-text {
    flex-grow: 1;
    line-height: 1.5;
}

.faq-status-pill {
    display: none;
    align-items: center;
    padding: 4px 10px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--blue);
    background: rgba(28, 83, 163, 0.1);
    border: 1px solid rgba(28, 83, 163, 0.2);
    border-radius: 9999px;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.faq-item.active .faq-status-pill {
    display: inline-flex;
}

.faq-item.active .faq-question-text {
    color: var(--blue);
}

.faq-question:focus-visible {
    outline: 2.5px solid var(--blue-mid) !important;
    outline-offset: -2px !important;
    border-radius: 18px;
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(28, 83, 163, 0.08);
    color: var(--blue);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-icon-minus {
    display: none;
}

.faq-icon-plus {
    display: block;
}

.faq-item.active .faq-icon {
    background: var(--blue);
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-item.active .faq-icon-plus {
    display: none;
}

.faq-item.active .faq-icon-minus {
    display: block;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
    padding: 0 24px 22px;
}

.faq-answer-inner {
    border-top: 1px solid rgba(28, 83, 163, 0.1);
    padding-top: 16px;
    color: var(--text-main);
    font-size: 0.96rem;
    line-height: 1.7;
}

.faq-answer-inner p {
    margin: 0;
    color: var(--text-main);
}

/* Dark mode overrides for FAQ */
body.dark-mode .faq-section {
    background: transparent;
}

body.dark-mode .faq-badge {
    background: rgba(43, 114, 186, 0.16);
    color: var(--blue-lt);
    border-color: rgba(122, 184, 245, 0.25);
}

body.dark-mode .faq-item {
    background: var(--card-bg);
    border-color: var(--border);
}

body.dark-mode .faq-item:hover {
    border-color: rgba(122, 184, 245, 0.35);
}

body.dark-mode .faq-item.active {
    border-color: var(--blue-mid);
    border-inline-start-color: var(--blue-lt);
    background: rgba(43, 114, 186, 0.12);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

body.dark-mode .faq-question {
    color: var(--blue-lt);
}

body.dark-mode .faq-item.active .faq-question-text {
    color: #ffffff;
}

body.dark-mode .faq-status-pill {
    background: rgba(43, 114, 186, 0.25);
    color: var(--blue-lt);
    border-color: rgba(122, 184, 245, 0.3);
}

body.dark-mode .faq-question:focus-visible {
    outline: 2.5px solid #60a5fa !important;
}

body.dark-mode .faq-icon {
    background: rgba(43, 114, 186, 0.18);
    color: var(--blue-lt);
}

body.dark-mode .faq-item.active .faq-icon {
    background: var(--blue-mid);
    color: #ffffff;
}

body.dark-mode .faq-answer-inner {
    border-top-color: var(--border);
    color: var(--mist);
}

body.dark-mode .faq-answer-inner p {
    color: var(--mist);
}

@media (max-width: 640px) {
    .faq-question {
        padding: 16px 18px;
        font-size: 0.98rem;
        gap: 12px;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 18px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
    }

    .faq-status-pill {
        display: none !important;
    }
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 35px;
    margin: 50px 0;
    transition: box-shadow 0.3s ease;
}

.contact-wrapper:hover {
    box-shadow: 0 16px 40px rgba(28, 83, 163, 0.12);
}

.contact-info,
.contact-form {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.4rem;
    color: var(--blue-dark);
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 16px;
    border-radius: 40px;
    border: 1px solid var(--border);
    font-family: inherit;
    background: var(--white);
}

.contact-form button {
    background: var(--blue);
    color: white;
    width: 100%;
    padding: 14px;
    border-radius: 40px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

/* ============================================================
   CONTACT FORM — ACCESSIBLE REDESIGN (Issues #26-29, #31)
   ============================================================ */

.contact-form-header {
    margin-bottom: 20px;
}

.contact-form-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 6px;
}

.contact-form-sub {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
}

/* Privacy notice */
.form-privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(46, 116, 212, 0.06);
    border: 1px solid rgba(46, 116, 212, 0.2);
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 18px;
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.5;
}

.form-privacy-note svg {
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 1px;
}

.privacy-link {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Field wrapper */
.cf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
    text-align: start;
}

/* Label — Issue #26 */
.cf-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
}

.cf-required {
    color: #ef4444;
    margin-right: 2px;
}

/* Input / Textarea */
.cf-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--ink);
    background: var(--bg);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.cf-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(46, 116, 212, 0.15);
}

.cf-input--error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
}

.cf-textarea {
    border-radius: 14px;
    resize: vertical;
    min-height: 120px;
}

/* Hint text */
.cf-hint {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
}

/* Error message — Issue #26 */
.cf-error {
    font-size: 0.82rem;
    font-weight: 600;
    color: #dc2626;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Submit button */
.cf-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--blue);
    color: #ffffff;
    width: 100%;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 6px;
    min-height: 50px;
}

.cf-submit-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(46, 116, 212, 0.3);
}

.cf-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.cf-spinner {
    animation: spin 0.75s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hidden { display: none !important; }

/* Feedback message — Issue #29 */
.cf-feedback {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: start;
}

.cf-feedback strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.cf-feedback p {
    margin: 0;
}

.cf-feedback--success {
    background: var(--color-success-bg);
    border: 1px solid var(--color-success-border);
    color: var(--color-success);
}

.cf-feedback--error {
    background: var(--color-danger-bg);
    border: 1px solid var(--color-danger-border);
    color: var(--color-danger);
}

/* Partners pending note */
.partners-pending-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 16px;
}

/* Dark mode for contact form — Issue #59 */
body.dark-mode .form-privacy-note {
    background: var(--color-info-bg);
    border-color: var(--color-info-border);
}

body.dark-mode .cf-input {
    background: var(--color-input-bg);
    border-color: var(--color-input-border);
    color: var(--color-input-text);
}

body.dark-mode .cf-input:focus {
    border-color: var(--color-border-focus);
    box-shadow: var(--shadow-focus);
}

body.dark-mode .cf-submit-btn {
    background: var(--color-cta-bg);
    color: var(--color-cta-text);
}

body.dark-mode .cf-submit-btn:hover {
    background: var(--color-cta-hover-bg);
}

body.dark-mode .cf-submit-btn:disabled {
    background: var(--color-cta-disabled-bg);
    color: var(--color-cta-disabled-text);
}

body.dark-mode .cf-feedback--success {
    background: var(--color-success-bg);
    color: var(--color-success);
    border-color: var(--color-success-border);
}

body.dark-mode .cf-feedback--error {
    background: var(--color-danger-bg);
    color: var(--color-danger);
    border-color: var(--color-danger-border);
}

.partners {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 48px;
    margin: 30px 0 60px;
    padding: 50px 20px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.partner-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 18px;
    text-align: center;
    width: 150px;
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-card img {
    max-width: 100%;
    height: 65px;
    object-fit: contain;
    margin-bottom: 10px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 51, 107, 0.85);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeUp 0.3s ease both;
}

.modal-content {
    background: var(--white);
    border-radius: 40px;
    max-width: 450px;
    width: 90%;
    padding: 30px;
    text-align: center;
    position: relative;
    animation: modalPop 0.45s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes modalPop {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }

    70% {
        transform: scale(1.03) translateY(-3px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close-modal {
    position: absolute;
    inset-inline-end: 18px;
    top: 12px;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: var(--mist);
    background: none;
    border: none;
    padding: 4px 10px;
    border-radius: 10px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.close-modal:hover {
    color: var(--blue-dark);
    transform: scale(1.1);
}

.close-modal:focus-visible {
    outline: 2.5px solid var(--blue-mid) !important;
    outline-offset: 2px !important;
    color: var(--blue-dark);
}

body.dark-mode .close-modal:hover,
body.dark-mode .close-modal:focus-visible {
    color: var(--blue-lt);
    outline-color: #60a5fa !important;
}

.page-header {
    background: linear-gradient(120deg, var(--blue-lt), var(--blue-xs), var(--blue-lt));
    background-size: 200% 200%;
    padding: 50px 0;
    text-align: center;
    animation: headerSweep 4s ease infinite alternate;
}

@keyframes headerSweep {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.page-header h1 {
    font-size: 2.2rem;
    color: var(--blue-dark);
    margin-bottom: 10px;
    animation: fadeUp 0.7s ease both;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 24px;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--blue-dark);
}

.card p {
    color: var(--mist);
    font-size: 0.9rem;
}

/* =============================================
   ACTIVITIES PAGE (/activities) — Enhanced & Diverse UI
   ============================================= */
.activities-page-main {
    padding: 20px 0 80px;
}

.activities-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(28, 83, 163, 0.12);
    color: var(--blue);
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 9999px;
    margin-bottom: 14px;
    border: 1px solid rgba(28, 83, 163, 0.2);
}

.activities-overview-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: var(--card-bg);
    border: 1px solid rgba(28, 83, 163, 0.14);
    border-radius: 20px;
    padding: 24px 28px;
    margin-bottom: 40px;
    box-shadow: 0 6px 24px rgba(28, 83, 163, 0.05);
}

.activities-overview-text h2 {
    font-size: 1.3rem;
    color: var(--blue-dark);
    margin: 0 0 6px;
}

.activities-overview-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.activities-stats-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: rgba(28, 83, 163, 0.08);
    border: 1px solid rgba(28, 83, 163, 0.18);
    border-radius: 16px;
    flex-shrink: 0;
}

.stat-pill-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}

.stat-pill-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue-mid);
    margin-top: 4px;
    white-space: nowrap;
}

/* Enhanced Grid */
.activities-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

/* Base Activity Card */
.activity-card {
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border-radius: 24px;
    border: 1.5px solid var(--border);
    padding: 24px;
    box-shadow: 0 8px 24px rgba(28, 83, 163, 0.06);
    transition: transform 0.35s cubic-bezier(.22, 1, .36, 1), 
                box-shadow 0.35s ease, 
                border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 4px;
    background: var(--card-accent, var(--blue));
    opacity: 0.85;
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(28, 83, 163, 0.14);
}

/* Category Thematic Accents */
.activity-card-workshop {
    --card-accent: #0284c7;
}
.activity-card-community {
    --card-accent: #d97706;
}
.activity-card-campaign {
    --card-accent: #7c3aed;
}
.activity-card-corporate {
    --card-accent: #1e40af;
}
.activity-card-knowledge {
    --card-accent: #059669;
}
.activity-card-support {
    --card-accent: #e11d48;
}

/* Header Row: Category Badge & Status Badge */
.activity-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.activity-cat-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 8px;
}

.badge-workshop {
    background: rgba(2, 132, 199, 0.1);
    color: #0284c7;
    border: 1px solid rgba(2, 132, 199, 0.25);
}
.badge-community {
    background: rgba(217, 119, 6, 0.1);
    color: #d97706;
    border: 1px solid rgba(217, 119, 6, 0.25);
}
.badge-campaign {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.25);
}
.badge-corporate {
    background: rgba(30, 64, 175, 0.1);
    color: #1e40af;
    border: 1px solid rgba(30, 64, 175, 0.25);
}
.badge-knowledge {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.25);
}
.badge-support {
    background: rgba(225, 29, 72, 0.1);
    color: #e11d48;
    border: 1px solid rgba(225, 29, 72, 0.25);
}

.activity-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 0.76rem;
    font-weight: 700;
    border-radius: 9999px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
}

.status-open {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.status-active {
    background: rgba(217, 119, 6, 0.1);
    color: #d97706;
    border: 1px solid rgba(217, 119, 6, 0.25);
}
.status-ongoing {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.25);
}
.status-partnership {
    background: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
    border: 1px solid rgba(99, 102, 241, 0.25);
}
.status-download {
    background: rgba(13, 148, 136, 0.1);
    color: #0d9488;
    border: 1px solid rgba(13, 148, 136, 0.25);
}
.status-limited {
    background: rgba(225, 29, 72, 0.1);
    color: #e11d48;
    border: 1px solid rgba(225, 29, 72, 0.25);
}

/* Title & Icon Row */
.activity-card-title-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.activity-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-card-icon {
    transform: scale(1.08);
}

.icon-workshop {
    background: rgba(2, 132, 199, 0.12);
    color: #0284c7;
}
.icon-community {
    background: rgba(217, 119, 6, 0.12);
    color: #d97706;
}
.icon-campaign {
    background: rgba(124, 58, 237, 0.12);
    color: #7c3aed;
}
.icon-corporate {
    background: rgba(30, 64, 175, 0.12);
    color: #1e40af;
}
.icon-knowledge {
    background: rgba(5, 150, 105, 0.12);
    color: #059669;
}
.icon-support {
    background: rgba(225, 29, 72, 0.12);
    color: #e11d48;
}

.activity-card-title {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1.45;
    margin: 0;
    text-align: start;
}

.activity-card-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 18px 0;
    text-align: start;
}

/* Metadata Container */
.activity-meta-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(28, 83, 163, 0.04);
    border: 1px solid rgba(28, 83, 163, 0.08);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 20px;
    margin-top: auto;
}

.activity-meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    text-align: start;
}

.activity-meta-item .meta-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-weight: 600;
    flex-shrink: 0;
}

.activity-meta-item .meta-value {
    color: var(--text-main);
    font-weight: 700;
    text-align: end;
}

.meta-cost-item {
    border-top: 1px dashed rgba(28, 83, 163, 0.12);
    padding-top: 8px;
    margin-top: 4px;
}

.meta-cost-value {
    color: var(--blue) !important;
}

/* Action Buttons */
.activity-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.btn-activity-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--blue);
    background: rgba(28, 83, 163, 0.06);
    border: 1.5px solid rgba(28, 83, 163, 0.18);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    min-height: 44px;
}

.btn-activity-details:hover {
    background: rgba(28, 83, 163, 0.12);
    border-color: var(--blue);
}

.btn-activity-details:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.btn-activity-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--blue);
    border: 1.5px solid var(--blue);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    min-height: 44px;
}

.btn-activity-cta:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 83, 163, 0.25);
}

.btn-activity-cta:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.btn-cta-workshop {
    background: #0284c7;
    border-color: #0284c7;
}
.btn-cta-workshop:hover {
    background: #0369a1;
}

.btn-cta-community {
    background: #d97706;
    border-color: #d97706;
}
.btn-cta-community:hover {
    background: #b45309;
}

.btn-cta-campaign {
    background: #7c3aed;
    border-color: #7c3aed;
}
.btn-cta-campaign:hover {
    background: #6d28d9;
}

.btn-cta-corporate {
    background: #1e40af;
    border-color: #1e40af;
}
.btn-cta-corporate:hover {
    background: #1e3a8a;
}

.btn-cta-knowledge {
    background: #059669;
    border-color: #059669;
}
.btn-cta-knowledge:hover {
    background: #047857;
}

.btn-cta-support {
    background: #e11d48;
    border-color: #e11d48;
}
.btn-cta-support:hover {
    background: #be123c;
}

/* Activity Modal Enhancements (بطاقة القرار المتكاملة) */
.activity-modal-content {
    max-width: 680px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px 30px 24px;
    border-radius: 28px;
    text-align: start;
    box-shadow: 0 25px 60px -15px rgba(18, 51, 107, 0.45);
    border: 1.5px solid rgba(28, 83, 163, 0.15);
    position: relative;
}

/* Modal Esc Key Hint & Keyboard Instructions */
.modal-esc-hint {
    position: absolute;
    inset-inline-start: 26px;
    top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--mist);
    background: rgba(28, 83, 163, 0.06);
    border: 1px solid rgba(28, 83, 163, 0.12);
    padding: 3px 8px;
    border-radius: 8px;
    pointer-events: none;
}

.modal-esc-hint kbd,
.inline-kbd {
    display: inline-block;
    padding: 2px 6px;
    font-size: 0.72rem;
    font-family: inherit;
    font-weight: 800;
    line-height: 1;
    color: var(--blue-dark);
    background: #ffffff;
    border: 1px solid rgba(28, 83, 163, 0.25);
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

body.dark-mode .modal-esc-hint {
    background: rgba(43, 114, 186, 0.15);
    border-color: rgba(122, 184, 245, 0.2);
    color: var(--mist);
}

body.dark-mode .modal-esc-hint kbd,
body.dark-mode .inline-kbd {
    background: #1e293b;
    color: var(--blue-lt);
    border-color: rgba(122, 184, 245, 0.3);
}

body.modal-open {
    overflow: hidden !important;
    touch-action: none;
}

.modal-badge-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.modal-category-badge {
    display: none;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 8px;
    background: rgba(28, 83, 163, 0.1);
    color: var(--blue);
}

.modal-status-badge {
    display: none;
    padding: 4px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 9999px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.modal-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--blue-dark);
    margin: 0 0 16px;
    line-height: 1.4;
}

/* Decision Grid */
.modal-decision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 16px 0 20px;
}

.decision-item {
    background: rgba(28, 83, 163, 0.04);
    border: 1px solid rgba(28, 83, 163, 0.12);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.decision-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--mist);
}

.decision-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
}

.decision-cost-value {
    color: var(--blue) !important;
}

/* Description */
.modal-desc-wrapper {
    margin-bottom: 16px;
}

.modal-subheading {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--blue-dark);
    margin: 0 0 8px;
}

.modal-desc-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--ink);
    margin: 0;
}

/* Next Steps Callout */
.modal-next-steps-box {
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 14px;
    padding: 14px 16px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.next-steps-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    color: #15803d;
}

.next-steps-text {
    font-size: 0.86rem;
    line-height: 1.6;
    color: #166534;
    margin: 0;
}

/* Action Bar */
.modal-action-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.modal-btn-participate {
    background: var(--blue);
    color: #ffffff !important;
    border: 1.5px solid var(--blue);
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.92rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1 1 200px;
    min-height: 44px;
    transition: all 0.25s ease;
}

.modal-btn-participate:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(28, 83, 163, 0.25);
}

.modal-btn-participate:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.modal-btn-inquiry {
    background: #16a34a;
    color: #ffffff !important;
    border: 1.5px solid #16a34a;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1 1 170px;
    min-height: 44px;
    transition: all 0.25s ease;
}

.modal-btn-inquiry:hover {
    background: #15803d;
    border-color: #15803d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

.modal-btn-inquiry:focus-visible {
    outline: 2px solid #16a34a;
    outline-offset: 2px;
}

.modal-btn-copy {
    background: rgba(28, 83, 163, 0.08);
    color: var(--blue);
    border: 1.5px solid rgba(28, 83, 163, 0.2);
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    transition: all 0.2s ease;
}

.modal-btn-copy:hover {
    background: rgba(28, 83, 163, 0.14);
    border-color: var(--blue);
}

.modal-btn-copy.copied {
    background: #dcfce7 !important;
    color: #15803d !important;
    border-color: #86efac !important;
}

.modal-btn-copy:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.modal-btn-close {
    background: transparent;
    color: var(--mist);
    border: 1.5px solid var(--border);
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    min-height: 44px;
    transition: all 0.2s ease;
}

.modal-btn-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--ink);
}

.modal-btn-close:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

@media (max-width: 600px) {
    .modal-esc-hint {
        inset-inline-start: 16px;
        top: 14px;
        padding: 2px 6px;
        font-size: 0.7rem;
    }
    .modal-decision-grid {
        grid-template-columns: 1fr;
    }
    .modal-action-bar {
        flex-direction: column;
    }
    .modal-btn-participate,
    .modal-btn-inquiry,
    .modal-btn-copy,
    .modal-btn-close {
        width: 100%;
        flex: auto;
    }
}

/* Dark Mode Support for Activities */
body.dark-mode .activities-header-badge {
    background: var(--color-info-bg);
    color: var(--color-info);
    border-color: var(--color-info-border);
}

body.dark-mode .activities-overview-banner {
    border-color: var(--color-border);
}

body.dark-mode .activities-overview-text h2 {
    color: var(--color-text-primary);
}

body.dark-mode .activities-stats-pill {
    background: var(--color-surface-subtle);
    border-color: var(--color-border);
}

body.dark-mode .stat-pill-number {
    color: var(--color-info);
}

body.dark-mode .stat-pill-label {
    color: var(--color-text-secondary);
}

body.dark-mode .activity-card {
    border-color: var(--color-border);
    box-shadow: var(--shadow-md);
}

body.dark-mode .activity-card-title {
    color: var(--color-text-primary);
}

body.dark-mode .activity-card-desc {
    color: var(--color-text-secondary);
}

body.dark-mode .activity-meta-container {
    background: var(--color-surface-subtle);
    border-color: var(--color-border);
}

body.dark-mode .activity-meta-item .meta-label {
    color: var(--color-text-secondary);
}

body.dark-mode .activity-meta-item .meta-value {
    color: var(--color-text-primary);
}

body.dark-mode .btn-activity-details {
    background: var(--color-btn-secondary-bg);
    color: var(--color-btn-secondary-text);
    border-color: var(--color-btn-secondary-border);
}

body.dark-mode .btn-activity-details:hover {
    background: var(--color-btn-secondary-hover-bg);
    color: var(--color-btn-secondary-hover-text);
}

body.dark-mode .activity-modal-content {
    background: var(--color-surface-elevated);
    border-color: var(--color-border);
    box-shadow: var(--shadow-lg);
}

body.dark-mode .modal-title {
    color: var(--color-text-primary);
}

body.dark-mode .decision-item {
    background: var(--color-surface-subtle);
    border-color: var(--color-border);
}

body.dark-mode .decision-label {
    color: var(--color-text-secondary);
}

body.dark-mode .decision-value {
    color: var(--color-text-primary);
}

body.dark-mode .decision-cost-value {
    color: var(--color-info) !important;
}

body.dark-mode .modal-subheading {
    color: var(--color-text-primary);
}

body.dark-mode .modal-desc-text {
    color: var(--color-text-secondary);
}

body.dark-mode .modal-next-steps-box {
    background: var(--color-success-bg);
    border-color: var(--color-success-border);
}

body.dark-mode .next-steps-header {
    color: var(--color-success);
}

body.dark-mode .next-steps-text {
    color: var(--color-text-primary);
}

body.dark-mode .modal-btn-copy {
    background: var(--color-btn-secondary-bg);
    color: var(--color-btn-secondary-text);
    border-color: var(--color-btn-secondary-border);
}

body.dark-mode .modal-btn-copy:hover {
    background: var(--color-btn-secondary-hover-bg);
    color: var(--color-btn-secondary-hover-text);
}

body.dark-mode .modal-btn-close {
    color: #94a3b8;
    border-color: rgba(255, 255, 255, 0.18);
}

body.dark-mode .modal-btn-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

@media (max-width: 768px) {
    .activities-overview-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .activities-stats-pill {
        width: 100%;
        flex-direction: row;
        gap: 10px;
    }

    .activity-card-actions {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   SITE FOOTER (Interactive & Accessible)
   ============================================= */
.site-footer {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 45px 0 25px;
    margin-top: 60px;
    color: var(--ink);
    position: relative;
    z-index: 10;
}

/* Emergency strip in footer — Issue #57 */
.footer-emergency-strip {
    background: rgba(239, 68, 68, 0.07);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 18px;
    padding: 16px 20px;
    margin-bottom: 36px;
}

.emergency-strip-content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
    font-size: 0.82rem;
    font-weight: 800;
    border-radius: 50px;
    white-space: nowrap;
}

.emergency-strip-content p {
    font-size: 0.88rem;
    color: var(--ink);
    margin: 0;
    line-height: 1.6;
    flex: 1;
    min-width: 260px;
}

/* 4-Column Footer Grid — Issue #53 */
.footer-grid-nav {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1.3fr;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-mini-logo {
    border-radius: 8px;
}

.footer-logo {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--blue-dark);
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

.footer-quick-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

.footer-contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-contact-pill:hover {
    color: var(--blue-dark);
    text-decoration: underline;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 4px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 2.5px;
    background: var(--blue);
    border-radius: 2px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-list a {
    font-size: 0.88rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-nav-list a:hover {
    color: var(--blue);
    transform: translateX(-3px);
}

/* Footer bottom bar */
.footer-bottom-bar {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.85rem;
    color: var(--muted);
}

.footer-bottom-bar p {
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.84rem;
}

.footer-legal-links a:hover {
    color: var(--blue);
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-grid-nav {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 600px) {
    .footer-grid-nav {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }
}

/* Dark mode for footer */
body.dark-mode .footer-emergency-strip {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

body.dark-mode .emergency-strip-content p {
    color: rgba(255, 255, 255, 0.85);
}

body.dark-mode .footer-heading {
    color: #ffffff;
}

body.dark-mode .footer-nav-list a {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .footer-nav-list a:hover {
    color: var(--blue-lt);
}

body.dark-mode .footer-bottom-bar {
    color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .footer-legal-links a:hover {
    color: var(--blue-lt);
}

body.dark-mode .site-footer {
    background: rgba(14, 22, 34, 0.95);
    border-top-color: var(--border);
}

body.dark-mode .footer-logo,
body.dark-mode .footer-contact-title {
    color: var(--blue-lt);
}

body.dark-mode .footer-contact-link {
    background: rgba(18, 30, 48, 0.8);
    border-color: var(--border);
    color: var(--ink);
}

body.dark-mode .footer-contact-link:hover {
    background: rgba(26, 44, 71, 0.95);
    border-color: var(--blue-mid);
}

body.dark-mode .footer-contact-icon {
    color: var(--blue-mid);
}

body.dark-mode .footer-action-badge {
    background: rgba(58, 123, 213, 0.25);
    color: var(--blue-lt);
}

body.dark-mode .footer-contact-link:hover .footer-action-badge {
    background: var(--blue);
    color: #ffffff;
}

/* =============================================
   CONTACT PAGE (Interactive Cards & Action Buttons)
   ============================================= */
.contact-section-header {
    margin-bottom: 24px;
}

.contact-section-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 6px;
}

.contact-sub {
    color: var(--mist);
    font-size: 0.92rem;
    margin: 0;
}

.contact-cards-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-item-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px 20px;
    transition: all 0.25s ease;
}

.contact-item-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 83, 163, 0.1);
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon.phone {
    background: rgba(28, 83, 163, 0.1);
    color: var(--blue);
}

.contact-item-icon.email {
    background: rgba(46, 116, 212, 0.1);
    color: var(--blue-mid);
}

.contact-item-icon.location {
    background: rgba(234, 242, 253, 0.9);
    color: var(--blue-dark);
}

.contact-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-item-label {
    font-size: 0.78rem;
    color: var(--mist);
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-item-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item-value:hover {
    color: var(--blue);
    text-decoration: underline;
}

.contact-item-text {
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 500;
}

.contact-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-action-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 40px;
}

.btn-action-pill:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.btn-action-pill.call-pill {
    background: var(--blue);
    color: #ffffff !important;
}

.btn-action-pill.call-pill:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(28, 83, 163, 0.25);
}

.btn-action-pill.whatsapp-pill {
    background: #25D366;
    color: #ffffff !important;
}

.btn-action-pill.whatsapp-pill:hover {
    background: #1eb956;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-action-pill.email-pill {
    background: var(--blue-xs);
    color: var(--blue) !important;
    border: 1px solid var(--border);
}

.btn-action-pill.email-pill:hover {
    background: var(--blue);
    color: #ffffff !important;
    border-color: var(--blue);
    transform: translateY(-1px);
}

.btn-action-pill.copy-pill {
    background: var(--cream);
    color: var(--ink);
    border: 1px solid var(--border);
}

.btn-action-pill.copy-pill:hover {
    background: var(--white);
    border-color: var(--blue);
    color: var(--blue);
}

.btn-action-pill.copy-pill.copied {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
}

/* Vodafone Cash Donation Card on Contact Page */
.contact-donation-box {
    background: linear-gradient(135deg, rgba(234, 242, 253, 0.8) 0%, rgba(208, 226, 247, 0.4) 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 20px;
}

.donation-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.donation-box-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.donation-box-header h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin: 0 0 3px 0;
}

.donation-box-header p {
    font-size: 0.82rem;
    color: var(--mist);
    margin: 0;
}

.donation-number-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 10px 16px;
    gap: 12px;
    flex-wrap: wrap;
}

.vodafone-number {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--blue-dark);
    letter-spacing: 1px;
}

.donation-actions-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

body.dark-mode .contact-item-card {
    background: var(--color-surface);
    border-color: var(--color-border);
}

body.dark-mode .contact-item-card:hover {
    border-color: var(--color-border-focus);
}

body.dark-mode .contact-section-header h3,
body.dark-mode .contact-item-value,
body.dark-mode .donation-box-header h4,
body.dark-mode .vodafone-number {
    color: var(--color-text-primary);
}

body.dark-mode .contact-item-text {
    color: var(--color-text-secondary);
}

body.dark-mode .contact-donation-box {
    background: var(--color-surface-subtle);
    border-color: var(--color-border);
}

body.dark-mode .donation-number-row {
    background: var(--color-surface);
    border-color: var(--color-border);
}

body.dark-mode .btn-action-pill.email-pill {
    background: var(--color-btn-secondary-bg);
    border-color: var(--color-btn-secondary-border);
    color: var(--color-btn-secondary-text) !important;
}

body.dark-mode .btn-action-pill.email-pill:hover {
    background: var(--color-btn-secondary-hover-bg);
    color: var(--color-btn-secondary-hover-text) !important;
}

body.dark-mode .btn-action-pill.copy-pill {
    background: var(--color-surface-subtle);
    border-color: var(--color-border);
    color: var(--color-text-primary);
}

body.dark-mode .btn-action-pill.copy-pill:hover {
    background: var(--color-surface);
    border-color: var(--color-border-focus);
    color: var(--color-info);
}

@media (max-width: 767px) {
    .contact-item-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-item-actions {
        width: 100%;
        justify-content: flex-start;
    }
    .donation-number-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .donation-actions-group {
        width: 100%;
        justify-content: flex-start;
    }
}

/* =============================================
   DONATE PAGE (Interactive Conversion Design)
   ============================================= */
.donate-header-badge {
    display: inline-block;
    background: rgba(28, 83, 163, 0.1);
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 16px;
}

.donate-description {
    max-width: 680px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
    color: var(--mist);
    line-height: 1.8;
}

.donate-card-highlight {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border: 2px solid var(--blue-mid);
    border-radius: 36px;
    padding: 35px 25px;
    max-width: 580px;
    margin: 0 auto 40px;
    box-shadow: 0 16px 40px rgba(28, 83, 163, 0.12);
    text-align: center;
}

.wallet-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-xs);
    color: var(--blue-dark);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.donate-number-display {
    margin-bottom: 25px;
}

.donate-phone-link {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue-dark);
    text-decoration: none;
    letter-spacing: 2px;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    transition: all 0.25s ease;
}

.donate-phone-link:hover {
    color: var(--blue);
    background: rgba(28, 83, 163, 0.06);
    transform: scale(1.03);
}

.donate-actions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.btn-donate-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--blue);
    color: #ffffff;
    border: none;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(28, 83, 163, 0.3);
    min-height: 48px;
}

.btn-donate-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 83, 163, 0.4);
}

.btn-donate-primary.copied {
    background: #10b981;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-donate-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    min-height: 48px;
}

.btn-donate-secondary.call {
    background: #ffffff;
    color: var(--blue-dark);
    border: 1px solid var(--border);
}

.btn-donate-secondary.call:hover {
    background: var(--blue-xs);
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
}

.btn-donate-secondary.whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #128C7E;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.btn-donate-secondary.whatsapp:hover {
    background: #25D366;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.25);
}

.donate-phone-selectable {
    user-select: all;
    -webkit-user-select: all;
    -moz-user-select: all;
    cursor: copy;
}

.mobile-longpress-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 6px;
    font-weight: 500;
}

.copy-feedback-banner {
    min-height: 24px;
    margin-top: 14px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #065f46;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.copy-feedback-banner.show {
    display: flex;
}

.copy-feedback-banner.show.error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #991b1b;
}

/* Manual Copy Fallback */
.manual-copy-fallback {
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(46, 116, 212, 0.05);
    border: 1px dashed var(--blue-mid);
    border-radius: 14px;
    text-align: start;
}

.fallback-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.fallback-input-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fallback-input {
    flex-grow: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--blue);
    background: var(--bg);
    outline: none;
    text-align: center;
}

.btn-fallback-select {
    padding: 10px 18px;
    border-radius: 10px;
    background: var(--blue);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.btn-fallback-select:hover {
    background: var(--blue-dark);
}

/* Floating Copy Toast */
.copy-toast {
    position: fixed;
    top: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(-50px);
    background: #ffffff;
    border: 1.5px solid #10b981;
    border-radius: 20px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15), 0 4px 14px rgba(16, 185, 129, 0.2);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 90vw;
    width: auto;
    text-align: start;
}

.copy-toast.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.toast-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toast-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #065f46;
}

.toast-desc {
    font-size: 0.84rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.4;
}

.toast-number {
    font-weight: 800;
    color: #10b981;
}

.toast-close-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--muted);
    cursor: pointer;
    padding: 0 4px;
    margin-right: -4px;
    transition: color 0.2s ease;
}

.toast-close-btn:hover {
    color: var(--ink);
}

.steps-ordered-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.steps-ordered-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: start;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px 18px;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blue);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.inline-phone-link {
    display: inline-block;
    color: var(--blue);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.inline-phone-link:hover {
    color: var(--blue-dark);
}

/* Official Beneficiary Box */
.beneficiary-official-box {
    margin: 16px 0 20px 0;
    padding: 16px 20px;
    background: rgba(46, 116, 212, 0.06);
    border: 1px solid rgba(46, 116, 212, 0.2);
    border-radius: 16px;
    text-align: center;
}

.beneficiary-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 4px;
}

.beneficiary-name {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 6px;
}

.beneficiary-hint {
    font-size: 0.84rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* Pre-Transfer Verification Alert */
.pre-transfer-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 16px;
    text-align: start;
}

.alert-icon-wrap {
    color: #d97706;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-content strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #b45309;
    margin-bottom: 4px;
}

.alert-content p {
    font-size: 0.86rem;
    color: var(--ink);
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   VODAFONE CASH INSTRUCTIONS & POST-TRANSFER ACTION CTAS (ISSUE #23)
   ============================================================ */

/* Vodafone Cash Instructions List */
.donate-vodafone-instructions {
    margin-top: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px 26px;
    text-align: start;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.donate-vodafone-instructions h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 16px 0;
}

.vodafone-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vodafone-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(46, 116, 212, 0.03);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
}

.vodafone-steps-list li p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--ink);
    line-height: 1.6;
}

/* Post-Transfer Action CTAs Box */
.post-transfer-action-box {
    margin-top: 32px;
    background: linear-gradient(180deg, var(--surface) 0%, rgba(46, 116, 212, 0.04) 100%);
    border: 2px solid var(--blue-mid);
    border-radius: 24px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(46, 116, 212, 0.1);
    position: relative;
}

.action-box-header {
    margin-bottom: 24px;
}

.action-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    background: var(--blue);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(46, 116, 212, 0.25);
}

.action-box-header h2 {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.action-box-subtitle {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Post-Transfer Buttons Grid */
.post-transfer-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.btn-post-action {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 18px;
    text-decoration: none;
    text-align: start;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid var(--border);
    position: relative;
    background: var(--surface);
    cursor: pointer;
}

.btn-post-action:hover {
    transform: translateY(-3px);
}

.btn-action-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-action-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.btn-action-title {
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.4;
}

.btn-action-desc {
    font-size: 0.82rem;
    line-height: 1.45;
}

.btn-action-arrow {
    font-size: 1.2rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.btn-post-action:hover .btn-action-arrow {
    transform: translateX(-4px);
}

/* Specific button styles */
.btn-post-whatsapp {
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.4);
    color: #128c7e;
}

.btn-post-whatsapp .btn-action-icon {
    background: #25d366;
    color: #ffffff;
}

.btn-post-whatsapp .btn-action-title {
    color: #075e54;
}

.btn-post-whatsapp .btn-action-desc {
    color: #128c7e;
}

.btn-post-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25d366;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.2);
}

.btn-post-form {
    background: var(--blue-xs);
    border-color: var(--blue-mid);
    color: var(--blue);
}

.btn-post-form .btn-action-icon {
    background: var(--blue);
    color: #ffffff;
}

.btn-post-form .btn-action-title {
    color: var(--blue-dark);
}

.btn-post-form .btn-action-desc {
    color: var(--blue);
}

.btn-post-form:hover {
    background: rgba(46, 116, 212, 0.12);
    border-color: var(--blue);
    box-shadow: 0 8px 22px rgba(46, 116, 212, 0.2);
}

.btn-post-hotline {
    background: var(--surface);
    border-color: var(--border);
    color: var(--ink);
}

.btn-post-hotline .btn-action-icon {
    background: rgba(46, 116, 212, 0.1);
    color: var(--blue);
}

.btn-post-hotline .btn-action-title {
    color: var(--ink);
}

.btn-post-hotline .btn-action-desc {
    color: var(--muted);
}

.btn-post-hotline:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

/* Required Data Notice & Security Guarantee */
.required-data-notice {
    margin-top: 26px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px 24px;
    text-align: start;
}

.notice-header-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.notice-icon-box {
    color: #10b981;
    display: flex;
    align-items: center;
}

.notice-header-row h4 {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--ink);
}

.notice-columns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.notice-col-title {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--ink);
}

.clean-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.clean-bullet-list li {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
    position: relative;
    padding-right: 16px;
}

.clean-bullet-list li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: #10b981;
    font-weight: 800;
}

.clean-bullet-list.danger li::before {
    content: "•";
    color: #ef4444;
}

/* 3-Stage Donation Journey Timeline */
.donation-journey-timeline {
    margin-top: 50px;
    text-align: center;
}

.journey-header {
    margin-bottom: 32px;
}

.journey-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--blue-xs);
    color: var(--blue);
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 12px;
}

.journey-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.journey-subhead {
    font-size: 1rem;
    color: var(--muted);
    max-width: 650px;
    margin: 0 auto;
}

.journey-stages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.journey-stage-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.journey-stage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(46, 116, 212, 0.12);
}

.journey-stage-card.active-flow {
    border-color: var(--blue-mid);
    background: linear-gradient(180deg, var(--surface) 0%, rgba(46, 116, 212, 0.03) 100%);
}

.stage-step-pill {
    position: absolute;
    top: -12px;
    background: var(--blue);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
}

.stage-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--blue-xs);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px 0 16px 0;
}

.journey-stage-card h3 {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
}

.journey-stage-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 18px 0;
    flex-grow: 1;
}

.stage-meta {
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue);
}

/* On-Page Donation Confirmation Form */
.donation-confirm-section {
    margin-top: 50px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.confirm-box-header {
    text-align: center;
    margin-bottom: 28px;
}

.confirm-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 10px;
}

.confirm-box-header h3 {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.confirm-box-header p {
    font-size: 0.92rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.donation-confirm-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: start;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
}

.required-mark {
    color: #ef4444;
    margin-right: 2px;
}

.optional-hint {
    font-size: 0.8rem;
    font-weight: normal;
    color: var(--muted);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg);
    color: var(--ink);
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(46, 116, 212, 0.15);
}

.form-checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.form-checkbox-wrap input[type="checkbox"] {
    width: 17px;
    height: 17px;
    cursor: pointer;
    accent-color: var(--blue);
}

.form-checkbox-wrap label {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    margin: 0;
}

.form-actions-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.btn-submit-donation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--blue);
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit-donation:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(46, 116, 212, 0.3);
}

.btn-whatsapp-receipt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.12);
    color: #128c7e;
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 13px 22px;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-whatsapp-receipt:hover {
    background: #25d366;
    color: #ffffff;
    transform: translateY(-2px);
}

.donation-form-feedback {
    margin-top: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    display: none;
    font-size: 0.92rem;
    line-height: 1.6;
    text-align: start;
}

.donation-form-feedback.success {
    display: block;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #065f46;
}

.donation-form-feedback.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #991b1b;
}

.feedback-success-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #047857;
}

.receipt-code {
    background: rgba(6, 95, 70, 0.15);
    padding: 2px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    font-family: monospace;
    font-weight: 800;
}

/* Mistake Recovery Guide */
.donation-mistake-guide {
    margin-top: 50px;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 24px;
    padding: 32px 28px;
    text-align: start;
}

.guide-header {
    text-align: center;
    margin-bottom: 24px;
}

.guide-icon-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    background: rgba(245, 158, 11, 0.15);
    color: #b45309;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 10px;
}

.guide-header h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 6px;
}

.guide-header p {
    font-size: 0.92rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.mistake-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mistake-step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    position: relative;
}

.mistake-step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #d97706;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.mistake-step-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.mistake-step-card p {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

.mistake-phone-link {
    color: var(--blue);
    font-weight: 700;
    text-decoration: underline;
}

/* Trust, Transparency & Privacy Grid */
.trust-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px 22px;
    text-align: start;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.trust-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--blue-xs);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.trust-card h4 {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Support Pre-Transfer Banner */
.donation-support-banner {
    margin-top: 50px;
    background: linear-gradient(135deg, rgba(46, 116, 212, 0.08) 0%, rgba(46, 116, 212, 0.02) 100%);
    border: 1px solid rgba(46, 116, 212, 0.25);
    border-radius: 24px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: start;
}

.support-banner-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 6px;
}

.support-banner-content p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}

.support-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-support-call,
.btn-support-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.btn-support-call {
    background: var(--blue);
    color: #ffffff;
}

.btn-support-call:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.btn-support-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #128c7e;
    border: 1px solid rgba(37, 211, 102, 0.35);
}

.btn-support-whatsapp:hover {
    background: #25d366;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ============================================================
   ISSUE #25 — DONATION PAGE SPACING & NEW SECTIONS
   ============================================================ */

/* Adjust section top-margins to be consistent at 40px instead of 50px */
.donation-journey-timeline,
.donation-confirm-section,
.donation-mistake-guide,
.trust-grid,
.donation-support-banner {
    margin-top: 40px;
}

/* === Donation Allocation / Transparency Section === */
.donation-allocation-section {
    margin-top: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.04);
}

.allocation-header {
    text-align: center;
    margin-bottom: 30px;
}

.allocation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    background: rgba(46, 116, 212, 0.1);
    color: var(--blue);
    font-size: 0.84rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 12px;
}

.allocation-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.allocation-subtitle {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Progress bar */
.allocation-progress-wrapper {
    margin-bottom: 26px;
}

.allocation-progress-bar {
    display: flex;
    height: 38px;
    border-radius: 14px;
    overflow: hidden;
    gap: 3px;
    margin-bottom: 20px;
}

.progress-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    color: #ffffff;
    border-radius: 10px;
    transition: flex-basis 0.4s ease;
}

.segment-sessions   { background: linear-gradient(90deg, #1c53a3 0%, #2e74d4 100%); }
.segment-workshops  { background: linear-gradient(90deg, #0d7bc4 0%, #2196f3 100%); }
.segment-awareness  { background: linear-gradient(90deg, #0ea5e9 0%, #38bdf8 100%); }

.segment-pct {
    pointer-events: none;
}

/* Legend */
.progress-legend {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.legend-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.legend-color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}

.dot-sessions   { background: #1c53a3; }
.dot-workshops  { background: #2196f3; }
.dot-awareness  { background: #38bdf8; }

.legend-info strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 3px;
}

.legend-info p {
    font-size: 0.86rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
}

/* Impact Tiers */
.impact-tiers-block {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--border);
}

.impact-tiers-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 20px;
    text-align: center;
}

.impact-tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.impact-tier-card {
    background: rgba(46, 116, 212, 0.04);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px 18px;
    text-align: center;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.impact-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(46, 116, 212, 0.12);
}

.impact-tier-card.featured {
    background: linear-gradient(180deg, rgba(46, 116, 212, 0.08) 0%, rgba(46, 116, 212, 0.03) 100%);
    border-color: var(--blue-mid);
}

.tier-featured-pill {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.tier-amount-badge {
    display: inline-block;
    background: var(--blue-xs);
    color: var(--blue);
    font-size: 1.1rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.impact-tier-card h4 {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.impact-tier-card p {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* === Donation Trust FAQ Section === */
.donation-trust-faq {
    margin-top: 40px;
    padding: 36px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.04);
}

.trust-faq-header {
    text-align: center;
    margin-bottom: 28px;
}

.trust-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    font-size: 0.84rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 12px;
}

.trust-faq-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.trust-faq-subtitle {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.trust-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.trust-faq-item {
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 18px;
    padding: 22px 20px;
}

.faq-question-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.faq-q-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    font-size: 1.1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.faq-question-row h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
    line-height: 1.45;
}

.faq-answer {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
    padding-right: 40px;
}

/* === Donation Bottom CTA Bar === */
.donation-bottom-cta {
    margin-top: 40px;
    background: linear-gradient(135deg, var(--blue) 0%, #1c53a3 100%);
    border-radius: 24px;
    padding: 40px 36px;
    margin-bottom: 8px;
    box-shadow: 0 12px 40px rgba(28, 83, 163, 0.25);
    overflow: hidden;
    position: relative;
}

.donation-bottom-cta::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.bottom-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.bottom-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 12px;
}

.bottom-cta-content h2 {
    font-size: 1.65rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.35;
}

.bottom-cta-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 580px;
    line-height: 1.7;
}

.bottom-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    min-width: 240px;
}

.btn-bottom-wallet,
.btn-bottom-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
    text-align: center;
}

.btn-bottom-wallet {
    background: rgba(255, 255, 255, 0.95);
    color: var(--blue-dark);
}

.btn-bottom-wallet:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.btn-bottom-whatsapp {
    background: #25d366;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-bottom-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

/* Dark Mode Overrides — Issue #59 */
body.dark-mode .donate-card-highlight {
    background: var(--color-surface);
    border-color: var(--color-border-focus);
}

body.dark-mode .wallet-badge {
    background: var(--color-info-bg);
    color: var(--color-info);
}

body.dark-mode .donate-phone-link {
    color: var(--color-info);
}

body.dark-mode .btn-donate-secondary.call {
    background: var(--color-btn-secondary-bg);
    border-color: var(--color-btn-secondary-border);
    color: var(--color-btn-secondary-text);
}

body.dark-mode .btn-donate-secondary.call:hover {
    background: var(--color-btn-secondary-hover-bg);
    color: var(--color-btn-secondary-hover-text);
}

body.dark-mode .beneficiary-official-box {
    background: var(--color-info-bg);
    border-color: var(--color-info-border);
}

body.dark-mode .beneficiary-name {
    color: var(--color-text-primary);
}

body.dark-mode .pre-transfer-alert {
    background: var(--color-warning-bg);
    border-color: var(--color-warning-border);
}

body.dark-mode .alert-content strong {
    color: var(--color-warning);
}

body.dark-mode .journey-stage-card,
body.dark-mode .donation-confirm-section,
body.dark-mode .mistake-step-card,
body.dark-mode .trust-card {
    background: var(--color-surface);
    border-color: var(--color-border);
}

body.dark-mode .journey-stage-card.active-flow {
    background: var(--color-surface-elevated);
    border-color: var(--color-border-focus);
}

body.dark-mode .form-input,
body.dark-mode .form-select,
body.dark-mode .form-textarea {
    background: var(--color-input-bg);
    border-color: var(--color-input-border);
    color: var(--color-input-text);
}

body.dark-mode .form-input:focus,
body.dark-mode .form-select:focus,
body.dark-mode .form-textarea:focus {
    border-color: var(--color-border-focus);
    box-shadow: var(--shadow-focus);
}

body.dark-mode .btn-donate-primary,
body.dark-mode .btn-submit-donation {
    background: var(--color-cta-bg);
    color: var(--color-cta-text);
}

body.dark-mode .btn-donate-primary:hover,
body.dark-mode .btn-submit-donation:hover {
    background: var(--color-cta-hover-bg);
}

body.dark-mode .btn-donate-primary:disabled,
body.dark-mode .btn-submit-donation:disabled {
    background: var(--color-cta-disabled-bg);
    color: var(--color-cta-disabled-text);
    cursor: not-allowed;
}

body.dark-mode .donation-mistake-guide {
    background: var(--color-warning-bg);
    border-color: var(--color-warning-border);
}

body.dark-mode .guide-icon-pill {
    background: var(--color-warning-border);
    color: var(--color-warning);
}

body.dark-mode .donation-support-banner {
    background: var(--color-surface-subtle);
    border-color: var(--color-border);
}

body.dark-mode .donation-form-feedback.success {
    background: var(--color-success-bg);
    color: var(--color-success);
    border: 1px solid var(--color-success-border);
}

body.dark-mode .receipt-code {
    background: var(--color-surface-subtle);
    color: var(--color-success);
    border: 1px solid var(--color-success-border);
}

body.dark-mode .donate-vodafone-instructions {
    background: var(--color-surface-subtle);
    border-color: var(--color-border);
}

body.dark-mode .vodafone-steps-list li {
    background: var(--color-surface);
    border-color: var(--color-border);
}

body.dark-mode .post-transfer-action-box {
    background: var(--color-surface-elevated);
    border-color: var(--color-border);
}

body.dark-mode .btn-post-action {
    background: var(--color-surface);
    border-color: var(--color-border);
}

body.dark-mode .btn-post-action:hover {
    background: var(--color-surface-subtle);
    border-color: var(--color-border-focus);
}

body.dark-mode .btn-post-whatsapp {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.35);
}

body.dark-mode .btn-post-whatsapp .btn-action-title {
    color: #34d399;
}

body.dark-mode .btn-post-whatsapp .btn-action-desc {
    color: #6ee7b7;
}

body.dark-mode .btn-post-form {
    background: var(--color-btn-secondary-bg);
    border-color: var(--color-btn-secondary-border);
}

body.dark-mode .btn-post-form .btn-action-title {
    color: var(--color-btn-secondary-text);
}

body.dark-mode .btn-post-form .btn-action-desc {
    color: var(--color-info);
}

body.dark-mode .btn-post-hotline .btn-action-title {
    color: var(--color-text-primary);
}

body.dark-mode .required-data-notice {
    background: var(--color-surface-subtle);
    border-color: var(--color-border);
}

body.dark-mode .copy-feedback-banner {
    background: var(--color-success-bg);
    color: var(--color-success);
    border-color: var(--color-success-border);
}

body.dark-mode .copy-toast {
    background: var(--color-surface-elevated);
    border-color: var(--color-success);
    box-shadow: var(--shadow-lg);
}

body.dark-mode .toast-title {
    color: var(--color-success);
}

body.dark-mode .manual-copy-fallback {
    background: var(--color-surface-subtle);
    border-color: var(--color-border);
}

/* Responsive adjustments for Donate Page */
@media (max-width: 768px) {
    .post-transfer-buttons-grid,
    .notice-columns-grid,
    .journey-stages-grid,
    .form-row-grid,
    .mistake-steps-grid,
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .btn-post-action {
        padding: 14px 16px;
    }

    .post-transfer-action-box {
        padding: 24px 18px;
    }

    .form-actions-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-submit-donation,
    .btn-whatsapp-receipt {
        width: 100%;
    }

    .donation-support-banner {
        flex-direction: column;
        text-align: center;
    }

    .support-banner-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-support-call,
    .btn-support-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .donation-confirm-section {
        padding: 24px 18px;
    }

    /* New sections responsive */
    .impact-tiers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .trust-faq-grid {
        grid-template-columns: 1fr;
    }

    .donation-allocation-section,
    .donation-trust-faq {
        padding: 24px 18px;
    }

    .bottom-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .bottom-cta-actions {
        width: 100%;
    }

    .btn-bottom-wallet,
    .btn-bottom-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* Dark mode for new sections (Issue #25) */
body.dark-mode .donation-allocation-section,
body.dark-mode .donation-trust-faq {
    background: rgba(18, 30, 48, 0.75);
    border-color: var(--border);
}

body.dark-mode .impact-tier-card {
    background: rgba(18, 30, 48, 0.65);
    border-color: var(--border);
}

body.dark-mode .impact-tier-card.featured {
    background: linear-gradient(180deg, rgba(46, 116, 212, 0.15) 0%, rgba(18, 30, 48, 0.7) 100%);
    border-color: var(--blue-mid);
}

body.dark-mode .tier-amount-badge {
    background: rgba(58, 123, 213, 0.2);
    color: var(--blue-lt);
}

body.dark-mode .trust-faq-item {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.25);
}

body.dark-mode .trust-faq-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

body.dark-mode .faq-q-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

/* Particles */
.hero .container {
    position: relative;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 116, 212, 0.35) 0%, transparent 70%);
    animation: particleDrift linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes particleDrift {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-120vh) scale(1.4);
        opacity: 0;
    }
}

/* Scroll reveal base */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.22, 1, .36, 1), transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.6s cubic-bezier(.22, 1, .36, 1), transform 0.6s cubic-bezier(.22, 1, .36, 1);
}

.reveal-stagger.visible>*:nth-child(1) {
    transition-delay: 0.05s;
    opacity: 1;
    transform: none;
}

.reveal-stagger.visible>*:nth-child(2) {
    transition-delay: 0.12s;
    opacity: 1;
    transform: none;
}

.reveal-stagger.visible>*:nth-child(3) {
    transition-delay: 0.19s;
    opacity: 1;
    transform: none;
}

.reveal-stagger.visible>*:nth-child(4) {
    transition-delay: 0.26s;
    opacity: 1;
    transform: none;
}

.reveal-stagger.visible>*:nth-child(5) {
    transition-delay: 0.33s;
    opacity: 1;
    transform: none;
}

.reveal-stagger.visible>*:nth-child(6) {
    transition-delay: 0.40s;
    opacity: 1;
    transform: none;
}

/* Ripple effect */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn .ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* Scroll shadow */
header.scrolled {
    box-shadow: 0 4px 24px rgba(28, 83, 163, 0.15);
    border-bottom-color: var(--blue-mid);
}

body.dark-mode header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    border-bottom-color: var(--border);
}

/* Scroll to top button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    inset-inline-end: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    color: white;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(.22, 1, .36, 1);
    z-index: 999;
    box-shadow: 0 8px 20px rgba(28, 83, 163, 0.3);
}

#scrollTopBtn.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

#scrollTopBtn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 28px rgba(28, 83, 163, 0.4);
}

/* Donate pulse */
@keyframes donatePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(28, 83, 163, 0.15);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(28, 83, 163, 0);
    }
}

.donate-container {
    animation: donatePulse 3s ease-in-out infinite, fadeUp 0.8s ease both;
    transition: transform 0.3s ease;
}

.donate-container:hover {
    transform: translateY(-5px);
}

.donate-number {
    position: relative;
    overflow: hidden;
}

.donate-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2.5s ease-in-out infinite;
    border-radius: 60px;
}

@keyframes shimmer {
    0% {
        transform: translateX(100%) skewX(-12deg);
    }

    100% {
        transform: translateX(-200%) skewX(-12deg);
    }
}

/* =============================================
   UNIFIED CONTENT-DRIVEN RESPONSIVE ARCHITECTURE
   Breakpoints:
   - Wide Desktop: >= 1281px
   - Desktop: 1025px - 1280px
   - Tablets & Medium Screens: 768px - 1024px (Balanced 2-3 col layouts)
   - Phablets / Large Phones: 480px - 767px
   - Compact Mobile: < 480px
   ============================================= */

/* 1. Global Fluid Typography & Spacing Foundations */
:root {
    --container-padding: clamp(16px, 3.5vw, 32px);
    --section-spacing: clamp(40px, 6vw, 80px);
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section, .about, .activities-list, .core-values, .gallery, .faq-section {
    padding: var(--section-spacing) 0;
}

.section-title {
    font-size: clamp(1.45rem, 2.5vw + 0.75rem, 2.25rem);
    margin-bottom: clamp(24px, 4vw, 42px);
}

.page-header {
    padding: clamp(36px, 6vw, 60px) 0;
}

.page-header h1 {
    font-size: clamp(1.6rem, 3.5vw + 0.8rem, 2.5rem);
}

/* 2. Tablets & Medium Screens (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .navbar {
        padding: 12px 0;
    }

    .about-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .services-pillars-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .about-card {
        padding: 24px;
    }

    .about-card h3 {
        font-size: 1.4rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 20px 16px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .activities-grid,
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .value-card {
        padding: 18px 14px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .gallery-image-wrapper,
    .gallery-card img {
        height: 200px;
    }

    .contact-wrapper {
        flex-direction: row;
        padding: 30px;
        gap: 30px;
        margin: 36px 0;
    }

    .contact-info,
    .contact-form {
        flex: 1;
        min-width: 0;
    }

    .donate-card-highlight {
        max-width: 680px;
        margin: 0 auto 30px;
        padding: 28px 24px;
    }

    .donate-actions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: start;
    }

    .footer-contact-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 14px;
    }

    .partner-card {
        width: 130px;
    }
}

/* 3. Phablets & Large Phones (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-card {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-card {
        padding: 16px 12px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .activities-grid,
    .cards-grid,
    .services-pillars-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .gallery-image-wrapper,
    .gallery-card img {
        height: 190px;
    }

    .contact-wrapper {
        flex-direction: column;
        padding: 24px;
        margin: 28px 0;
        gap: 24px;
    }

    .donate-actions-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .donate-card-highlight {
        padding: 24px 18px;
    }

    .footer-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 20px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-contact-block {
        align-items: center;
    }

    .footer-contact-links {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .footer-contact-link {
        width: 100%;
        justify-content: center;
    }

    .partner-card {
        width: 120px;
    }
}

/* 4. Compact Mobile (< 480px) */
@media (max-width: 479px) {
    .navbar {
        padding: 10px 0;
    }

    .logo img {
        width: 36px;
        height: 36px;
    }

    .logo-title {
        font-size: 1.15rem;
    }

    .logo-badge {
        font-size: 0.65rem;
    }

    .mobile-quick-support-btn {
        padding: 6px 10px;
        font-size: 0.78rem;
    }

    .about-grid,
    .activities-grid,
    .cards-grid,
    .gallery-grid,
    .services-pillars-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-card,
    .pillar-card {
        padding: 18px 14px;
    }

    .about-scope-notice {
        flex-direction: column;
        gap: 10px;
        padding: 16px 14px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-card {
        padding: 14px 10px;
        border-radius: 20px;
    }

    .stat-number {
        font-size: 1.45rem;
    }

    .stat-label {
        font-size: 0.78rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .value-card {
        padding: 16px;
        border-radius: 18px;
    }

    .contact-wrapper {
        flex-direction: column;
        padding: 18px 14px;
        margin: 20px 0;
        border-radius: 24px;
        gap: 20px;
    }

    .contact-form {
        padding: 16px 12px;
        border-radius: 20px;
    }

    .contact-item-card {
        padding: 16px 12px;
        flex-direction: column;
        align-items: stretch;
    }

    .contact-item-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-action-pill {
        width: 100%;
        justify-content: center;
    }

    .donation-number-row {
        flex-direction: column;
        align-items: stretch;
    }

    .donation-actions-group {
        width: 100%;
        flex-direction: column;
    }

    .donate-actions-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .donate-phone-link {
        font-size: 1.5rem;
    }

    .btn-donate-primary,
    .btn-donate-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }

    .footer-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 18px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-contact-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .footer-contact-link {
        width: 100%;
        justify-content: center;
        padding: 12px 14px;
    }

    .gallery-image-wrapper,
    .gallery-card img {
        height: 160px;
    }

    .partner-card {
        width: 100px;
    }

    .partner-card img {
        height: 44px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.88rem;
    }
}

/* 5. Wide Desktops (>= 1281px) */
@media (min-width: 1281px) {
    .container {
        max-width: 1280px;
    }

    .stats-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========== HERO WITH SITE COLORS (flexible content-driven height) ========== */
.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: auto;
    padding-block: clamp(48px, 8vh, 76px) clamp(40px, 6vh, 60px);
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    direction: rtl;
}

@media (min-width: 1025px) {
    .hero-wrapper {
        min-height: clamp(480px, 60vh, 620px);
        padding-block: clamp(64px, 8vh, 88px);
    }
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(46, 116, 212, 0.2) 0%, transparent 70%);
    z-index: 0;
    animation: slowDrift 14s infinite alternate;
}

@keyframes slowDrift {
    0% { transform: scale(1) translate(0%, 0%); opacity: 0.5; }
    100% { transform: scale(1.2) translate(-3%, -3%); opacity: 1; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Stable, calibrated dark scrim guaranteeing fixed minimum contrast against moving gradients */
    background: radial-gradient(ellipse at 50% 45%, rgba(10, 26, 58, 0.76) 0%, rgba(7, 16, 38, 0.90) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(4, 9, 20, 0.6) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding-inline: var(--container-padding);
    max-width: 860px;
    margin-inline: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(12, 26, 56, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(147, 197, 253, 0.6);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    color: #dbeafe;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero-header-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(208, 226, 247, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 83, 163, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero-brand {
    font-family: 'Cinzel', serif;
    font-size: clamp(20px, 3.5vw, 30px);
    font-weight: 700;
    letter-spacing: 6px;
    margin: 0;
    background: linear-gradient(90deg, #d0e2f7, #ffffff, #d0e2f7);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 4s linear infinite;
    text-shadow: 0 0 16px rgba(46, 116, 212, 0.4);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.35;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75), 0 0 2px rgba(0, 0, 0, 0.9);
}

.hero-scope-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(8, 24, 60, 0.78);
    border: 1.5px solid rgba(147, 197, 253, 0.45);
    border-radius: var(--radius-pill);
    color: #e0f2fe;
    font-size: clamp(12.5px, 1.4vw, 15px);
    font-weight: 600;
    line-height: 1.5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    max-width: 95%;
    text-align: center;
    margin-top: 4px;
}

.hero-scope-pill .ui-svg-icon {
    color: #60a5fa;
    flex-shrink: 0;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.6vw, 17px);
    font-weight: 500;
    color: #f1f5f9;
    margin: 0;
    line-height: 1.75;
    max-width: 660px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    width: 100%;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    min-height: 48px;
    box-sizing: border-box;
}

.hero-btn-primary {
    background: #ffffff;
    color: #0c2044;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary:hover {
    background: #dbeafe;
    border-color: #dbeafe;
    color: #061329;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.hero-btn-secondary {
    background: rgba(14, 32, 68, 0.9);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-btn-secondary:hover {
    background: #1c53a3;
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 83, 163, 0.45);
}

.hero-btn-accent {
    background: #be123c;
    color: #ffffff;
    border: 2px solid #fda4af;
    box-shadow: 0 4px 16px rgba(190, 18, 60, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-btn-accent:hover {
    background: #9f1239;
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(159, 18, 57, 0.55);
}

.hero-btn:focus-visible {
    outline: 3px solid #ffffff !important;
    outline-offset: 3px !important;
}

.hero-trust-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 10px;
    padding: 8px 20px;
    background: rgba(8, 20, 48, 0.88);
    border-radius: var(--radius-pill);
    border: 1.5px solid rgba(147, 197, 253, 0.35);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e2e8f0;
    font-size: 0.83rem;
    font-weight: 600;
}

.hero-trust-sep {
    color: rgba(147, 197, 253, 0.6);
    font-size: 0.85rem;
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 340px;
    }
    .hero-btn {
        width: 100%;
    }
    .hero-trust-bar {
        width: 100%;
        border-radius: var(--radius-md);
        gap: 6px 10px;
    }
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(46, 116, 212, 0.4);
    animation: floatUp infinite ease-in-out;
    pointer-events: none;
    z-index: 3;
}

@keyframes floatUp {
    0% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-18px) scale(1.1); opacity: 0.7; }
    100% { transform: translateY(0px) scale(1); opacity: 0.3; }
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    45% { opacity: 0.85; }
    50% { opacity: 0.95; }
    75% { opacity: 0.9; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

body.dark-mode .hero-wrapper {
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-surface) 50%, var(--color-surface-elevated) 100%);
}

body.dark-mode .hero-btn-primary {
    background: #ffffff;
    color: #061329;
    border: 2px solid #ffffff;
}

body.dark-mode .hero-btn-primary:hover {
    background: #dbeafe;
    border-color: #dbeafe;
    color: #061329;
}

body.dark-mode .hero-overlay {
    background: radial-gradient(ellipse at 50% 45%, rgba(11, 19, 32, 0.75) 0%, rgba(15, 23, 42, 0.9) 100%);
}

body.dark-mode .bg-white {
    background-color: var(--color-surface) !important;
}

body.dark-mode .bg-slate-50 {
    background-color: var(--color-surface-subtle) !important;
}

body.dark-mode .bg-gradient-to-br.from-blue-100 {
    --tw-gradient-from: var(--color-surface);
    --tw-gradient-to: var(--color-surface-subtle);
}

body.dark-mode .text-slate-900 {
    color: var(--color-text-primary) !important;
}

body.dark-mode .text-slate-800 {
    color: var(--color-text-primary) !important;
}

body.dark-mode .text-slate-700 {
    color: var(--color-text-secondary) !important;
}

body.dark-mode .text-slate-600 {
    color: var(--color-text-secondary) !important;
}

body.dark-mode .text-slate-500 {
    color: var(--color-text-secondary) !important;
}

body.dark-mode .text-slate-400 {
    color: var(--color-text-muted) !important;
}

body.dark-mode .border-slate-200,
body.dark-mode .border-slate-100 {
    border-color: var(--color-border) !important;
}

body.dark-mode .hover\:border-slate-300:hover {
    border-color: var(--color-border-focus) !important;
}

body.dark-mode .hover\:shadow-md:hover {
    box-shadow: var(--shadow-md) !important;
}

body.dark-mode .bg-slate-100 {
    background-color: var(--color-surface-subtle) !important;
}

body.dark-mode .bg-blue-50 {
    background-color: var(--color-info-bg) !important;
}

body.dark-mode .text-blue-dark {
    color: var(--color-info) !important;
}

body.dark-mode .border-blue-100,
body.dark-mode .border-blue-200 {
    border-color: var(--color-info-border) !important;
}

body.dark-mode .from-blue-50 {
    --tw-gradient-from: var(--color-surface) !important;
}

body.dark-mode .to-blue-100 {
    --tw-gradient-to: var(--color-surface-subtle) !important;
}

body.dark-mode .from-slate-100 {
    --tw-gradient-from: var(--color-surface-subtle) !important;
}

body.dark-mode .to-blue-50 {
    --tw-gradient-to: var(--color-info-bg) !important;
}

body.dark-mode .via-slate-50 {
    --tw-gradient-via: var(--color-surface) !important;
}

body.dark-mode .hover\:bg-slate-50:hover {
    background-color: var(--color-surface-subtle) !important;
}

body.dark-mode .shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

body.dark-mode .hover\:shadow-md:hover {
    box-shadow: var(--shadow-md) !important;
}

body.dark-mode .prose,
body.dark-mode .prose-slate {
    color: var(--color-text-primary);
}

body.dark-mode .prose-p\:text-slate-700 p,
body.dark-mode .article-rich-body p {
    color: var(--color-text-secondary) !important;
}

body.dark-mode .prose-strong\:text-slate-900 strong,
body.dark-mode .article-rich-body strong {
    color: var(--color-text-primary) !important;
}

body.dark-mode .prose-li\:text-slate-700 li,
body.dark-mode .article-rich-body li {
    color: var(--color-text-secondary) !important;
}

/* Blog Specific Dark Mode Components — Issue #59 */
body.dark-mode .article-share-bar-top {
    background-color: var(--color-surface-subtle) !important;
    border-color: var(--color-border) !important;
    box-shadow: var(--shadow-sm);
}

body.dark-mode #articleTocContainer {
    background-color: var(--color-surface-subtle) !important;
    border-color: var(--color-border) !important;
    box-shadow: var(--shadow-sm);
}

body.dark-mode #articleTocContainer a {
    color: var(--color-text-secondary) !important;
}

body.dark-mode #articleTocContainer a:hover {
    color: var(--color-info) !important;
}

body.dark-mode .article-scientific-review,
body.dark-mode section[aria-label*="المراجعة العلمية"] {
    background: var(--color-surface) !important;
    border-color: var(--color-border) !important;
}

body.dark-mode .empty-state-card {
    background: var(--color-surface) !important;
    border-color: var(--color-border) !important;
    box-shadow: var(--shadow-sm);
}

body.dark-mode .empty-state-title {
    color: var(--color-text-primary) !important;
}

body.dark-mode .empty-state-desc {
    color: var(--color-text-secondary) !important;
}

body.dark-mode .empty-state-icon-wrap {
    background: var(--color-surface-subtle) !important;
    color: var(--color-info) !important;
}

body.dark-mode .article-breadcrumb a {
    color: var(--color-text-secondary) !important;
}

body.dark-mode .article-breadcrumb a:hover {
    color: var(--color-info) !important;
}

/* Numeric Pagination & Reading CTAs in Dark Mode */
body.dark-mode nav[aria-label*="صفحات المقالات"] a {
    background-color: var(--color-surface) !important;
    border-color: var(--color-border) !important;
    color: var(--color-text-primary) !important;
}

body.dark-mode nav[aria-label*="صفحات المقالات"] a:hover {
    background-color: var(--color-surface-subtle) !important;
    color: var(--color-info) !important;
}

body.dark-mode nav[aria-label*="صفحات المقالات"] span[aria-disabled="true"] {
    background-color: var(--color-surface-subtle) !important;
    border-color: var(--color-border) !important;
    color: var(--color-text-muted) !important;
}

body.dark-mode a[aria-label*="اقرأ المقال"] {
    background-color: var(--color-info-bg) !important;
    border-color: var(--color-info-border) !important;
    color: var(--color-info) !important;
}

body.dark-mode a[aria-label*="اقرأ المقال"]:hover {
    background-color: var(--color-btn-secondary-hover-bg) !important;
    color: var(--color-text-primary) !important;
}

/* Reading progress bar */
#reading-progress {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-mid));
    z-index: 9999;
    transition: width 0.1s linear;
}

body.dark-mode #reading-progress {
    background: linear-gradient(90deg, var(--blue-mid), var(--blue-lt));
}

/* Support page specific */
.support-hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-mid) 100%);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.support-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.3);
}

.reassure-box {
    background: rgba(28, 83, 163, 0.08);
    border-inline-start: 4px solid var(--blue-mid);
    padding: 1.5rem;
    border-radius: 20px;
    margin: 2rem 0;
    text-align: center;
}

.service-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.service-badge {
    background: var(--blue-xs);
    color: var(--blue-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-weight: 500;
    transition: 0.2s;
}

body.dark-mode .service-badge {
    background: rgba(58, 123, 213, 0.25);
    color: var(--blue-lt);
    border: 1px solid rgba(90, 155, 224, 0.3);
}

body.dark-mode .reassure-box {
    background: rgba(58, 123, 213, 0.1);
}

body.dark-mode .about-services-title {
    color: var(--ink);
}

body.dark-mode .about-services-subtitle {
    color: var(--mist);
}

body.dark-mode .pillar-card {
    background: var(--card-bg);
    border-color: var(--border);
}

body.dark-mode .pillar-card:hover {
    border-color: var(--blue-mid);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

body.dark-mode .pillar-icon {
    background: rgba(46, 116, 212, 0.18);
    color: var(--blue-mid);
}

body.dark-mode .pillar-card:hover .pillar-icon {
    background: var(--blue-mid);
    color: #061329;
}

body.dark-mode .pillar-card h4 {
    color: var(--ink);
}

body.dark-mode .pillar-card p {
    color: var(--mist);
}

body.dark-mode .pillar-link {
    color: var(--blue-mid);
}

body.dark-mode .pillar-link:hover {
    color: #ffffff;
}

body.dark-mode .about-scope-notice {
    background: rgba(18, 30, 48, 0.85);
    border-color: rgba(96, 165, 250, 0.3);
}

body.dark-mode .about-scope-notice .notice-icon {
    color: #60a5fa;
}

body.dark-mode .about-scope-notice .notice-text {
    color: #cbd5e1;
}

body.dark-mode .about-scope-notice .notice-text strong {
    color: #93c5fd;
}

body.dark-mode .stats-date-pill {
    background: rgba(46, 116, 212, 0.2);
    border-color: rgba(96, 165, 250, 0.3);
    color: #93c5fd;
}

body.dark-mode .stats-date-pill .ui-svg-icon {
    color: #60a5fa;
}

body.dark-mode .stats-source-note {
    color: var(--mist);
}

body.dark-mode .stat-icon {
    background: rgba(46, 116, 212, 0.2);
    color: var(--blue-mid);
}

body.dark-mode .stat-card:hover .stat-icon {
    background: var(--blue-mid);
    color: #061329;
}

body.dark-mode .stat-source {
    border-top-color: var(--border);
    color: var(--mist);
}

body.dark-mode .stats-methodology-footer {
    background: rgba(18, 30, 48, 0.75);
    border-color: var(--border);
    color: #cbd5e1;
}

body.dark-mode .stats-methodology-footer .ui-svg-icon {
    color: #60a5fa;
}

body.dark-mode .activity-top-row h3 {
    color: var(--ink);
}

body.dark-mode .activity-desc {
    color: var(--ink);
}

body.dark-mode .activity-meta-list {
    background: var(--color-surface-subtle);
    border-color: var(--color-border);
}

body.dark-mode .activity-meta-item .meta-icon {
    color: var(--color-info);
}

body.dark-mode .activity-meta-item .meta-label {
    color: var(--color-text-primary);
}

body.dark-mode .activity-meta-item .meta-val {
    color: var(--color-text-secondary);
}

body.dark-mode .btn-activity-details {
    border-color: var(--color-btn-secondary-border);
    color: var(--color-btn-secondary-text);
    background: var(--color-btn-secondary-bg);
}

body.dark-mode .btn-activity-details:hover {
    background: var(--color-btn-secondary-hover-bg);
    color: var(--color-btn-secondary-hover-text);
}

body.dark-mode .btn-activity-register {
    background: var(--color-cta-bg);
    color: var(--color-cta-text) !important;
    box-shadow: var(--shadow-sm);
}

body.dark-mode .btn-activity-register:hover {
    background: var(--color-cta-hover-bg);
    box-shadow: var(--shadow-md);
}

/* ==================== Unified SVG Icon System & Component Alignments ==================== */
.ui-svg-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    transition: transform 0.2s ease, stroke 0.2s ease;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-badge .ui-svg-icon {
    color: var(--blue-mid);
}

body.dark-mode .service-badge .ui-svg-icon {
    color: var(--blue-lt);
}

.activity-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity-item h3 .ui-svg-icon {
    color: var(--blue-mid);
}

.card-icon-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--blue-xs);
    color: var(--blue-mid);
    margin-bottom: 16px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.card:hover .card-icon-header {
    transform: scale(1.08);
    background: rgba(46, 116, 212, 0.15);
    color: var(--blue-dark);
}

body.dark-mode .card-icon-header {
    background: rgba(58, 123, 213, 0.2);
    color: var(--blue-lt);
}

body.dark-mode .card:hover .card-icon-header {
    background: rgba(58, 123, 213, 0.35);
    color: #ffffff;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.donate-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.donate-header-badge .ui-svg-icon {
    color: var(--blue-mid);
}

.donate-steps h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.donate-steps-icon {
    color: var(--blue-mid);
}

.footer-brand-icon {
    color: var(--blue-mid);
    vertical-align: middle;
}

/* ==================== WCAG Accessible Focus Visible System (Level AA/AAA) — Issue #59 ==================== */
/* 1. Global High-Contrast Keyboard Focus Indicator */
:focus-visible {
    outline: 3px solid var(--color-border-focus) !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 2px var(--color-surface), 0 0 10px rgba(28, 83, 163, 0.45) !important;
    border-radius: 6px;
}

body.dark-mode :focus-visible {
    outline: 3px solid var(--color-border-focus) !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 2px var(--color-surface), 0 0 12px rgba(96, 165, 250, 0.6) !important;
}

/* 2. Suppress outline only on pointer/mouse focus, preserving keyboard focus-visible */
:focus:not(:focus-visible) {
    outline: none !important;
    box-shadow: none;
}

/* 3. Rounded & Pill Buttons Focus Rings (inheriting border radius & proper offset) */
.btn:focus-visible,
.btn-card:focus-visible,
.header-cta:focus-visible,
.mobile-cta-btn:focus-visible,
.mobile-drawer-cta:focus-visible,
.theme-toggle:focus-visible,
.menu-toggle:focus-visible,
.copy-trigger-btn:focus-visible,
.share-action-btn:focus-visible,
.modal-close-btn:focus-visible,
.whatsapp-btn:focus-visible,
.btn-donate-primary:focus-visible,
.btn-donate-secondary:focus-visible,
.hero-btn:focus-visible,
.btn-activity-details:focus-visible,
.btn-activity-register:focus-visible {
    outline: 3px solid var(--color-border-focus) !important;
    outline-offset: 4px !important;
    border-radius: inherit !important;
}

body.dark-mode .btn:focus-visible,
body.dark-mode .btn-card:focus-visible,
body.dark-mode .header-cta:focus-visible,
body.dark-mode .mobile-cta-btn:focus-visible,
body.dark-mode .mobile-drawer-cta:focus-visible,
body.dark-mode .theme-toggle:focus-visible,
body.dark-mode .menu-toggle:focus-visible,
body.dark-mode .copy-trigger-btn:focus-visible,
body.dark-mode .share-action-btn:focus-visible,
body.dark-mode .modal-close-btn:focus-visible,
body.dark-mode .whatsapp-btn:focus-visible,
body.dark-mode .btn-donate-primary:focus-visible,
body.dark-mode .btn-donate-secondary:focus-visible,
body.dark-mode .hero-btn:focus-visible,
body.dark-mode .btn-activity-details:focus-visible,
body.dark-mode .btn-activity-register:focus-visible {
    outline: 3px solid var(--color-border-focus) !important;
    box-shadow: 0 0 0 2px var(--color-surface), 0 0 14px rgba(147, 197, 253, 0.7) !important;
}

/* 4. Navigation Links, Drawer Links, Cards, and Footer Links */
.nav-link:focus-visible,
.mobile-nav-item:focus-visible,
.mobile-secondary-card:focus-visible,
.footer-contact-link:focus-visible,
.footer-links a:focus-visible,
.donate-phone-link:focus-visible,
.inline-phone-link:focus-visible,
.contact-item-card a:focus-visible,
.pillar-link:focus-visible {
    outline: 2.5px solid var(--color-border-focus) !important;
    outline-offset: 3px !important;
    border-radius: 8px !important;
}

body.dark-mode .nav-link:focus-visible,
body.dark-mode .mobile-nav-item:focus-visible,
body.dark-mode .mobile-secondary-card:focus-visible,
body.dark-mode .footer-contact-link:focus-visible,
body.dark-mode .footer-links a:focus-visible,
body.dark-mode .donate-phone-link:focus-visible,
body.dark-mode .inline-phone-link:focus-visible,
body.dark-mode .contact-item-card a:focus-visible,
body.dark-mode .pillar-link:focus-visible {
    outline: 2.5px solid var(--color-border-focus) !important;
}

/* 5. Accessible Form Fields & Controls */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--color-border-focus) !important;
    outline-offset: 1px !important;
    border-color: var(--color-border-focus) !important;
    box-shadow: var(--shadow-focus) !important;
}

body.dark-mode input:focus-visible,
body.dark-mode textarea:focus-visible,
body.dark-mode select:focus-visible {
    outline: 2px solid var(--color-border-focus) !important;
    border-color: var(--color-border-focus) !important;
    box-shadow: var(--shadow-focus) !important;
}

/* 6. Contextual Elevation on Interactive Cards When Keyboard-Focused */
.card:focus-within,
.value-card:focus-within,
.activity-item:focus-within,
.contact-item-card:focus-within,
.pillar-card:focus-within {
    border-color: var(--color-border-focus);
    box-shadow: var(--shadow-md);
}

body.dark-mode .card:focus-within,
body.dark-mode .value-card:focus-within,
body.dark-mode .activity-item:focus-within,
body.dark-mode .contact-item-card:focus-within,
body.dark-mode .pillar-card:focus-within {
    border-color: var(--color-border-focus);
    box-shadow: var(--shadow-md);
}

/* 7. Unified Disabled State for All Buttons & Controls — Issue #59 */
button:disabled,
input:disabled,
select:disabled,
textarea:disabled,
.btn:disabled,
.hero-btn:disabled,
.btn-donate-primary:disabled,
.btn-submit-donation:disabled,
.cf-submit-btn:disabled,
[aria-disabled="true"] {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

/* ============================================================
   ARTICLE READING & VISUAL HARMONY (Issues #46, #47, #58)
   ============================================================ */

/* Reading progress bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #2e74d4 0%, #059669 100%);
    z-index: 99999;
    transition: width 0.1s ease-out;
}

/* Article rich body typography & Bilingual consistency (Issue #47) */
.article-rich-body {
    font-size: 1.05rem;
    line-height: 1.95;
    color: var(--ink);
    direction: rtl;
    text-align: start;
}

.article-rich-body h2 {
    font-family: var(--font-heading), system-ui, sans-serif;
    font-size: clamp(1.25rem, 2vw + 0.8rem, 1.6rem);
    font-weight: 800;
    color: var(--ink);
    margin-top: 2.5rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 88px;
    line-height: 1.45;
}

.article-rich-body h3 {
    font-family: var(--font-heading), system-ui, sans-serif;
    font-size: clamp(1.1rem, 1.5vw + 0.7rem, 1.3rem);
    font-weight: 700;
    color: var(--blue-dark);
    margin-top: 1.8rem;
    margin-bottom: 0.9rem;
    scroll-margin-top: 88px;
    line-height: 1.45;
}

.article-rich-body p {
    margin-bottom: 1.4rem;
    text-align: justify;
    text-justify: inter-word;
}

.article-rich-body .lead {
    font-size: clamp(1.05rem, 1.2vw + 0.8rem, 1.2rem);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.85;
    margin-bottom: 1.8rem;
    padding-bottom: 0.5rem;
}

.article-rich-body ul,
.article-rich-body ol {
    padding-inline-start: 28px;
    margin-bottom: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-rich-body li {
    line-height: 1.8;
}

.article-rich-body blockquote {
    border-inline-start: 4px solid var(--blue);
    padding: 14px 20px;
    margin: 1.6rem 0;
    background: rgba(46, 116, 212, 0.05);
    border-radius: var(--radius-md);
    font-style: italic;
    color: var(--muted);
}

/* Mixed Arabic/English Direction & Typography Isolation */
.article-rich-body bdi,
.article-rich-body .english-term {
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    color: var(--blue-mid);
    margin-inline: 3px;
    letter-spacing: -0.01em;
}

.article-rich-body h2 bdi,
.article-rich-body h2 .english-term,
.article-rich-body h3 bdi,
.article-rich-body h3 .english-term {
    font-weight: 700;
    color: inherit;
    opacity: 0.92;
}

body.dark-mode .article-rich-body bdi,
body.dark-mode .article-rich-body .english-term {
    color: #60a5fa;
}

body.dark-mode .article-rich-body blockquote {
    background: rgba(255, 255, 255, 0.03);
    border-inline-start-color: var(--blue-mid);
}

/* Breadcrumb Navigation — Issue #50 */
.article-breadcrumb ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-breadcrumb a {
    text-decoration: none;
    border-radius: 4px;
    padding: 2px 4px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.article-breadcrumb a:focus-visible {
    outline: 2px solid var(--blue-mid, #2e74d4) !important;
    outline-offset: 2px !important;
}

body.dark-mode .article-breadcrumb a {
    color: #94a3b8;
}

body.dark-mode .article-breadcrumb a:hover {
    color: #60a5fa;
}

body.dark-mode .article-breadcrumb [aria-current="page"] {
    color: #f1f5f9;
}

body.dark-mode .article-breadcrumb [aria-hidden="true"] svg {
    color: #64748b;
}

/* Calming, empathetic visual harmony — Issue #58 */
:root {
    --calm-teal: #0d9488;
    --calm-soft-blue: #3b82f6;
    --calm-warm-bg: #fbfbfd;
}

body.dark-mode {
    --bg: #0d1522;
    --card-bg: rgba(18, 30, 48, 0.85);
    --border: rgba(255, 255, 255, 0.09);
    --ink: #e6edf8;
    --mist: #9bb0cb;
    --muted: #8ca3c3;
}

/* Smooth transitions */
body {
    background-color: var(--bg);
    color: var(--ink);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ==========================================================================
   Site Footer — Issue #53 (4-Column Layout, Navigation, Social, Legal & Emergency)
   ========================================================================== */
.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-top: auto;
}

body.dark-mode .site-footer {
    background: #090e17;
    border-top-color: rgba(255, 255, 255, 0.05);
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Emergency Helpline Strip (Issue #57) */
.footer-emergency-strip {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 16px 22px;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.emergency-strip-content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    width: 100%;
}

.emergency-badge {
    background: #dc2626;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 50px;
    white-space: nowrap;
}

.footer-emergency-strip p {
    margin: 0;
    font-size: 0.88rem;
    color: #fecaca;
    line-height: 1.6;
    flex: 1;
}

/* Brand Banner Row */
.footer-brand-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand-info {
    max-width: 480px;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-mini-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
    color: #ffffff;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.footer-brand-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 8px 18px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-contact-pill:hover {
    background: rgba(46, 116, 212, 0.25);
    border-color: #3b82f6;
    transform: translateY(-2px);
    color: #ffffff;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social-btn:hover {
    color: #ffffff;
    background: #3b82f6;
    border-color: #3b82f6;
    transform: translateY(-2px);
}

/* 4-Column Grid Navigation */
.footer-grid-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

@media (max-width: 900px) {
    .footer-grid-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 540px) {
    .footer-grid-nav {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 16px;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 2px;
    background: #3b82f6;
    border-radius: 2px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.15s ease, transform 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
}

.footer-nav-list a:hover {
    color: #60a5fa;
    transform: translateX(-3px);
}

/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: #64748b;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-legal-links a:hover {
    color: #60a5fa;
}

.footer-update-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.04);
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==================== Issue #56: Unified Loading, Skeleton, Retry & Empty States ==================== */
.img-skeleton-loader {
    position: relative;
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%) !important;
    background-size: 200% 100% !important;
    animation: skeletonShimmer 1.5s infinite linear !important;
}

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

body.dark-mode .img-skeleton-loader {
    background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%) !important;
    background-size: 200% 100% !important;
}

/* Retry Button */
.btn-retry-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #ffffff;
    border: 1.5px solid #ef4444;
    color: #dc2626;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-retry-action:hover {
    background: #fef2f2;
    transform: translateY(-1px);
}

body.dark-mode .btn-retry-action {
    background: #1e293b;
    border-color: #f87171;
    color: #fca5a5;
}

body.dark-mode .btn-retry-action:hover {
    background: #2d3748;
}

/* State Spinner Animation */
.state-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: stateSpin 0.7s infinite linear;
    vertical-align: middle;
}

@keyframes stateSpin {
    to { transform: rotate(360deg); }
}

/* Empty State Card */
.empty-state-card {
    text-align: center;
    padding: 48px 24px;
    background: var(--card-bg, #f8fafc);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.empty-state-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(46, 116, 212, 0.1);
    color: var(--blue, #1c53a3);
    margin-bottom: 18px;
}

.empty-state-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ink, #0f172a);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.empty-state-desc {
    font-size: 0.95rem;
    color: var(--muted, #64748b);
    max-width: 520px;
    margin: 0 auto 20px;
    line-height: 1.65;
}

.empty-state-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== Issue #57: Emergency Pathways & Crisis Referral System ==================== */

/* 1. Support Page Hero Safety Alert Banner */
.support-safety-alert-banner {
    background: rgba(254, 242, 242, 0.95);
    border: 1.5px solid #fca5a5;
    border-radius: 16px;
    padding: 16px 20px;
    margin: 20px auto 24px;
    max-width: 780px;
    text-align: right;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.08);
}

body.dark-mode .support-safety-alert-banner {
    background: var(--color-danger-bg);
    border-color: var(--color-danger-border);
}

.safety-alert-inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.safety-alert-icon {
    color: #dc2626;
    flex-shrink: 0;
    margin-top: 2px;
}

body.dark-mode .safety-alert-icon {
    color: var(--color-danger);
}

.safety-alert-text {
    flex-grow: 1;
}

.safety-alert-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: #991b1b;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

body.dark-mode .safety-alert-title {
    color: var(--color-danger);
}

.safety-alert-desc {
    font-size: 0.85rem;
    color: #7f1d1d;
    line-height: 1.6;
    margin: 0;
}

body.dark-mode .safety-alert-desc {
    color: var(--color-text-primary);
}

.safety-alert-quick-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(220, 38, 38, 0.15);
}

.btn-safety-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #dc2626;
    color: #ffffff !important;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.25);
}

.btn-safety-call:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

.btn-safety-guide {
    font-size: 0.82rem;
    font-weight: 700;
    color: #991b1b !important;
    text-decoration: underline;
    margin-inline-start: auto;
    transition: opacity 0.2s;
}

body.dark-mode .btn-safety-guide {
    color: var(--color-danger) !important;
}

.btn-safety-guide:hover {
    opacity: 0.85;
}

/* 2. Homepage Emergency Strip */
.home-emergency-strip {
    background: #fff1f2;
    border-bottom: 1px solid #fecdd3;
    padding: 14px 0;
    position: relative;
    z-index: 10;
}

body.dark-mode .home-emergency-strip {
    background: var(--color-danger-bg);
    border-bottom-color: var(--color-danger-border);
}

.emergency-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.emergency-strip-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffe4e6;
    color: #e11d48;
    flex-shrink: 0;
}

body.dark-mode .emergency-strip-icon-wrap {
    background: var(--color-danger-border);
    color: var(--color-danger);
}

.emergency-strip-content {
    flex: 1 1 320px;
}

.emergency-strip-title {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    color: #9f1239;
    margin-bottom: 2px;
}

body.dark-mode .emergency-strip-title {
    color: var(--color-danger);
}

.emergency-strip-text {
    font-size: 0.82rem;
    color: #881337;
    margin: 0;
    line-height: 1.5;
}

body.dark-mode .emergency-strip-text {
    color: var(--color-text-primary);
}

.emergency-strip-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-strip-emergency {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: #e11d48;
    color: #ffffff !important;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(225, 29, 72, 0.2);
    transition: all 0.2s;
}

.btn-strip-emergency:hover {
    background: #be123c;
    transform: translateY(-1px);
}

.btn-strip-helpline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: #ffffff;
    color: #e11d48 !important;
    border: 1px solid #fda4af;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

body.dark-mode .btn-strip-helpline {
    background: var(--color-surface);
    border-color: var(--color-danger-border);
    color: var(--color-danger) !important;
}

.btn-strip-helpline:hover {
    background: #ffe4e6;
}

body.dark-mode .btn-strip-helpline:hover {
    background: var(--color-surface-subtle);
}

.btn-strip-guide {
    font-size: 0.8rem;
    font-weight: 700;
    color: #9f1239 !important;
    text-decoration: underline;
    margin-inline-start: 4px;
}

body.dark-mode .btn-strip-guide {
    color: var(--color-danger) !important;
}

/* 3. Article Crisis Safety Alert */
.article-crisis-safety-alert {
    background: var(--color-warning-bg);
    border: 1.5px solid var(--color-warning-border);
    border-radius: 14px;
    padding: 16px 20px;
    margin: 24px auto;
}

body.dark-mode .article-crisis-safety-alert {
    background: var(--color-warning-bg);
    border-color: var(--color-warning-border);
    color: var(--color-text-primary);
}

body.dark-mode .article-crisis-safety-alert strong {
    color: var(--color-warning) !important;
}

body.dark-mode .article-crisis-safety-alert p {
    color: var(--color-text-primary) !important;
}

/* 4. Support Page Emergency Directory & Country Cards */
.support-emergency-directory {
    margin-top: 48px;
    padding: 40px 24px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.emergency-directory-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--color-danger-bg);
    color: var(--color-danger);
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 12px;
}

body.dark-mode .emergency-badge {
    background: var(--color-danger-bg);
    color: var(--color-danger);
}

.emergency-directory-header h2 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.emergency-directory-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.emergency-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.emergency-country-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

body.dark-mode .emergency-country-card {
    background: var(--color-surface);
    border-color: var(--color-border);
}

.country-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 14px;
}

.country-flag {
    font-size: 1.5rem;
}

.country-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin: 0;
}

.country-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}

.country-service-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--color-border-subtle);
}

.country-service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.service-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.service-note {
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.service-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-country-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--color-surface-subtle);
    color: var(--color-info) !important;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s;
}

body.dark-mode .btn-country-call {
    background: var(--color-surface-subtle);
    border-color: var(--color-border);
    color: var(--color-btn-secondary-text) !important;
}

.btn-country-call:hover {
    background: var(--color-cta-bg);
    color: var(--color-cta-text) !important;
    border-color: var(--color-cta-bg);
}

body.dark-mode .btn-country-call:hover {
    background: var(--color-cta-hover-bg);
    color: var(--color-cta-text) !important;
    border-color: var(--color-cta-hover-bg);
}

.btn-country-call--alt {
    background: transparent;
}

.btn-country-web {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    background: var(--color-info-bg);
    color: var(--color-info) !important;
    border: 1px solid var(--color-info-border);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

body.dark-mode .btn-country-web {
    background: var(--color-btn-secondary-bg);
    border-color: var(--color-btn-secondary-border);
    color: var(--color-btn-secondary-text) !important;
}

.btn-country-web:hover {
    background: var(--color-btn-secondary-hover-bg);
    color: var(--color-btn-secondary-hover-text) !important;
}

.emergency-safety-statement {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--color-surface-subtle);
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 20px 24px;
    color: var(--color-text-primary);
}

body.dark-mode .emergency-safety-statement {
    background: var(--color-surface-subtle);
    border-color: var(--color-border);
    color: var(--color-text-primary);
}

.statement-icon {
    color: var(--color-text-secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

body.dark-mode .statement-icon {
    color: var(--color-text-secondary);
}

.statement-content strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.statement-content p {
    font-size: 0.86rem;
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin: 0;
}

body.dark-mode .statement-content p {
    color: var(--color-text-secondary);
}

/* ==========================================================================
   Issue #60: Tablet & Touch Screen Responsiveness & Touch Target Sizing
   ========================================================================== */

/* 1. Standard Touch Target Sizes (Minimum 44px x 44px for WCAG 2.5.5 / 2.5.8) */
.site-header .nav-item {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
}

.btn-action-secondary {
    min-height: 44px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
}

.btn-primary-support {
    min-height: 44px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
}

.theme-toggle,
.mobile-theme-toggle {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
}

.menu-toggle {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
}

.mobile-quick-support-btn {
    min-height: 44px !important;
    padding: 8px 16px !important;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
}

.footer-social-btn {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
}

.toast-close-btn {
    min-width: 44px !important;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

.close-modal {
    min-width: 44px !important;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

.btn-strip-emergency,
.btn-strip-helpline,
.btn-safety-call,
.btn-country-call {
    min-height: 44px !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-strip-guide,
.btn-safety-guide {
    min-height: 44px !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
}

.btn-activity-details,
.btn-activity-register,
.btn-submit-donation,
.btn-donate-primary,
.cf-submit-btn {
    min-height: 44px !important;
    box-sizing: border-box;
}

/* 2. Mobile & Tablet Form Input Optimization (Prevent iOS Auto-Zoom) */
@media (max-width: 1024px) {
    input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="hidden"]),
    select,
    textarea,
    .form-input,
    .form-select,
    .form-textarea,
    .cf-input,
    .cf-textarea {
        font-size: 16px !important;
    }
}

/* 3. Tablet (768px - 1024px) Layout & Modal Adaptations */
@media (min-width: 768px) and (max-width: 1024px) {
    .activity-modal-content {
        max-width: 720px;
        width: 90%;
        max-height: 88vh;
        overflow-y: auto;
    }

    .modal-decision-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px;
    }

    .contact-wrapper {
        padding: 24px;
        gap: 24px;
    }

    .donate-card-highlight {
        max-width: 100%;
        padding: 24px;
    }
}

/* 4. Landscape Mobile/Tablet (max-height: 500px) Modal Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .activity-modal-content {
        max-height: 94vh !important;
        padding: 16px 20px !important;
        margin: 10px auto !important;
    }

    .modal-decision-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px !important;
    }
}