/* Professional enhancements for CU AI Hub */

/* Custom badge colors for professional look */
.badge-professional {
    background: linear-gradient(45deg, #0d6efd, #0b5ed7);
}

/* Enhanced card hover effects */
.vendor-card:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease-prein-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Thread engagement indicators */
.thread-activity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.thread-activity .activity-indicator {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #6c757d;
}

/* Professional rating stars */
.star-rating {
    color: #ffc107;
    font-size: 1.1em;
}

.star-rating .far {
    color: #dee2e6;
}

/* ROI highlight boxes */
.roi-highlight {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
}

/* Professional quote styling */
.professional-quote {
    border-left: 4px solid #0d6efd;
    background: rgba(13, 110, 253, 0.05);
    padding: 1rem;
    margin: 1rem 0;
}

/* Activity indicators */
.activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.activity-dot.active {
    background: #28a745;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Professional table styling */
.comparison-table th {
    background: var(--bs-primary);
    color: white;
    font-weight: 600;
    text-align: center;
}

.comparison-table td {
    text-align: center;
    vertical-align: middle;
}

/* Enhanced form styling */
.form-professional .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Statistics counter animation */
.stat-counter {
    font-weight: 700;
    color: #0d6efd;
}

/* Professional alerts */
.alert-professional {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-left: 4px solid #0d6efd;
}

/* Interactive elements */
.interactive-element {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.interactive-element:hover {
    transform: scale(1.02);
}

/* Ensure clickable links work properly */
.text-info {
    color: #0dcaf0 !important;
    text-decoration: underline;
    cursor: pointer;
}

.text-info:hover {
    color: #31d2f2 !important;
    text-decoration: underline;
}

/* Fix text visibility in member feedback cards */
.card-body .bg-light {
    background-color: #f8f9fa !important;
    color: #212529 !important;
}

.card-body .bg-light p,
.card-body .bg-light small {
    color: #212529 !important;
}

.card-body .text-muted {
    color: #6c757d !important;
}

/* Mobile responsiveness enhancements */
@media (max-width: 768px) {
    .vendor-card {
        margin-bottom: 1rem;
    }
    
    .thread-activity {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-stats {
        text-align: center !important;
    }
}