/* Floating Right Action Buttons */
.floater-wrap {
    position: fixed;
    bottom: 40px;
    right: 10px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.floater-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.floater-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    transition: box-shadow 0.3s;
}

.floater-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.floater-btn:hover::before {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
}

.floater-btn svg {
    transition: transform 0.3s ease;
}

.floater-btn:hover svg {
    transform: scale(1.1);
}

.floater-call {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.floater-wa {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.floater-up {
    background: linear-gradient(135deg, #334155, #475569);
    border-radius: 16px;
}

@media (max-width: 768px) {
    .floater-wrap {
        bottom: 24px;
        right: 24px;
        gap: 12px;
    }

    .floater-btn {
        width: 48px;
        height: 48px;
    }
}

#floater-up-btn {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#floater-up-btn.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

#floater-up-btn.is-visible:hover {
    transform: translateY(-4px) scale(1.05);
}
