/* Container for the floating icons */
.finggu-floating-wrapper {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999999; /* Ensures icons stay above all other elements */
}

/* Base style for each icon button */
.finggu-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Flaticon size and color */
.finggu-icon i {
    font-size: 22px;
    color: #ffffff;
    display: flex;
}

/* Hover effects */
.finggu-icon:hover {
    transform: scale(1.15) translateX(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Social Brand Colors */
.finggu-call {
    background: #34b7f1; /* Bright Blue */
}

.finggu-whatsapp {
    background: #25d366; /* WhatsApp Green */
}

.finggu-facebook {
    background: #1877f2; /* Facebook Blue */
}

.finggu-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.finggu-youtube {
    background: #ff0000; /* YouTube Red */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .finggu-floating-wrapper {
        right: 10px;
    }
    
    .finggu-icon {
        width: 45px;
        height: 45px;
    }

    .finggu-icon i {
        font-size: 18px;
    }
}