* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5632;
    --primary-dark: #0d3d1f;
    --primary-light: #2d7a4a;
    --secondary-color: #c9a941;
    --secondary-light: #e0c668;
    --secondary-dark: #a88a2e;
    --accent-color: #e74c3c;
    --accent-light: #ff6b6b;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-cream: #fef9f0;
    --border-color: #e0e5ec;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 10px;
    --border-radius-sm: 8px;
    --whatsapp-color: #25D366;
    --whatsapp-dark: #128C7E;
}

[data-theme="dark"] {
    --primary-color: #2d7a4a;
    --primary-dark: #1a5632;
    --primary-light: #3d8a5a;
    --secondary-color: #e0c668;
    --secondary-light: #f0d878;
    --secondary-dark: #c9a941;
    --text-dark: #e0e0e0;
    --text-light: #b0b0b0;
    --text-white: #ffffff;
    --bg-light: #1a1a2e;
    --bg-white: #16213e;
    --bg-cream: #1a1a2e;
    --border-color: #2a2a4a;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--bg-light);
    padding-top: 80px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 32px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Breadcrumb */
.breadcrumb {
    padding: 12px 20px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    max-width: 1100px;
    margin: 0 auto;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.breadcrumb li {
    font-size: 0.85rem;
    color: var(--text-light);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--border-color);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ==================== WHATSAPP FLOATING BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: var(--whatsapp-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-call { background: var(--accent-color); }
.floating-donate { background: var(--secondary-color); color: var(--primary-dark); }
.floating-darkmode { background: var(--primary-dark); }

.floating-scroll-top {
    background: var(--text-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-tooltip {
    position: absolute;
    right: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    height: 80px;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

.nav-logo-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.nav-brand-name small {
    display: block;
    font-size: 0.6em;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-brand-tagline {
    font-size: 0.55rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 8px 10px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: var(--bg-cream);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    min-width: 230px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 999;
    list-style: none;
    padding: 6px 0;
    border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li { padding: 0; }

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--bg-cream);
    color: var(--primary-color);
}

/* Donate Button */
.donate-btn {
    background: var(--accent-color);
    color: var(--text-white) !important;
    padding: 8px 16px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.85rem;
    margin-left: 6px;
}

.donate-btn:hover {
    background: #c0392b !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* ==================== IMAGE STYLES ==================== */
.card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
    display: block;
}

.about-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img-fallback {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius);
    padding: 80px 40px;
    text-align: center;
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.fallback-content i { font-size: 3.5rem; margin-bottom: 16px; }
.fallback-content p { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.fallback-location { font-size: 0.85rem !important; opacity: 0.9; }

.mv-icon-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 16px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.partner-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    padding: 8px;
    background: var(--bg-white);
}

.partner-placeholder {
    width: 90px;
    height: 90px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

.partner-placeholder i { font-size: 2rem; color: var(--primary-color); }

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, rgba(26, 86, 50, 0.85) 0%, rgba(45, 122, 74, 0.8) 50%, rgba(13, 61, 31, 0.9) 100%), url('images/hero-bg.jpg') no-repeat center center/cover;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--text-white);
    padding: 100px 0 60px;
    margin-top: -80px;
    padding-top: 140px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
}

.hero-content { position: relative; z-index: 1; max-width: 750px; padding: 0 20px; }

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle { font-size: 1.1rem; line-height: 1.7; margin-bottom: 32px; opacity: 0.95; }

.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary { background: var(--secondary-color); color: var(--primary-dark); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
.btn-primary:hover { background: var(--secondary-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); }

.btn-secondary { background: transparent; color: var(--text-white); border: 2px solid var(--text-white); }
.btn-secondary:hover { background: var(--text-white); color: var(--primary-color); transform: translateY(-2px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-outline:hover { background: var(--primary-color); color: var(--text-white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26, 86, 50, 0.2); }
.btn-outline i { transition: transform 0.3s ease; }
.btn-outline:hover i { transform: translateX(4px); }

.hero-founded { font-size: 0.9rem; opacity: 0.8; font-style: italic; }

/* ==================== ABOUT SECTION ==================== */
.about { background: var(--bg-white); }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-text p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.about-text .btn-outline { margin-top: 8px; }

/* ==================== MILESTONES SECTION ==================== */
.milestones { background: var(--bg-cream); }
.milestones-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.milestone-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.milestone-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); }
.milestone-card h3 { color: var(--primary-color); margin: 16px 20px 8px; font-size: 1.05rem; }
.milestone-card p { color: var(--text-light); font-size: 0.88rem; padding: 0 20px 20px; }

/* ==================== MISSION & VISION ==================== */
.mission-vision { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: var(--text-white); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.mv-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 36px 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}
.mv-card:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-2px); }
.mv-card h2 { font-size: 1.5rem; margin-bottom: 14px; font-weight: 700; }
.mv-card p { font-size: 0.93rem; line-height: 1.7; opacity: 0.95; }

/* ==================== SERVICES SECTION ==================== */
.services { background: var(--bg-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.service-card:hover { background: var(--bg-white); border-color: var(--primary-color); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); transform: translateY(-4px); }
.service-card h3 { color: var(--primary-color); margin: 14px 16px 8px; font-size: 1rem; }
.service-card p { color: var(--text-light); font-size: 0.85rem; padding: 0 16px 20px; }

/* ==================== PROGRAMS SECTION ==================== */
.current-programs { background: var(--bg-cream); }
.programs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.program-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border-left: 3px solid var(--primary-color);
    overflow: hidden;
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); border-left-color: var(--secondary-color); }
.program-card h3 { color: var(--primary-color); margin: 14px 18px 8px; font-size: 1.1rem; }
.program-card p { color: var(--text-light); font-size: 0.88rem; padding: 0 18px 20px; }

/* ==================== TEAM PREVIEW SECTION ==================== */
.team-preview { background: var(--bg-white); padding: 80px 0; }
.team-preview-intro { text-align: center; max-width: 600px; margin: 0 auto 40px; color: var(--text-light); font-size: 1rem; line-height: 1.7; }
.team-preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.team-preview-card { text-align: center; transition: var(--transition); }
.team-preview-card:hover { transform: translateY(-6px); }
.tp-image-wrapper {
    width: 140px; height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--primary-color);
    transition: var(--transition);
}
.team-preview-card:hover .tp-image-wrapper { border-color: var(--secondary-color); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); }
.tp-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.team-preview-card:hover .tp-image { transform: scale(1.08); }
.tp-image-fallback {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    font-size: 1.8rem; font-weight: 700; letter-spacing: 1px;
}
.team-preview-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.tp-role { font-size: 0.82rem; color: var(--primary-color); font-weight: 500; }
.team-preview-cta { text-align: center; }

/* ==================== VALUES ==================== */
.values { background: var(--bg-white); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; max-width: 900px; margin: 0 auto; }
.value-item {
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-white));
    padding: 18px 14px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    font-size: 0.85rem;
    display: flex; align-items: center; justify-content: center;
}
.value-item:hover { background: var(--primary-color); color: var(--text-white); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }

/* ==================== FUTURE PLANS ==================== */
.future-plans { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); color: var(--text-white); }
.future-plans .section-title { color: var(--text-white); }
.future-plans .section-cta .btn-outline { border-color: var(--secondary-light); color: var(--secondary-light); }
.future-plans .section-cta .btn-outline:hover { background: var(--secondary-light); color: var(--primary-dark); }
.future-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.future-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    overflow: hidden;
}
.future-card:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-4px); }
.future-card h3 { font-size: 1.05rem; margin: 14px 16px 8px; color: var(--secondary-light); }
.future-card p { opacity: 0.9; line-height: 1.6; font-size: 0.85rem; padding: 0 16px 18px; }

/* ==================== PARTNERS ==================== */
.partners { background: var(--bg-white); }
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.partner-card {
    background: var(--bg-light);
    padding: 28px 16px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}
.partner-card:hover { border-color: var(--secondary-color); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); transform: translateY(-4px); }
.partner-card h3 { color: var(--primary-color); margin-bottom: 8px; font-size: 1rem; }
.partner-card p { color: var(--text-light); font-size: 0.82rem; }

/* ==================== CTA ==================== */
.cta { background: linear-gradient(135deg, var(--secondary-color), #e0a800); text-align: center; color: var(--primary-dark); }
.cta h2 { font-size: 2rem; margin-bottom: 16px; font-weight: 700; }
.cta p { font-size: 1rem; margin-bottom: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-slogan { font-weight: 600; font-size: 1.15rem !important; font-style: italic; }
.cta .btn-primary { background: var(--primary-color); color: var(--text-white); }
.cta .btn-primary:hover { background: var(--primary-dark); }
.cta .btn-secondary { border: 2px solid var(--primary-dark); color: var(--primary-dark); }
.cta .btn-secondary:hover { background: var(--primary-dark); color: var(--text-white); }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ==================== NEWSLETTER ==================== */
.newsletter { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: var(--text-white); text-align: center; padding: 60px 0; }
.newsletter h2 { margin-bottom: 12px; font-size: 1.8rem; }
.newsletter p { margin-bottom: 24px; opacity: 0.9; }
.newsletter-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; }
.newsletter-form input {
    flex: 1; padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.7); }
.newsletter-form input:focus { outline: none; border-color: var(--secondary-color); }
.newsletter-form .btn-primary { background: var(--secondary-color); color: var(--primary-dark); white-space: nowrap; }

/* ==================== FOOTER ==================== */
.footer { background: var(--primary-dark); color: var(--text-white); padding: 60px 0 0; }
.footer-content { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 30px; }
.footer-col h3 { font-size: 1.2rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; color: var(--secondary-light); font-weight: 700; }
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background-color: var(--secondary-color); }
.footer-col p { margin-bottom: 16px; color: rgba(255, 255, 255, 0.85); line-height: 1.7; font-size: 0.9rem; }
.footer-founded { font-style: italic; opacity: 0.7 !important; font-size: 0.85rem; margin-bottom: 20px !important; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 36px; height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.85rem;
}
.footer-social a:hover { background-color: var(--secondary-color); color: var(--primary-dark); transform: translateY(-3px); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; }
.footer-links a { color: rgba(255, 255, 255, 0.85); transition: var(--transition); display: block; text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--secondary-light); padding-left: 5px; }
.footer-bottom { text-align: center; padding: 20px 0; color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }
.footer-bottom p { margin-bottom: 6px; }
.footer-tagline { font-style: italic; color: var(--secondary-light); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .team-preview-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .future-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
    body { padding-top: 70px; }
    .navbar { height: 70px; }
    .whatsapp-float { left: 15px; bottom: 15px; width: 50px; height: 50px; font-size: 24px; }
    .floating-actions { right: 15px; bottom: 15px; gap: 8px; }
    .floating-btn { width: 44px; height: 44px; font-size: 1rem; }
    .floating-tooltip { display: none; }
    .whatsapp-tooltip { display: none; }
    .hamburger { display: block; }
    .nav-menu-wrapper { order: 4; width: 100%; }
    .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background-color: var(--bg-white); width: 100%; height: calc(100vh - 70px); text-align: left; transition: 0.3s; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); padding: 16px; overflow-y: auto; gap: 2px; align-items: stretch; z-index: 999; }
    .nav-menu.active { left: 0; }
    .nav-link { display: block; padding: 10px 14px; font-size: 0.95rem; }
    .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--bg-light); display: none; border-radius: 0; margin: 2px 0 2px 14px; min-width: auto; }
    .dropdown.active .dropdown-menu { display: block; }
    .dropdown-toggle { justify-content: space-between; }
    .donate-btn { text-align: center; justify-content: center; margin-top: 6px; }
    .hero { min-height: calc(100vh - 70px); margin-top: -70px; padding-top: 120px; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .section-title { font-size: 1.6rem; }
    .about-content { grid-template-columns: 1fr; gap: 30px; }
    .milestones-grid { grid-template-columns: 1fr 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .programs-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
    .team-preview-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .tp-image-wrapper { width: 120px; height: 120px; }
    .future-grid { grid-template-columns: 1fr 1fr; }
    .partners-grid { grid-template-columns: 1fr 1fr; }
    .newsletter-form { flex-direction: column; }
    .hero-buttons, .cta-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; }
    .card-img { height: 140px; }
    .footer { padding: 40px 0 0; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 480px) {
    .whatsapp-float { left: 10px; bottom: 10px; width: 44px; height: 44px; font-size: 22px; }
    .floating-actions { right: 10px; bottom: 10px; flex-direction: row-reverse; gap: 6px; }
    .floating-btn { width: 40px; height: 40px; font-size: 0.9rem; }
    .nav-brand-name { font-size: 0.85rem; }
    .nav-brand-tagline { font-size: 0.5rem; }
    .nav-logo-img { height: 32px; }
    .hero-title { font-size: 1.7rem; }
    .section-title { font-size: 1.4rem; }
    .milestones-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .programs-grid { grid-template-columns: 1fr; }
    .team-preview-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .tp-image-wrapper { width: 100px; height: 100px; }
    .team-preview-card h3 { font-size: 0.9rem; }
    .tp-role { font-size: 0.75rem; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .future-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr; }
    .card-img { height: 130px; }
    .about-img { height: 250px; }
    .about-img-fallback { min-height: 250px; padding: 50px 20px; }
    .footer-content { grid-template-columns: 1fr; }
}