/* Floating Action Buttons Container */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: auto;
    display: flex;
    flex-direction: column-reverse;
    /* Stack them vertical, bottom one first */
    gap: 15px;
    z-index: 1000;
}

/* Shared Button Styles */
.action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #FFF;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.action-btn:hover {
    transform: translateY(-5px);
    color: white;
    filter: brightness(1.1);
}

/* WhatsApp Button Specifics */
.whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
    animation: pulse-green 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Phone Button Specifics */
.phone-btn {
    background: linear-gradient(45deg, #00C6FF, #0072FF);
    /* Nice Blue Gradient */
    animation: pulse-blue 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}


/* Animations */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        left: 20px;
        right: auto;
        gap: 15px;
        flex-direction: column-reverse;
    }

    .action-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}