/* Overlay Background (Dark Opacity) */
.inquiry-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark background with opacity */
    z-index: 999; /* Ensures the overlay is below the form */
    display: none; /* Initially hidden */
}

/* Hidden Form */
.inquiry-form-container {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: top 0.5s ease-in-out;
    z-index: 1000;
}

/* Show Form */
.inquiry-form-container.show {
    top: 20%;
}

/* Show Overlay */
.inquiry-overlay.show {
    display: block; /* Show overlay when form is open */
}

/* Close Button */
.inquiry-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: black; /* Visible color */
    font-weight: bold;
}

.inquiry-close-btn:hover {
    color: red;
}

/* Form Inputs */
.inquiry-form input, .inquiry-form textarea {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.inquiry-form button {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.inquiry-form button:hover {
    background-color: #218838;
}

.inquiry-label {
    font-size: 24px; /* Adjust the font size */
    font-weight: bold; /* Make the text bold */
    color: black; /* Set the text color */
    margin-bottom: 20px; /* Add space below the label */
}
