/* Support Chat Widget */
.support-chat-widget {
    position: fixed !important;
    bottom: 80px !important;
    right: 30px !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
}

.support-chat-button {
    display: flex !important;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0088cc, #0066aa) !important;
    color: #fff !important;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: bold;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(0, 136, 204, 0.7);
    }
}

.support-chat-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 136, 204, 0.6);
    animation: none;
}

.support-chat-button:active {
    transform: translateY(-1px) scale(1.02);
}

.chat-icon {
    width: 24px;
    height: 24px;
    animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.support-chat-button:hover .chat-icon {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.chat-text {
    font-size: 1rem;
}

.chat-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.chat-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(0, 0, 0, 0.9);
}

.support-chat-button:hover + .chat-tooltip {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .support-chat-widget {
        bottom: 70px;
        right: 20px;
    }
    
    .support-chat-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .chat-icon {
        width: 20px;
        height: 20px;
    }
    
    .chat-text {
        font-size: 0.9rem;
    }
    
    .chat-tooltip {
        display: none;
    }
}