/* 
   Specialists section styling
   Enhancements for specialist cards and components
*/

/* Specialist card styling */
.specialist-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.specialist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(139, 92, 246, 0.2);
}

/* Specialist icon styling */
.specialist-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.usefulai-specialist-icon {
    background: rgba(139, 92, 246, 0.15);
    color: #8B5CF6;
}

.mentor-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
}

/* Specialist title styling */
.specialist-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

/* Capabilities list styling */
.capabilities-list {
    background: rgba(139, 92, 246, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

.capability-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.capability-item:last-child {
    margin-bottom: 0;
}

.capability-check {
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #8B5CF6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    margin-top: 3px;
}

/* Integration badge styling */
.integration-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
}

.microsoft-badge {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.calendar-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

/* Button positioning - FIXED */
.specialist-button {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    width: 100%;
}

.learn-more-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #8B5CF6;
    color: #8B5CF6;
    background: transparent;
}

.learn-more-button:hover {
    background: #8B5CF6;
    color: white;
    transform: translateY(-2px);
}

.coming-soon-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    color: #666;
    background: #f1f5f9;
    cursor: default;
}

/* Enhanced hover effects */
.specialist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.specialist-card:hover::before {
    opacity: 1;
}

.specialist-card > * {
    position: relative;
    z-index: 1;
}
