.floating-buttons {
    position: fixed;
    z-index: 999;
}

.floating-buttons.left {
    left: 20px;
    bottom: 20px;
}

.floating-buttons.right {
    right: 20px;
    bottom: 20px;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    margin-bottom: 10px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: white;
}

.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.floating-button.phone {
    background-color: #25D366;
}

.floating-button.whatsapp {
    background-color: #25D366;
}

.floating-button i {
    font-size: 24px;
    line-height: 60px;
}

@media (max-width: 768px) {
    .floating-button {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
    
    .floating-button i {
        font-size: 20px;
        line-height: 50px;
    }
    
    .floating-buttons.left {
        left: 10px;
        bottom: 10px;
    }
    
    .floating-buttons.right {
        right: 10px;
        bottom: 10px;
    }
}
