/* Contact Page Enhanced Styles */

/* Payment Methods Section */
.payment-methods {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.payment-methods h4 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.payment-options {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.payment-option input[type="radio"] {
    margin-right: 0.75rem;
    transform: scale(1.2);
}

.payment-option input[type="radio"]:checked + label {
    color: #007bff;
    font-weight: 600;
}

.payment-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #495057;
    transition: color 0.3s ease;
}

.payment-option label i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Payment Details Section */
.payment-details-section {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-details-section h4 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.payment-method-details {
    display: none;
    animation: fadeIn 0.3s ease;
}

.payment-method-details.active {
    display: block;
}

.payment-info-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.payment-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.payment-info-header i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    color: #007bff;
}

.payment-info-header h5 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.payment-info-content {
    margin-bottom: 1.5rem;
}

.payment-info-content p {
    margin-bottom: 0.5rem;
    color: #495057;
    line-height: 1.6;
}

.payment-info-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.payment-info-content li {
    margin-bottom: 0.5rem;
    color: #495057;
}

.copy-btn, .paypal-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.copy-btn:hover, .paypal-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.copy-btn i, .paypal-btn i {
    margin-right: 0.5rem;
}

/* Card Form Styles */
.card-form {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    margin-top: 1rem;
}

.card-form .form-group {
    margin-bottom: 1rem;
}

.card-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #495057;
}

.card-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.card-form input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.card-form .form-row {
    display: grid;

    gap: 1rem;
}

/* Quick Amounts */
.quick-amounts {
    margin: 1.5rem 0;
}

.quick-amounts label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #495057;
}

.amount-buttons {
    display: grid;
    
    gap: 0.75rem;
}

.amount-btn {
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.amount-btn:hover {
    border-color: #007bff;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.15);
}

.amount-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

/* Amount Input Group */
.amount-input-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.amount-input-group select {
    flex: 0 0 120px;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    background: white;
    font-size: 1rem;
}

.amount-input-group input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
}

.amount-input-group select:focus,
.amount-input-group input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Payment Instructions Modal */
.payment-instructions {
    text-align: center;
}

.payment-instructions h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-instructions h3 i {
    margin-right: 0.75rem;
    font-size: 1.5rem;
    color: #007bff;
}

.instructions-content {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.instructions-content p {
    margin-bottom: 0.75rem;
    color: #495057;
    line-height: 1.6;
}

.instructions-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.instructions-content li {
    margin-bottom: 0.5rem;
    color: #495057;
}

.instructions-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Give Button in Footer */
.give-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

.give-btn:hover {
    background: linear-gradient(135deg, #218838, #1ea085);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    color: white !important;
}

/* Enhanced Form Styles */
.giving-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.giving-form h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Donate Button */
.donate-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.donate-btn:hover {
    background: linear-gradient(135deg, #218838, #1ea085);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.donate-btn i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.notification.error {
    background: #dc3545;
}

.notification.info {
    background: #17a2b8;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 1rem;
    padding: 0;
    line-height: 1;
}

.notification-close:hover {
    opacity: 0.8;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-header .close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    line-height: 1;
}

.modal-header .close:hover {
    color: #dc3545;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Button Styles */
.btn-primary {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-secondary:hover {
    background: #545b62;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(108, 117, 125, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    
    }
    
   
    
    
    .amount-input-group {
        flex-direction: column;
    }
    
    .amount-input-group select {
        flex: none;
        width: 100%;
    }
    
    .card-form .form-row {
       
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
    
    .instructions-actions {
        flex-direction: column;
    }
    
    .instructions-actions button,
    .instructions-actions a {
        width: 100%;
        justify-content: center;
    }


@media (max-width: 480px) {
    .amount-buttons {
        
    }
    
    .payment-methods {
        padding: 1rem;
    }
    
    .payment-details-section {
        padding: 1rem;
    }
    
    .giving-form {
        padding: 1rem;
    }
}
