        /* Professionals Page Specific Styles */
        .professionals-hero {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            padding: 120px 0 60px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .professionals-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
        }
        
        .professionals-hero-content {
            position: relative;
            z-index: 2;
        }
        
        .professionals-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .professionals-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .search-container {
            max-width: 800px;
            margin: -30px auto 0;
            position: relative;
            z-index: 10;
        }
        
        .search-box {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .search-input {
            flex: 1;
            min-width: 200px;
            padding: 12px 15px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1rem;
        }
        
        .search-select {
            flex: 1;
            min-width: 200px;
            padding: 12px 15px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1rem;
            background-color: white;
        }
        
        .search-btn {
            padding: 12px 25px;
            background-color: #1e3a8a;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .search-btn:hover {
            background-color: #1e40af;
            transform: translateY(-2px);
        }
        
        .professionals-section {
            padding: 80px 0;
            background-color: #f8fafc;
        }
        
        .filter-sidebar {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .filter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .filter-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1f2937;
        }
        
        .reset-btn {
            background: none;
            border: none;
            color: #3b82f6;
            font-size: 0.9rem;
            cursor: pointer;
        }
        
        .filter-group {
            margin-bottom: 25px;
        }
        
        .filter-group-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1f2937;
        }
        
        .filter-options {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .filter-option {
            margin-bottom: 10px;
        }
        
        .filter-checkbox {
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        
        .filter-checkbox input {
            margin-right: 10px;
            width: 16px;
            height: 16px;
        }
        
        .filter-label {
            font-size: 0.95rem;
            color: #4b5563;
        }
        
        .filter-count {
            color: #9ca3af;
            font-size: 0.85rem;
            margin-left: 5px;
        }
        
        .professionals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .professional-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .professional-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .professional-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .professional-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .professional-card:hover .professional-image img {
            transform: scale(1.05);
        }
        
        .verified-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #10b981;
            color: white;
            padding: 5px 10px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .verified-badge i {
            margin-right: 5px;
            font-size: 0.7rem;
        }
        
        .professional-details {
            padding: 20px;
        }
        
        .professional-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: #1f2937;
        }
        
        .professional-title {
            color: #3b82f6;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 10px;
        }
        
        .professional-location {
            display: flex;
            align-items: center;
            color: #6b7280;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .professional-location i {
            margin-right: 5px;
            color: #ef4444;
        }
        
        .professional-rating {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .stars {
            color: #f59e0b;
            margin-right: 10px;
        }
        
        .rating-count {
            color: #6b7280;
            font-size: 0.85rem;
        }
        
        .professional-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        
        .skill-tag {
            background: #e5e7eb;
            color: #4b5563;
            padding: 5px 10px;
            border-radius: 50px;
            font-size: 0.75rem;
        }
        
        .professional-actions {
            display: flex;
            gap: 10px;
        }
        
        .view-btn {
            flex: 1;
            padding: 10px;
            background: #3b82f6;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .view-btn:hover {
            background: #2563eb;
        }
        
        .message-btn {
            flex: 1;
            padding: 10px;
            background: white;
            color: #3b82f6;
            border: 1px solid #3b82f6;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .message-btn:hover {
            background: #f0f7ff;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }
        
        .pagination-list {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 10px;
        }
        
        .pagination-item {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .pagination-item:hover {
            background: #e5e7eb;
        }
        
        .pagination-item.active {
            background: #1e3a8a;
            color: white;
        }
        
        .pagination-link {
            text-decoration: none;
            color: inherit;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        @media (max-width: 992px) {
            .professionals-hero h1 {
                font-size: 2.5rem;
            }
            
            .professionals-hero p {
                font-size: 1.1rem;
            }
            
            .search-form {
                flex-direction: column;
            }
            
            .search-input, .search-select, .search-btn {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .professionals-hero h1 {
                font-size: 2rem;
            }
            
            .professionals-hero p {
                font-size: 1rem;
            }
            
            .professionals-grid {
                grid-template-columns: 1fr;
            }
        }