/* =============================================
   HAPPY HELPING HANDS FOUNDATION — STYLES
   Brand Colors: Royal Blue #0A1FBD, Gold #E09714
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
    --blue-deep:     #0A1FBD;
    --blue-mid:      #1A32D4;
    --blue-light:    #3A5AE8;
    --blue-pale:     #E8ECFD;
    --gold:          #E09714;
    --gold-dark:     #B87D10;
    --gold-light:    #F5C84A;
    --gold-pale:     #FEF7E6;
    --sky:           #5C9CCC;
    --sky-light:     #A1D2F0;
    --white:         #FFFFFF;
    --off-white:     #F8F9FC;
    --text-dark:     #111827;
    --text-body:     #374151;
    --text-muted:    #6B7280;
    --border:        #E5E7EB;
    --border-light:  #F3F4F6;
    --shadow-sm:     0 1px 3px rgba(10, 31, 189, 0.08);
    --shadow-md:     0 4px 16px rgba(10, 31, 189, 0.12);
    --shadow-lg:     0 8px 32px rgba(10, 31, 189, 0.16);
    --shadow-xl:     0 16px 48px rgba(10, 31, 189, 0.20);
    --radius-sm:     6px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --radius-xl:     32px;
    --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display:  'Playfair Display', Georgia, serif;
    --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
}

input,
textarea,
select {
    font-family: var(--font-body);
    font-size: 1rem;
}

/* ---- CONTAINER ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- SECTIONS ---- */
.section {
    padding: 96px 0;
}

/* ---- SECTION HEADER ---- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-eyebrow.light {
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-blue {
    background: var(--blue-deep);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(10, 31, 189, 0.3);
}

.btn-blue:hover {
    background: var(--blue-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 31, 189, 0.4);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(224, 151, 20, 0.35);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 151, 20, 0.45);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* =============================================
   NAVIGATION
   ============================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    background: var(--white);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(10, 31, 189, 0.12);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    border-color: var(--blue-pale);
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.brand-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.navbar.scrolled .brand-name {
    color: var(--text-dark);
}

.navbar.scrolled .brand-tagline {
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .nav-link {
    color: var(--text-body);
}

.navbar.scrolled .nav-link:hover {
    color: var(--blue-deep);
    background: var(--blue-pale);
}

.nav-donate-btn {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(224, 151, 20, 0.4);
}

.nav-donate-btn:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--blue-deep) 0%, #0815A0 40%, #0A2570 70%, #081A58 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(92, 156, 204, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(224, 151, 20, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.015) 60px,
            rgba(255, 255, 255, 0.015) 61px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.015) 60px,
            rgba(255, 255, 255, 0.015) 61px
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 140px 24px 120px;
    max-width: 880px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(224, 151, 20, 0.2);
    border: 1px solid rgba(224, 151, 20, 0.4);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInDown 0.6s ease both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title-accent {
    color: var(--gold-light);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.3s both;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 24px 40px;
    animation: fadeInUp 0.7s ease 0.4s both;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
    z-index: 1;
}

/* =============================================
   IMPACT TICKER
   ============================================= */

.impact-ticker {
    background: var(--blue-deep);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 48px;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-track span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.ticker-track span i {
    color: var(--gold-light);
    font-size: 0.7rem;
}

/* =============================================
   ABOUT SECTION
   ============================================= */

.about-section {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-img-stack {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-img-secondary {
    position: absolute;
    bottom: -36px;
    right: -36px;
    width: 220px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-badge-float {
    position: absolute;
    top: 32px;
    left: -24px;
    background: var(--gold);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(224, 151, 20, 0.4);
    font-weight: 700;
    font-size: 0.85rem;
}

.about-badge-float i {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.about-content-col {
    padding-bottom: 36px;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-body {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.value-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--blue-pale);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.value-card i {
    font-size: 1.4rem;
    color: var(--blue-deep);
    margin-bottom: 10px;
}

.value-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.value-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* =============================================
   VISION & MISSION
   ============================================= */

.vision-mission-section {
    background: var(--blue-deep);
    padding: 80px 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.vm-card {
    padding: 60px 48px;
    text-align: center;
}

.vm-vision {
    background: rgba(255, 255, 255, 0.05);
}

.vm-mission {
    background: rgba(255, 255, 255, 0.08);
}

.vm-icon {
    width: 72px;
    height: 72px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(224, 151, 20, 0.4);
}

.vm-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.vm-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.vm-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 1rem;
    max-width: 420px;
    margin: 0 auto;
}

/* =============================================
   FOCUS AREAS
   ============================================= */

.focus-section {
    background: var(--white);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.focus-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.focus-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--blue-deep), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.focus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.focus-card:hover::after {
    transform: scaleX(1);
}

.focus-card-featured {
    background: var(--blue-deep);
    border-color: var(--blue-deep);
    color: var(--white);
}

.focus-card-featured h3 {
    color: var(--white) !important;
}

.focus-card-featured p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.focus-card-featured .focus-list li {
    color: rgba(255, 255, 255, 0.75) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.focus-card-featured::after {
    background: var(--gold) !important;
}

.focus-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.focus-card-featured .focus-icon-wrap {
    background: rgba(255, 255, 255, 0.15);
}

.focus-icon-wrap i {
    font-size: 1.6rem;
    color: var(--accent, var(--blue-deep));
}

.focus-card-featured .focus-icon-wrap i {
    color: var(--white);
}

.focus-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.focus-card > p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.focus-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.focus-list li {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    padding-left: 16px;
    position: relative;
}

.focus-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.focus-list li:last-child {
    border-bottom: none;
}

/* =============================================
   HEALTHY CHILD SPOTLIGHT
   ============================================= */

.spotlight-section {
    background: linear-gradient(135deg, #0A1FBD 0%, #0A2570 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.spotlight-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(224, 151, 20, 0.07);
    pointer-events: none;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
    align-items: center;
}

.spotlight-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.spotlight-body {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    margin-bottom: 16px;
}

.spotlight-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.spotlight-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.sp-img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.sp-img-1 {
    grid-column: 1 / -1;
    height: 220px;
}

.sp-img-2 {
    height: 160px;
}

.sp-img-3 {
    height: 160px;
}

/* =============================================
   GALLERY
   ============================================= */

.gallery-section {
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
    margin-bottom: 48px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 31, 189, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 1.5rem;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-social-links {
    text-align: center;
}

.gallery-social-links p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 8px;
    transition: var(--transition);
    color: var(--white);
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.facebook:hover {
    background: #1464D0;
    transform: translateY(-2px);
}

.social-btn.youtube {
    background: #FF0000;
}

.social-btn.youtube:hover {
    background: #CC0000;
    transform: translateY(-2px);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* =============================================
   DONATION SECTION
   ============================================= */

.donate-section {
    background: var(--white);
}

.donate-header {
    text-align: center;
    margin-bottom: 64px;
}

.dark-title {
    color: var(--text-dark);
}

.dark-subtitle {
    color: var(--text-muted);
}

.donate-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Donation Card */
.donate-card {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.donate-card-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.donate-card-header i {
    font-size: 2.5rem;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.donate-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.donate-card-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Amount Selector */
.amount-selector {
    margin-bottom: 28px;
}

.amount-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.amount-presets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.amount-btn {
    padding: 12px 8px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-body);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.amount-btn:hover {
    border-color: var(--blue-deep);
    color: var(--blue-deep);
    background: var(--blue-pale);
}

.amount-btn.amount-btn-active {
    border-color: var(--blue-deep);
    background: var(--blue-deep);
    color: var(--white);
}

.amount-custom-wrap {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.amount-custom-wrap:focus-within {
    border-color: var(--blue-deep);
}

.currency-symbol {
    padding: 0 14px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--border-light);
    height: 48px;
    display: flex;
    align-items: center;
}

.custom-amount-input {
    flex: 1;
    height: 48px;
    padding: 0 16px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: transparent;
}

/* Donor Info Form */
.donor-info-form {
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-body);
}

.required {
    color: #EF4444;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    resize: vertical;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue-deep);
    box-shadow: 0 0 0 3px rgba(10, 31, 189, 0.08);
}

/* Payment Methods */
.payment-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.payment-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.payment-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.payment-tab:hover {
    border-color: var(--blue-light);
    color: var(--blue-deep);
}

.payment-tab.active {
    border-color: var(--blue-deep);
    background: var(--blue-deep);
    color: var(--white);
}

.payment-panel {
    display: none;
}

.payment-panel.active {
    display: block;
}

.paystack-info {
    display: flex;
    gap: 12px;
    background: var(--blue-pale);
    border: 1px solid rgba(10, 31, 189, 0.15);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.paystack-info i {
    color: var(--blue-deep);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.paystack-info p {
    font-size: 0.86rem;
    color: var(--text-body);
    line-height: 1.5;
}

.btn-donate-paystack {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    letter-spacing: 0.02em;
    box-shadow: 0 6px 20px rgba(10, 31, 189, 0.35);
    margin-bottom: 12px;
}

.btn-donate-paystack:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(10, 31, 189, 0.45);
}

.btn-donate-paystack i {
    font-size: 1.1rem;
    color: var(--gold-light);
}

.payment-secure-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.payment-secure-note i {
    color: #22C55E;
}

/* Bank Details */
.bank-details-card {
    background: var(--white);
    border: 2px solid var(--blue-pale);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 16px;
}

.bank-details-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.bank-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.bank-info-row:last-child {
    border-bottom: none;
}

.bank-info-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bank-info-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.account-number-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-btn {
    background: var(--blue-pale);
    border: 1px solid rgba(10, 31, 189, 0.2);
    color: var(--blue-deep);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.75rem;
}

.copy-btn:hover {
    background: var(--blue-deep);
    color: var(--white);
}

.transfer-note {
    display: flex;
    gap: 12px;
    background: var(--gold-pale);
    border: 1px solid rgba(224, 151, 20, 0.25);
    border-radius: var(--radius-md);
    padding: 16px;
    align-items: flex-start;
}

.transfer-note i {
    color: var(--gold-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

.transfer-note p {
    font-size: 0.84rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Donate Sidebar */
.donate-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.donate-impact-card {
    background: var(--blue-deep);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    color: var(--white);
}

.donate-impact-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.impact-intro {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.impact-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.impact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.impact-item:last-child {
    border-bottom: none;
}

.impact-amount {
    font-weight: 800;
    color: var(--gold-light);
    font-size: 0.95rem;
    min-width: 80px;
    flex-shrink: 0;
}

.impact-description {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.donate-testimonial {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 0.5;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.donate-testimonial p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-attr {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue-deep);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.donate-videos {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
}

.donate-videos h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.video-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.video-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-body);
    transition: var(--transition);
}

.video-link:hover {
    border-color: var(--blue-deep);
    color: var(--blue-deep);
    background: var(--blue-pale);
}

.video-link i:first-child {
    color: #1877F2;
    font-size: 1rem;
    width: 20px;
}

.video-link-yt i:first-child {
    color: #FF0000;
}

.video-link i:last-child {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Donation Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--border-light);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.modal-close:hover {
    background: var(--blue-deep);
    color: var(--white);
}

.modal-success-icon {
    font-size: 4rem;
    color: #22C55E;
    margin-bottom: 20px;
}

.modal h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.modal p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* =============================================
   GET INVOLVED
   ============================================= */

.involve-section {
    background: var(--off-white);
}

.involve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.involve-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.involve-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.involve-card-featured {
    background: var(--blue-deep);
    border-color: var(--blue-deep);
    transform: scale(1.04);
    box-shadow: var(--shadow-xl);
}

.involve-card-featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.involve-card-featured h3 {
    color: var(--white) !important;
}

.involve-card-featured p {
    color: rgba(255, 255, 255, 0.75) !important;
}

.involve-icon {
    width: 80px;
    height: 80px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.involve-card-featured .involve-icon {
    background: rgba(255, 255, 255, 0.15);
}

.involve-icon i {
    font-size: 1.8rem;
    color: var(--blue-deep);
}

.involve-card-featured .involve-icon i {
    color: var(--gold-light);
}

.involve-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.involve-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* =============================================
   APPROACH SECTION
   ============================================= */

.approach-section {
    background: var(--blue-deep);
    padding: 96px 0;
}

.approach-content {
    text-align: center;
    margin-bottom: 64px;
}

.approach-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.approach-lead {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.approach-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    background: rgba(224, 151, 20, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.pillar-icon i {
    font-size: 1.5rem;
    color: var(--gold-light);
}

.pillar h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--blue-deep);
    font-size: 1rem;
}

.contact-item h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.contact-item a {
    font-size: 0.92rem;
    color: var(--blue-deep);
    font-weight: 500;
    word-break: break-all;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-cta-donate {
    background: var(--gold-pale);
    border: 1px solid rgba(224, 151, 20, 0.25);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}

.contact-cta-donate i {
    font-size: 2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.contact-cta-donate p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 16px;
    font-weight: 500;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--border);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group:last-of-type {
    margin-bottom: 24px;
}

.contact-form .form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 6px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue-deep);
    box-shadow: 0 0 0 3px rgba(10, 31, 189, 0.08);
}

.form-success {
    display: none;
    align-items: center;
    gap: 8px;
    background: #DCFCE7;
    color: #166534;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 12px;
}

.form-success.visible {
    display: flex;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background: #060D52;
    color: rgba(255, 255, 255, 0.75);
}

.footer-top {
    background: rgba(224, 151, 20, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 0;
}

.footer-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(224, 151, 20, 0.4);
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.footer-motto {
    font-size: 0.8rem;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.footer-donate-cta {
    text-align: right;
}

.footer-donate-cta p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
}

.footer-main {
    padding: 64px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.footer-col > p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--white);
}

.footer-social-link.facebook {
    background: rgba(24, 119, 242, 0.2);
    border: 1px solid rgba(24, 119, 242, 0.4);
}

.footer-social-link.facebook:hover {
    background: #1877F2;
}

.footer-social-link.youtube {
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.footer-social-link.youtube:hover {
    background: #FF0000;
}

.footer-email-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 6px;
}

.footer-email {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    word-break: break-all;
    transition: var(--transition);
}

.footer-email:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-tagline {
    font-style: italic;
    color: rgba(255, 255, 255, 0.35) !important;
}

/* =============================================
   BACK TO TOP
   ============================================= */

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--blue-deep);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(10, 31, 189, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    font-size: 0.9rem;
    z-index: 999;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

/* Scroll-reveal utility */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-img-secondary {
        right: 0;
        bottom: -24px;
        width: 180px;
        height: 140px;
    }

    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .donate-grid {
        grid-template-columns: 1fr;
    }

    .donate-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .donate-impact-card {
        grid-column: span 2;
    }

    .involve-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .involve-card-featured {
        transform: scale(1);
    }

    .approach-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--blue-deep);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 32px;
        color: var(--white) !important;
    }

    .nav-donate-btn {
        margin-top: 12px !important;
        font-size: 1.05rem !important;
    }

    .hero-stats {
        gap: 0;
        padding: 20px 24px;
    }

    .stat-item {
        padding: 0 16px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 2;
    }

    .payment-tabs {
        grid-template-columns: 1fr;
    }

    .donate-sidebar {
        grid-template-columns: 1fr;
    }

    .donate-impact-card {
        grid-column: span 1;
    }

    .approach-pillars {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-top-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-donate-cta {
        text-align: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .amount-presets {
        grid-template-columns: repeat(2, 1fr);
    }

    .vm-card {
        padding: 48px 28px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* =============================================
   REDUCED MOTION
   ============================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .ticker-track {
        animation: none;
    }
}
