/* ==================== PAYMENT GATEWAY STYLES ==================== */

.inquire-button {
    background: linear-gradient(135deg, #d60d45, #e65122);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14.5px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(214, 13, 69, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 7px;
	margin-top: 15px;
}

.inquire-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(214, 13, 69, 0.45);
}

/* Payment Modal */
.payment-modal .modal-content {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

.payment-modal .modal-header {
    background: linear-gradient(135deg, #d60d45, #e65122);
    color: white;
    padding: 20px 25px;
    border-bottom: none;
}

.payment-form .form-group {
    margin-bottom: 18px;
}

.payment-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    display: block;
}

.payment-form .form-control {
    border-radius: 12px;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    font-size: 15px;
}

.payment-form .form-control:focus {
    border-color: #d60d45;
    box-shadow: 0 0 0 4px rgba(214, 13, 69, 0.15);
    outline: none;
    transform: translateY(-1px);
}

.amount-input {
    font-size: 1.65rem;
    font-weight: 700;
    text-align: center;
    padding: 16px;
}

.payment-form textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* Success Modal */
#successModal .modal-content {
    border-radius: 22px;
    text-align: center;
}

/* Responsive */
@media (max-width: 576px) {
    .inquire-button {
        padding: 8px 16px;
        font-size: 13px;			
    }
}