/* ==========================================================================
   FIX: DYNAMIC FLOATING SCROLL SYSTEM
   ========================================================================== */
.float-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99999;
    align-items: center;
}

.float-btn {
    width: 48px; /* Standard balanced click target size */
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px; /* Perfectly centered alignment for arrow vectors */
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp {
    background-color: #25D366;
}
.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-3px) scale(1.05);
}

.btn-top {
    background-color: #ff6600;
}
.btn-top:hover {
    background-color: #e05900;
    transform: translateY(-3px) scale(1.05);
}

@media (max-width: 768px) {
    .float-actions {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
}