/* ===== Consultation Section ===== */
.consultation {
    position: relative;
    padding: var(--section-space-desktop) 0;
    overflow: hidden;
}

.consultation__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.consultation__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 31, 34, 0.7);
}

.consultation__wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.consultation__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 16px;
    max-width: 700px;
}

.consultation__desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin-bottom: 48px;
}

.consultation__form {
    width: 100%;
    max-width: 480px;
}

/* ===== v-form styles for consultation ===== */
.v-form {
    background: #FFFFFF;
    border-radius: var(--card-radius-lg);
    padding: 40px;
}

.v-form__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.v-form__group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.v-form__field {
    display: flex;
    flex-direction: column;
    margin-bottom: 0 !important;
}

.v-form__input,
.v-form__select {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    line-height: 1.4;
    color: var(--color-text);
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: border-color var(--transition-base);
    font-family: var(--font-family);
    box-sizing: border-box;
}

.v-form__input::placeholder {
    color: var(--color-text-secondary);
}

.v-form__input:focus,
.v-form__select:focus {
    border-color: var(--color-dark);
    box-shadow: 0 0 0 3px rgba(30, 31, 34, 0.08);
    outline: none;
}

.v-form__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%236B6B70' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.consultation .v-form__label {
    display: none !important;
}

.consultation .v-form__required {
    display: none !important;
}

.v-form__politic {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--color-text-secondary);
    text-align: left;
}

.v-form__politic input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: var(--color-dark);
    cursor: pointer;
}

.v-form__politic label {
    cursor: pointer;
}

.v-form__submit {
    width: 100%;
    height: 56px;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.v-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.v-form__success {
    padding: 24px;
    text-align: center;
    font-weight: 500;
}

.v-form__error {
    color: #DC2626;
    font-size: 0.8125rem;
    margin-top: 4px;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .consultation {
        padding: var(--section-space-mobile) 0;
    }

    .consultation__title {
        font-size: clamp(24px, 7vw, 32px);
    }

    .consultation__desc {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .v-form {
        padding: 24px;
    }

    .v-form__content {
        gap: 12px;
    }

    .v-form__group {
        gap: 12px;
    }
}
