@charset "utf-8";
/* CSS Document */

/* Modal wrapper */
.dh-pinq-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.dh-pinq-hidden {
    display: none !important;
}

.dh-pinq-modal-wrap {
    background: #fff;
    padding: 30px 40px;
    border-radius: 6px;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    position: relative;
}

.dh-pinq-close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    background: none;
    border: none;
    cursor: pointer;
}

.dh-pinq-title {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.5em;
}

.dh-pinq-field {
    width: 100%;
    padding: 8px 10px;
    margin-top: 6px;
    margin-bottom: 16px;
    font-size: 1em;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    resize: vertical;
}

.dh-pinq-submit {
    background-color: #ff6600;
    color: #fff;
    border: none;
    padding: 12px 22px;
    font-size: 1em;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dh-pinq-submit:hover {
    background-color: #e55a00;
}

.dh-pinq-feedback {
    display: block;
    margin-top: 12px;
    font-weight: 600;
}

.required {
    color: red;
}
/* Override Astra's paragraph margin for inquiry form */
.dh-pinq-modal p {
  margin-bottom: 0.75em; /* smaller margin */
}