.wt-modal {
    display: none;
    position: fixed;
    z-index: 99999999999999999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.wt-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    position: relative;
    z-index: 1000000;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.wt-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
    z-index: 1000001;
}

.wt-close:hover,
.wt-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.wt-inquiry-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.wt-inquiry-button:hover {
    background-color: #218838;
}

/* Form Styles */
.wt-contact-form {
    max-width: 100%;
    margin: 0;
}

.wt-contact-form .form-field {
    margin-bottom: 15px;
}

.wt-contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.wt-contact-form input[type="text"],
.wt-contact-form input[type="email"],
.wt-contact-form input[type="tel"],
.wt-contact-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.wt-contact-form textarea {
    height: 120px;
    resize: vertical;
}

.wt-contact-form .wt-submit-button {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wt-contact-form .wt-submit-button:hover {
    background: #218838;
}

.wt-contact-form .wt-submit-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.wt-form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 3px;
}

.wt-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wt-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .wt-modal-content {
        width: 95%;
        margin: 10% auto;
    }
} 