/* Fixed Contact Buttons Styles */
.fixed-contact-buttons {
    position: fixed;
    bottom: 140px;
    right: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.contact-btn i {
    font-size: 20px;
}

.call-btn {
    background-color: #008af4f1; /* Green color for call */
}

.whatsapp-btn {
    background-color: #0dbb4d; /* WhatsApp green */
}

.btn-text {
    position: absolute;
    left: -100%;
    opacity: 0;
    white-space: nowrap;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    padding-right: 10px;
}

.contact-btn:hover .btn-text {
    left: 50px;
    opacity: 1;
}

.contact-btn:hover i {
    margin-right: 40px;
}

/* Animation for attention */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.attention {
    animation: pulse 1.5s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fixed-contact-buttons {
        bottom: 130px;
        right: 15px;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
    }
    
    .contact-btn i {
        font-size: 18px;
    }
}