        /* Hero Section */
        .services-hero {
            background: linear-gradient(135deg, rgba(79,70,229,0.95), rgba(99,102,241,0.95)),
                        url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1600&h=400&fit=crop');
            background-size: cover; background-position: center;
            padding: 4rem 2rem; text-align: center; color: white;
        }
        .hero-content { max-width: 900px; margin: 0 auto; }
        .breadcrumb { font-size: 0.9rem; margin-bottom: 1rem; opacity: 0.9; }
        .breadcrumb a { color: white; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .services-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
        .services-hero p { font-size: 1.25rem; opacity: 0.95; margin-bottom: 2rem; }
        .hero-stats {
            display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
        }
        .hero-stat { text-align: center; }
        .hero-stat .num { font-size: 2.25rem; font-weight: 800; }
        .hero-stat .label { font-size: 0.95rem; opacity: 0.9; margin-top: 0.25rem; }

        /* Search & Filter Bar */
        .filter-section {
            background: white; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            padding: 1.5rem 2rem; position: sticky; top: 68px; z-index: 900;
        }
        .filter-container { max-width: 1320px; margin: 0 auto; }
        .search-row {
            display: flex; gap: 1rem; align-items: center; margin-bottom: 1.25rem;
        }
        .search-box {
            flex: 1; display: flex; align-items: center;
            background: #F3F4F6; border-radius: 12px; padding: 0.75rem 1.25rem;
        }
        .search-box svg { color: #6B7280; margin-right: 0.75rem; width: 20px; height: 20px; }
        .search-box input {
            border: none; background: none; outline: none; width: 100%;
            font-size: 1rem; color: #111827;
        }
        .search-btn {
            padding: 0.875rem 2rem; background: #4F46E5; color: white;
            border: none; border-radius: 10px; font-weight: 600;
            font-size: 0.95rem; cursor: pointer; transition: all 0.3s;
        }
        .search-btn:hover { background: #4338CA; transform: translateY(-1px); }
        
        .category-filters {
            display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center;
        }
        .filter-label { font-weight: 600; color: #6B7280; font-size: 0.9rem; }
        .category-pill {
            padding: 0.5rem 1rem; background: #F3F4F6; border: 2px solid transparent;
            border-radius: 50px; font-size: 0.9rem; font-weight: 500;
            cursor: pointer; transition: all 0.3s; white-space: nowrap;
        }
        .category-pill:hover, .category-pill.active {
            background: #EEF2FF; border-color: #4F46E5; color: #4F46E5;
        }

        /* Main Container */
        .main-container { max-width: 1320px; margin: 0 auto; padding: 3rem 2rem; }

        /* Service Category Section */
        .service-category {
            margin-bottom: 4rem;
        }
        .category-header {
            display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 2rem; padding-bottom: 1rem;
            border-bottom: 3px solid #E5E7EB;
        }
        .category-header h2 {
            font-size: 1.75rem; font-weight: 800; color: #111827;
            display: flex; align-items: center; gap: 0.75rem;
        }
        .category-icon { font-size: 1.5rem; }
        .category-count {
            font-size: 0.9rem; color: #6B7280; font-weight: 500;
            background: #F3F4F6; padding: 0.25rem 0.75rem; border-radius: 50px;
        }

        /* Services Grid */
        .services-grid {
            display: grid; grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        .service-card {
            background: white; border-radius: 16px; overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            transition: all 0.3s; cursor: pointer;
            text-decoration: none; color: inherit;
        }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(79,70,229,0.15);
        }
        .card-image {
            position: relative; height: 180px; overflow: hidden;
        }
        .card-image img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.3s;
        }
        .service-card:hover .card-image img { transform: scale(1.08); }
        .card-badge {
            position: absolute; top: 12px; left: 12px;
            background: #10B981; color: white;
            padding: 0.35rem 0.85rem; border-radius: 50px;
            font-size: 0.75rem; font-weight: 700;
        }
        .card-badge.popular { background: #F59E0B; }
        .card-badge.trending { background: #EF4444; }
        .card-rating {
            position: absolute; top: 12px; right: 12px;
            background: rgba(0,0,0,0.75); color: white;
            padding: 0.35rem 0.7rem; border-radius: 8px;
            font-size: 0.8rem; font-weight: 600;
            display: flex; align-items: center; gap: 0.25rem;
        }
        .card-content { padding: 1.5rem; }
        .card-content h3 {
            font-size: 1.15rem; font-weight: 700; color: #111827;
            margin-bottom: 0.75rem;
        }
        .card-meta {
            font-size: 0.85rem; color: #6B7280; margin-bottom: 1rem;
            display: flex; align-items: center; gap: 0.5rem;
        }
        .card-price-row {
            display: flex; justify-content: space-between; align-items: center;
        }
        .card-price {
            font-size: 1.1rem; font-weight: 700; color: #4F46E5;
        }
        .card-price .from { font-size: 0.75rem; color: #6B7280; font-weight: 500; }
        .card-cta {
            padding: 0.5rem 1rem; background: #EEF2FF; color: #4F46E5;
            border-radius: 8px; font-size: 0.85rem; font-weight: 600;
            transition: all 0.3s;
        }
        .service-card:hover .card-cta {
            background: #4F46E5; color: white;
        }

        /* Popular Services Highlight */
        .popular-section {
            background: linear-gradient(135deg, #F3F4F6, #EEF2FF);
            border-radius: 20px; padding: 3rem 2rem; margin-bottom: 4rem;
        }
        .popular-header {
            text-align: center; margin-bottom: 2.5rem;
        }
        .popular-header h2 {
            font-size: 2rem; font-weight: 800; color: #111827; margin-bottom: 0.75rem;
        }
        .popular-header p { color: #6B7280; font-size: 1.05rem; }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #4F46E5, #6366F1);
            border-radius: 24px; padding: 4rem 3rem; text-align: center;
            margin-top: 4rem;
        }
        .cta-section h2 {
            color: white; font-size: 2.5rem; font-weight: 800;
            margin-bottom: 1rem;
        }
        .cta-section p {
            color: white; opacity: 0.95; font-size: 1.15rem;
            margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto;
        }
        .cta-btn {
            display: inline-block; background: white; color: #4F46E5;
            padding: 1rem 2.5rem; border-radius: 12px; font-weight: 700;
            font-size: 1.1rem; text-decoration: none; transition: all 0.3s;
        }
        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .services-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 768px) {
            .services-hero h1 { font-size: 2rem; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .hero-stats { gap: 1.5rem; }
            .category-filters { justify-content: flex-start; }
            .search-row { flex-direction: column; }
            .search-btn { width: 100%; }
        }
        @media (max-width: 480px) {
            .services-grid { grid-template-columns: 1fr; }
        }