/* Enhanced Quick Donate Styles */
.donation-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: linear-gradient(135deg, #0056A6, #4CAF50);
    color: white;
}

.step span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d;
}

.step.active span {
    color: #0056A6;
    font-weight: 600;
}

.amount-selector h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0056A6;
    font-size: 1.3rem;
}

.amount-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #0056A6;
    padding: 1.2rem;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.amount-btn:hover, .amount-btn.active {
    background: linear-gradient(135deg, #0056A6, #4CAF50);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 86, 166, 0.3);
    border-color: transparent;
}

.amount-btn .amount {
    font-size: 1.4rem;
    font-weight: 700;
}

.amount-btn small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.custom-amount {
    margin-top: 2rem;
    text-align: center;
}

.custom-amount label {
    display: block;
    margin-bottom: 1rem;
    color: #4a4a4a;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    display: inline-block;
    width: 250px;
}

.input-wrapper .currency {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: #0056A6;
    font-size: 1.1rem;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1.1rem;
    text-align: center;
}

.payment-methods h3 {
    text-align: center;
    margin: 3rem 0 1.5rem 0;
    color: #0056A6;
    font-size: 1.3rem;
}

.payment-options {
    display: flex;
    gap: 1rem;
}

.payment-btn {
    flex: 1;
    background: white;
    border: 2px solid #e9ecef;
    padding: 1.5rem;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.payment-btn:hover {
    border-color: #0056A6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 86, 166, 0.15);
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0056A6, #4CAF50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.payment-info {
    flex: 1;
}

.payment-title {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.payment-info small {
    color: #4a4a4a;
    font-size: 0.85rem;
}

.payment-badge {
    background: #FFD54F;
    color: #1a1a1a;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.impact-preview {
    background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
    padding: 1.5rem;
    border-radius: 16px;
    margin: 2rem 0;
    border: 2px solid #4CAF50;
}

.impact-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #0056A6;
}

.impact-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a4a4a;
    font-size: 0.9rem;
}

.trust-item i {
    color: #4CAF50;
}

/* QR-Focused Donation Section */
.donation-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.donation-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.donation-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.method-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.method-card.active {
    border-color: #0056A6;
    box-shadow: 0 15px 40px rgba(0, 86, 166, 0.2);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.method-header i {
    font-size: 1.8rem;
    color: #0056A6;
}

.method-header h3 {
    margin: 0;
    color: #1a1a1a;
    font-size: 1.3rem;
}

.method-badge {
    background: #FFD54F;
    color: #1a1a1a;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: auto;
}

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

.donation-qr {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 86, 166, 0.2);
    margin-bottom: 1rem;
}

.qr-container p {
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.upi-apps {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.upi-apps span {
    background: #e9ecef;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #495057;
}

.bank-details-compact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row span {
    color: #6c757d;
    font-size: 0.9rem;
}

.detail-row strong {
    color: #1a1a1a;
    font-weight: 600;
}

.copy-mini {
    background: #0056A6;
    color: white;
    border: none;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    cursor: pointer;
    margin-left: 0.5rem;
}

.online-options {
    text-align: center;
    color: #6c757d;
}

.notify-btn {
    background: #e9ecef;
    color: #495057;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-btn:hover {
    background: #0056A6;
    color: white;
}

.donation-info {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.impact-amounts h4 {
    color: #0056A6;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.impact-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.impact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.impact-item .amount {
    font-weight: 700;
    color: #0056A6;
    font-size: 1.1rem;
}

.impact-item .impact {
    color: #4a4a4a;
    font-size: 0.9rem;
    text-align: right;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid #4CAF50;
}

.benefit-highlight i {
    font-size: 2rem;
    color: #4CAF50;
}

.benefit-highlight strong {
    color: #0056A6;
    display: block;
    margin-bottom: 0.3rem;
}

.benefit-highlight p {
    margin: 0;
    color: #4a4a4a;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .donation-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .donation-qr {
        width: 150px;
        height: 150px;
    }
}