/* 
 * =========================================================================
 * Live 4 Help Foundation - Premium Redesigned CSS Design System
 * Inspired by international premium charity and humanitarian orgs.
 * Clean, modern, accessible, emotional storytelling typography and layouts.
 * =========================================================================
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary: #0f172a;          /* Deep Slate Navy (Stability, Trust) */
    --primary-light: #1e293b;
    --primary-soft: #f1f5f9;
    --secondary: #059669;        /* Soft Sage Emerald (Growth, Health, Nature) */
    --secondary-light: #10b981;
    --secondary-soft: #ecfdf5;
    --highlight: #ea580c;        /* Warm Sunset Orange (Energy, Urgency, CTA) */
    --highlight-light: #f97316;
    --highlight-soft: #fff7ed;
    --accent: #d97706;           /* Warm Amber Accent */
    
    /* Text Colors */
    --text-main: #475569;        /* Optimized for top 2026 readability & tone */
    --text-muted: #64748b;
    --text-light: #ffffff;
    --text-dark: #0f172a;
    
    /* Backgrounds */
    --bg-main: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #090d16;          /* Rich deep dark shade */
    
    /* Shadows - World Class Multi-Layered Natural Depth */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 4px 20px -2px rgba(15, 23, 42, 0.02), 0 12px 40px -4px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 10px 30px -5px rgba(15, 23, 42, 0.03), 0 20px 50px -10px rgba(15, 23, 42, 0.06);
    --shadow-xl: 0 20px 40px -4px rgba(15, 23, 42, 0.04), 0 30px 80px -10px rgba(15, 23, 42, 0.08);
    
    /* Transitions & Smoothness */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); /* Ultra premium click and hover curves */
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Border Radii */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.75rem;
    --radius-xl: 2.5rem;
    --radius-full: 9999px;
    
    /* Grid & Container */
    --container-width: 1240px;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: blur(20px);
}

/* =========================================================================
   Base & Core resets
   ========================================================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.8; /* Expands reading room */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.03em; /* Sleek high-fashion layout */
}

h2 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

h4 {
    font-size: 1.25rem;
    letter-spacing: -0.015em;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

/* =========================================================================
   Layout Utilities - Premium Spacious Whitespace Padding
   ========================================================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 9rem 0; /* Expanded section padding */
}

.section-alt {
    background-color: var(--bg-alt);
    padding: 9rem 0;
}

.grid {
    display: grid;
    gap: 2.5rem; /* Generous gap for premium look */
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .section, .section-alt { padding: 6.5rem 0; }
}
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section, .section-alt { padding: 5.5rem 0; }
    .container { padding: 0 1.5rem; }
}

.flex { display: flex; gap: 1rem; align-items: center; }
.flex-between { justify-content: space-between; }
.flex-center { justify-content: center; }
.text-center { text-align: center; }

/* Alignments & Gaps */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Section Headers */
.section-title-wrapper {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}
.subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 0.75rem;
}
.section-title {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--highlight);
    margin: 0.75rem auto 0 auto;
    border-radius: var(--radius-full);
}
.text-center .section-title::after { margin-left: auto; margin-right: auto; }

/* =========================================================================
   Buttons & Interactive CTAs
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: 'Manrope', sans-serif;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--text-light);
}
.btn-primary:hover {
    background-color: var(--secondary-light);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--primary);
    color: var(--text-light);
}
.btn-secondary:hover {
    background-color: var(--primary-light);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-highlight {
    background-color: var(--highlight);
    color: var(--text-light);
}
.btn-highlight:hover {
    background-color: var(--highlight-light);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}
.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    border-color: var(--text-light);
    color: var(--text-light);
}
.btn-outline-white:hover {
    background-color: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

/* =========================================================================
   Header & Sticky Navbar Redesign
   ========================================================================= */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1.75rem 0;
}

header.site-header.scrolled {
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: var(--container-width);
    background-color: rgba(15, 23, 42, 0.9); /* Premium dark glass */
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    padding: 0.6rem 2rem;
    border-radius: var(--radius-full);
}

header.site-header.scrolled .logo-text {
    color: var(--text-light);
}

header.site-header.scrolled .nav-link {
    color: rgba(248, 250, 252, 0.8);
    font-size: 0.9rem;
}
header.site-header.scrolled .nav-link:hover {
    color: var(--secondary-light);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(16, 185, 129, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-light);
    border: 1px solid rgba(16, 185, 129, 0.15);
}
.logo-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--text-light);
    letter-spacing: -0.02em;
    transition: var(--transition-smooth);
}
.logo-text span {
    color: var(--secondary-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: -0.01em;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary-light);
    transition: var(--transition-smooth);
    border-radius: var(--radius-full);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-dark); /* Dark matching dropdown for capsule */
    min-width: 250px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 0.85rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
header.site-header.scrolled .dropdown-menu {
    top: calc(100% + 0.75rem);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-link {
    display: block;
    padding: 0.75rem 1.75rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(248, 250, 252, 0.75);
    transition: var(--transition-fast);
}
.dropdown-link:hover {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--secondary-light);
    padding-left: 2rem;
}

.nav-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition-smooth);
}
header.site-header.scrolled .mobile-nav-toggle {
    color: var(--text-light);
}

@media (max-width: 992px) {
    .nav-menu, .nav-ctas {
        display: none;
    }
    .mobile-nav-toggle {
        display: block;
    }
}

/* Mobile Menu Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 340px;
    height: 100vh;
    background-color: var(--bg-dark); /* Rich dark backdrop for the drawer */
    box-shadow: -15px 0 40px rgba(9, 13, 22, 0.25);
    z-index: 2000;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-drawer.open {
    right: 0;
}
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(9, 13, 22, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}
.mobile-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}
.drawer-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 2.25rem;
    cursor: pointer;
    color: rgba(248, 250, 252, 0.6);
    transition: var(--transition-fast);
}
.drawer-close:hover {
    color: var(--secondary-light);
    transform: rotate(90deg);
}
.drawer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.drawer-menu li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--i) * 0.06s); /* Sequential cascading slide-ins! */
}
.mobile-drawer.open .drawer-menu li {
    opacity: 1;
    transform: translateY(0);
}
.drawer-link {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(248, 250, 252, 0.85);
    display: block;
    padding: 0.5rem 0;
}
.drawer-link:hover, .drawer-link.active {
    color: var(--secondary-light);
    padding-left: 0.5rem;
}

/* =========================================================================
   Home Hero Section (Fullscreen storytelling banner)
   ========================================================================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--text-light);
    overflow: hidden;
    background-color: var(--bg-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45; /* Slightly increased for visibility of generated child books image */
    z-index: 1;
    transform: scale(1.05);
    animation: zoomHero 25s infinite alternate cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes zoomHero {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(9, 13, 22, 0.95) 0%, rgba(9, 13, 22, 0.7) 40%, rgba(5, 150, 105, 0.25) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background-color: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: var(--secondary-light);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: clamp(3rem, 7.5vw, 5.25rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: var(--text-light);
    letter-spacing: -0.04em;
}

.hero-title span {
    background: linear-gradient(135deg, var(--secondary-light) 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-description {
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    line-height: 1.8;
    color: rgba(248, 250, 252, 0.8);
    margin-bottom: 3.5rem;
    font-weight: 400;
}

/* Premium Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
}
.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--secondary-light);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollScroll 1.8s infinite;
}
@keyframes scrollScroll {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

/* =========================================================================
   Statistics Counter Section
   ========================================================================= */
.stats-section {
    position: relative;
    z-index: 10;
    margin-top: -6rem;
}
.stats-container {
    background-color: var(--bg-main);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 3.5rem;
    border: 1px solid rgba(15, 23, 42, 0.05);
    display: grid;
}
.stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}
.stats-container > .stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.08), transparent);
}
@media (max-width: 768px) {
    .stats-container > .stat-card:not(:last-child)::after {
        display: none;
    }
    .stats-section {
        margin-top: -3.5rem;
    }
}
.stat-number {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: var(--secondary);
    font-family: 'Manrope', sans-serif;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    display: inline-block;
    position: relative;
}
.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* =========================================================================
   Cards Design System (Modern Soft Shadow / Glassmorphism / Emerald Hover Glow)
   ========================================================================= */
.card {
    background-color: var(--bg-main);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: var(--shadow-md);
    padding: 2.75rem 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-light), var(--secondary));
    opacity: 0;
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08), 0 0 50px -10px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.25);
}

.card:hover::before {
    opacity: 1;
}

.card-img-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.75rem;
    aspect-ratio: 16/10;
}
.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background-color: var(--secondary-soft);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(16, 185, 129, 0.1);
}
.card:hover .card-icon {
    background-color: var(--secondary);
    color: var(--text-light);
    transform: rotate(6deg) scale(1.05);
    border-color: var(--secondary);
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
    letter-spacing: -0.015em;
    color: var(--text-dark);
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.card-link {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.card-link i {
    transition: var(--transition-fast);
}
.card:hover .card-link i {
    transform: translateX(6px);
}

/* =========================================================================
   Governing Body Redesign Profiles
   ========================================================================= */
.profile-card {
    background-color: var(--bg-main);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
}
.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-light), var(--secondary));
    opacity: 0;
    transition: var(--transition-smooth);
}
.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.06), 0 0 40px -10px rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}
.profile-card:hover::before {
    opacity: 1;
}
.profile-avatar-wrapper {
    position: relative;
    padding-top: 3rem;
    background-color: var(--bg-alt);
    transition: var(--transition-smooth);
}
.profile-card:hover .profile-avatar-wrapper {
    background-color: var(--secondary-soft);
}
.profile-avatar {
    width: 130px;
    height: 130px;
    border-radius: var(--radius-full);
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid var(--bg-main);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}
.profile-card:hover .profile-avatar {
    transform: scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.25);
    border-color: var(--bg-main);
}
.profile-info {
    padding: 2rem;
}
.profile-name {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}
.profile-role {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.profile-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.profile-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
}
.profile-social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: var(--primary-soft);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.profile-social-link:hover {
    background-color: var(--secondary);
    color: var(--text-light);
}

/* =========================================================================
   Donation / Bank Details Section
   ========================================================================= */
.donate-grid-wrapper {
    align-items: stretch;
}
.bank-details-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
    color: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: 0 30px 70px -15px rgba(9, 13, 22, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.bank-details-card h3 {
    color: var(--text-light);
    font-size: 1.85rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.020em;
}
.bank-details-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.bank-details-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, rgba(234, 88, 12, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.bank-card-chip {
    width: 50px;
    height: 38px;
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
    border-radius: 8px;
    margin-bottom: 2.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(255,255,255,0.4);
}
.bank-card-chip::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.08) 0px, rgba(15, 23, 42, 0.08) 2px, transparent 2px, transparent 8px),
                repeating-linear-gradient(0deg, rgba(15, 23, 42, 0.08) 0px, rgba(15, 23, 42, 0.08) 2px, transparent 2px, transparent 8px);
}
.bank-row {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 5;
}
.bank-row:last-of-type {
    border-bottom: none;
}
.bank-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.bank-value {
    font-weight: 700;
    color: var(--text-light);
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}
.tax-banner {
    background-color: var(--highlight-soft);
    border-left: 4px solid var(--highlight);
    padding: 1.75rem;
    border-radius: var(--radius-md);
    margin-top: 2.5rem;
    border: 1px solid rgba(234, 88, 12, 0.08);
}
.tax-banner-title {
    font-weight: 800;
    color: var(--highlight);
    margin-bottom: 0.5rem;
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}
.tax-banner-desc {
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* =========================================================================
   Timeline Storytelling Redesign - High-End Corporate & NGO Visuals
   ========================================================================= */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary-light) 0%, rgba(16, 185, 129, 0.2) 70%, transparent 100%);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}
.timeline-item {
    padding: 20px 50px;
    position: relative;
    width: 50%;
    transition: var(--transition-smooth);
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    right: -7px;
    background-color: var(--bg-main);
    border: 3px solid var(--secondary);
    top: 32px;
    border-radius: var(--radius-full);
    z-index: 10;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
    transition: var(--transition-fast);
}
.timeline-item:hover::after {
    background-color: var(--secondary-light);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.3);
    transform: scale(1.2);
}
.timeline-left { left: 0; }
.timeline-right { left: 50%; }
.timeline-right::after { left: -7px; }
.timeline-content {
    padding: 2.5rem;
    background-color: var(--bg-main);
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: var(--transition-smooth);
}
.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 185, 129, 0.15);
}

@media (max-width: 768px) {
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item::after { left: 24px; top: 35px; }
    .timeline-right { left: 0; }
}

/* =========================================================================
   Premium Form Styling System
   ========================================================================= */
.form-card {
    background-color: var(--bg-main);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 3.5rem;
    border: 1px solid var(--border-color);
}
.form-group {
    margin-bottom: 1.75rem;
    position: relative;
}
.form-label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-main);
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}
.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: var(--bg-main);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Form Checkbox and Custom Select */
.form-checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}
@media (max-width: 576px) {
    .form-checkbox-group { grid-template-columns: 1fr; }
}
.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-main);
    padding: 0.75rem 1rem;
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}
.form-checkbox-label:hover {
    background-color: var(--secondary-soft);
    border-color: rgba(16, 185, 129, 0.3);
}
.form-checkbox-label input[type="checkbox"] {
    accent-color: var(--secondary);
    width: 18px;
    height: 18px;
}

/* Multi-Step Form Custom Headers */
.step-progress-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 3.5rem;
}
.step-progress-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--border-color);
    z-index: 1;
}
.step-progress-bar {
    position: absolute;
    top: 20px;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: var(--secondary);
    z-index: 2;
    transition: var(--transition-smooth);
}
.step-bubble {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--bg-main);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    font-weight: 700;
    color: var(--text-muted);
    font-family: 'Manrope', sans-serif;
    transition: var(--transition-smooth);
}
.step-bubble.active {
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 0 6px var(--secondary-soft);
}
.step-bubble.completed {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--text-light);
}

.form-step {
    display: none;
}
.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-buttons-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

/* File Upload Premium Style */
.file-upload-dragzone {
    border: 2px dashed var(--border-color);
    background-color: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.file-upload-dragzone:hover {
    border-color: var(--secondary);
    background-color: var(--secondary-soft);
}
.file-upload-icon {
    font-size: 2.5rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.file-upload-dragzone input[type="file"] {
    display: none;
}

/* =========================================================================
   Newsletter & Footer Redesign - High-End Minimalist Elements
   ========================================================================= */
.footer-newsletter-section {
    background-color: var(--primary-soft);
    padding: 6rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}
.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}
@media (max-width: 768px) {
    .newsletter-wrapper { flex-direction: column; text-align: center; gap: 2rem; }
}

.footer {
    background-color: var(--bg-dark);
    color: rgba(248, 250, 252, 0.6);
    padding: 8rem 0 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer h4 {
    color: var(--text-light);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    font-size: 1.15rem;
    letter-spacing: -0.015em;
}
.footer h4::after {
    content: '';
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--secondary-light);
    margin-top: 0.6rem;
    border-radius: var(--radius-full);
}
.footer-logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}
.footer-logo span {
    color: var(--secondary-light);
}
.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(248, 250, 252, 0.55);
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-link-item a {
    color: rgba(248, 250, 252, 0.6);
    transition: var(--transition-fast);
    font-size: 0.95rem;
}
.footer-link-item a:hover {
    color: var(--secondary-light);
    padding-left: 0.5rem;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.7;
}
.footer-contact-icon {
    color: var(--secondary-light);
    font-size: 1.15rem;
    margin-top: 0.2rem;
}
.footer-social-icons {
    display: flex;
    gap: 1.15rem;
    margin-top: 2rem;
}
.footer-social-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.04);
    color: rgba(248, 250, 252, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-social-btn:hover {
    background-color: var(--secondary);
    color: var(--text-light);
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
}
.footer-bottom {
    margin-top: 6.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.45);
}
.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .footer-bottom-flex { flex-direction: column; text-align: center; }
}

/* =========================================================================
   Image Masonry & Gallery Lightbox System
   ========================================================================= */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}
.gallery-filter-btn {
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
    background-color: var(--secondary);
    color: var(--text-light);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.2) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-item-title {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 700;
}
.gallery-item-cat {
    color: var(--secondary-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox-content-wrapper {
    position: relative;
    max-width: 80%;
    max-height: 80%;
}
.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
}
.lightbox-title {
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
}

/* Toast Success/Error Messages */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.toast {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    animation: slideInToast 0.3s ease;
    border-left: 4px solid var(--secondary);
}
.toast.error {
    border-left-color: var(--highlight);
}
@keyframes slideInToast {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Inner Banner Headers */
.inner-hero {
    background-color: var(--primary);
    position: relative;
    padding: 9.5rem 0 6.5rem 0;
    color: var(--text-light);
    overflow: hidden;
    text-align: center;
}
.inner-hero h1 {
    color: var(--text-light);
    margin-bottom: 1rem;
}
.inner-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}
.inner-hero-content {
    position: relative;
    z-index: 2;
}
.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.7);
}
.breadcrumbs a {
    color: rgba(248, 250, 252, 0.7);
}
.breadcrumbs a:hover {
    color: var(--secondary-light);
}
.breadcrumbs span {
    color: var(--text-light);
}

/* FAQ Accordion Styling */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}
.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    color: var(--text-dark);
}
.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    color: var(--text-muted);
}
.faq-item.active {
    background-color: var(--bg-main);
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: var(--shadow-md);
}
.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 200px;
}
.faq-icon {
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--secondary);
}
