.floating-call-btn{
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 9999;
    background: #222e61;
    color: #fff;
    padding: 14px 14px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color .3s ease, transform .3s ease;
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-white);
    box-shadow: 0 12px 30px rgb(34 46 97 / 71%), 0 4px 12px rgba(var(--brand-navy-rgb), 0.22);
}

.floating-call-btn:hover{
    background: #30408a;
    color: #fff;
    transform: translateY(-3px);
}

.floating-call-btn i{
    font-size: 18px;
}

@media(max-width:768px){
    .floating-call-btn{
        right: 15px;
        bottom: 90px;
        padding: 12px 16px;
    }

    .floating-call-btn span{
        display:none;
    }

    .floating-call-btn{
        width:60px;
        height:60px;
        border-radius:50%;
        justify-content:center;
    }
}

.floating-call-btn:focus-visible {
    outline: 3px solid var(--brand-red);
    outline-offset: 3px;
}

body.show-chatbot .floating-call-btn {
    visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .floating-call-btn {
        transition: none;
    }
}
