/* Service Category Page Styles */

/* Line clamp utility for provider descriptions */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Provider card hover effects */
.provider-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Filter button styles */
.filter-btn.active {
    background-color: #EF4444;
    color: white;
}

/* Testimonial cards animation */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Avatar group hover effects */
.avatar-group img:hover {
    transform: scale(1.1);
    z-index: 10;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .provider-card {
        margin-bottom: 1rem;
    }
    
    .filter-btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}

/* Loading animation for lazy loading */
.loading-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Professional badge styling */
.pro-badge {
    background: linear-gradient(135deg, #34C759, #30A14E);
    box-shadow: 0 2px 4px rgba(52, 199, 89, 0.3);
}

/* Skills tags hover effect */
.skill-tag:hover {
    background-color: #EF4444;
    color: white;
    transform: scale(1.05);
    transition: all 0.2s ease;
} 