/* Floating Contact Buttons */
.floating-button {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 998;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-button:hover {
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

.whatsapp-button {
    bottom: 80px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.whatsapp-button i {
    font-size: 32px;
}

.call-button {
    bottom: 20px;
    height: 50px;
    border-radius: 25px;
    padding: 0 20px;
}

.call-button i {
    font-size: 20px;
}

.call-button span {
    margin-left: 8px;
    font-weight: 500;
    font-size: 16px;
}

@media (max-width: 767.98px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 70px;
    }
    
    .whatsapp-button i {
        font-size: 26px;
    }
    
    .call-button {
        height: 40px;
        padding: 0 15px;
    }
    
    .call-button i {
        font-size: 16px;
    }
    
    .call-button span {
        font-size: 14px;
    }
}
