/* Donate Page Specific Styles */

.page-hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c2c 100%);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
}

.donation-intro {
    padding: 60px 20px;
    background-color: white;
}

.donation-intro h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.projects-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c2c 100%);
    color: white;
}

.projects-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

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

.project-card {
    background-color: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card.general-donation {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.project-image {
    width: 100px;
    height: 100px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.project-image i {
    font-size: 3rem;
    color: white;
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
    text-align: center;
}

.project-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.project-goal {
    margin-bottom: 25px;
}

.goal-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.raised {
    color: var(--primary-color);
    font-weight: 600;
}

.target {
    color: rgba(255,255,255,0.7);
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
    transition: width 0.3s ease;
}

.general-text {
    text-align: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.95);
}

.select-project {
    width: 100%;
    margin-top: 10px;
}

.donation-form-section {
    padding: 80px 20px;
    background-color: white;
}

.donation-form-section h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 20px;
}

.form-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.donation-form {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 15px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #ddd;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.amount-options {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.amount-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    background-color: white;
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.payment-option {
    display: block;
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: white;
    transition: all 0.3s ease;
    font-weight: 500;
}

.payment-label i {
    font-size: 1.5rem;
}

.payment-option input[type="radio"]:checked + .payment-label {
    border-color: var(--primary-color);
    background-color: rgba(0, 166, 81, 0.1);
    color: var(--primary-color);
}

.payment-details {
    margin-top: 20px;
}

.bank-info h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

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

.bank-details-box {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--dark-color);
}

.detail-value {
    color: #666;
    font-family: 'Courier New', monospace;
}

.bank-note {
    background-color: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coming-soon {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    color: #666;
    font-size: 1.1rem;
}

.coming-soon i {
    margin-right: 10px;
    color: var(--primary-color);
}

.form-group label input[type="checkbox"] {
    margin-right: 10px;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.form-actions .btn {
    min-width: 250px;
}

.privacy-note {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-note i {
    color: var(--primary-color);
}

.donation-impact {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c2c 100%);
    color: white;
}

.donation-impact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

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

.impact-item {
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
}

.impact-icon {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.impact-item p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.other-ways {
    padding: 80px 20px;
    background-color: white;
}

.other-ways h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 60px;
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.way-card {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.way-card:hover {
    transform: translateY(-10px);
}

.way-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.way-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.way-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .amount-options {
        flex-direction: column;
    }
    
    .amount-btn {
        width: 100%;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .donation-form {
        padding: 25px;
    }
}
