﻿.floating-contact {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .floating-contact a {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 28px;
        text-decoration: none;
        box-shadow: 0 5px 15px rgba(0,0,0,.25);
        transition: .3s;
    }

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: #e53935;
}

.floating-contact a:hover {
    transform: scale(1.12);
    color: #fff;
}

@media(max-width:768px) {
    .floating-contact {
        right: 12px;
    }

        .floating-contact a {
            width: 48px;
            height: 48px;
            font-size: 24px;
        }
}
