* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary-color: #b45309;
    --primary-dark: #92400e;
    --secondary-color: #047857;
    --accent-color: #fbbf24;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --bg-light: #fffbeb;
    --bg-white: #ffffff;
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; line-height: 1.7; color: var(--text-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Navigation */
.navbar { background: white; box-shadow: var(--shadow-md); position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--primary-color); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; }
.logo { font-size: 18px; font-weight: 700; color: var(--primary-color); text-decoration: none; }
.nav-menu { display: flex; list-style: none; gap: 32px; }
.nav-menu a { color: var(--text-dark); text-decoration: none; font-weight: 500; font-size: 15px; transition: color 0.3s; position: relative; }
.nav-menu a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 3px; background: var(--primary-color); transition: width 0.3s; }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary-color); }

/* Hero Section */
.hero { position: relative; min-height: 600px; display: flex; align-items: center; color: white; overflow: hidden; }
.hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-background img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(180, 83, 9, 0.9) 0%, rgba(4, 120, 87, 0.8) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: center; max-width: 900px; padding: 80px 0; margin: 0 auto; }
.hero-title { font-size: 50px; font-weight: 800; margin-bottom: 24px; line-height: 1.15; }
.hero-subtitle { font-size: 19px; margin-bottom: 40px; opacity: 0.96; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-block; padding: 14px 32px; font-size: 16px; font-weight: 600; text-decoration: none; border-radius: 8px; transition: all 0.3s; border: none; cursor: pointer; }
.btn-primary { background: var(--secondary-color); color: white; }
.btn-primary:hover { background: #065f46; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: rgba(255, 255, 255, 0.2); color: white; }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.3); transform: translateY(-2px); }
.btn-light { background: white; color: var(--primary-color); }
.btn-light:hover { background: var(--bg-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover { background: white; color: var(--primary-color); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.btn-outline-dark:hover { background: var(--primary-color); color: white; }
.btn-full { width: 100%; text-align: center; }

/* Section Styles */
section { padding: 80px 0; }
.section-header { text-align: center; max-width: 750px; margin: 0 auto 60px; }
.section-header h2 { font-size: 40px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
.section-subtitle { font-size: 18px; color: var(--text-medium); }

/* Page Hero */
.page-hero { background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); color: white; padding: 80px 0; text-align: center; }
.page-hero h1 { font-size: 48px; font-weight: 800; margin-bottom: 16px; }
.page-hero p { font-size: 18px; opacity: 0.94; }

/* Mission Section */
.mission { background: var(--bg-light); }
.mission-text { font-size: 18px; line-height: 1.9; color: var(--text-medium); text-align: center; max-width: 850px; margin: 0 auto; }

/* Programs Grid */
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.program-card { background: white; padding: 36px; border-radius: 12px; box-shadow: var(--shadow-md); text-align: center; transition: all 0.3s; border-top: 4px solid var(--primary-color); }
.program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.program-icon { width: 64px; height: 64px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--primary-color); }
.program-card h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.program-card p { color: var(--text-medium); line-height: 1.7; margin-bottom: 16px; }
.program-link { color: var(--primary-color); font-weight: 600; text-decoration: none; }
.program-link:hover { text-decoration: underline; }

/* Impact Feature */
.impact-feature { background: var(--bg-light); }
.feature-content { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.feature-image img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-lg); }
.feature-tag { display: inline-block; background: var(--primary-color); color: white; padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.feature-text h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; color: var(--text-dark); }
.feature-text p { color: var(--text-medium); margin-bottom: 16px; line-height: 1.8; }
.impact-list { list-style: none; margin-bottom: 32px; }
.impact-list li { padding: 8px 0; padding-left: 28px; position: relative; color: var(--text-medium); }
.impact-list li::before { content: '✓'; position: absolute; left: 0; color: var(--secondary-color); font-weight: 700; }

/* Stats Section */
.stats { background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 48px; text-align: center; }
.stat-number { font-size: 48px; font-weight: 800; margin-bottom: 10px; }
.stat-label { font-size: 18px; opacity: 0.94; }

/* Who We Help */
.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.help-card { background: white; padding: 28px; border-radius: 12px; box-shadow: var(--shadow-md); border-left: 4px solid var(--primary-color); }
.help-card h3 { font-size: 20px; font-weight: 700; color: var(--primary-color); margin-bottom: 10px; }
.help-card p { color: var(--text-medium); }

/* CTA Section */
.cta { background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); color: white; text-align: center; }
.cta-content h2 { font-size: 40px; font-weight: 800; margin-bottom: 16px; }
.cta-content p { font-size: 18px; margin-bottom: 32px; opacity: 0.96; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* About Page */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.about-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 24px; color: var(--text-dark); }
.about-content p { color: var(--text-medium); margin-bottom: 20px; line-height: 1.8; }
.about-image img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-lg); }

.purpose-box { background: var(--primary-color); color: white; padding: 60px; border-radius: 16px; text-align: center; }
.purpose-box h2 { font-size: 32px; margin-bottom: 20px; }
.purpose-box p { font-size: 18px; line-height: 1.8; opacity: 0.96; max-width: 800px; margin: 0 auto; }

.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.location-card { background: white; padding: 36px; border-radius: 12px; box-shadow: var(--shadow-md); }
.location-card h3 { font-size: 24px; font-weight: 700; color: var(--primary-color); margin-bottom: 16px; }
.location-card p { color: var(--text-medium); margin-bottom: 16px; }
.location-card ul { list-style: none; }
.location-card ul li { padding: 6px 0; padding-left: 20px; position: relative; color: var(--text-medium); }
.location-card ul li::before { content: '•'; position: absolute; left: 0; color: var(--secondary-color); }

.beneficiary-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.beneficiary-item { background: white; padding: 12px 20px; border-radius: 25px; box-shadow: var(--shadow-md); font-weight: 500; color: var(--text-dark); font-size: 14px; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.value-card { background: white; padding: 32px; border-radius: 12px; box-shadow: var(--shadow-md); border-left: 4px solid var(--secondary-color); }
.value-card h3 { font-size: 20px; font-weight: 700; color: var(--secondary-color); margin-bottom: 12px; }
.value-card p { color: var(--text-medium); }

/* Programs Page */
.intro-content { text-align: center; max-width: 800px; margin: 0 auto; }
.intro-text { font-size: 18px; color: var(--text-medium); line-height: 1.8; }

.program-detail { padding: 80px 0; }
.program-detail.alt-bg { background: var(--bg-light); }
.program-feature { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.program-feature.reverse { grid-template-columns: 1fr 1.2fr; }
.program-feature.reverse .program-image { order: -1; }
.program-content .program-tag { display: inline-block; background: var(--primary-color); color: white; padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.program-content h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; color: var(--text-dark); }
.program-content h4 { font-size: 18px; font-weight: 700; margin: 24px 0 12px; color: var(--text-dark); }
.program-content p { color: var(--text-medium); line-height: 1.8; margin-bottom: 16px; }
.program-content ul { list-style: none; margin-bottom: 24px; }
.program-content ul li { padding: 8px 0; padding-left: 24px; position: relative; color: var(--text-medium); }
.program-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--secondary-color); font-weight: 700; }
.program-image img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-lg); }

.online-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.online-card { background: white; padding: 32px; border-radius: 12px; box-shadow: var(--shadow-md); text-align: center; }
.online-card h3 { font-size: 22px; font-weight: 700; color: var(--primary-color); margin-bottom: 12px; }
.online-card p { color: var(--text-medium); }

.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.support-card { background: white; padding: 32px; border-radius: 12px; box-shadow: var(--shadow-md); text-align: center; }
.support-card h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.support-card p { color: var(--text-medium); margin-bottom: 20px; }

/* Get Involved Page */
.donate-feature { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.donate-content .feature-tag { display: inline-block; background: var(--secondary-color); color: white; padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.donate-content h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; color: var(--text-dark); }
.donate-content h4 { font-size: 18px; font-weight: 700; margin: 24px 0 12px; color: var(--text-dark); }
.donate-content p { color: var(--text-medium); line-height: 1.8; margin-bottom: 16px; }
.donate-content ul { list-style: none; margin-bottom: 24px; }
.donate-content ul li { padding: 8px 0; padding-left: 24px; position: relative; color: var(--text-medium); }
.donate-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--secondary-color); font-weight: 700; }
.donate-image img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-lg); }

.volunteer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-bottom: 40px; }
.volunteer-card { background: white; padding: 28px; border-radius: 12px; box-shadow: var(--shadow-md); text-align: center; }
.volunteer-card h3 { font-size: 20px; font-weight: 700; color: var(--primary-color); margin-bottom: 10px; }
.volunteer-card p { color: var(--text-medium); }
.volunteer-cta { text-align: center; }
.volunteer-cta p { color: var(--text-medium); margin-bottom: 20px; }

.partnership-section { background: var(--bg-light); }
.partnership-content { max-width: 900px; margin: 0 auto; text-align: center; }
.partnership-content h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; color: var(--text-dark); }
.partnership-content > p { color: var(--text-medium); margin-bottom: 40px; line-height: 1.8; }
.partnership-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-bottom: 32px; text-align: left; }
.partnership-item { background: white; padding: 24px; border-radius: 12px; }
.partnership-item h3 { font-size: 18px; font-weight: 700; color: var(--primary-color); margin-bottom: 8px; }
.partnership-item p { color: var(--text-medium); font-size: 15px; }

.spread-content { max-width: 900px; margin: 0 auto; text-align: center; }
.spread-content h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; color: var(--text-dark); }
.spread-content > p { color: var(--text-medium); margin-bottom: 40px; line-height: 1.8; }
.spread-actions { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.spread-item { padding: 24px; }
.spread-item h4 { font-size: 18px; font-weight: 700; color: var(--primary-color); margin-bottom: 8px; }
.spread-item p { color: var(--text-medium); }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.contact-form-section h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; color: var(--text-dark); }
.contact-form-section > p { color: var(--text-medium); margin-bottom: 32px; }

.contact-form { background: var(--bg-light); padding: 40px; border-radius: 16px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 2px solid #e5e7eb; border-radius: 8px; font-size: 16px; font-family: inherit; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); }
.form-group textarea { resize: vertical; }

.info-card { background: var(--bg-light); padding: 32px; border-radius: 12px; margin-bottom: 24px; }
.info-card.highlight { background: linear-gradient(135deg, var(--bg-light) 0%, #fef3c7 100%); border-left: 4px solid var(--primary-color); }
.info-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; color: var(--text-dark); }
.info-card > p { color: var(--text-medium); margin-bottom: 20px; }
.info-item { display: flex; gap: 16px; margin-bottom: 20px; }
.info-item:last-child { margin-bottom: 0; }
.info-item svg { flex-shrink: 0; color: var(--primary-color); }
.info-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.info-item p { color: var(--text-medium); font-size: 15px; }
.info-item a { color: var(--primary-color); text-decoration: none; }
.info-item a:hover { text-decoration: underline; }
.charity-status { margin-top: 12px; font-size: 14px; color: var(--secondary-color); font-weight: 600; }

.map-section { background: var(--bg-light); padding: 60px 0; }
.map-section h2 { font-size: 32px; font-weight: 800; margin-bottom: 24px; text-align: center; }
.map-container { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }

.quick-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.quick-card { background: white; padding: 32px; border-radius: 12px; box-shadow: var(--shadow-md); text-align: center; }
.quick-card h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.quick-card p { color: var(--text-medium); margin-bottom: 20px; }

/* Footer */
.footer { background: var(--text-dark); color: white; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--accent-color); }
.footer-col p { color: rgba(255, 255, 255, 0.82); line-height: 1.7; font-size: 15px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: rgba(255, 255, 255, 0.82); text-decoration: none; transition: color 0.3s; font-size: 15px; }
.footer-col ul a:hover { color: white; }
.contact-list li { color: rgba(255, 255, 255, 0.82); font-size: 15px; }
.footer .charity-status { color: var(--accent-color); }
.footer-bottom { text-align: center; padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.footer-bottom p { color: rgba(255, 255, 255, 0.65); font-size: 14px; }

/* Responsive */
@media (max-width: 968px) {
    .feature-content, .about-grid, .donate-feature, .program-feature, .program-feature.reverse, .contact-grid, .location-grid, .online-grid { grid-template-columns: 1fr; }
    .program-feature.reverse .program-image { order: 0; }
    .hero-title { font-size: 38px; }
    .page-hero h1 { font-size: 36px; }
    section { padding: 60px 0; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero-title { font-size: 32px; }
    .section-header h2 { font-size: 32px; }
    .hero { min-height: 500px; }
}
