 /* --- 1. Global Reset & Typography --- */
    :root {
        --primary-text: #1F2937;    /* Dark Slate */
        --border-color: #D1D5DB;    /* Defined Gray Border */
        --active-bg: #E5E7EB;       /* Active Button Gray */
        --hover-bg: #F9FAFB;        /* Very Light Hover */
        --donate-color: #FFAB00;    /* Trinity Orange */
        --tcwm-blue: #112e51;       /* Deep Navy */
        --footer-bg: #0f2846;       /* Darker Navy for Footer */
        --section-bg-light: #F3F6F9; 
        --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        --font-serif: "Times New Roman", Times, serif;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
        font-family: var(--font-family);
        background-color: #fff;
        padding-top: 0px; 
        overflow-x: hidden; 
        color: var(--primary-text);
    }

    /* --- 2. Animations (Scroll Reveal) --- */
    .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
    .reveal.active { opacity: 1; transform: translateY(0); }
    .delay-100 { transition-delay: 0.1s; }
    .delay-200 { transition-delay: 0.2s; }
    .delay-300 { transition-delay: 0.3s; }
    .delay-400 { transition-delay: 0.4s; }

    /* Page Logic */
    .page-content { display: none; animation: fadeInPage 0.4s ease-out; }
    .page-content.active-page { display: block; }
    @keyframes fadeInPage { from { opacity: 0; } to { opacity: 1; } }

    /* --- 3. Navbar --- */
    .navbar-wrapper { background-color: #ffffff; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); width: 100%; }
    .navbar { max-width: 1280px; margin: 0 auto; height: 72px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
    .logo-container { display: flex; align-items: center; }
    .logo-container img { height: 32px; width: auto; display: block; object-fit: contain; }

    .nav-menu { display: flex; gap: 8px; list-style: none; position: absolute; left: 50%; transform: translateX(-50%); }
    .nav-btn { font-family: var(--font-family); font-size: 14px; font-weight: 500; color: var(--primary-text); background-color: #fff; padding: 8px 16px; border: 1px solid var(--border-color); border-radius: 6px; cursor: pointer; transition: all 0.2s ease; display: flex; align-items: center; gap: 8px; }
    .nav-btn i { font-size: 16px; color: #6B7280; }
    .nav-btn:hover { background-color: var(--hover-bg); border-color: #9CA3AF; }
    .nav-btn:hover i { color: var(--primary-text); }
    .nav-btn.active { background-color: var(--active-bg); border-color: #9CA3AF; font-weight: 600; }
    .nav-btn.active i { color: var(--tcwm-blue); }

    .nav-right { display: flex; align-items: center; gap: 16px; }
    .donate-btn-desktop { display: flex; align-items: center; justify-content: center; gap: 8px; background-color: var(--donate-color); color: #1a202c; font-size: 14px; font-weight: 600; padding: 8px 24px; border-radius: 6px; text-decoration: none; transition: all 0.2s ease; white-space: nowrap; cursor: pointer; }
    .donate-btn-desktop:hover { background-color: #ff9d00; transform: translateY(-1px); box-shadow: 0 4px 6px rgba(255, 171, 0, 0.25); }

    .mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1003; }
    .mobile-toggle svg line { stroke: #1F2937; stroke-width: 3; stroke-linecap: round; transition: all 0.3s ease; }
    .mobile-toggle:hover svg line { stroke: var(--donate-color); }
    .heart-icon { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

    /* Mobile Sidebar */
    .mobile-sidebar-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1001; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
    .mobile-sidebar { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: #fff; z-index: 1002; box-shadow: 4px 0 12px rgba(0,0,0,0.1); transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1); padding: 24px; display: flex; flex-direction: column; gap: 20px; }
    .mobile-sidebar.open { left: 0; }
    .mobile-sidebar-overlay.open { opacity: 1; visibility: visible; }
    .mobile-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); padding-bottom: 16px; margin-bottom: 8px; }
    .mobile-logo { height: 28px; width: auto; }
    .close-menu-btn { background: none; border: none; font-size: 24px; cursor: pointer; color: #6B7280; }
    .mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .mobile-nav-item { display: flex; align-items: center; gap: 12px; width: 100%; text-align: left; padding: 12px 16px; background: #F3F4F6; border-radius: 6px; font-weight: 500; color: var(--primary-text); text-decoration: none; border: 1px solid transparent; cursor: pointer; }
    .mobile-nav-item:hover, .mobile-nav-item.active { background: #E5E7EB; border-color: #D1D5DB; }
    .mobile-donate-container { margin-top: 10px; border-top: 1px solid var(--border-color); padding-top: 20px; }
    .donate-btn-mobile { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background-color: var(--donate-color); color: #1a202c; font-size: 16px; font-weight: 600; padding: 12px; border-radius: 6px; text-decoration: none; cursor: pointer; }

    /* =========================================
       SHARED PAGE STYLES
       ========================================= */
    .page-hero {
        width: 100%; height: 350px; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
        background-size: cover; background-position: center; text-align: center; color: #fff;
        background-color: var(--tcwm-blue);
    }
    .about-bg { background-image: url('none'); background-position: center 20%; }
    .activities-bg { background-image: url('none'); }
    .team-bg { background-image: url('none'); }
    .blog-bg { background: var(--tcwm-blue); } 
    .contact-bg { background: var(--tcwm-blue); }
    .donate-hero-bg { background: var(--tcwm-blue); }

    .page-hero-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(17, 46, 81, 0.4); }
    .page-hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }
    .page-hero h1 { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 700; margin-bottom: 16px; }
    .page-hero p { font-size: 1.1rem; color: #E5E7EB; line-height: 1.6; }

    /* =========================================
       HOME PAGE STYLES 
       ========================================= */
    .hero-section { position: relative; width: 100%; height: 85vh; min-height: 600px; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
    .hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; z-index: 1; }
    .hero-slide.active { opacity: 1; }
    .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(31, 41, 55, 0.6), rgba(31, 41, 55, 0.85)); z-index: 2; }
    .hero-content { position: relative; z-index: 3; max-width: 900px; padding: 0 24px; animation: fadeInUp 1s ease-out; }
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    .hero-title { font-size: 3.5rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; line-height: 1.1; font-family: var(--font-serif); }
    .hero-subtitle { font-size: 1.25rem; font-weight: 400; margin-bottom: 32px; color: #E5E7EB; line-height: 1.6; }
    .hero-cta { display: inline-flex; align-items: center; gap: 10px; background-color: var(--donate-color); color: #1a202c; font-family: var(--font-family); font-weight: 600; font-size: 16px; padding: 14px 32px; border-radius: 6px; text-decoration: none; transition: all 0.3s ease; }
    .hero-cta:hover { background-color: #ff9d00; transform: translateY(-2px); }
    .hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 3; }
    .dot { width: 10px; height: 10px; background-color: rgba(255, 255, 255, 0.3); border-radius: 50%; cursor: pointer; transition: all 0.3s ease; }
    .dot.active { background-color: var(--donate-color); transform: scale(1.2); }

    .welcome-section { background-color: #fff; padding: 80px 24px; text-align: center; }
    .welcome-container { max-width: 900px; margin: 0 auto; }
    .section-title { font-family: var(--font-serif); font-size: 2.5rem; color: var(--tcwm-blue); margin-bottom: 32px; font-weight: 700; }
    .welcome-text { font-size: 1rem; line-height: 1.8; color: #4B5563; margin-bottom: 24px; }

    .mission-section { background-color: var(--tcwm-blue); padding: 80px 24px; color: #fff; text-align: center; }
    .mission-container { max-width: 1280px; margin: 0 auto; }
    .mission-title { font-family: var(--font-serif); font-size: 2.5rem; color: #fff; margin-bottom: 60px; font-weight: 700; }
    .mission-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; align-items: stretch; }
    .mission-card { position: relative; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; padding: 40px 20px 30px; display: flex; flex-direction: column; align-items: center; transition: transform 0.3s ease; }
    .mission-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.1); }
    .mission-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: 30px; height: 30px; background-color: var(--donate-color); color: #112e51; font-weight: bold; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; box-shadow: 0 2px 4px rgba(0,0,0,0.2); }
    .mission-icon { width: 48px; height: 48px; margin-bottom: 20px; color: var(--donate-color); }
    .mission-card h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 12px; color: #fff; }
    .mission-card p { font-size: 0.875rem; line-height: 1.5; color: #D1D5DB; }

    .vision-section { background-color: var(--section-bg-light); padding: 100px 24px; text-align: left; }
    .vision-container { max-width: 1100px; margin: 0 auto; text-align: center; }
    .vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 50px; text-align: left; }
    .vision-item h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--tcwm-blue); margin-bottom: 16px; font-weight: 700; }
    .vision-item p { font-size: 1rem; line-height: 1.7; color: #4B5563; }
    .btn-dark-blue { display: inline-flex; align-items: center; gap: 10px; background-color: var(--tcwm-blue); color: #fff; font-family: var(--font-family); font-weight: 600; font-size: 16px; padding: 14px 32px; border-radius: 6px; text-decoration: none; transition: all 0.3s ease; }
    .btn-dark-blue:hover { background-color: #1a416e; transform: translateY(-2px); box-shadow: 0 4px 6px rgba(17, 46, 81, 0.2); }

    /* WHAT WE DO SECTION (RESTORED) */
    .what-we-do-section { background-color: #fff; padding: 100px 24px; }
    .what-we-do-container { max-width: 1280px; margin: 0 auto; }
    .what-we-do-title { text-align: center; font-family: var(--font-serif); font-size: 2.75rem; color: var(--tcwm-blue); margin-bottom: 60px; font-weight: 700; }
    .wwd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .wwd-card { background: #fff; border: 1px solid #E5E7EB; border-radius: 8px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .wwd-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
    .wwd-image { width: 100%; height: 240px; object-fit: cover; display: block; }
    .wwd-content { padding: 32px; }
    .wwd-content h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--tcwm-blue); margin-bottom: 12px; font-weight: 700; }
    .wwd-content p { font-size: 0.95rem; color: #6B7280; line-height: 1.6; margin-bottom: 20px; }
    .learn-more-link { display: inline-flex; align-items: center; gap: 6px; color: var(--donate-color); font-weight: 600; font-size: 14px; text-decoration: none; transition: gap 0.2s ease; }
    .learn-more-link:hover { gap: 10px; color: #d99200; }

    .gallery-section { background-color: var(--section-bg-light); padding: 80px 24px 100px; }
    .gallery-container { max-width: 1280px; margin: 0 auto; }
    .gallery-title { text-align: center; font-family: var(--font-serif); font-size: 2.75rem; color: var(--tcwm-blue); margin-bottom: 60px; font-weight: 700; }
    .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .gallery-item { width: 100%; height: 400px; border-radius: 8px; overflow: hidden; cursor: pointer; position: relative; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
    .gallery-item:hover img { transform: scale(1.08); }

    /* =========================================
       ABOUT, ACTIVITY, TEAM PAGE STYLES 
       ========================================= */
    .about-content-section { padding: 80px 24px; background: #fff; }
    .about-container { max-width: 1100px; margin: 0 auto; }
    .about-vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; }
    .about-vm-card { background-color: #F3F4F6; padding: 40px; border-radius: 8px; }
    .about-vm-card h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--tcwm-blue); margin-bottom: 16px; font-weight: 700; }
    .about-vm-card p { color: #4B5563; line-height: 1.6; font-size: 0.95rem; }
    .core-values-section { margin-top: 60px; }
    .core-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 40px; margin-top: 30px; }
    .core-value-item { display: flex; align-items: flex-start; gap: 12px; }
    .core-value-icon { color: var(--donate-color); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
    .core-value-text { color: #4B5563; line-height: 1.5; font-size: 0.95rem; }

    /* Activities */
    .activities-container { max-width: 1280px; margin: 0 auto; }
    .activities-intro { text-align: center; max-width: 800px; margin: 0 auto 60px; color: #4B5563; font-size: 1.1rem; line-height: 1.7; }
    .activities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .activity-card { background: #fff; border-radius: 12px; padding: 40px 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.3s ease; border: 1px solid #F3F4F6; }
    .activity-card:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(0,0,0,0.1); }
    .activity-icon-wrapper { width: 60px; height: 60px; background-color: #FFF8E6; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
    .activity-icon-wrapper i { font-size: 28px; color: var(--donate-color); }
    .activity-card h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--tcwm-blue); margin-bottom: 16px; font-weight: 700; }
    .activity-card p { color: #6B7280; font-size: 0.95rem; line-height: 1.6; margin-bottom: 24px; }
    .activity-list { list-style: none; }
    .activity-list li { position: relative; padding-left: 20px; margin-bottom: 12px; color: #4B5563; font-size: 0.9rem; }
    .activity-list li::before { content: "•"; color: var(--donate-color); font-weight: bold; font-size: 1.2rem; position: absolute; left: 0; top: -2px; }

    /* Team */
    .team-section { background-color: var(--section-bg-light); padding: 80px 24px; }
    .team-container { max-width: 1100px; margin: 0 auto; }
    .team-intro { text-align: center; margin-bottom: 60px; }
    .team-card { display: flex; flex-direction: row; background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; padding: 40px; margin-bottom: 30px; gap: 40px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02); transition: transform 0.3s ease, box-shadow 0.3s ease; align-items: flex-start; }
    .team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08); border-color: #D1D5DB; }
    .team-img-col { flex: 0 0 180px; display: flex; justify-content: center; }
    .team-img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; border: 1px solid #E5E7EB; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
    .team-info-col { flex: 1; }
    .team-name { font-family: var(--font-serif); font-size: 1.75rem; color: var(--tcwm-blue); font-weight: 700; margin-bottom: 4px; line-height: 1.2; }
    .team-role { color: var(--donate-color); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; display: block; }
    .team-email { display: inline-flex; align-items: center; gap: 8px; color: #6B7280; text-decoration: none; font-size: 0.9rem; margin-bottom: 20px; transition: color 0.2s ease; font-weight: 500; background: #F3F4F6; padding: 6px 12px; border-radius: 20px; }
    .team-email:hover { color: var(--tcwm-blue); background: #E5E7EB; }
    .team-bio { color: #4B5563; line-height: 1.7; font-size: 0.95rem; text-align: justify; }

    /* =========================================
       BLOG PAGE STYLES
       ========================================= */
    .blog-section { padding: 80px 24px; background-color: var(--section-bg-light); }
    .blog-container { max-width: 1280px; margin: 0 auto; }
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .blog-card {
        background: #fff;
        border: 1px solid #E5E7EB;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex; flex-direction: column;
    }
    .blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.1); }
    .blog-card-img-wrap { height: 240px; width: 100%; overflow: hidden; }
    .blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .blog-card:hover .blog-card-img { transform: scale(1.05); }
    .blog-card-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
    .blog-date { color: #6B7280; font-size: 0.85rem; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
    .blog-card-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--tcwm-blue); margin-bottom: 12px; line-height: 1.4; }
    .blog-excerpt { font-size: 0.95rem; color: #4B5563; line-height: 1.6; margin-bottom: 20px; flex: 1; }
    .blog-link { color: var(--tcwm-blue); font-weight: 600; font-size: 0.9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }

    /* BLOG DETAIL */
    .blog-detail-section { padding: 60px 24px 100px; background-color: #fff; }
    .blog-detail-container { max-width: 1100px; margin: 0 auto; display: flex; gap: 60px; }
    .blog-main-content { flex: 2; }
    .blog-sidebar { flex: 1; position: sticky; top: 100px; height: fit-content; }
    
    .detail-img { width: 100%; height: auto; border-radius: 8px; margin-bottom: 30px; object-fit: cover; max-height: 500px; }
    .detail-title { font-family: var(--font-serif); font-size: 2.5rem; color: var(--tcwm-blue); margin-bottom: 16px; font-weight: 700; line-height: 1.2; }
    .detail-meta { display: flex; gap: 20px; color: #6B7280; font-size: 0.95rem; margin-bottom: 30px; border-bottom: 1px solid #E5E7EB; padding-bottom: 20px; }
    .detail-body { font-size: 1.05rem; line-height: 1.8; color: #374151; margin-bottom: 40px; }
    .detail-body p { margin-bottom: 20px; }
    
    .share-section { margin-top: 40px; padding-top: 20px; border-top: 1px solid #E5E7EB; }
    .share-text { font-weight: 600; color: var(--tcwm-blue); margin-bottom: 12px; display: block; }
    .share-icons { display: flex; gap: 12px; }
    .share-btn { width: 40px; height: 40px; border-radius: 50%; background: #F3F4F6; color: var(--tcwm-blue); display: flex; align-items: center; justify-content: center; transition: all 0.2s; cursor: pointer; }
    .share-btn:hover { background: var(--donate-color); color: #fff; }

    .sidebar-title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--tcwm-blue); margin-bottom: 24px; font-weight: 700; border-bottom: 2px solid var(--donate-color); padding-bottom: 10px; display: inline-block; }
    .related-post { display: flex; gap: 16px; margin-bottom: 24px; cursor: pointer; group: 'related'; }
    .related-img { width: 80px; height: 80px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
    .related-info h4 { font-family: var(--font-family); font-weight: 600; font-size: 1rem; color: var(--tcwm-blue); line-height: 1.4; margin-bottom: 6px; transition: color 0.2s; }
    .related-post:hover h4 { color: var(--donate-color); }
    .related-date { font-size: 0.8rem; color: #9CA3AF; }
    .back-btn-wrapper { margin-bottom: 20px; }
    .back-btn { display: inline-flex; align-items: center; gap: 8px; color: #6B7280; font-weight: 500; cursor: pointer; transition: color 0.2s; }
    .back-btn:hover { color: var(--tcwm-blue); }

    /* =========================================
       CONTACT PAGE STYLES
       ========================================= */
    .contact-section { padding: 80px 24px; background-color: #fff; }
    .contact-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
    
    .contact-info-side h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--tcwm-blue); margin-bottom: 20px; font-weight: 700; }
    .contact-desc { color: #6B7280; line-height: 1.6; margin-bottom: 40px; }
    .contact-item { display: flex; gap: 20px; margin-bottom: 32px; }
    .contact-icon-circle { width: 48px; height: 48px; background-color: #FFF8E6; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .contact-icon-circle i { font-size: 20px; color: var(--donate-color); }
    .contact-details h4 { font-weight: 700; color: var(--tcwm-blue); margin-bottom: 4px; font-size: 1.1rem; }
    .contact-details p { color: #4B5563; font-size: 0.95rem; line-height: 1.5; }
    .contact-details a { color: var(--donate-color); text-decoration: none; }
    
    .contact-form-card { background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border: 1px solid #E5E7EB; }
    .contact-form-card h3 { font-family: var(--font-serif); font-size: 1.75rem; color: var(--tcwm-blue); margin-bottom: 30px; font-weight: 700; }
    .form-group { margin-bottom: 20px; }
    .form-control { width: 100%; padding: 14px 16px; border: 1px solid #E5E7EB; border-radius: 6px; background-color: #F9FAFB; font-family: var(--font-family); font-size: 0.95rem; color: var(--primary-text); transition: all 0.2s; outline: none; }
    .form-control:focus { border-color: var(--donate-color); background-color: #fff; box-shadow: 0 0 0 3px rgba(255, 171, 0, 0.1); }
    textarea.form-control { resize: vertical; min-height: 150px; }
    .submit-btn { width: 100%; background-color: var(--tcwm-blue); color: #fff; font-weight: 600; padding: 16px; border: none; border-radius: 6px; cursor: pointer; transition: background 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 1rem; }
    .submit-btn:hover { background-color: #0f2846; }

    /* =========================================
       DONATE PAGE STYLES (NEW)
       ========================================= */
    .donate-hero-icon { width: 64px; height: 64px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--donate-color); font-size: 28px; }
    
    .donate-cta-section { padding: 60px 24px; background-color: #fff; display: flex; justify-content: center; }
    .donate-cta-box {
        background-color: #F3F4F6; width: 100%; max-width: 900px; padding: 50px 24px; border-radius: 8px; text-align: center;
        display: flex; flex-direction: column; align-items: center; gap: 20px;
    }
    .donate-cta-title { font-family: var(--font-serif); font-size: 1.75rem; color: var(--tcwm-blue); font-weight: 700; }
    .donate-cta-subtitle { color: #6B7280; margin-bottom: 10px; font-size: 1rem; max-width: 600px; }
    .btn-donate-large { background-color: var(--donate-color); color: #1a202c; font-weight: 700; font-size: 1.1rem; padding: 16px 40px; border-radius: 6px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: transform 0.2s, box-shadow 0.2s; }
    .btn-donate-large:hover { transform: translateY(-2px); box-shadow: 0 10px 15px rgba(255, 171, 0, 0.3); }

    .other-ways-section { padding: 60px 24px 100px; background-color: var(--section-bg-light); text-align: center; }
    .other-ways-title { font-family: var(--font-serif); font-size: 2.25rem; color: var(--tcwm-blue); margin-bottom: 50px; font-weight: 700; }
    .ways-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto; text-align: left; }
    
    .way-card { background: #fff; padding: 40px; border-radius: 8px; border: 1px solid #E5E7EB; box-shadow: 0 4px 12px rgba(0,0,0,0.03); display: flex; flex-direction: column; height: 100%; }
    .way-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
    .way-icon { width: 48px; height: 48px; background-color: #FFF8E6; border-radius: 50%; color: var(--donate-color); display: flex; align-items: center; justify-content: center; font-size: 20px; }
    .way-title { font-family: var(--font-serif); font-size: 1.25rem; color: var(--tcwm-blue); font-weight: 700; }
    
    .bank-details-box { background: #F9FAFB; border-radius: 6px; padding: 20px; margin-bottom: 16px; }
    .bank-label { font-size: 0.8rem; color: #6B7280; display: block; margin-bottom: 4px; font-weight: 600; text-transform: uppercase; }
    .bank-value { font-size: 1rem; color: var(--tcwm-blue); font-weight: 700; font-family: monospace; letter-spacing: 0.5px; }
    .bank-name { font-size: 0.85rem; color: #4B5563; margin-top: 4px; display: block; }
    
    .mobile-money-text { color: #4B5563; line-height: 1.6; margin-bottom: 24px; font-size: 0.95rem; }
    .btn-outline { border: 1px solid #D1D5DB; background: transparent; color: var(--primary-text); padding: 10px 20px; border-radius: 4px; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all 0.2s; align-self: flex-start; }
    .btn-outline:hover { border-color: var(--tcwm-blue); color: var(--tcwm-blue); background: #fff; }

    .impact-stats-section { background-color: var(--tcwm-blue); padding: 80px 24px; color: #fff; text-align: center; }
    .impact-title { font-family: var(--font-serif); font-size: 2.25rem; margin-bottom: 60px; font-weight: 700; }
    .impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1000px; margin: 0 auto; }
    .impact-item { display: flex; flex-direction: column; align-items: center; }
    .impact-number { font-size: 2.5rem; font-weight: 700; color: var(--donate-color); margin-bottom: 8px; font-family: var(--font-family); }
    .impact-label { font-size: 1rem; color: #E5E7EB; }

    /* --- Footer Section --- */
    .footer-section { background-color: var(--footer-bg); color: #fff; padding: 80px 24px 30px; }
    .footer-container { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; }
    .footer-col h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 24px; font-weight: 700; }
    .footer-text { color: #cbd5e1; line-height: 1.6; margin-bottom: 24px; font-size: 0.95rem; max-width: 400px; }
    .social-links { display: flex; gap: 12px; }
    .social-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: background 0.3s; }
    .social-icon:hover { background: var(--donate-color); color: var(--footer-bg); }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { color: #cbd5e1; text-decoration: none; transition: color 0.2s; font-size: 0.95rem; cursor: pointer; }
    .footer-links a:hover { color: var(--donate-color); }
    .contact-info li { display: flex; gap: 12px; margin-bottom: 16px; color: #cbd5e1; font-size: 0.95rem; list-style: none; }
    .contact-icon { color: var(--donate-color); margin-top: 3px; }
    .footer-bottom { text-align: center; color: #94a3b8; font-size: 0.875rem; }

    /* Lightbox */
    .lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 2000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
    .lightbox.open { display: flex; opacity: 1; }
    .lightbox-img { max-height: 90vh; max-width: 80vw; box-shadow: 0 0 20px rgba(0,0,0,0.5); border-radius: 4px; }
    .lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; cursor: pointer; z-index: 2001; }
    .lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); color: #fff; border: none; padding: 10px 15px; cursor: pointer; font-size: 24px; border-radius: 50%; transition: background 0.3s; }
    .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }
    .lightbox-prev { left: 20px; }
    .lightbox-next { right: 20px; }

    /* Loading Placeholders */
    .loading-placeholder { background: #f3f4f6; animation: pulse 1.5s infinite; border-radius: 8px; min-height: 200px; display:flex; align-items:center; justify-content:center; color:#9ca3af; }
    @keyframes pulse { 0% { opacity: 0.6; } 50% { opacity: 1; } 100% { opacity: 0.6; } }

    /* Responsive Breakpoints */
    @media (max-width: 1024px) {
        .nav-menu, .donate-btn-desktop { display: none; }
        .mobile-toggle { display: block; }
        .mission-grid { grid-template-columns: repeat(2, 1fr); }
        .mission-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; width: 100%; }
        .vision-grid { grid-template-columns: 1fr; gap: 40px; }
        .wwd-grid { grid-template-columns: repeat(2, 1fr); }
        .gallery-grid { grid-template-columns: repeat(2, 1fr); }
        .footer-container { grid-template-columns: 1fr; gap: 40px; }
        .about-vision-mission, .core-values-grid { grid-template-columns: 1fr; }
        .activities-grid { grid-template-columns: 1fr; }
        .blog-grid { grid-template-columns: repeat(2, 1fr); }
        .contact-grid { grid-template-columns: 1fr; }
        .blog-detail-container { flex-direction: column; }
        .blog-sidebar { position: static; margin-top: 40px; }
        .ways-grid { grid-template-columns: 1fr; }
        .impact-grid { grid-template-columns: 1fr; gap: 30px; }
    }
    @media (max-width: 768px) {
        .team-card { flex-direction: column; align-items: center; text-align: center; gap: 24px; padding: 30px 20px; }
        .team-img-col { flex: 0 0 auto; margin-bottom: 10px; }
        .team-img { width: 140px; height: 140px; }
        .team-bio { text-align: left; }
        .team-email { justify-content: center; }
        .blog-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
        .wwd-grid { grid-template-columns: 1fr; }
        .gallery-grid { grid-template-columns: 1fr; }
        .hero-title { font-size: 2.5rem; }
    }


    /* --- 3. Navbar (Computer: Centered & One Line) --- */
.navbar-wrapper { 
    background-color: #ffffff; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); 
    width: 100%; 
}

.navbar { 
    max-width: 1280px; 
    margin: 0 auto; 
    height: 72px; 
    padding: 0 24px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    position: relative; /* Needed for centering */
}

.logo-container { 
    display: flex; 
    align-items: center; 
    z-index: 20; /* Keep logo on top */
}

.logo-container img { 
    height: 32px; 
    width: auto; 
    display: block; 
    object-fit: contain; 
}

/* --- DESKTOP MENU (Centered) --- */
.nav-menu { 
    display: flex; 
    gap: 8px; 
    list-style: none; 
    
    /* This centers the menu perfectly on Computer */
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
    
    z-index: 10;
}

.nav-btn { 
    font-family: var(--font-family); 
    font-size: 14px; 
    font-weight: 500; 
    color: var(--primary-text); 
    background-color: #fff; 
    padding: 8px 16px; 
    border: 1px solid var(--border-color); 
    border-radius: 6px; 
    cursor: pointer; 
    transition: all 0.2s ease; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    
    /* Fix for "Meet Our Team" - One Line Only */
    white-space: nowrap; 
    flex-shrink: 0;
}

.nav-btn i { font-size: 16px; color: #6B7280; }
.nav-btn:hover { background-color: var(--hover-bg); border-color: #9CA3AF; }
.nav-btn:hover i { color: var(--primary-text); }
.nav-btn.active { background-color: var(--active-bg); border-color: #9CA3AF; font-weight: 600; }
.nav-btn.active i { color: var(--tcwm-blue); }

.nav-right { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    z-index: 20;
}

.donate-btn-desktop { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    background-color: var(--donate-color); 
    color: #1a202c; 
    font-size: 14px; 
    font-weight: 600; 
    padding: 8px 24px; 
    border-radius: 6px; 
    text-decoration: none; 
    transition: all 0.2s ease; 
    white-space: nowrap; 
    cursor: pointer; 
}

.donate-btn-desktop:hover { background-color: #ff9d00; transform: translateY(-1px); box-shadow: 0 4px 6px rgba(255, 171, 0, 0.25); }

/* Hide Hamburger on Desktop */
.mobile-toggle { 
    display: none; 
    background: none; 
    border: none; 
    cursor: pointer; 
    padding: 4px; 
}

.mobile-toggle svg line { 
    stroke: #1F2937; 
    stroke-width: 3; 
    stroke-linecap: round; 
    transition: all 0.3s ease; 
}

.mobile-toggle:hover svg line { stroke: var(--donate-color); }
.heart-icon { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }


/* --- Responsive Breakpoints (Mobile Fixes) --- */
@media (max-width: 1024px) {
    /* 1. HIDE the Computer Menu and Donate Button */
    .nav-menu { 
        display: none !important; 
    }
    
    .donate-btn-desktop { 
        display: none !important; 
    }

    /* 2. SHOW the Hamburger Menu */
    .mobile-toggle { 
        display: block !important; 
        z-index: 1003;
    }
    
    /* 3. Adjust Layouts for Mobile */
    .navbar {
        justify-content: space-between; /* Space out Logo and Hamburger */
    }

    .mission-grid { grid-template-columns: repeat(2, 1fr); }
    .mission-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; width: 100%; }
    .vision-grid { grid-template-columns: 1fr; gap: 40px; }
    .wwd-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    .about-vision-mission, .core-values-grid { grid-template-columns: 1fr; }
    .activities-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .blog-detail-container { flex-direction: column; }
    .blog-sidebar { position: static; margin-top: 40px; }
    .ways-grid { grid-template-columns: 1fr; }
    .impact-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .team-card { flex-direction: column; align-items: center; text-align: center; gap: 24px; padding: 30px 20px; }
    .team-img-col { flex: 0 0 auto; margin-bottom: 10px; }
    .team-img { width: 140px; height: 140px; }
    .team-bio { text-align: left; }
    .team-email { justify-content: center; }
    .blog-grid { grid-template-columns: 1fr; }
}


/* --- Responsive Breakpoints (Mobile Fixed) --- */
@media (max-width: 1024px) {
    /* 1. COMPLETELY REMOVE Desktop Elements to prevent overflow */
    .nav-menu { 
        display: none !important; /* Important: Removes the 'left: 50%' element */
    }
    
    .donate-btn-desktop { 
        display: none !important; 
    }

    /* 2. Show Mobile Elements */
    .mobile-toggle { 
        display: block !important; 
        z-index: 1003;
    }
    
    /* 3. Fix Layout Widths */
    .navbar {
        justify-content: space-between; 
        padding: 0 15px; /* Reduce padding slightly for small phones */
    }

    /* Stack grids vertically */
    .mission-grid, 
    .vision-grid, 
    .wwd-grid, 
    .gallery-grid, 
    .activities-grid, 
    .blog-grid, 
    .ways-grid, 
    .impact-grid,
    .footer-container,
    .contact-grid { 
        grid-template-columns: 1fr !important; /* Force single column */
        width: 100% !important;
        gap: 30px;
    }

    /* Fix Mission Card sizing */
    .mission-card:last-child { 
        grid-column: span 1; 
        max-width: 100%; 
    }

    /* Fix Blog Sidebar */
    .blog-detail-container { 
        flex-direction: column; 
    }
    
    /* Fix Team Section on Mobile */
    .team-card {
        flex-direction: column;
        align-items: center;
    }
    
    .team-img-col {
        margin-bottom: 20px;
    }
}

/* --- Map Styling --- */
.map-container {
    width: 100%;
    margin-top: 60px;
    text-align: center;
    padding-bottom: 40px;
}
.map-title { font-size: 1.8rem; color: #111827; margin-bottom: 5px; font-weight: 700; }
.map-subtitle { color: #6B7280; margin-bottom: 25px; font-size: 1rem; }
.map-frame-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border: 1px solid #E5E7EB;
    background: #fff;
}
.map-frame-wrapper iframe { display: block; filter: grayscale(0%); transition: filter 0.3s; }
.map-frame-wrapper:hover iframe { filter: saturate(1.2); }

/* --- Loading Placeholder Animation --- */
.loading-placeholder {
    padding: 40px;
    text-align: center;
    color: #9CA3AF;
    font-style: italic;
    background: #F3F4F6;
    border-radius: 8px;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0% { opacity: 0.6; } 50% { opacity: 1; } 100% { opacity: 0.6; } }