.checkbox-label,
.modal-close,
.submit-btn {
    cursor: pointer;
    display: flex;
}
.consultation-modal {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100vw;
    height: 100vh;
    z-index: 999999999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content {
    height: 100vh;
    position: relative;
    overflow-y: auto;
    animation: 0.3s ease-out modalSlideIn;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem;
}
.modal-close {
    transform: scale(1.4);
    background: 0 0;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    padding: 0.5rem;
    border-radius: 50%;
    transition: 0.2s;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}
.checkmark,
.modal-close svg {
    width: 20px;
    height: 20px;
}
.modal-close:hover {
    background-color: #f8f9fa;
    color: #495057;
}
.modal-body {
    padding: 2rem;
}
.modal-title {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
    color: #212529;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-align: center;
}
.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: 0.2s;
    background-color: #fff;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: 0;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6c757d;
}
.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}
.checkbox-label {
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.4;
}
.checkbox-label input[type="checkbox"] {
    display: none;
}
.checkmark {
    border: 2px solid #dee2e6;
    border-radius: 4px;
    background-color: #fff;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: 0.2s;
}
.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.terms-link {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.2s;
}
.terms-link:hover {
    color: #0b5ed7;
    text-decoration: underline;
}
.submit-btn {
    background: linear-gradient(135deg, #0d6efd 0, #0b5ed7 100%);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.2s;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.submit-btn:hover {
    background: linear-gradient(135deg, #0b5ed7 0, #0a58ca 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
}
.submit-btn:active {
    transform: translateY(0);
}
.submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
