/* Professional NGO Design System */
:root {
    --primary: #0a3d62; /* Navy Trust */
    --secondary: #3c6382;
    --accent: #f39c12; /* Action Gold */
    --text: #2d3436;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.7; background: var(--white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header & Nav */
.main-header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo-text { font-size: 1.5rem; font-weight: 700; color: var(--primary); letter-spacing: 1px; }
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; transition: var(--transition); }
.nav-links a:hover { color: var(--accent); }
.btn-cta { background: var(--primary); color: white !important; padding: 10px 20px; border-radius: 50px; }

/* Hero Section */
.hero { background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(10, 61, 98, 0.85)), url('../images/hero-bg.jpg'); 
        background-size: cover; background-position: center; padding: 120px 0; color: var(--white); text-align: center; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.btn-primary { background: var(--accent); color: white; padding: 15px 35px; text-decoration: none; border-radius: 5px; font-weight: 700; display: inline-block; margin: 10px; }

/* Grid Systems */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin: 40px 0; }
.grid-2 { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; padding: 60px 0; }

/* Cards & Components */
.card { padding: 40px; border-radius: 10px; background: var(--white); box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; border-bottom: 4px solid var(--accent); }
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 50px; color: var(--primary); }
.bg-light { background: var(--light-bg); padding: 60px 0; }

/* Footer */
footer { background: #1a1a1a; color: #ccc; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; border-bottom: 1px solid #333; padding-bottom: 40px; }

/* Contact Page Specifics */
.contact-hero { background: var(--primary); color: white; padding: 80px 0; text-align: center; }
.info-item { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; }
.info-item .icon { font-size: 1.5rem; background: var(--light-bg); padding: 10px; border-radius: 50%; }

.pro-form { background: var(--white); padding: 30px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--primary); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit;
}
.btn-submit { 
    background: var(--accent); color: white; border: none; padding: 15px 30px; 
    font-weight: 700; cursor: pointer; width: 100%; border-radius: 5px; transition: var(--transition);
}
.btn-submit:hover { background: var(--primary); }

.map-placeholder { 
    height: 300px; background: #eee; display: flex; align-items: center; 
    justify-content: center; margin-bottom: 40px; border-radius: 10px; border: 2px dashed #ccc;
}

/* Donation Page Layout */
.donate-hero { background: var(--secondary); color: white; padding: 60px 0; text-align: center; }

.impact-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px; 
    margin: -40px 0 40px; 
}

.impact-card { 
    background: var(--accent); 
    color: white; 
    padding: 30px; 
    border-radius: 8px; 
    text-align: center; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}

.impact-card h3 { font-size: 2rem; margin-bottom: 10px; }

.donation-container { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr; 
    gap: 40px; 
    padding-bottom: 60px; 
}

.payment-box { 
    background: var(--light-bg); 
    padding: 20px; 
    border-left: 4px solid var(--primary); 
    margin: 15px 0; 
    border-radius: 4px; 
}

.method-group { margin-bottom: 35px; }
.method-group h3 { color: var(--primary); margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 5px; }

.secure-text { font-size: 0.85rem; color: #27ae60; margin-top: 10px; font-weight: 600; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .donation-container { grid-template-columns: 1fr; }
}

/* Update the existing btn-cta for high visibility */
.btn-cta {
    background: var(--accent); /* Using the Action Gold color from before */
    color: white !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    transition: background 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-cta:hover {
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Donation Page Specifics */
.donate-hero { background: var(--secondary); color: white; padding: 80px 0; text-align: center; }
.impact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: -50px; }
.impact-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: center; }
.payment-box { background: #f4f7f6; padding: 20px; border-left: 4px solid var(--accent); margin: 15px 0; border-radius: 5px; }
.secure-text { font-size: 0.8rem; color: #27ae60; margin-top: 10px; font-weight: bold; }

@media (max-width: 768px) {
    .donation-container { grid-template-columns: 1fr; }
}

.logo-group { display: flex; align-items: center; text-decoration: none; gap: 10px; }
.header-logo { height: 50px; width: auto; object-fit: contain; }
.logo-text-wrapper { display: flex; flex-direction: column; }
.logo-main { color: var(--primary); font-weight: 800; font-size: 1.4rem; line-height: 1; }
.logo-sub { color: var(--secondary); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.nav-links a.active { color: var(--accent); border-bottom: 2px solid var(--accent); }