/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.call-btn {
    position: fixed;
    left: 30px;
    bottom: 30px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
}

.call-btn:hover {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

.floating-btn:active {
    transform: scale(0.95);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-btn {
        right: 20px;
        bottom: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    .call-btn {
        left: 20px;
        bottom: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}