/* ==========================================
   SUPPORT FLOAT (PRO VERSION)
========================================== */

.support-float {
    position: fixed;
    right: 22px;
    bottom: 120px; /* ABOVE WhatsApp */
    width: 60px;
    height: 60px;
    border-radius: 50%;

    background: linear-gradient(135deg, #6c5ce7, #8e44ad);
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    cursor: pointer;

    box-shadow: 0 14px 35px rgba(108, 92, 231, 0.35);
    transition: all .3s ease;
    z-index: 9999;
}

/* Hover effect */
.support-float:hover {
    transform: translateY(-5px) scale(1.08);
}

/* Icon */
.support-float i {
    font-size: 24px;
}

/* Badge (OUTSIDE CIRCLE) */
.support-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

/* ==========================================
   FLOATING LABEL (AUTO SHOW & HIDE)
========================================== */

.support-label {
    position: absolute;
    right: 75px;
    background: #1f2937;
    color: #ffffff;

    padding: 8px 14px;
    border-radius: 25px;

    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;

    opacity: 0;
    transform: translateX(10px);
    animation: supportSlide 4s infinite;
}

/* Label arrow */
.support-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #1f2937;
}

/* Continuous show & hide animation */
@keyframes supportSlide {

    0% {
        opacity: 0;
        transform: translateX(10px);
    }

    15% {
        opacity: 1;
        transform: translateX(0);
    }

    60% {
        opacity: 1;
        transform: translateX(0);
    }

    75% {
        opacity: 0;
        transform: translateX(10px);
    }

    100% {
        opacity: 0;
        transform: translateX(10px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .support-label {
        display: none;
    }

    .support-float {
        bottom: 100px;
    }
}