/* Floating Contact Buttons CSS */

.floating-group {
    position: fixed;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-left {
    left: 20px;
}

.floating-right {
    right: 20px;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0066cc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    font-size: 24px;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Tooltip style */
.floating-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    pointer-events: none;
    font-family: sans-serif;
}

.floating-left .floating-tooltip {
    left: 60px;
}

.floating-right .floating-tooltip {
    right: 60px;
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Ripple Effect */
.chk-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.6;
    z-index: -1;
    animation: ripple 2s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .floating-group {
        bottom: 15px;
        gap: 10px;
    }

    .floating-left {
        left: 10px;
    }

    .floating-right {
        right: 10px;
    }
}