
        /* Public Profile Sidebar Styles */
        .public-profile-container {
            display: flex;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        /* Sidebar Styling (Similar to Jiji) */
        .profile-sidebar {
            flex: 0 0 300px;
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            height: fit-content;
            position: sticky;
            top: 2rem;
        }

        .profile-header-sidebar {
            text-align: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #e5e7eb;
        }

        .profile-avatar-sidebar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #10b981, #059669);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: 600;
            margin: 0 auto 1rem;
        }

        .profile-name-sidebar {
            font-size: 1.5rem;
            font-weight: 600;
            color: #111827;
            margin: 0 0 0.25rem 0;
        }

        .profile-subtitle {
            color: #6b7280;
            font-size: 0.95rem;
            margin: 0;
        }

        /* Verified Badge */
        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            background: #f0fdf4;
            color: #065f46;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-top: 0.5rem;
        }

        /* Profile Stats (like Jiji stats) */
        .profile-stats-sidebar {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .stat-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem;
            background: #f9fafb;
            border-radius: 8px;
        }

        .stat-label {
            color: #6b7280;
            font-size: 0.9rem;
        }

        .stat-value {
            font-weight: 600;
            color: #111827;
        }

        .stat-value.verified {
            color: #10b981;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        /* Contact Actions */
        .contact-actions {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .contact-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
        }

        .contact-btn.whatsapp {
            background: #25D366;
            color: white;
        }

        .contact-btn.phone {
            background: var(--primary);
            color: white;
        }

        .contact-btn.message {
            background: #f3f4f6;
            color: #111827;
            border: 1px solid #d1d5db;
        }

        .contact-btn:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

        /* Profile Info */
        .profile-info-sidebar {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e5e7eb;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            color: #4b5563;
            font-size: 0.9rem;
        }

        .info-item svg {
            width: 18px;
            height: 18px;
            color: #6b7280;
            flex-shrink: 0;
        }

        /* Main Content Area */
        .profile-main-content {
            flex: 1;
        }

        .services-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .services-header h2 {
            margin: 0;
            font-size: 1.5rem;
            color: #111827;
        }

        .services-count {
            background: #f0fdf4;
            color: #065f46;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .public-profile-container {
                flex-direction: column;
            }
            
            .profile-sidebar {
                position: static;
                width: 100%;
            }
        }
 