/* Floating Buttons CSS */
.floating-button {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-button i {
    font-size: 24px;
    color: #ffffff;
}

.floating-button:hover {
    transform: scale(1.1);
}

.whatsapp-button {
    background-color: #25D366;
    bottom: 30px;
    right: 30px;
}

.instagram-button {
    background-color: #C13584;
    bottom: 100px;
    left: 30px;
}

.phone-button {
    background-color: #0066cc;
    bottom: 30px;
    left: 30px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .floating-button {
        width: 50px;
        height: 50px;
    }

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

    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }

    .instagram-button {
        bottom: 80px;
        left: 20px;
    }

    .phone-button {
        bottom: 20px;
        left: 20px;
    }
}