#floating_contact {
    position: fixed;
    right: 20px;
    bottom: 20px; /* 20% yerine sabit px */
    z-index: 9999 !important; /* üstte kalsın */
}
.contact_btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    border: 0;
    transition: transform .2s ease;
}
.contact_btn:hover { transform: scale(1.08); }
@media (prefers-reduced-motion: reduce) {
    .contact_btn { transition: none; }
}

#contact_form_panel {
    position: absolute;
    right: 70px;
    bottom: 0;
    width: 25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
}
#contact_form_panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity .25s ease, transform .25s ease;
}