/* Floating phone + apply CTA — replaces #back_to_top */

#back_to_top {
    display: none !important;
}

.vd-floating-cta {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.vd-floating-cta a {
    pointer-events: auto;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 4px 18px rgba(9, 68, 244, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.vd-floating-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(9, 68, 244, 0.22);
}

.vd-floating-cta__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #0944f4;
    color: #fff;
    flex-shrink: 0;
}

.vd-floating-cta__phone:hover {
    background: #0836c7;
    color: #fff;
}

.vd-floating-cta__apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    background: #008d0b;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.vd-floating-cta__apply:hover {
    background: #0a9e14;
    color: #fff !important;
}

.vd-floating-cta__apply-text--short {
    display: none;
}

.right_side_menu_opened .vd-floating-cta,
.side_area_slide_with_content .side_menu_open .vd-floating-cta,
.popup_menu_opened .vd-floating-cta {
    display: none;
}

@media only screen and (max-width: 480px) {
    .vd-floating-cta {
        right: 12px;
        bottom: 14px;
        gap: 6px;
    }

    .vd-floating-cta__phone {
        width: 42px;
        height: 42px;
    }

    .vd-floating-cta__phone svg {
        width: 18px;
        height: 18px;
    }

    .vd-floating-cta__apply {
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
    }

    .vd-floating-cta__apply-text--long {
        display: none;
    }

    .vd-floating-cta__apply-text--short {
        display: inline;
    }
}
