﻿/* Floating Icons Container */
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

    /* Common Styles for Icons */
    .floating-icons .icon {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s, box-shadow 0.3s;
        animation: bounceIn 1.2s ease;
        cursor: pointer;
    }

        /* Hover Animation */
        .floating-icons .icon:hover {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

/* Specific Colors */
.whatsapp {
    background: #25d366;
}

.facebook {
    background: #1877f2;
}

.instagram {
    background: radial-gradient(circle at 30% 30%, #feda77, #f58529, #dd2a7b, #8134af, #515bd4);
}

.call {
    background: #34a853;
}

/* Entry Animation */
@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

/* Pulse Effect */
.floating-icons .icon {
    animation: bounceIn 1s ease, pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255,255,255,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0);
    }
}
