/* ============================================
   TASI - Ultra Premium Design System (Redesigned)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Core Colors - Deep Forest & Elite Gold */
    --primary: #0A2F1E;
    --primary-light: #164D33;
    --primary-dark: #051A11;
    --accent: #D4AF37;
    --accent-light: #E5C35D;
    --accent-dark: #A68A27;

    /* Semantic Colors */
    --success: #10B981;
    --info: #3B82F6;
    --warning: #F59E0B;
    --error: #EF4444;

    /* Neutral Palette */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --light-gray: #F1F5F9;
    --medium-gray: #64748B;
    --dark-gray: #1E293B;
    --black: #0F172A;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.08);

    /* Shadows - Layered & Natural */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0A2F1E 0%, #164D33 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    --gradient-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    --gradient-mesh: radial-gradient(at 0% 0%, rgba(16, 185, 129, 0.1) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(212, 175, 55, 0.1) 0, transparent 50%),
        radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.1) 0, transparent 50%),
        radial-gradient(at 0% 100%, rgba(212, 175, 55, 0.1) 0, transparent 50%);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Base Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--off-white);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    letter-spacing: -0.02em;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

/* ============================================
   NAVIGATION - Luxury Floating Navbar
   ============================================ */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 12px 32px;
    z-index: 1000;
    transition: all var(--transition-base);
    border-radius: 100px;
}

.navbar.scrolled {
    background: linear-gradient(135deg, #0A2F1E 0%, #164D33 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 2px solid var(--accent);
    box-shadow: 0 8px 32px rgba(10, 47, 30, 0.4);
    top: 16px;
    padding: 10px 32px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.04em;
    margin: 0;
}

.navbar.scrolled .nav-logo h2 {
    color: var(--white);
}

.nav-logo span {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.navbar.scrolled .nav-logo span {
    color: rgba(255, 255, 255, 0.7);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-menu>li>a {
    padding: 10px 20px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 100px;
    transition: all var(--transition-base);
}

.navbar.scrolled .nav-menu>li>a {
    color: rgba(255, 255, 255, 0.9);
}

.nav-menu>li>a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.navbar.scrolled .nav-menu>li>a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent);
}

.nav-menu>li>a.active {
    background: var(--primary);
    color: var(--white);
}

.navbar.scrolled .nav-menu>li>a.active {
    background: var(--accent);
    color: var(--primary-dark);
}

/* Dropdown Menu Styles */
.nav-menu>li {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 1000;
    padding: 10px 0;
    list-style: none;
}

.nav-menu>li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li a {
    display: block;
    padding: 12px 20px;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.nav-dropdown li a:hover {
    background: var(--light-gray);
    color: var(--primary);
    padding-left: 25px;
}

.nav-dropdown li a i {
    margin-right: 10px;
    color: var(--accent);
}

.has-dropdown>a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.has-dropdown:hover>a::after {
    transform: rotate(180deg);
}

.donate-btn {
    background: var(--gradient-gold) !important;
    color: var(--black) !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.donate-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.45) !important;
}

/* ============================================
   HERO SECTION - High Impact
   ============================================ */
.hero {
    min-height: 100vh;
    padding: 180px 0 100px;
    background: var(--primary-dark);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 26, 17, 0.4), rgba(5, 26, 17, 0.7));
    z-index: 1;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    filter: saturate(1.2) contrast(1.1);
}

/* Fallback for video - Enhanced with Ken Burns */
.hero-image-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/site-visuals/tasi-community-hands-empowerment.png');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    filter: saturate(1.1) brightness(0.9);
    animation: kenBurns 20s infinite alternate linear;
    transform-origin: center;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-glass-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, transparent 20%, rgba(5, 26, 17, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    text-align: left;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 0.95;
    font-weight: 800;
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    max-width: 650px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 64px;
}

.btn-primary,
.btn-secondary {
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-bounce);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 24px;
    border-radius: 32px;
    text-align: center;
    transition: all var(--transition-base);
}

.stat:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--accent);
}

.stat h3 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

@media (max-width: 992px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* ============================================
   PAGE HEADERS - Ultra Premium
   ============================================ */
.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 24px 80px;
    position: relative;
    overflow: hidden;
    background: var(--primary-dark);
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    animation: kenBurns 20s infinite alternate linear;
    z-index: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 10%, rgba(5, 26, 17, 0.9) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.page-header>.container>p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.header-stat {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.header-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.header-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Initiative-specific headers */
.environmental-header {
    background: linear-gradient(135deg, #1a4d2e 0%, #2d6a4f 100%);
}

.lng-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.sanitation-header {
    background: linear-gradient(135deg, #7c2d12 0%, #dc2626 100%);
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--black);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ============================================
   CARDS - Ultra Premium
   ============================================ */
.about-card,
.initiative-card,
.impact-item,
.donate-card {
    background: var(--white);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid var(--light-gray);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-card:hover,
.initiative-card:hover,
.donate-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(212, 175, 55, 0.2);
}

.card-icon {
    width: 72px;
    height: 72px;
    background: var(--light-gray);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: all var(--transition-base);
}

.about-card:hover .card-icon {
    background: var(--gradient-gold);
}

.card-icon i {
    font-size: 24px;
    color: var(--primary);
}

.about-card:hover .card-icon i {
    color: var(--black);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.about-card p {
    color: var(--medium-gray);
    font-size: 1rem;
}

/* Initiative Specifics */
.initiative-card {
    padding: 0;
    overflow: hidden;
}

.initiative-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.initiative-body {
    padding: 32px;
}

.initiative-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.initiative-header i {
    font-size: 32px;
    color: var(--accent);
}

.location {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--medium-gray);
    background: var(--light-gray);
    padding: 4px 12px;
    border-radius: 20px;
}

.initiative-activities {
    margin: 24px 0;
}

/* Image Containers - Ultra Premium */
.initiative-card {
    overflow: hidden;
}

.initiative-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-bottom: 32px;
    border-radius: 12px;
}

/* For images that need to bleed to the edges of a card */
.initiative-card .initiative-image-wrapper {
    margin: -40px -40px 32px -40px;
    border-radius: 0;
}

.initiative-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.initiative-card:hover .initiative-image-wrapper img {
    transform: scale(1.1);
}

.image-protection-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 47, 30, 0.8), transparent 60%);
    pointer-events: none;
}

/* Image Collage - Standalone */
.image-collage-premium {
    position: relative;
    padding: 30px;
    height: 480px;
    margin: 20px 0;
}

.collage-img {
    position: absolute;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 10px solid var(--white);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-img.main {
    width: 80%;
    height: 80%;
    z-index: 2;
    top: 0;
    left: 0;
}

.collage-img.secondary {
    width: 60%;
    height: 60%;
    z-index: 3;
    bottom: 0;
    right: 0;
}

.image-collage-premium:hover .collage-img.main {
    transform: translate(-10px, -10px) rotate(-1deg);
}

.image-collage-premium:hover .collage-img.secondary {
    transform: translate(30px, 30px) rotate(2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .image-collage-premium {
        height: 350px;
        padding: 10px;
    }
}

.initiative-activities ul {
    list-style: none;
}

.initiative-activities li {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.initiative-activities li::before {
    content: '→';
    color: var(--accent);
    font-weight: bold;
}

.impact-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 8px;
    margin-top: 8px;
}

/* ============================================
   ABOUT SECTION - Ultra Premium
   ============================================ */
.about {
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.about-card {
    text-align: center;
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* Focus Areas */
.focus-areas {
    text-align: center;
}

.focus-areas h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.focus-item {
    padding: 2rem;
    text-align: center;
}

.focus-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.focus-item h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.focus-item p {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* ============================================
   INITIATIVES SECTION - Ultra Premium
   ============================================ */
.initiatives {
    background: var(--white);
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.initiative-card {
    padding: 0;
    overflow: hidden;
}

.initiative-header {
    padding: 2rem 2rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.initiative-header i {
    font-size: 2.5rem;
    color: var(--primary);
}

.initiative-header h3 {
    font-size: 1.4rem;
    color: var(--primary);
    flex: 1;
}

.location {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.initiative-card>p {
    padding: 0 2rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.initiative-activities {
    padding: 0 2rem;
    margin-bottom: 1.5rem;
}

.initiative-activities h4 {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.initiative-activities ul {
    list-style: none;
}

.initiative-activities li {
    padding: 0.8rem 1rem;
    background: var(--light-gray);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
    border-left: 3px solid var(--primary);
}

.initiative-activities strong {
    color: var(--primary);
    font-weight: 600;
}

.initiative-impact {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    background: var(--light-gray);
}

.impact-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ============================================
   IMPACT SECTION
   ============================================ */
.impact {
    background: var(--primary);
    color: var(--white);
    padding: 100px 0;
    border-radius: 64px;
    margin: 0 40px 100px;
}

.impact h2 {
    color: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.impact-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.impact-number {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Outfit';
    color: var(--accent);
    margin-bottom: 8px;
}

.impact-item h4 {
    color: var(--white);
    margin-bottom: 12px;
}

.impact-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   ORGANIZATION SECTION - Ultra Premium
   ============================================ */
.organization {
    background: var(--light-gray);
}

/* Organization Hierarchical Tree - Exact Structure with Arrows */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    min-width: 1100px;
}

.org-level {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 30px 0;
}

/* Vertical Line: Board to ED with Arrow */
.org-level:has(.board)::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    width: 2px;
    height: 60px;
    background: var(--accent);
}

/* Arrowhead for Board -> ED */
.org-level:has(.board)::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: calc(50% - 6px);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--accent);
    z-index: 3;
}

.ed-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-left: 280px;
    /* Offset to center ED while advisory is on side */
}

/* Advisory Side Branch Line (Flat bar, no arrow as it is advisory) */
.ed-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 2px;
    background: var(--accent);
}

/* Vertical Line: ED to Management Row with Arrow */
.ed-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-140px);
    /* Center under ED */
    width: 2px;
    height: 60px;
    background: var(--accent);
}

/* Arrowhead for ED -> Management Row */
.ed-wrapper .executive::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: calc(50% - 6px);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--accent);
    z-index: 3;
}

.org-node {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    width: 280px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.org-node.board {
    background: var(--white);
    border: 3px double var(--primary);
    text-transform: uppercase;
}

.org-node.executive {
    border: 3px double var(--primary);
}

.org-node.advisory {
    width: 220px;
    border: 2px solid var(--medium-gray);
    font-size: 0.85rem;
}

/* Management Tier */
.management-tier {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    padding-top: 30px;
    width: 100%;
}

/* Horizontal Connector for Managers */
.management-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--accent);
}

.dept-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
}

/* Vertical lines from horizontal bar to managers with Arrow */
.dept-column::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    width: 2px;
    height: 30px;
    background: var(--accent);
}

/* Arrowheads for Manager level */
.dept-column .manager::before {
    content: '';
    position: absolute;
    top: -10px;
    left: calc(50% - 6px);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--accent);
    z-index: 3;
}

/* Vertical connector between Manager and Officer with Arrow */
.dept-column::after {
    content: '';
    position: absolute;
    top: 100px;
    /* Adjust based on manager node height */
    left: 50%;
    width: 2px;
    height: 40px;
    background: var(--accent);
}

/* Arrowhead for Officer level */
.dept-column .officer::before {
    content: '';
    position: absolute;
    top: -10px;
    left: calc(50% - 6px);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--accent);
    z-index: 3;
}

.org-node.manager {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
}

.org-node.manager h4 {
    font-size: 0.9rem;
    color: var(--primary);
    line-height: 1.2;
}

.org-node.officer {
    width: 240px;
    background: var(--light-gray);
    border: 1px solid var(--medium-gray);
}

.org-node.officer p {
    font-weight: 600;
    color: var(--dark-gray);
}

@media (max-width: 992px) {
    .org-chart {
        min-width: auto;
        padding: 0 20px;
        background: transparent;
        position: relative;
    }

    .org-chart::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 300px;
        /* Stop before the last row */
        left: 50%;
        width: 2px;
        background: var(--accent);
        z-index: 1;
        opacity: 0.5;
    }

    .org-level {
        padding: 40px 0;
    }

    .ed-wrapper {
        flex-direction: column;
        padding-left: 0;
        gap: 60px;
        width: 100%;
    }

    /* Remove desktop-specific side branches */
    .ed-wrapper::before,
    .ed-wrapper::after,
    .management-tier::before,
    .dept-column::before,
    .dept-column::after,
    .org-level:has(.board)::before,
    .org-level:has(.board)::after {
        display: none !important;
    }

    .advisory-node-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .org-node.advisory {
        border-style: dashed;
        background: var(--off-white);
    }

    .management-tier {
        flex-direction: column;
        padding-top: 20px;
        gap: 60px;
    }

    .dept-column {
        width: 100%;
        gap: 30px;
    }

    .org-node {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        box-shadow: var(--shadow-lg);
    }

    .org-node.manager {
        height: auto;
        padding: 20px;
    }

    /* Re-add small vertical lines between stacked nodes in same column */
    .dept-column .manager::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: 50%;
        width: 2px;
        height: 30px;
        background: var(--accent);
        opacity: 0.5;
    }
}

/* Offices */
.offices h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2.5rem;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.office-card {
    text-align: center;
}

.office-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.office-card h4 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.office-card p {
    color: var(--medium-gray);
}

/* ============================================
   CONTACT SECTION - Ultra Premium Redesign
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-description {
    font-size: 1.15rem;
    color: var(--medium-gray);
    margin-bottom: 48px;
    line-height: 1.8;
}

.method-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.method-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.method-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.method-icon {
    width: 64px;
    height: 64px;
    background: var(--light-gray);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.method-card:hover .method-icon {
    background: var(--primary);
    color: var(--white);
}

.method-detail h4 {
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.method-detail p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Floating Form Card */
.contact-form-premium {
    position: sticky;
    top: 140px;
}

.form-glass-card {
    background: var(--white);
    padding: 60px;
    border-radius: 32px;
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.form-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient-gold);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.form-header p {
    color: var(--medium-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.floating-group {
    position: relative;
    margin-bottom: 24px;
}

.floating-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
    transition: color 0.3s ease;
}

.floating-group textarea+i {
    top: 25px;
    transform: none;
}

.floating-group input,
.floating-group select,
.floating-group textarea {
    width: 100%;
    padding: 18px 20px 18px 54px;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    background: var(--light-gray);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.floating-group label {
    position: absolute;
    left: 54px;
    top: 18px;
    color: var(--medium-gray);
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-group input:focus,
.floating-group select:focus,
.floating-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(26, 77, 46, 0.05);
}

.floating-group input:focus+label,
.floating-group input:not(:placeholder-shown)+label,
.floating-group textarea:focus+label,
.floating-group textarea:not(:placeholder-shown)+label {
    top: -12px;
    left: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--white);
    padding: 0 8px;
}

.floating-group select {
    appearance: none;
    color: var(--dark-gray);
}

.submit-btn {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Offices Premium Grid */
.floating-group.active label {
    top: -12px;
    left: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--white);
    padding: 0 8px;
}

.floating-group.error input,
.floating-group.error textarea,
.floating-group.error select {
    border-color: #dc2626 !important;
    background: rgba(220, 38, 38, 0.02);
}

.floating-group.error label {
    color: #dc2626 !important;
}

.floating-group.error i {
    color: #dc2626 !important;
}

/* Offices Premium Grid */
.offices-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.office-premium-card {
    height: 500px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: var(--primary-dark);
}

.office-premium-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.office-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s ease;
    opacity: 0.8;
}

.office-premium-card:hover .office-bg {
    transform: scale(1.15);
    opacity: 1;
}

.office-premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 26, 17, 0.95) 10%, transparent 60%);
    z-index: 1;
}

.office-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px;
    z-index: 2;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.office-premium-card:hover .office-content {
    transform: translateY(0);
}

.office-content h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.office-content p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-content p i {
    color: var(--accent);
}

.office-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.office-link:hover {
    background: var(--accent);
    color: var(--primary-dark);
    gap: 15px;
}

.region-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-form-premium {
        position: static;
    }

    .offices-premium-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .offices-premium-grid {
        grid-template-columns: 1fr;
    }

    .form-glass-card {
        padding: 40px 24px;
    }

    .office-premium-card {
        height: 400px;
    }

    .office-content {
        padding: 30px;
    }
}

/* ============================================
   DONATE SECTION - Ultra Premium
   ============================================ */
.donate {
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(45, 106, 79, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.donate-content {
    position: relative;
    z-index: 2;
}

.donate-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.donate-content>p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.donate-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.donate-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    text-align: center;
}

.donate-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.donate-card h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.donate-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* ============================================
   CTA SECTION - Ultra Premium
   ============================================ */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.environmental-cta {
    background: linear-gradient(135deg, #1a4d2e 0%, #2d6a4f 100%);
}

.lng-cta {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.sanitation-cta {
    background: linear-gradient(135deg, #7c2d12 0%, #dc2626 100%);
}

/* ============================================
   FOOTER - Ultra Premium
   ============================================ */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 100px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s var(--transition-smooth);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

/* ============================================
   GALLERY SECTION - Ultra Premium
   ============================================ */
.gallery-section {
    padding: 120px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 320px;
    grid-auto-flow: dense;
    gap: 24px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: var(--light-gray);
    /* Placeholder while loading */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 47, 30, 0.8), transparent 70%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.gallery-overlay p {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ABOUT PAGE SPECIFIC - Ultra Premium
   ============================================ */
.about-content {
    padding: 100px 0;
}

.content-section {
    margin-bottom: 6rem;
}

.content-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.establishment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.establishment-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.5s var(--transition-smooth);
}

.establishment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.establishment-card .year {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.establishment-card h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.establishment-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* VMV Cards */
.vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.vmv-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.vmv-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(26, 77, 46, 0.3);
}

.vmv-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.vmv-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.vmv-card p {
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Work Process */
.work-process {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--transition-smooth);
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(26, 77, 46, 0.3);
}

.step-content h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Focus Areas Grid */
.focus-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.focus-area-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.5s var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.focus-area-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.focus-area-card .focus-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.focus-area-card .focus-icon i {
    font-size: 2rem;
    color: var(--white);
}

.focus-area-card h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.focus-area-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Regions Grid */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.region-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary);
    transition: all 0.4s var(--transition-smooth);
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.region-card h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.region-card p {
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.region-card strong {
    color: var(--dark-gray);
}

/* Approach Section */
.approach-section {
    background: var(--white);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.approach-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.approach-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--medium-gray);
    font-size: 1.05rem;
}

.approach-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-stats .stat-item {
    text-align: center;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.4s var(--transition-smooth);
}

.approach-stats .stat-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.approach-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.approach-stats .stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* ============================================
   INITIATIVE PAGES - Ultra Premium
   ============================================ */
.initiative-overview {
    padding: 100px 0;
    background: var(--light-gray);
}

.overview-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.overview-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--medium-gray);
    font-size: 1.05rem;
}

.overview-highlights,
.lng-facts,
.overview-challenges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item,
.fact-card,
.challenge-item {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.highlight-item:hover,
.fact-card:hover,
.challenge-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.highlight-item i,
.fact-card i,
.challenge-item i {
    font-size: 1.8rem;
    color: var(--primary);
    width: 50px;
    flex-shrink: 0;
}

.highlight-item h4,
.fact-card h4,
.challenge-item h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.3rem;
}

.highlight-item p,
.fact-card p,
.challenge-item p {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Focus Areas Section */
.focus-areas-section {
    padding: 100px 0;
    background: var(--white);
}

.focus-areas-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
}

.focus-content {
    display: grid;
    gap: 4rem;
}

.focus-map,
.mwada-focus,
.location-focus,
.district-overview,
.chali-focus {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 24px;
}

.focus-map h3,
.mwada-focus h3,
.location-focus h3,
.district-overview h3,
.chali-focus h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.region-stats,
.district-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.region-stat,
.district-stat {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 120px;
}

.region-stat .number,
.district-stat .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.region-stat .label,
.district-stat .label {
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Mwada Reasons */
.mwada-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.reason-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--transition-smooth);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.reason-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.reason-card h4 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
}

.reason-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Activities Section */
.activities-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.activities-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
}

.activity-block {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.activity-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(26, 77, 46, 0.3);
}

.activity-icon i {
    font-size: 2rem;
    color: var(--white);
}

.activity-title h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.activity-type {
    display: inline-block;
    background: rgba(26, 77, 46, 0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

.what-we-did h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.what-we-did>p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--medium-gray);
    font-size: 1.05rem;
}

/* Technique Details */
.technique-details,
.fmnr-process,
.training-methodology,
.engagement-methods,
.training-approach {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2rem 0;
}

.technique-details h5,
.fmnr-process h5,
.training-methodology h5,
.engagement-methods h5,
.training-approach h5 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.technique-grid,
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.technique-item,
.method-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.technique-item:hover,
.method-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.method-item {
    text-align: center;
    border-left: none;
    border-top: 4px solid var(--primary);
}

.method-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.method-item h6 {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.method-item p {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.technique-item strong {
    color: var(--primary);
    font-weight: 600;
}

/* Results Box */
.results-box {
    background: rgba(26, 77, 46, 0.08);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border: 1px solid rgba(26, 77, 46, 0.15);
}

.results-box h5 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.results-box ul {
    list-style: none;
}

.results-box li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--dark-gray);
}

.results-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.step .step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h6 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--medium-gray);
}

/* Benefits Grid */
.fmnr-benefits h5,
.benefits-grid h5,
.goals-grid h5 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.benefits-grid,
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefit-item,
.goal-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--transition-smooth);
}

.benefit-item:hover,
.goal-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-item i,
.goal-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-item h6,
.goal-item h6 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.benefit-item p,
.goal-item p {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Challenges Section */
.challenges-section {
    padding: 100px 0;
    background: var(--white);
}

.challenges-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
}

.challenges-content {
    display: grid;
    gap: 3rem;
}

.current-challenge,
.expansion-plans,
.future-techniques {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 24px;
}

.current-challenge h3,
.expansion-plans h3,
.future-techniques h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.challenge-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.challenge-item i {
    font-size: 2rem;
    color: #dc2626;
    flex-shrink: 0;
}

.challenge-text h4 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.challenge-text p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Villages Grid */
.target-villages h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.villages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.village-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--transition-smooth);
    border: 2px solid transparent;
}

.village-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.village-card.completed {
    background: rgba(26, 77, 46, 0.08);
    border-color: var(--primary);
}

.village-card.planned {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--accent);
}

.village-card i {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.village-card.completed i {
    color: var(--primary);
}

.village-card.planned i {
    color: var(--accent);
}

.village-card h5 {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 0.3rem;
}

.village-card span {
    font-size: 0.8rem;
    font-weight: 600;
}

.village-card.completed span {
    color: var(--primary);
}

.village-card.planned span {
    color: #b8860b;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

.funding-needed {
    background: rgba(212, 175, 55, 0.15);
    color: #b8860b;
}

.partnership-status {
    display: inline-block;
    background: rgba(26, 77, 46, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ============================================
   IMPACT PAGE SPECIFIC - Ultra Premium
   ============================================ */
.impact-overview {
    padding: 100px 0;
    background: var(--light-gray);
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.impact-stat-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.5s var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.impact-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(26, 77, 46, 0.3);
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.stat-content .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-content .stat-label {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-content .stat-description {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* Regional Impact */
.regional-impact {
    padding: 100px 0;
    background: var(--white);
}

.regional-impact h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
}

.regions-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.region-impact-card {
    background: var(--light-gray);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s var(--transition-smooth);
}

.region-impact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.region-header {
    background: var(--gradient-primary);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.region-header h3 {
    font-size: 1.5rem;
    color: var(--white);
}

.region-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

.region-content {
    padding: 2rem;
}

.initiative-focus {
    margin-bottom: 1.5rem;
}

.initiative-focus h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.initiative-focus p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.region-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.region-stats .region-stat {
    flex: 1;
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.region-stats .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.region-stats .label {
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.achievements h5 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.achievements ul {
    list-style: none;
}

.achievements li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.achievements li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Initiative Impact Details */
.initiative-impact-details {
    padding: 100px 0;
    background: var(--light-gray);
}

.initiative-impact-details h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
}

.impact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.impact-detail-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s var(--transition-smooth);
}

.impact-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.impact-detail-card.environmental .detail-header {
    background: linear-gradient(135deg, #1a4d2e 0%, #2d6a4f 100%);
}

.impact-detail-card.lng .detail-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.impact-detail-card.sanitation .detail-header {
    background: linear-gradient(135deg, #7c2d12 0%, #dc2626 100%);
}

.detail-header {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-header i {
    font-size: 2rem;
    color: var(--white);
}

.detail-header h3 {
    font-size: 1.3rem;
    color: var(--white);
}

.detail-content {
    padding: 2rem;
}

.impact-metrics {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric {
    flex: 1;
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.3rem;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.impact-description h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.impact-description p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.future-impact {
    background: rgba(26, 77, 46, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.future-impact h5 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.future-impact p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Community Testimonials */
.community-testimonials {
    padding: 100px 0;
    background: var(--white);
}

.community-testimonials h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 24px;
    position: relative;
    transition: all 0.5s var(--transition-smooth);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Future Impact Goals */
.future-impact-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.future-impact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.goals-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 60px;
    bottom: -3rem;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 120px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 20px;
    flex: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.timeline-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* ============================================
   ANIMATIONS - Ultra Premium
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN - Ultra Premium
   ============================================ */
@media (max-width: 1024px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .overview-content {
        grid-template-columns: 1fr;
    }

    .approach-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 0;
        transition: right 0.4s var(--transition-smooth);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu>li {
        width: 100%;
    }

    .nav-menu>li>a {
        display: block;
        padding: 1rem 0;
        color: var(--dark-gray) !important;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
        margin: 0.5rem 0;
        border-radius: 12px;
        display: none;
    }

    .has-dropdown.active .nav-dropdown {
        display: block;
    }

    .nav-dropdown li a {
        padding: 10px 15px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
        margin: 0.5rem 0;
        border-radius: 12px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat {
        padding: 1.5rem 1rem;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .header-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .activity-header {
        flex-direction: column;
        text-align: center;
    }

    .vmv-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-item::before {
        display: none;
    }

    .timeline-marker {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 120px 16px 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat h3 {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 120px 16px 60px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    section {
        padding: 60px 0;
    }

    .about-grid,
    .initiatives-grid,
    .impact-grid,
    .focus-grid {
        grid-template-columns: 1fr;
    }

    .about-card,
    .initiative-card,
    .vmv-card {
        padding: 2rem;
    }

    .activity-block {
        padding: 2rem 1.5rem;
    }

    .technique-grid,
    .methods-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .villages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .impact-metrics {
        flex-direction: column;
    }

    .region-stats {
        flex-direction: column;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 8px 25px rgba(26, 77, 46, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(26, 77, 46, 0.4);
}

/* Loading state */
.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Selection styling */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    transform: translateY(0);
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .stats-glass .about-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .stats-glass .about-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   NEW PREMIUM ADDITIONS
   ============================================ */

.premium-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
}

.section-subtitle {
    display: block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.initiative-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 47, 30, 0.6), transparent);
}

.initiative-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 20px;
    transition: all var(--transition-base);
}

.learn-more:hover {
    color: var(--accent);
    gap: 12px;
}

.stats-glass .stat-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

/* Animations Expansion */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   TEAM MEMBER MODALS - Ultra Premium
   ============================================ */
.team-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 47, 30, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.team-modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 60px;
    border-radius: 32px;
    max-width: 800px;
    width: 90%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.team-modal-close {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 2rem;
    font-weight: 300;
    color: var(--medium-gray);
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-gray);
    transition: all var(--transition-base);
    z-index: 10;
}

.team-modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.team-card {
    transition: all var(--transition-base);
}

.team-card .btn-secondary {
    color: var(--primary) !important;
    background: rgba(10, 47, 30, 0.08) !important;
    border: 1px solid rgba(10, 47, 30, 0.1) !important;
    font-size: 0.9rem !important;
    padding: 10px 24px !important;
}

.team-card .btn-secondary:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
    transform: scale(1.05);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-card button {
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.team-card:hover button {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .team-modal-content {
        margin: 10% auto;
        padding: 40px 30px;
        width: 95%;
    }

    .team-modal-close {
        right: 20px;
        top: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    #modalBody img {
        width: 150px !important;
        height: 150px !important;
    }
}

@media (max-width: 480px) {
    .team-modal-content {
        padding: 30px 20px;
    }

    #modalBody h2 {
        font-size: 1.5rem !important;
    }

    #modalBody p {
        font-size: 0.95rem !important;
    }
}

/* ============================================
   HERO SLIDESHOW - Auto-rotating Background
   ============================================ */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: kenBurns 20s infinite alternate linear;
}

.hero-slide.active {
    opacity: 0.7;
    z-index: 1;
}

/* Ensure hero content stays above slideshow */
.hero .container {
    position: relative;
    z-index: 2;
}

.hero-glass-overlay {
    z-index: 1;
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ============================================ */

/* Tablets and Small Laptops (1024px and below) */
@media (max-width: 1024px) {
    .navbar {
        width: 95%;
        padding: 10px 24px;
    }

    .initiatives-grid,
    .about-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {

    /* Typography */
    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    /* Navigation */
    .navbar {
        top: 12px;
        width: 95%;
        padding: 8px 16px;
    }

    .navbar.scrolled {
        top: 8px;
    }

    .nav-logo img {
        height: 70px !important;
    }

    /* Hero Section */
    .hero {
        min-height: 70vh;
        padding: 140px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem !important;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 1rem !important;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat {
        padding: 24px 16px;
    }

    .stat h3 {
        font-size: 2rem !important;
    }

    /* Page Headers */
    .page-header {
        min-height: 40vh;
        padding: 140px 24px 60px;
    }

    .page-header h1 {
        font-size: 2.2rem !important;
    }

    .page-header p {
        font-size: 1rem !important;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2rem !important;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Cards */
    .about-card,
    .initiative-card,
    .donate-card {
        padding: 24px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .card-icon i {
        font-size: 20px;
    }

    /* Initiatives Grid */
    .initiatives-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .initiative-image-wrapper {
        height: 240px;
    }

    /* Impact Section */
    .impact {
        margin: 0 20px 60px;
        padding: 60px 0;
        border-radius: 32px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .impact-number {
        font-size: 3rem;
    }

    /* About Grid */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Organization Chart - Handled in 992px and 480px media queries */

    /* Contact Form */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-glass-card {
        padding: 40px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        grid-auto-rows: 200px;
    }

    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Activity Blocks */
    .activity-block {
        padding: 24px;
    }

    .activity-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .activity-icon {
        width: 60px;
        height: 60px;
    }

    /* Technique Grid */
    .technique-grid,
    .methods-grid,
    .benefits-grid,
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Overview Content */
    .overview-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Focus Content */
    .focus-content {
        gap: 24px;
    }

    .focus-map,
    .mwada-focus,
    .location-focus,
    .district-overview,
    .chali-focus {
        padding: 24px;
    }

    /* Region Stats */
    .region-stats,
    .district-stats {
        flex-direction: column;
        gap: 12px;
    }

    /* Mwada Reasons */
    .mwada-reasons {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    /* Donate Options */
    .donate-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Premium Badge */
    .premium-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {

    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Typography */
    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    h3 {
        font-size: 1.25rem !important;
    }

    p {
        font-size: 0.95rem;
    }

    /* Navigation */
    .navbar {
        width: 96%;
        padding: 8px 12px;
    }

    .nav-logo img {
        height: 60px !important;
    }

    /* Hero Section */
    .hero {
        min-height: 60vh;
        padding: 120px 0 40px;
    }

    .hero-content h1 {
        font-size: 2rem !important;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 0.95rem !important;
        margin-bottom: 32px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat {
        padding: 20px 16px;
    }

    .stat h3 {
        font-size: 1.75rem !important;
    }

    .stat p {
        font-size: 0.85rem;
    }

    /* Page Headers */
    .page-header {
        min-height: 35vh;
        padding: 120px 16px 40px;
    }

    .page-header h1 {
        font-size: 1.8rem !important;
    }

    /* Sections */
    section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 1.75rem !important;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }

    /* Cards */
    .about-card,
    .initiative-card,
    .donate-card {
        padding: 20px;
        border-radius: 20px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .card-icon i {
        font-size: 18px;
    }

    /* Initiative Cards */
    .initiative-image-wrapper {
        height: 200px;
        margin: -20px -20px 20px -20px;
    }

    .initiative-tag {
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    /* Impact Section */
    .impact {
        margin: 0 16px 40px;
        padding: 40px 0;
        border-radius: 24px;
    }

    .impact-number {
        font-size: 2.5rem;
    }

    /* Stats Glass */
    .stats-glass {
        padding: 60px 0;
    }

    .stat-number {
        font-size: 2.5rem !important;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-section h3 {
        font-size: 1.25rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    /* Organization Chart Mobile Refinement */
    .org-chart::before {
        left: 30px !important;
        /* Move line to the left on small screens */
    }

    .org-node {
        width: calc(100% - 60px) !important;
        margin-left: 60px !important;
        max-width: none !important;
        text-align: left !important;
        padding: 15px 20px !important;
    }

    .node-icon {
        margin-bottom: 10px !important;
    }

    .dept-column .manager::after {
        left: 30px !important;
    }

    .org-node h3,
    .org-node h4 {
        font-size: 1rem !important;
        margin-bottom: 5px !important;
    }

    .org-node p {
        font-size: 0.85rem !important;
    }

    /* Contact Form */
    .form-glass-card {
        padding: 24px 16px;
        border-radius: 24px;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .floating-group input,
    .floating-group select,
    .floating-group textarea {
        padding: 14px 16px 14px 44px;
        font-size: 0.95rem;
    }

    .floating-group i {
        left: 14px;
        font-size: 0.9rem;
    }

    .floating-group label {
        left: 44px;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 16px;
        font-size: 1rem;
    }

    /* Method Cards */
    .method-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        grid-auto-rows: 250px;
    }

    .gallery-overlay {
        padding: 20px;
    }

    /* Activity Blocks */
    .activity-block {
        padding: 20px;
        border-radius: 20px;
    }

    .activity-icon {
        width: 50px;
        height: 50px;
    }

    .activity-icon i {
        font-size: 1.5rem;
    }

    .activity-title h3 {
        font-size: 1.25rem;
    }

    /* Technique Details */
    .technique-details,
    .fmnr-process,
    .training-methodology,
    .engagement-methods,
    .training-approach {
        padding: 20px;
        border-radius: 16px;
    }

    /* Process Steps */
    .step {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .step .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Benefits Grid */
    .benefit-item,
    .goal-item {
        padding: 20px;
    }

    .benefit-item i,
    .goal-item i {
        font-size: 2rem;
    }

    /* Focus Areas */
    .focus-map,
    .mwada-focus,
    .location-focus,
    .district-overview,
    .chali-focus {
        padding: 20px;
        border-radius: 20px;
    }

    .region-stat,
    .district-stat {
        padding: 16px;
        min-width: 100px;
    }

    .region-stat .number,
    .district-stat .number {
        font-size: 2rem;
    }

    /* Reason Cards */
    .reason-card {
        padding: 20px;
    }

    .reason-card i {
        font-size: 2rem;
    }

    /* Image Collage */
    .image-collage-premium {
        height: 300px;
        padding: 10px;
    }

    .collage-img {
        border: 5px solid var(--white);
    }

    /* Approach Content */
    .approach-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .approach-stats .stat-item {
        padding: 16px;
    }

    .approach-stats .stat-number {
        font-size: 2rem;
    }

    /* VMV Cards */
    .vmv-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .vmv-card {
        padding: 24px;
    }

    .vmv-icon {
        width: 70px;
        height: 70px;
    }

    .vmv-icon i {
        font-size: 2rem;
    }

    /* Work Process */
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Focus Area Cards */
    .focus-area-card {
        padding: 20px;
    }

    .focus-area-card .focus-icon {
        width: 60px;
        height: 60px;
    }

    .focus-area-card .focus-icon i {
        font-size: 1.5rem;
    }

    /* Region Cards */
    .region-card {
        padding: 16px;
    }

    /* Establishment Cards */
    .establishment-card {
        padding: 24px 16px;
    }

    .establishment-card .year {
        font-size: 2.5rem;
    }

    /* Office Premium Cards */
    .offices-premium-grid {
        grid-template-columns: 1fr;
    }

    .office-premium-card {
        height: 350px;
    }

    .office-content {
        padding: 24px;
    }

    .office-content h4 {
        font-size: 1.25rem;
    }

    /* Scroll to Top Button */
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    /* Hero Scroll Indicator */
    .hero-scroll-indicator {
        display: none;
    }

    /* Hamburger Menu */
    .hamburger {
        width: 28px;
        height: 24px;
    }

    .hamburger span {
        height: 2px;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    h1 {
        font-size: 1.75rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    .hero-content h1 {
        font-size: 1.75rem !important;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .navbar {
        padding: 6px 10px;
    }

    .nav-logo img {
        height: 50px !important;
    }

    .stat h3,
    .impact-number {
        font-size: 2rem !important;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .page-header {
        min-height: 80vh;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Increase touch targets */
    .btn-primary,
    .btn-secondary,
    button,
    a {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch devices */
    .about-card:hover,
    .initiative-card:hover,
    .donate-card:hover {
        transform: none;
    }

    /* Simplify animations for better performance */
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.3s !important;
    }
}

/* ============================================
   HAMBURGER MENU - Base Styles
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background: var(--white);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.nav-menu.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Smooth Scrolling for Mobile */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }
}

/* Prevent Horizontal Scroll */
body {
    overflow-x: hidden;
}

/* Improve Touch Scrolling */
* {
    -webkit-overflow-scrolling: touch;
}

/* Fix for iOS Safari Bottom Bar */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* Accessibility - Focus Styles for Keyboard Navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Skip to Content Link for Accessibility */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-slide {
        animation: none !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {

    .btn-primary,
    .btn-secondary {
        border: 2px solid currentColor;
    }

    .card-icon {
        border: 2px solid var(--primary);
    }
}

/* Dark Mode Support (Future Enhancement) */
@media (prefers-color-scheme: dark) {
    /* This can be expanded if dark mode is desired */
}

/* Print Styles */
@media print {

    .navbar,
    .hamburger,
    .hero-buttons,
    .cta-buttons,
    .scroll-to-top,
    .donate-btn {
        display: none !important;
    }

    .hero,
    .page-header {
        min-height: auto;
        padding: 40px 0;
    }

    body {
        background: white;
        color: black;
    }

    a {
        text-decoration: underline;
    }

    .container {
        max-width: 100%;
    }
}

/* ============================================
   PROFESSIONAL SCROLL ENHANCEMENTS
   ============================================ */

/* Smooth Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

/* Enhanced Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
    border-left: 1px solid var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 6px;
    border: 2px solid var(--off-white);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--accent) 100%);
}

::-webkit-scrollbar-thumb:active {
    background: var(--accent);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--off-white);
}

/* Scroll to Top Button Enhancement */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    box-shadow: 0 8px 24px rgba(10, 47, 30, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Professional Page Transition on Scroll */
body {
    scroll-behavior: smooth;
}

/* Section Reveal on Scroll */
section {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Navbar Shadow Enhancement on Scroll */
.navbar.scrolled::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 5%;
    right: 5%;
    height: 10px;
    background: radial-gradient(ellipse at center, rgba(10, 47, 30, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled:hover::after {
    opacity: 1;
}

/* Mobile Scroll Enhancements */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 8px;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-progress {
        height: 2px;
    }
}

/* Tablet Scroll Enhancements */
@media (max-width: 1024px) {
    ::-webkit-scrollbar {
        width: 10px;
    }
}