/* =========================
   CONSULTATION MODAL
========================= */

.consultation-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 9999;
}

.consultation-modal.active {
    display: flex;
}

.consultation-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.75);
    backdrop-filter: blur(4px);
}

.consultation-dialog {
    position: relative;
    max-width: 480px;
    margin: 8vh auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.consultation-dialog h3 {
    margin-bottom: 6px;
}

.modal-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.consultation-dialog input,
.consultation-dialog textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
}

.consultation-dialog textarea {
    min-height: 100px;
    resize: vertical;
}

.consultation-dialog button {
    width: 100%;
}

.consultation-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.form-success {
    text-align: center;
}

.form-success h4 {
    margin-bottom: 8px;
}

/* =========================
   CONSULTATION MODAL (POPUP)
========================= */

.consultation-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.consultation-modal.active {
    display: block;
}

.consultation-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.75);
}

.consultation-dialog {
    position: relative;
    max-width: 480px;
    margin: 10vh auto;
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    z-index: 1;
}

.consultation-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.consultation-dialog input,
.consultation-dialog textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
}

.form-success {
    text-align: center;
}

