.floating-contact-buttons {
    position: fixed;
    bottom: 80px;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    z-index: 999999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.floating-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.whatsapp-btn {
    background-color: #25D366;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 30px;
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    overflow: hidden;
    justify-content: flex-start;
    padding-left: 11px;
}

.whatsapp-btn span {
    display: inline-block;
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    transition: all 0.3s ease;
    margin-left: 0;
}

.whatsapp-btn:hover {
    width: 220px;
}

.whatsapp-btn:hover span {
    max-width: 160px;
    opacity: 1;
    margin-left: 12px;
}

.floating-contact-buttons .scrollup {
    position: static;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    z-index: auto;
}

.call-btn {
    background-color: #007bff;
}

@media (max-width: 768px) {
    .floating-contact-buttons {
        bottom: 70px;
        right: 10px;
        gap: 10px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
    }

    .floating-btn svg {
        width: 24px;
        height: 24px;
    }
}