.modal-backdrop.show {
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.4);
}

/* Modal content styling */
.inquiry-modal .modal-content {
    border-radius: 15px;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    padding: 2rem;
}

/* Header styling */
.inquiry-modal .modal-header {
    border-bottom: none;
    position: relative;
    padding-bottom: 0; /* remove extra gap */
    margin-bottom: 0.5rem; /* tighter spacing */
    justify-content: center;
}
/* Title */
.inquiry-modal .modal-title {
    color: #ff0048;
    font-weight: 700;
    font-size: 1.6rem;
    text-align: center;
    width: 100%;
}

/* Close button — fixed in top-right corner */
.inquiry-modal .btn-close {
    position: fixed;
    top: 18px;
    right: 18px;
    background-color: gray;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    filter: invert(1);
    opacity: 0.9;
    transition: 0.3s;
}

.inquiry-modal .btn-close:hover {
    background-color: darkgray;
    opacity: 1;
}

/* Paragraph text */
.inquiry-modal .modal-body p {
    color: #333;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 1.2rem;
}

/* Input fields */
.inquiry-modal .form-control {
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #ccc;
}

/* Submit button */
.inquiry-modal .btn-submit {
    background-color: #ff0048;
    color: white;
    border-radius: 8px;
    border: none;
    padding: 10px 20px;
    transition: 0.3s;
    width: 100%;
    font-weight: 600;
}

.inquiry-modal .btn-submit:hover {
    background-color: #e60042;
}