/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.subtitle {
    color: #ff9f00;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 10px;
}

h1, h2, h3 {
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 15px;
}

h1 { font-size: 3rem; line-height: 1.2; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.2rem; }

p {
    color: #666;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ff9f00;
    color: #fff;
    border: none;
}
.btn-primary:hover {
    background-color: #e68f00;
}

/* Image Placeholders */
.img-placeholder {
    background-color: #e0e0e0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
}
.nav-links a {
    margin: 0 15px;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-actions i {
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 60px 20px;
    gap: 40px;
}
.hero-content {
    flex: 1;
}
.hero-campaign {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    max-width: 400px;
}
.play-btn {
    width: 50px; height: 50px;
    background: #ff9f00; color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.hero-image {
    flex: 1;
    position: relative;
}
.hero-main-img {
    height: 450px;
    border-radius: 100px 10px 100px 10px;
    background: linear-gradient(45deg, #d3d3d3, #efefef);
}
.floating-card {
    position: absolute;
    bottom: 20px; left: -30px;
    background: #fff; padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex; flex-direction: column; gap: 10px;
    align-items: center; text-align: center;
}
.floating-card .card-icon {
    font-size: 24px; color: #ff9f00;
}
.avatars { display: flex; }
.avatar {
    width: 30px; height: 30px;
    border-radius: 50%; background: #ccc;
    border: 2px solid #fff; margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }

/* Features */
.features {
    display: flex; gap: 20px; padding: 40px 20px;
}
.feature-card {
    flex: 1; display: flex; gap: 15px; padding: 20px;
    border-radius: 10px; align-items: flex-start;
}
.feature-icon {
    width: 50px; height: 50px; min-width: 50px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.feature-text p { margin-bottom: 0; font-size: 0.85rem; margin-top: 5px;}

/* About */
.about {
    display: flex; gap: 50px; padding: 80px 20px; align-items: center;
}
.about-images {
    flex: 1; position: relative;
    height: 500px;
}
.about-images .img-1 {
    width: 60%; height: 70%; position: absolute;
    top: 0; left: 0; border-radius: 10px; background: #ddd;
}
.about-images .img-2 {
    width: 50%; height: 60%; position: absolute;
    bottom: 0; right: 20px; border-radius: 10px; background: #ccc; z-index: 2;
}
.green-circle {
    width: 150px; height: 150px; background: #00a65a;
    border-radius: 50%; position: absolute; top: -20px; right: 50px; z-index: 0;
}
.orange-circle {
    width: 100px; height: 100px; background: #ff9f00;
    border-radius: 50%; position: absolute; bottom: -20px; left: 20px; z-index: 0;
}
.about-content { flex: 1; }
.mission-vision { display: flex; gap: 20px; margin: 30px 0; }
.mv-item { display: flex; gap: 15px; }
.mv-icon {
    width: 40px; height: 40px; background: #f0f7ff; color: #007bff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.mv-item p { font-size: 0.85rem; margin-bottom: 0; }

/* Highlight Campaign */
.highlight-campaign { background: #1a1a2e; color: #fff; padding: 80px 0; }
.highlight-container { display: flex; gap: 40px; align-items: center; }
.highlight-images { flex: 1; }
.highlight-main { height: 350px; background: #333; }
.highlight-content { flex: 1; }
.highlight-content h2 { color: #fff; }
.highlight-content p { color: #ccc; }
.progress-section { margin-top: 20px; }
.progress-bar { width: 100%; height: 8px; background: rgba(255,255,255,0.2); border-radius: 5px; margin-bottom: 10px; }
.progress-fill { height: 100%; background: #ff9f00; border-radius: 5px; }
.progress-stats { display: flex; justify-content: space-between; font-size: 0.85rem; color: #ccc; }

/* Campaigns Gallery */
.campaigns { padding: 80px 20px; }
.campaign-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.campaign-card { border: 1px solid #eee; border-radius: 10px; overflow: hidden; }
.card-img { height: 200px; border-radius: 0; }
.card-body { padding: 20px; }
.card-body h3 { font-size: 1.1rem; }
.card-body p { font-size: 0.9rem; margin-bottom: 15px; }
.card-body .progress-bar { background: #f0f0f0; }

/* Services */
.services { padding: 80px 20px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.service-card { 
    padding: 30px 20px; 
    background: #ffffff;
    border: 1px solid #f0f0f0; 
    border-radius: 16px; 
    transition: all 0.3s ease; 
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.04);
}
.service-card:hover { 
    box-shadow: 0 15px 40px rgba(0, 166, 90, 0.1); 
    transform: translateY(-8px); 
}
.service-icon {
    width: 70px; height: 70px; margin: 0 auto 20px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.service-card h3 { font-size: 1.1rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 0; }

/* CTA Banner */
.cta-banner { background: #2f5d50; padding: 100px 20px; color: #fff; }
.cta-banner h2 { color: #fff; }
.cta-icon { font-size: 40px; color: #ffd700; margin-bottom: 20px; }

/* Events */
.events { padding: 80px 20px; }
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.event-card { text-align: left; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.event-img { height: 250px; border-radius: 0; position: relative; }
.date-badge { position: absolute; top: 15px; right: 15px; color: #fff; padding: 10px 15px; border-radius: 8px; font-weight: bold; text-align: center; line-height: 1.2; }
.event-info { padding: 20px; background: #1a1a2e; color: #fff; }
.event-info h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.event-meta { display: flex; justify-content: space-between; font-size: 0.8rem; color: #aaa; }

/* Stats */
.stats-section { background: #111; padding: 60px 20px; color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item h2 { color: #fff; font-size: 3rem; margin-bottom: 5px; }
.stat-item p { color: #aaa; margin-bottom: 0; }

/* Testimonials */
.testimonials { padding: 80px 20px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testi-card { border: 1px solid #eee; padding: 30px; border-radius: 10px; position: relative; }
.quote-icon { width: 40px; height: 40px; background: #ff9f00; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: absolute; top: -20px; left: 30px; }
.testi-card p { font-style: italic; margin-top: 10px; font-size: 0.95rem; }
.author { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
.author .avatar { width: 50px; height: 50px; margin: 0; }
.author strong { display: block; font-size: 0.95rem; }
.author small { color: #888; }

/* Insta Gallery */
.insta-gallery { display: flex; height: 200px; }
.g-img { flex: 1; border-radius: 0; border-right: 1px solid #fff; }

/* Blog */
.blog { padding: 80px 20px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.blog-card { 
    background: #ffffff;
    border: 1px solid #f0f0f0; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.blog-img { height: 220px; border-radius: 0; }
.blog-body { padding: 20px; }
.blog-meta { display: flex; gap: 15px; font-size: 0.8rem; color: #ff9f00; margin-bottom: 10px; font-weight: 500; }
.blog-body h3 { font-size: 1.1rem; line-height: 1.4; }
.blog-body p { font-size: 0.9rem; }
.read-more { font-weight: 600; color: #ff9f00; font-size: 0.9rem; }

/* Partners */
.partners { padding: 40px 20px; border-top: 1px solid #eee; }
.partner-logos { display: flex; justify-content: space-around; align-items: center; color: #ccc; font-size: 1.5rem; font-weight: bold; }

/* Footer */
.footer { background: #1a1a2e; color: #fff; padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-size: 1.5rem; font-weight: 800; margin-bottom: 20px; }
.footer-col h3 { color: #fff; font-size: 1.1rem; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: #ccc; transition: 0.3s; }
.footer-col ul a:hover { color: #ff9f00; }
.contact-info li { color: #ccc; margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; color: #aaa; font-size: 0.9rem; }
.footer-links { display: flex; gap: 15px; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .campaign-grid, .service-grid, .event-grid, .stats-grid, .testi-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .hero, .about, .highlight-container { flex-direction: column; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
    .hero-image, .about-images, .highlight-images {
        width: 100%;
    }
    .hero-main-img {
        width: 100%;
        height: 320px;
        border-radius: 50px 10px 50px 10px;
    }
    .highlight-main {
        width: 100%;
    }
    .floating-card {
        left: 10px;
        bottom: 10px;
    }
}
@media (max-width: 768px) {
    .features { flex-direction: column; }
    .nav-links { display: none; }
    .campaign-grid, .service-grid, .event-grid, .stats-grid, .testi-grid, .blog-grid, .footer-grid { grid-template-columns: 1fr; }
    .partner-logos { flex-wrap: wrap; gap: 20px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
    .insta-gallery { flex-wrap: wrap; }
    .g-img { min-width: 33.33%; height: 100px; }
}

/* Donation Modal Styles */
.donation-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}
.donation-modal {
    background: #fff;
    width: 90%; max-width: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    display: flex; flex-direction: column;
}
.donation-modal-header {
    background: #2f5d50;
    color: #fff;
    padding: 20px 25px;
    display: flex; justify-content: space-between; align-items: center;
}
.donation-modal-header h3 {
    color: #fff; margin-bottom: 0; font-size: 1.3rem;
}
.donation-modal-close {
    background: none; border: none; color: #fff;
    font-size: 24px; cursor: pointer; opacity: 0.8;
    transition: 0.2s;
}
.donation-modal-close:hover { opacity: 1; }
.donation-modal-body {
    padding: 25px;
    overflow-y: auto;
    flex: 1;
}
.form-group {
    margin-bottom: 18px;
    text-align: left;
}
.form-label {
    display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; color: #333;
}
.form-control {
    width: 100%; padding: 12px 15px;
    border: 1px solid #ddd; border-radius: 8px;
    font-family: inherit; font-size: 0.95rem;
    transition: 0.2s;
}
.form-control:focus {
    border-color: #2f5d50; outline: none;
    box-shadow: 0 0 0 3px rgba(47, 93, 80, 0.15);
}
.nominal-preset-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 10px;
}
.preset-btn {
    border: 1px solid #ddd; background: #fff;
    padding: 10px 5px; border-radius: 8px;
    font-weight: 600; font-size: 0.85rem; cursor: pointer;
    transition: 0.2s; text-align: center;
}
.preset-btn:hover {
    border-color: #2f5d50; background: rgba(47, 93, 80, 0.05); color: #2f5d50;
}
.preset-btn.active {
    background: #2f5d50; border-color: #2f5d50; color: #fff;
}
.payment-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.payment-option {
    border: 1px solid #ddd; border-radius: 8px;
    padding: 10px; text-align: center; cursor: pointer;
    transition: 0.2s; font-size: 0.85rem; font-weight: 500;
}
.payment-option:hover {
    border-color: #2f5d50;
}
.payment-option.active {
    border-color: #2f5d50; background: rgba(47, 93, 80, 0.05);
}
.payment-logo {
    font-size: 1.5rem; color: #2f5d50; margin-bottom: 5px; display: block;
}
.transfer-instructions {
    background: #f9f9f9; border-radius: 10px; padding: 15px; margin-top: 15px;
    border-left: 4px solid #2f5d50; font-size: 0.85rem;
    text-align: left;
}
.transfer-instructions p { margin-bottom: 8px; color: #555; }
.bank-account-box {
    background: #fff; border: 1px dashed #2f5d50; border-radius: 6px;
    padding: 10px; text-align: center; margin: 10px 0; font-size: 1.05rem; font-weight: bold;
    color: #2f5d50;
}
.btn-submit-donation {
    width: 100%; text-align: center; margin-top: 10px;
    background: #2f5d50; color: #fff; border: none;
}
.btn-submit-donation:hover {
    background: #23473d;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}