/* Floating Widgets Styles - Neuro-Marketing Redesign */

/* Container */
.floating-actions {
    position: fixed;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Hidden Initial State for Scroll Reveal */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Visible State */
.floating-actions.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Positioning */
.floating-left {
    left: 20px;
    align-items: flex-start;
}

.floating-right {
    right: 20px;
    align-items: flex-end;
}

/* Button Styles */
.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #ffffff !important;
    font-size: 28px;
    text-decoration: none;
    background-color: #333;
    /* Fallback */
}

.fab-btn:hover {
    transform: scale(1.1);
    color: #ffffff;
}

.whatsapp-btn {
    background-color: #25d366;
}

.call-btn {
    background-color: #c75634;
    /* Brand Accent */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .fab-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .floating-actions {
        bottom: 15px;
        gap: 10px;
    }

    .floating-left {
        left: 15px;
    }

    .floating-right {
        right: 15px;
    }
}