/* --- Variables & Reset --- */
:root {
    --primary-red: #d32f2f;
    --primary-blue: #4285f4;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.red-text { color: var(--primary-red); }

/* --- Typography --- */
.section-heading {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-subheading {
    font-size: 16px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-style: italic;
}

/* --- Navbar --- */
.navbar {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: 0.3s;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 60px; }

.nav-menu { display: flex; align-items: center; gap: 20px; }
.nav-link { font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 600; color: #333; }
.nav-link:hover { color: var(--primary-red); }

.btn-donate {
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
}
.btn-donate:hover { background-color: #3367d6; }
.btn-donate .secured { font-size: 9px; font-weight: 400; opacity: 0.9; }

/* Hamburger Menu */
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: 0.3s; background-color: #333; }

/* --- Hero --- */
.hero-section {
    background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80&w=1600&auto=format&fit=crop') no-repeat center center/cover;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}

.hero-overlay h1 { color: white; font-size: 48px; font-weight: 900; letter-spacing: 2px; text-align: center; }

/* --- Breadcrumb --- */
.breadcrumb-bar { padding: 15px 0; background: #fff; border-bottom: 1px solid #eee; }
.breadcrumb-bar p { font-size: 14px; color: #777; }
.breadcrumb-bar .active { color: var(--primary-red); font-weight: 600; }

/* --- Who We Are --- */
.who-we-are { padding: 60px 0; background: #fff; }
.team-image-wrapper { margin-top: 30px; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* --- Content --- */
.content-section { padding-bottom: 60px; }
.text-block { margin-bottom: 30px; }
.italic-lead { font-style: italic; font-size: 18px; color: #555; border-left: 4px solid #eee; padding-left: 20px; }
.text-block h3 { font-size: 22px; margin-bottom: 15px; }
.text-block p { margin-bottom: 15px; text-align: justify; }

/* --- M/V/V Grid --- */
.mvv-section { padding: 60px 0; background: #fff; }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.mvv-card { display: flex; flex-direction: column; padding: 10px; }
.mvv-card h3 { font-size: 24px; font-weight: 800; text-align: center; margin-bottom: 20px; }
.card-content { flex-grow: 1; font-size: 14px; color: #555; margin-bottom: 20px; }
.highlight-text { font-style: italic; font-weight: 600; margin-bottom: 10px; color: #333; }
.values-list li { margin-bottom: 8px; font-size: 13px; }

.btn-know-more {
    background-color: var(--primary-red); color: white; padding: 10px 25px;
    border-radius: 30px; font-size: 12px; font-weight: 700; text-transform: uppercase;
    margin: 0 auto; width: fit-content;
}
.btn-know-more:hover { background-color: #b30000; }

/* --- UPDATED: Stats Section --- */
.stats-section {
    padding: 80px 0;
    background-image: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed; /* Parallax */
    position: relative;
    text-align: center;
    color: white;
}

.stats-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Dark overlay */
    z-index: 1;
}

.relative-z { position: relative; z-index: 2; }
.text-white { color: #fff !important; }
.text-white-70 { color: rgba(255,255,255,0.7) !important; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 8px;
    transition: transform 0.3s, background 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-red);
}

.stat-card .icon-box {
    font-size: 40px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.stat-card .stat-number, 
.stat-card .symbol {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.stat-card .stat-label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
}

/* --- UPDATED: Partners Section --- */
.partners-section { padding: 80px 0; background-color: #fff; }

.partners-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.partner-item {
    width: 160px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

.partner-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* --- UPDATED: Approach Section (12 Grid) --- */
.approach-section { padding: 80px 0; background-color: #f9f9f9; }

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.approach-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 3px solid transparent;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-top: 3px solid var(--primary-red);
}

.card-num {
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 80px;
    font-weight: 900;
    color: #f0f0f0;
    z-index: 1;
    line-height: 1;
}

.approach-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    position: relative;
    z-index: 2;
}

.approach-card ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.approach-card li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.approach-card li::before {
    content: "•";
    color: var(--primary-red);
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -4px;
}

/* --- CTA --- */
.cta-section { padding: 80px 0; }
.cta-box { border: 1px solid #eee; box-shadow: 0 5px 25px rgba(0,0,0,0.08); border-radius: 12px; padding: 50px; display: flex; justify-content: space-between; align-items: center; background: #fff; }
.cta-subtitle { font-size: 12px; font-weight: 700; color: #666; display: block; margin-bottom: 5px; }
.cta-text h2 { font-size: 30px; font-weight: 800; line-height: 1.2; }
.read-more-link { color: var(--primary-red); font-size: 14px; margin-top: 10px; display: inline-block; }
.btn-donate-large { background-color: var(--primary-blue); color: white; padding: 15px 30px; border-radius: 4px; font-weight: 700; font-size: 16px; margin-bottom: 5px; display: inline-block; }
.cta-btn-wrapper { text-align: center; }

/* --- Footer --- */
.main-footer { background-color: #f2f2f2; padding: 60px 0 20px 0; color: #333; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; border-bottom: 1px solid #ddd; padding-bottom: 40px; }
.footer-logo { width: 80px; margin-bottom: 20px; }
.footer-col h4 { font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.subscribe-form { display: flex; gap: 5px; margin-bottom: 20px; }
.subscribe-form input { padding: 10px; border: 1px solid #ccc; border-radius: 4px; width: 100%; }
.subscribe-form button { padding: 10px; background: white; border: 1px solid var(--primary-blue); color: var(--primary-blue); font-weight: bold; border-radius: 4px; cursor: pointer; }
.social-icons { display: flex; gap: 10px; }
.social-icons a { width: 35px; height: 35px; background: #333; color: white; display: flex; align-items: center; justify-content: center; border-radius: 4px; }
.footer-bottom { text-align: center; padding-top: 20px; font-size: 13px; color: #777; }

/* --- Mobile Responsive --- */
@media (max-width: 992px) {
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-menu { position: fixed; left: -100%; top: 80px; flex-direction: column; background-color: #fff; width: 100%; text-align: center; transition: 0.3s; box-shadow: 0 10px 10px rgba(0,0,0,0.1); padding: 20px 0; }
    .nav-menu.active { left: 0; }
    
    .mvv-grid, .approach-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero-overlay h1 { font-size: 32px; padding: 0 10px; }
    .cta-box { flex-direction: column; text-align: center; gap: 20px; }
    
    .stats-grid { grid-template-columns: 1fr; } /* Stack stats on mobile */
    .stat-card { width: 100%; margin-bottom: 20px; }
}
