/* YeQaQe NGO Website Styles */
/* Brand Colors:
   Primary: #193337 (Deep Teal)
   Secondary: #2fc349 (Green)
   Tertiary: #4B8B9E (Ocean Teal)
*/

/* Import Modern Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Women Empowerment Primary Palette - Deep Teal Based */
    --primary-color: #193337;        /* Deep Teal - Strength, wisdom, femininity */
    --secondary-color: #2fc349;      /* Vibrant Green - Growth, life, prosperity */
    --tertiary-color: #4B8B9E;       /* Ocean Teal - Compassion, healing, flow */
    
    /* Complementary Empowerment Colors */
    --empowerment-coral: #E85A4F;    /* Warm Coral - Energy, passion, determination */
    --dignity-plum: #6B4B7D;         /* Deep Plum - Grace, nobility, resilience */
    --hope-teal: #64B6AC;            /* Fresh Mint - Hope, healing, new beginnings */
    
    /* Nature & Growth */
    --earth-green: #88C399;          /* Sage Green - Growth, fertility, life */
    --sunrise-peach: #F4A261;        /* Golden Sunset - Dawn, warmth, optimism */
    --golden-harvest: #E9C46A;       /* Golden Wheat - Abundance, prosperity, achievement */
    
    /* Supporting Sophisticated Tones */
    --dark-color: #0A1E22;           /* Deep Teal Dark - Sophisticated, grounded */
    --gray-color: #5A7878;           /* Teal Gray - Balanced, calm */
    --light-gray: #F0F8F9;           /* Pale Teal White - Pure, clean, hopeful */
    --white: #ffffff;
    
    /* Accent & Highlight Colors */
    --blush-pink: #E8F5F7;           /* Soft Teal Blush - Gentle, feminine */
    --rose-ivory: #F7FBFC;           /* Pale Teal Ivory - Elegant, warm */
    --soft-lilac: #D4E8EB;           /* Soft Teal - Dreamy, inspirational */
    --mint-fresh: #B8E0E5;           /* Soft Mint - Fresh, renewal, clarity */
    
    /* Gradient Definitions */
    --gradient-empowerment: linear-gradient(135deg, #193337 0%, #2fc349 50%, #4B8B9E 100%);
    --gradient-sunrise: linear-gradient(135deg, #F4A261 0%, #E85A4F 100%);
    --gradient-growth: linear-gradient(135deg, #64B6AC 0%, #88C399 100%);
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: 80%;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.3px;
    background: var(--light-gray);
}

/* Soft decorative background accents - Women empowerment inspired */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: transparent;
}

/* Decorative elements throughout the page */
body::after {
    content: '✿ ❋ ✦ ❀ ✿';
    position: fixed;
    top: 50%;
    right: -50px;
    transform: translateY(-50%) rotate(90deg);
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.05;
    letter-spacing: 30px;
    pointer-events: none;
    z-index: -1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
}

p {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    font-weight: 400;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 86, 142, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 86, 142, 0.5);
}

.btn-secondary {
    background: var(--hope-teal);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(77, 184, 179, 0.3);
}

.btn-secondary:hover {
    background: var(--earth-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(77, 184, 179, 0.5);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    color: var(--tertiary-color);
}

/* Header & Navigation */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    overflow: visible;
    margin-bottom: 0;
}

.site-header + section {
    margin-top: 0 !important;
}

/* Topbar */
.topbar {
    background: var(--light-gray);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 14px;
    color: var(--dark-color);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-color);
}

.topbar-left i {
    color: var(--secondary-color);
}

.topbar-left a {
    color: var(--dark-color);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-right a {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary-color);
    transition: var(--transition);
}

.topbar-right a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.navbar {
    padding: 6px 0;
    overflow: visible;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.navbar-brand {
    background: var(--white);
    padding: 15px 25px;
    border-radius: 25px 30px 30px 30px;
    box-shadow: 0 12px 35px rgba(212, 86, 142, 0.2);
    border: 2px solid rgba(212, 86, 142, 0.2);
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    overflow: visible;
    margin: 0 0 -60px 0;
    z-index: 10;
}

.navbar-brand::before {
    content: '✿';
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.1;
}

.logo-img {
    height: 120px;
    width: auto;
    display: block;
}

.navbar-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Hide mobile-only elements on desktop */
.navbar-backdrop {
    display: none;
}

.navbar-menu .mobile-menu-header {
    display: none;
}

.navbar-menu .nav-link i {
    display: none;
}

.navbar-menu .nav-link span {
    display: inline;
}

/* Desktop navigation link styles */
.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* Ensure desktop nav links don't use flex layout */
.navbar-menu .nav-link {
    display: inline-block;
    border-left: none;
    gap: 0;
}

.navbar-menu .nav-link span {
    display: inline;
}

/* Desktop navbar menu items */
.navbar-menu li {
    display: inline-flex;
    align-items: center;
    width: auto;
    border-bottom: none;
    opacity: 1;
    transform: none;
    transition: none;
    vertical-align: middle;
}

/* Ensure donate button is centered in its container */
.navbar-menu li > .nav-donate {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.navbar-menu li.mobile-menu-header {
    display: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-donate {
    background: linear-gradient(135deg, #d4568e 0%, #c17817 50%, #e74c3c 100%);
    color: var(--white) !important;
    min-height: 44px;
    min-width: 120px;
    height: 44px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(212, 86, 142, 0.4);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    margin: 0;
    vertical-align: middle;
    padding: 0 20px;
}

.nav-donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.nav-donate:hover::before {
    left: 100%;
}

.nav-donate::after {
    display: none;
}

.nav-donate:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #d4568e 50%, #c17817 100%);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 10px 30px rgba(212, 86, 142, 0.6), 0 0 20px rgba(212, 86, 142, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.nav-donate:active {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 86, 142, 0.5);
}

.nav-donate i {
    animation: heartbeat 1.5s ease-in-out infinite;
    display: inline-block !important;
    font-size: 16px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.nav-donate:hover i {
    animation: heartbeat 0.8s ease-in-out infinite;
    transform: scale(1.2);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.nav-donate span {
    display: inline-block;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
}

@keyframes heartbeat {
    0%, 100% { 
        transform: scale(1); 
    }
    25% { 
        transform: scale(1.15); 
    }
    50% { 
        transform: scale(1); 
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(212, 86, 142, 0.4), 0 0 0 0 rgba(212, 86, 142, 0.7);
    }
    50% {
        box-shadow: 0 6px 20px rgba(212, 86, 142, 0.4), 0 0 0 8px rgba(212, 86, 142, 0);
    }
}

.nav-admin {
    color: var(--secondary-color);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

/* Page Intro Section */
.page-intro {
    padding: 80px 0 60px;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.page-intro::before {
    content: '✿';
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.05;
}

.page-intro::after {
    content: '❀';
    position: absolute;
    bottom: 30px;
    left: 50px;
    font-size: 6rem;
    color: var(--dignity-plum);
    opacity: 0.05;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

section:first-of-type {
    padding-top: 0;
}

.hero-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body > .hero-section {
    margin-top: 0 !important;
}

.site-header + .hero-section {
    margin-top: 0 !important;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-header::before {
    content: '✿';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    color: var(--primary-color);
    opacity: 0.6;
}

.section-header h1 {
    font-size: 3.2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-header h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-top: 20px;
    font-weight: 400;
}

.section-divider {
    display: none;
}

/* Landing: Intro */
.landing-intro {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.landing-intro::before {
    content: '';
    position: absolute;
    inset: -20% -10% auto auto;
    width: 540px;
    height: 540px;
    background: transparent;
    border-radius: 50%;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-copy .eyebrow {
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 14px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.intro-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.intro-subtitle {
    color: var(--gray-color);
    font-size: 1.15rem;
    margin-bottom: 26px;
}

.intro-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.intro-meta {
    display: flex;
    gap: 18px;
    margin-top: 18px;
    color: var(--dark-color);
    opacity: 0.8;
    flex-wrap: wrap;
}

.intro-meta span { display: inline-flex; align-items: center; gap: 8px; }

.intro-visual .intro-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border: 1px solid rgba(193, 120, 23, 0.15);
    overflow: hidden;
    position: relative;
}

.intro-visual .intro-card img { display: block; width: 100%; height: auto; }

.intro-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Landing: Impact Stats */
.impact-stats {
    background: var(--light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(193, 120, 23, 0.15);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.stat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.10); }

.stat-icon {
    width: 56px; height: 56px; flex-shrink: 0;
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--white);
    background: var(--primary-color);
    box-shadow: 0 10px 24px rgba(193, 120, 23, 0.25);
}

.stat-info h3 { font-size: 1.35rem; margin-bottom: 6px; }
.stat-info p  { color: var(--gray-color); font-size: 0.98rem; }

/* Landing: Pillars */
.pillars { background: var(--white); }

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    border: 1px solid rgba(193, 120, 23, 0.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.pillar-card:hover { transform: translateY(-8px); box-shadow: 0 18px 46px rgba(0,0,0,0.10); }
.pillar-card i { font-size: 2rem; color: var(--primary-color); margin-bottom: 12px; }
.pillar-card h3 { margin-bottom: 10px; }
.pillar-card p  { color: var(--gray-color); }

/* ============================= */
/* DONATION PAGE STYLES */
/* ============================= */

/* Donation Hero */
.donation-hero {
    background: var(--primary-color);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.donation-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: transparent;
    border-radius: 50%;
}

.donation-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.donation-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Impact Section */
.donation-impact {
    padding: 80px 0;
    background: var(--light-gray);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.impact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(193, 120, 23, 0.2);
    border-color: var(--primary-color);
}

.impact-card.featured {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.impact-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.impact-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.impact-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.impact-card.featured .impact-amount {
    color: var(--white);
}

.impact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.impact-card.featured .impact-icon {
    background: rgba(255, 255, 255, 0.2);
}

.impact-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.impact-card.featured h3 {
    color: var(--white);
}

.impact-card p {
    color: var(--gray-color);
    line-height: 1.7;
}

.impact-card.featured p {
    color: rgba(255, 255, 255, 0.95);
}

/* Donation Form Section */
.donation-form-section {
    padding: 80px 0;
}

.donation-form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.donation-form-wrapper h2 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 2rem;
}

/* Donation Type Selector */
.donation-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.donation-type-option {
    cursor: pointer;
}

.donation-type-option input[type="radio"] {
    display: none;
}

.option-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border: 2px solid rgba(193, 120, 23, 0.2);
    border-radius: 12px;
    background: var(--white);
    transition: var(--transition);
    font-weight: 600;
}

.option-label i {
    font-size: 2rem;
    color: var(--primary-color);
}

.donation-type-option input[type="radio"]:checked + .option-label {
    border-color: var(--primary-color);
    background: rgba(193, 120, 23, 0.05);
}

.donation-type-option:hover .option-label {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Amount Buttons */
.amount-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.amount-btn {
    padding: 15px;
    border: 2px solid rgba(193, 120, 23, 0.2);
    background: var(--white);
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
}

.amount-btn:hover,
.amount-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Button Large */
.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 10px;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.form-note i {
    color: var(--secondary-color);
}

/* Donation Sidebar */
.donation-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: var(--white);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(193, 120, 23, 0.1);
}

.sidebar-card h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.sidebar-card h3 i {
    color: var(--primary-color);
}

/* Why Donate List */
.why-donate-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-donate-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.why-donate-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.why-donate-list strong {
    color: var(--primary-color);
}

/* Other Ways */
.other-ways {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.way-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.way-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.way-item strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.way-item p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin: 0;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
}

/* Donation Testimonial */
.donation-testimonial {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-content blockquote {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--dark-color);
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--gray-color);
}

/* ============================= */
/* DONATION CONFIRMATION PAGE */
/* ============================= */

.donation-confirm-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.confirm-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.confirm-header {
    text-align: center;
    margin-bottom: 50px;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    animation: scaleIn 0.5s ease-out;
}

.success-icon.verified {
    background: var(--primary-color);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.confirm-header h1 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.confirm-header p {
    font-size: 1.2rem;
    color: var(--gray-color);
}

.donation-summary {
    background: var(--white);
    padding: 35px;
    border-radius: 18px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(193, 120, 23, 0.1);
}

.donation-summary h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 10px;
}

.summary-item .label {
    color: var(--gray-color);
    font-weight: 500;
}

.summary-item .value {
    color: var(--dark-color);
    font-weight: 600;
}

.amount-value {
    color: var(--primary-color) !important;
    font-size: 1.3rem;
}

.payment-steps {
    background: var(--white);
    padding: 35px;
    border-radius: 18px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.payment-steps h3 {
    color: var(--dark-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    text-align: center;
    padding: 25px 15px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(193, 120, 23, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.step-content h4 {
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.payment-options-section {
    margin-bottom: 40px;
}

.payment-options-section h3 {
    color: var(--dark-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
}

.payment-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.payment-option-card {
    background: var(--white);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: var(--transition);
}

.payment-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.telebirr-card {
    border-color: rgba(255, 100, 0, 0.2);
}

.telebirr-card:hover {
    border-color: #ff6400;
}

.cbe-card {
    border-color: rgba(0, 102, 188, 0.2);
}

.cbe-card:hover {
    border-color: #0066bc;
}

.mpesa-card {
    border-color: rgba(0, 160, 0, 0.2);
}

.mpesa-card:hover {
    border-color: #00a000;
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.payment-logo {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.payment-header h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin: 0;
}

.payment-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.detail-label {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.detail-value {
    color: var(--dark-color);
    font-weight: 600;
}

.phone-number {
    font-size: 1.1rem;
    color: var(--primary-color) !important;
}

.copy-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--empowerment-coral);
    transform: translateY(-2px);
}

.copy-btn.copied {
    background: var(--secondary-color);
}

.upload-proof-section {
    background: var(--white);
    padding: 35px;
    border-radius: 18px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.upload-proof-section h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-description {
    color: var(--gray-color);
    margin-bottom: 30px;
}

.proof-form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(193, 120, 23, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: var(--transition);
}

.proof-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(193, 120, 23, 0.1);
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-display {
    border: 2px dashed rgba(193, 120, 23, 0.3);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    background: var(--light-gray);
    transition: var(--transition);
}

.file-upload-display:hover {
    border-color: var(--primary-color);
    background: rgba(193, 120, 23, 0.05);
}

.file-upload-display i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.file-upload-display p {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.file-upload-display span {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.help-section {
    margin-top: 40px;
}

.help-card {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(193, 120, 23, 0.1);
}

.help-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.help-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.help-contacts {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.help-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.help-contact:hover {
    background: var(--empowerment-coral);
    transform: translateY(-2px);
}

.verification-message {
    background: var(--white);
    padding: 50px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.message-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(45, 134, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.verification-message h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.reference-text {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
    color: var(--gray-color);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.error-state {
    background: var(--white);
    padding: 60px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.error-state i {
    font-size: 4rem;
    color: #dc3545;
    margin-bottom: 25px;
}

.error-state h2 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

/* Responsive Donation Confirm */
@media (max-width: 992px) {
    .payment-options-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .help-contacts {
        flex-direction: column;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
}

/* Responsive: Landing Components */
@media (max-width: 992px) {
    .intro-grid { grid-template-columns: 1fr; gap: 30px; }
    .intro-title { font-size: 2.2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pillar-grid { grid-template-columns: 1fr; }
    
    /* Donation Responsive */
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .donation-form-grid { grid-template-columns: 1fr; }
    .donation-hero h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    /* Donation Mobile */
    .donation-hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .impact-grid { grid-template-columns: 1fr; }
    .donation-form-grid { grid-template-columns: 1fr; }
    .donation-type-selector { grid-template-columns: 1fr; }
    .amount-buttons { grid-template-columns: repeat(3, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .testimonial-content blockquote { font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .intro-actions { flex-direction: column; align-items: stretch; }
    .stat-card { padding: 20px; }
    
    /* Donation Extra Small */
    .amount-buttons { grid-template-columns: repeat(2, 1fr); }
    .impact-card { padding: 25px; }
    .impact-amount { font-size: 2rem; }
}

/* Mission Statement */
.mission-statement {
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(193, 120, 23, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.mission-statement::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 134, 89, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.mission-content {
    position: relative;
    z-index: 1;
}

.mission-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--dark-color);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    font-weight: 400;
    padding: 45px 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(193, 120, 23, 0.2);
    box-shadow: 0 15px 45px rgba(193, 120, 23, 0.12), 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.mission-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(193, 120, 23, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
}

.mission-text::before {
    content: '"';
    font-size: 4rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    opacity: 0.25;
    position: absolute;
    top: 10px;
    left: 20px;
    font-weight: 900;
}

.mission-text::after {
    content: '"';
    font-size: 4rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    opacity: 0.25;
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-weight: 900;
}

/* Focus Areas */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.focus-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08), 0 3px 10px rgba(0,0,0,0.03);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(193, 120, 23, 0.12);
}

.focus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(193, 120, 23, 0.08) 0%, transparent 70%);
    transition: var(--transition);
}

.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(193, 120, 23, 0.2), 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.focus-card:hover::before {
    top: -30%;
    right: -30%;
}

.focus-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--empowerment-coral), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(193, 120, 23, 0.35);
    position: relative;
}

.focus-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--empowerment-coral);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.focus-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.focus-card p {
    color: var(--gray-color);
    line-height: 1.8;
    font-size: 15px;
}

/* Programs */
.programs {
    background: var(--light-gray);
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.program-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 3px 10px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid rgba(193, 120, 23, 0.1);
    position: relative;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
}

@media (max-width: 768px) {
    .program-card {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .programs-grid .program-card,
    section .programs-grid .program-card {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Ensure program cards are full width on programs.php page */
    section .programs-grid {
        width: calc(100% + 30px) !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
}

.program-card::after {
    content: '✿';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(193, 120, 23, 0.2), 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.program-card:hover::after {
    opacity: 0.6;
}

.program-image {
    height: 100%;
    min-height: 250px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .program-image {
        height: 200px;
        min-height: 200px;
    }
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: 30px;
}

.program-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.program-content h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.program-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

/* Program Description Truncation */
.program-description-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.program-description-truncated {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6;
    max-height: 4.8em; /* 3 lines * 1.6 line-height */
    transition: max-height 0.4s ease;
}

.program-description-truncated.expanded {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    -webkit-box-orient: unset;
    max-height: 2000px; /* Large enough for most content */
    overflow: visible;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    margin-top: 5px;
    text-decoration: underline;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more-btn:hover {
    color: var(--secondary-color);
}

.read-more-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.read-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Success Stories */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08), 0 3px 10px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid rgba(193, 120, 23, 0.1);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(193, 120, 23, 0.15), 0 6px 15px rgba(0,0,0,0.1);
}

.story-image {
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 30px;
}

.story-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.story-location {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* News */
.latest-news {
    background: var(--light-gray);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08), 0 3px 10px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid rgba(212, 86, 142, 0.1);
    display: grid;
    grid-template-columns: 400px 1fr;
    align-items: stretch;
    width: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(193, 120, 23, 0.15), 0 6px 15px rgba(0,0,0,0.1);
}

.news-image {
    height: 100%;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 28px 28px;
}

.news-meta {
    display: flex;
    gap: 20px;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-content h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.news-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

/* CTA Section */
.cta {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Section - Removed but keeping styles for potential future use */
.hero,
.page-header {
    display: none;
}

/* About Page */
.about-intro {
    padding: 80px 0;
}

.about-intro-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.about-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 20px;
}

/* Objectives */
.objectives {
    background: var(--light-gray);
}

.objectives-list {
    max-width: 1000px;
    margin: 0 auto;
}

.objective-item {
    display: flex;
    gap: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.objective-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.objective-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    min-width: 80px;
}

.objective-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.objective-content p {
    color: var(--gray-color);
    line-height: 1.8;
}

/* Team */
.team {
    padding: 80px 0;
}

/* Team Grid - Default styles for non-horizontal scroll grids */
.team-grid:not(.team-row) {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Team Row - Horizontal scroll layout (overrides grid) */
.team-row,
.team-grid.team-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    grid-template-columns: none !important;
}

.team-member {
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-color);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
}

/* Vision & Mission */
.vision-mission {
    background: var(--light-gray);
    padding: 80px 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.vm-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.vm-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.vm-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.vm-card p {
    color: var(--gray-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Initiatives */
.initiative-section {
    padding: 80px 0;
}

.initiative-section.alt-bg {
    background: var(--light-gray);
}

.initiative-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.initiative-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.initiative-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.initiative-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 30px;
    text-align: left;
}

.initiative-features {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.feature-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--gray-color);
    margin: 0;
    font-size: 1rem;
}

.initiative-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.pillar-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pillar-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.pillar-card p {
    color: var(--gray-color);
    font-size: 1rem;
    text-align: center;
}

.support-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.support-card {
    background: var(--primary-color);
    color: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.support-card:hover {
    background: var(--tertiary-color);
    transform: translateY(-5px);
}

.support-card h4 {
    margin-bottom: 10px;
}

.recognition-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
}

.benefit-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: var(--dark-color);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-section:first-of-type {
    padding-top: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    color: var(--dark-color);
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-wrapper h2::after,
.contact-info-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.required {
    color: #dc3545;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(193, 120, 23, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(193, 120, 23, 0.1);
    background: rgba(255, 255, 255, 1);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--gray-color);
}

.contact-details a {
    color: var(--primary-color);
}

.social-links-contact {
    margin-top: 40px;
}

.social-links-contact h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.office-hours {
    margin-top: 40px;
}

.office-hours h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.office-hours p {
    color: var(--gray-color);
    margin-bottom: 10px;
}

/* Gallery */
.gallery-filters {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    margin: 5px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    height: 320px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08), 0 3px 10px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid rgba(193, 120, 23, 0.1);
}

.gallery-item:hover {
    box-shadow: 0 15px 40px rgba(193, 120, 23, 0.15), 0 6px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-info {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.gallery-info h3 {
    margin-bottom: 10px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-btn,
.pagination-number {
    padding: 10px 15px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.pagination-btn:hover,
.pagination-number:hover {
    background: var(--primary-color);
    color: var(--white);
}

.pagination-current {
    padding: 10px 15px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
}

/* No Content */
.no-content {
    text-align: center;
    padding: 80px 20px;
}

.no-content i {
    font-size: 5rem;
    color: var(--gray-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.no-content p {
    font-size: 1.2rem;
    color: var(--gray-color);
}

/* Footer */
.site-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 0 0 25px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

/* Footer Mottos Responsive - Left Aligned on All Devices */
.site-footer > div:first-child > .container > div {
    justify-content: flex-start !important;
}

.site-footer > div:first-child > .container > div > div[style*="display: flex"] > div[style*="text-align: left"] {
    text-align: left !important;
}

.site-footer > div:first-child > .container > div > div[style*="display: flex"] > div[style*="text-align: left"] > div {
    text-align: left !important;
}

@media (min-width: 769px) {
    .motto-divider {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .site-footer > div:first-child {
        padding: 20px 0 !important;
    }
    
    .site-footer > div:first-child > .container > div {
        gap: 30px !important;
        justify-content: flex-start !important;
    }
    
    .site-footer > div:first-child > .container > div > div[style*="display: flex"] {
        justify-content: flex-start !important;
    }
    
    .site-footer > div:first-child > .container > div > div[style*="display: flex"] > div:first-child {
        width: 40px !important;
        height: 40px !important;
    }
    
    .site-footer > div:first-child > .container > div > div[style*="display: flex"] > div:first-child i {
        font-size: 1.2rem !important;
    }
    
    .site-footer > div:first-child > .container > div > div > div > div:first-child {
        font-size: 1.4rem !important;
        text-align: left !important;
    }
    
    .site-footer > div:first-child > .container > div > div > div > div:last-child {
        font-size: 0.85rem !important;
        text-align: left !important;
    }
}

@media (max-width: 480px) {
    .site-footer > div:first-child {
        padding: 15px 0 !important;
    }
    
    .site-footer > div:first-child > .container > div {
        gap: 20px !important;
        justify-content: flex-start !important;
    }
    
    .site-footer > div:first-child > .container > div > div[style*="display: flex"] {
        gap: 10px !important;
        justify-content: flex-start !important;
    }
    
    .site-footer > div:first-child > .container > div > div > div > div:first-child {
        font-size: 1.2rem !important;
        text-align: left !important;
    }
    
    .site-footer > div:first-child > .container > div > div > div > div:last-child {
        font-size: 0.75rem !important;
        text-align: left !important;
    }
}

/* Removed decorative divider */

.site-footer > .container {
    padding-top: 70px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--tertiary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-info i {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

.footer-bottom a {
    color: var(--tertiary-color);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .focus-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Team grid - only apply to non-horizontal scroll grids */
    .team-grid:not(.team-row) {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Team row - maintain horizontal scroll on mobile */
    .team-row,
    .team-grid.team-row {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        grid-template-columns: none !important;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card {
        grid-template-columns: 1fr;
    }
    
    .news-image {
        height: 250px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .initiative-pillars {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .navbar-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Topbar */
    .topbar { font-size: 13px; }
    .topbar .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 6px 15px;
        flex-wrap: nowrap;
    }
    .topbar .container > * { min-width: 0; }
    .topbar-left { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .topbar-left i { margin-right: 4px; }
    .topbar-right { gap: 8px; flex-shrink: 0; }
    .topbar-right a { width: 24px; height: 24px; }

    /* Base Layout */
    body {
        font-size: 16px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    section:first-of-type {
        padding-top: 40px;
        margin-top: 60px;
    }
    
    /* Navigation */
    .navbar-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
        flex-direction: column;
        padding: 80px 0 30px 0;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 30px rgba(0,0,0,0.15);
        z-index: 1000;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    /* Mobile Menu Backdrop */
    .navbar-backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
        pointer-events: none;
        backdrop-filter: blur(2px);
    }
    
    .navbar-backdrop.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    
    /* Show mobile menu header on mobile */
    .navbar-menu .mobile-menu-header {
        display: block;
    }
    
    /* Show icons in mobile menu */
    .navbar-menu .nav-link i {
        display: inline-block;
    }
    
    /* Mobile menu uses flex layout */
    .navbar-menu .nav-link {
        display: flex !important;
    }
    
    .navbar-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(25, 51, 55, 0.08);
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .navbar-menu li.mobile-menu-header {
        border-bottom: none;
        opacity: 0;
        transform: translateY(-20px);
    }
    
    .navbar-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .navbar-menu.active li.mobile-menu-header {
        transform: translateY(0);
        transition-delay: 0s;
    }
    
    .navbar-menu.active li:nth-child(2) { transition-delay: 0.1s; }
    .navbar-menu.active li:nth-child(3) { transition-delay: 0.15s; }
    .navbar-menu.active li:nth-child(4) { transition-delay: 0.2s; }
    .navbar-menu.active li:nth-child(5) { transition-delay: 0.25s; }
    .navbar-menu.active li:nth-child(6) { transition-delay: 0.3s; }
    .navbar-menu.active li:nth-child(7) { transition-delay: 0.35s; }
    .navbar-menu.active li:nth-child(8) { transition-delay: 0.4s; }
    .navbar-menu.active li:nth-child(9) { transition-delay: 0.45s; }
    .navbar-menu.active li:nth-child(10) { transition-delay: 0.5s; }
    
    .navbar-menu .nav-link {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 18px 30px;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--dark-color);
        transition: all 0.3s ease;
        position: relative;
        border-left: 4px solid transparent;
    }
    
    .navbar-menu .nav-link i {
        width: 24px;
        text-align: center;
        font-size: 1.2rem;
        color: var(--primary-color);
        transition: all 0.3s ease;
    }
    
    .navbar-menu .nav-link span {
        flex: 1;
    }
    
    .navbar-menu .nav-link:hover,
    .navbar-menu .nav-link:active {
        background: rgba(25, 51, 55, 0.05);
        color: var(--primary-color);
        border-left-color: var(--primary-color);
        padding-left: 35px;
    }
    
    .navbar-menu .nav-link:hover i,
    .navbar-menu .nav-link:active i {
        transform: scale(1.2);
        color: var(--secondary-color);
    }
    
    .navbar-menu .nav-link::after {
        display: none;
    }
    
    .navbar-menu .nav-donate {
        background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
        color: var(--white) !important;
        margin: 20px 30px;
        padding: 15px 25px;
        border-radius: 12px;
        justify-content: center;
        border-left: none;
        box-shadow: 0 4px 15px rgba(47, 195, 73, 0.3);
        text-transform: none;
        font-size: 16px;
    }
    
    .navbar-menu .nav-donate::before {
        display: none;
    }
    
    .navbar-menu .nav-donate i {
        color: var(--white) !important;
    }
    
    .navbar-menu .nav-donate:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(47, 195, 73, 0.4);
        padding-left: 25px;
    }
    
    .navbar-menu .nav-donate:hover i {
        transform: scale(1.2);
        animation: heartbeat 1.5s ease-in-out infinite;
    }
    
    .navbar-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
        background: transparent;
        border: none;
        padding: 8px;
        cursor: pointer;
        flex-direction: column;
        gap: 6px;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
    }
    
    .navbar-toggle span {
        width: 28px;
        height: 3px;
        background: var(--dark-color);
        border-radius: 3px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }
    
    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(9px);
        background: var(--primary-color);
    }
    
    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-9px);
        background: var(--primary-color);
    }

    .logo-img {
        height: 60px;
    }
    
    .navbar-brand {
        padding: 10px 18px;
        border-radius: 15px 20px 20px 20px;
    }
    
    .page-intro {
        padding: 60px 0 50px;
        margin-top: 40px;
    }
    
    .section-header h1 {
        font-size: 2.2rem;
    }
    
    /* Grids */
    .focus-grid,
    .programs-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        width: 100% !important;
        margin-left: 0;
        margin-right: 0;
    }
    
    .program-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-left: 0;
        padding-right: 0;
    }
    
    .programs .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .programs-grid {
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px) !important;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    /* Ensure programs section cards are full width on mobile */
    section .programs-grid .program-card {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .stories-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Team grid - only apply to non-horizontal scroll grids */
    .team-grid:not(.team-row) {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Team row - maintain horizontal scroll on mobile */
    .team-row,
    .team-grid.team-row {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        grid-template-columns: none !important;
        display: flex !important;
    }
    
    /* News stays full width */
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card {
        grid-template-columns: 1fr;
    }
    
    .news-image {
        height: 220px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form input,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Vision & Mission */
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .vm-card {
        padding: 30px 20px;
    }
    
    /* Team Grid - Bootstrap Override Protection */
    #team .team-row,
    #team .team-grid.team-row,
    #associates .team-row,
    #associates .team-grid.team-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        grid-template-columns: none !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
    }
    
    #team .team-card,
    #associates .team-card {
        display: block !important;
        flex: 0 0 auto !important;
    }
    
    /* Objectives */
    .objective-item {
        flex-direction: column;
        padding: 20px;
    }
    
    .objective-number {
        font-size: 2rem;
        min-width: auto;
        margin-bottom: 10px;
    }
    
    /* Sections */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    /* Table Responsive */
    .data-table {
        overflow-x: auto;
    }
    
    .data-table table {
        min-width: 600px;
    }
    
    /* Initiative Features */
    .initiative-features,
    .support-areas,
    .recognition-benefits {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Admin Panel */
    .admin-sidebar {
        width: 70px;
    }
    
    .admin-main {
        margin-left: 70px;
    }
    
    .sidebar-header p,
    .menu-item span,
    .sidebar-footer span {
        display: none;
    }
    
    .admin-content {
        padding: 20px 15px;
    }
    
    .user-info {
        display: none;
    }
    
    .topbar-right {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    /* Typography */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    /* Cards & Content */
    .focus-card,
    .program-card,
    .story-card {
        padding: 20px;
    }
    
    .news-card {
        padding: 0;
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-image {
        height: 200px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .focus-icon,
    .vm-icon,
    .initiative-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Mission Text */
    .mission-text {
        font-size: 1rem;
    }
    
    /* Objectives */
    .objective-item {
        padding: 15px;
    }
    
    .objective-content h3 {
        font-size: 1.1rem;
    }
    
    /* Team */
    .team-image {
        width: 150px;
        height: 150px;
    }
    
    /* Initiative Content */
    .initiative-content h2 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    /* News Meta */
    .news-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    /* Pagination */
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .pagination-btn,
    .pagination-number,
    .pagination-current {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    /* Gallery */
    .gallery-filters {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .page-intro {
        padding: 50px 0 40px;
        margin-top: 50px;
    }
    
    .section-header h1 {
        font-size: 1.8rem;
    }
    
    /* Stats cards */
    .stat-card {
        padding: 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-info h3 {
        font-size: 1.5rem;
    }
    
    /* Admin Mobile */
    .admin-form {
        padding: 20px 15px;
    }
    
    .page-title h1 {
        font-size: 1.5rem;
    }
    
    .recent-item {
        flex-direction: column;
        text-align: center;
    }
    
    .recent-icon {
        margin: 0 auto;
    }
}

@media (max-width: 375px) {
    /* Extra small devices */
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .navbar-brand .logo-text {
        font-size: 20px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .focus-card,
    .program-card,
    .story-card,
    .news-card {
        padding: 15px;
    }
}

/* ============================= */
/* About: Origin Story Components */
/* ============================= */
.origin-story {
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.origin-story::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(193, 120, 23, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.origin-story::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 134, 89, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.origin-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.origin-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(193, 120, 23, 0.15);
    box-shadow: 0 15px 40px rgba(193, 120, 23, 0.1);
}

.origin-content h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
}

.origin-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.origin-content p {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.origin-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.pull-quote {
    position: relative;
    padding: 30px 35px;
    margin: 35px 0;
    background: var(--white);
    border-left: 5px solid var(--empowerment-coral);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(230, 115, 80, 0.15);
    transform: translateX(10px);
}

.pull-quote::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--empowerment-coral);
    border-radius: 50%;
    opacity: 0.3;
}

.pull-quote i {
    color: var(--empowerment-coral);
    margin-right: 12px;
    font-size: 1.2rem;
}

.pull-quote p {
    margin: 0;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.6;
}

.origin-meta {
    display: grid;
    gap: 25px;
}

.meta-card {
    background: var(--white);
    border: 1px solid rgba(193, 120, 23, 0.2);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 12px 35px rgba(193, 120, 23, 0.12);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.meta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.meta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(193, 120, 23, 0.2);
}

.meta-card.subtle {
    background: var(--white);
    border-color: rgba(230, 115, 80, 0.2);
}

.meta-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-card h4::before {
    content: '✦';
    color: var(--primary-color);
    font-size: 1.1rem;
}

.meta-card p {
    color: var(--gray-color);
    line-height: 1.7;
    font-size: 1rem;
}

.origin-questions {
    padding-left: 20px;
    margin-top: 10px;
}

.origin-questions li {
    margin-bottom: 12px;
    color: var(--dark-color);
    line-height: 1.6;
    position: relative;
    padding-left: 8px;
}

.origin-questions li::marker {
    color: var(--primary-color);
    font-weight: 600;
}

.origin-questions em {
    color: var(--empowerment-coral);
    font-style: italic;
    font-weight: 500;
}

@media (max-width: 992px) {
    .origin-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

