/* Floating contact buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 20px;
    z-index: 1000;
}

.floating-contact-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.floating-contact-buttons a:hover {
    transform: scale(1.1);
}

.whatsapp-button {
    background-color: #25d366;
    right: 20px;
}

.call-button {
    background-color: #007bff;
    left: 20px;
}

.floating-contact-buttons i {
    font-size: 28px;
}

@media (min-width: 768px) {
    .call-button {
        display: none;
    }
}

/* Pulse animation for the buttons */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.floating-contact-buttons a {
    animation: pulse 2s infinite;
}

.whatsapp-button {
    animation-name: pulse-whatsapp;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.call-button {
    animation-name: pulse-call;
}

@keyframes pulse-call {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}