/* Animated AI Button */
.nav-ai-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.nav-ai-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.ai-text {
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
    animation: colorShift 3s ease-in-out infinite;
}

@keyframes colorShift {
    0%, 100% {
        filter: brightness(1);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    50% {
        filter: brightness(1.3);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

.ai-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.3);
    animation: pulse-wave 2s infinite;
    pointer-events: none;
}

@keyframes pulse-wave {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.nav-complaint-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    margin-right: 10px;
}

.nav-complaint-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.nav-complaint-btn i,
.nav-ai-btn i {
    margin-right: 8px;
}

/* Mobile responsive for action buttons */
@media (max-width: 768px) {
    .nav-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
    }

    .nav-complaint-btn,
    .nav-ai-btn {
        width: 100%;
        text-align: center;
        margin: 0;
    }
}
