/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--light-green) 0%, #e6f4ea 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.svg') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    margin: 0;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* ===== FUNDRAISING SECTION ===== */
.fundraising {
    background-color: var(--white);
    padding: 60px 0;
    position: relative;
}

.fundraising::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-medium), transparent);
}

.fundraising h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.fundraising h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.fundraising h2 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.progress-container {
    background-color: #f8fdf9;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(10, 92, 54, 0.1);
}

.amount {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.3rem;
    flex-wrap: wrap;
    gap: 10px;
}

.collected {
    color: var(--primary-color);
    background: rgba(10, 92, 54, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.goal {
    color: var(--text-light);
    background: rgba(102, 102, 102, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.progress-bar {
    height: 25px;
    background-color: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-top: 15px;
}

.progress-text span {
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(10, 92, 54, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin: 0 5px;
}

.progress-note {
    margin-top: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 10px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.progress-note i {
    color: var(--secondary-color);
    margin-right: 5px;
}

/* ===== INFO CARDS ===== */
.info-cards {
    background-color: var(--gray-light);
    padding: 80px 0;
}

.info-cards h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2.2rem;
    position: relative;
}

.info-cards h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card:hover::before {
    transform: scaleX(1);
}

.card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== BANK PREVIEW ===== */
.bank-preview {
    background-color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.bank-preview h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

.bank-preview h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.bank-preview > p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.bank-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.bank-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-green);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 150px;
}

.bank-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: var(--white);
    border: 1px solid rgba(10, 92, 54, 0.1);
}

.bank-logo img {
    height: 70px;
    width: auto;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.bank-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.bank-logo p {
    font-weight: 600;
    color: var(--text-medium);
    margin: 0;
}

/* ===== RESPONSIVE: Homepage ===== */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2.3rem;
    }

    .hero-image img {
        max-height: 350px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .amount {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
    }
    
    .collected, .goal {
        width: fit-content;
    }

    .bank-logos {
        gap: 25px;
    }

    .bank-logo {
        min-width: 120px;
        padding: 15px;
    }

    .bank-logo img {
        height: 60px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }

    .fundraising h2,
    .info-cards h2,
    .bank-preview h2 {
        font-size: 1.8rem;
    }

    .cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .bank-logos {
        gap: 20px;
    }

    .bank-logo {
        min-width: 100px;
        padding: 15px;
    }

    .bank-logo img {
        height: 50px;
    }
}