/* Enquiry Popup Overlay */
#enquiry-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9999;
}

/* Popup Box Styling */
.enquiry-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 500px;
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    font-family: 'Segoe UI', sans-serif;
}

/* Close Button */
.enquiry-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #888;
    cursor: pointer;
}

/* Enquiry Form Inputs */
#enquiry-form input[type="text"],
#enquiry-form input[type="email"],
#enquiry-form input[type="tel"],
#enquiry-form input[type="file"],
#enquiry-form textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

/* Submit Button */
#enquiry-form button {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#enquiry-form button:hover {
    background: #005f8c;
}

/* Success/Error Message Box */
#enquiry-msg {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    display: block;
}

/* Enquiry Button */
.enquiry-now-button {
    background-color: #ff6600;
    border: none;
    color: white;
    padding: 10px 18px;
    font-size: 14px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 6px;
}

.enquiry-now-button:hover {
    background-color: #e65c00;
}

.upload-btn {
    display: inline-block;
    margin-left: 15px;
    padding: 10px 18px;
    background-color: #555;
    color: #fff;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.upload-btn:hover {
    background-color: #333;
}




/* Responsive */
@media (max-width: 600px) {
    .enquiry-popup-content {
        padding: 20px 15px;
    }
}
