/*
 * contact-switch.css — перемикач у контактному вікні:
 * "Дзвінок менеджеру" (телефони, за замовчуванням) ⇄ "Залишити заявку" (форма).
 * Підключається на всіх сторінках після forms*.css.
 */

.form-screen .hidden {
    display: none !important;
}

/* Клікабельний напис "Працюймо разом" на головній — відкриває контактне вікно */
.open-contact {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 5px;
    transition: all 0.3s;
}

.open-contact:hover {
    color: #D4A365;
    text-decoration-color: #D4A365;
}

/* Сегментований перемикач */
.form-screen .contact-switch {
    display: flex;
    flex-direction: row;
    margin: 24px 0 40px 0;
    border: 1px solid #253C59;
    border-radius: 5px;
    overflow: hidden;
}

.form-screen .contact-switch .switch-btn {
    border: none;
    background: transparent;
    color: #253C59;
    font-family: "Gotham Pro Regular", Arial, sans-serif;
    font-size: 16px;
    padding: 14px 28px;
    cursor: pointer;
    transition: all 0.3s;
}

.form-screen .contact-switch .switch-btn.active {
    background: #18273A;
    color: #FFFFFF;
    font-family: "Gotham Pro Medium Regular", Arial, sans-serif;
}

.form-screen .contact-switch .switch-btn:not(.active):hover {
    color: #D4A365;
}

/* Панель з телефонами */
.form-screen .contact-phones {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.form-screen .contact-phones .contact-phones-hint {
    margin: 0 0 6px 0;
    color: #253C59;
    opacity: 0.7;
    font-family: "Gotham Pro Regular", Arial, sans-serif;
    font-size: 16px;
    text-align: center;
    max-width: 420px;
    line-height: 150%;
}

.form-screen .contact-phones a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #253C59;
    font-family: "Gotham Pro Medium Regular", Arial, sans-serif;
    font-size: 20px;
    transition: color 0.3s;
}

.form-screen .contact-phones a:hover {
    color: #D4A365;
}

.form-screen .contact-phones a img {
    width: 24px;
    height: 24px;
}

.form-screen .contact-phones .contact-mail {
    margin-top: 10px;
    font-family: "Gotham Pro Regular", Arial, sans-serif;
    font-size: 18px;
}

@media only screen and (max-width: 478px) {
    .form-screen .contact-switch .switch-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .form-screen .contact-phones a {
        font-size: 18px;
    }
}
