-- Insert Saudi comments into clients_comments table
INSERT INTO clients_comments (hash_id, client_name_ar, client_name_en, client_email, client_phone, comment_ar, comment_en, rating, status, sort_order, soft_delete, created_at, updated_at) VALUES
('hash1', 'محمد العتيبي', 'Mohammed Al-Otaibi', 'mohammed.otaibi@email.com', '+966501234567', 'خدمة ممتازة جداً، الفريق احترافي وسريع في الاستجابة', 'Excellent service, professional and responsive team', 5, 'approved', 0, 0, NOW(), NOW()),
('hash2', 'فاطمة الدوسري', 'Fatima Al-Dosari', 'fatima.dosari@email.com', '+966502345678', 'تقييم العقار كان دقيق جداً وساعدني في اتخاذ القرار الصحيح', 'Property valuation was very accurate and helped me make the right decision', 5, 'approved', 0, 0, NOW(), NOW()),
('hash3', 'سلطان الشهري', 'Sultan Al-Shehri', 'sultan.shehri@email.com', '+966503456789', 'خدمة جيدة لكن كان يمكن أن تكون أسرع قليلاً', 'Good service but could have been a bit faster', 4, 'approved', 0, 0, NOW(), NOW()),
('hash4', 'نور الحربي', 'Noor Al-Harbi', 'noor.harbi@email.com', '+966504567890', 'تجربة رائعة من البداية إلى النهاية، أنصح بهم بشدة', 'Amazing experience from start to finish, highly recommend', 5, 'approved', 0, 0, NOW(), NOW()),
('hash5', 'عبدالله القحطاني', 'Abdullah Al-Qahtani', 'abdullah.qahtani@email.com', '+966505678901', 'الفريق متعاون جداً وأجاب على جميع استفساراتي', 'Very cooperative team, answered all my questions', 5, 'approved', 0, 0, NOW(), NOW()),
('hash6', 'ليلى الزهراني', 'Layla Al-Zahrani', 'layla.zahrani@email.com', '+966506789012', 'خدمة احترافية وموثوقة، استخدمت خدماتهم أكثر من مرة', 'Professional and reliable service, used them multiple times', 5, 'approved', 0, 0, NOW(), NOW()),
('hash7', 'خالد الأحمد', 'Khaled Al-Ahmed', 'khaled.ahmed@email.com', '+966507890123', 'جودة التقرير عالية جداً والأسعار معقولة', 'High quality report and reasonable prices', 4, 'approved', 0, 0, NOW(), NOW()),
('hash8', 'مريم العنزي', 'Maryam Al-Enezi', 'maryam.enezi@email.com', '+966508901234', 'أفضل خدمة تقييم عقارات استخدمتها، شكراً لكم', 'Best property valuation service I have used, thank you', 5, 'approved', 0, 0, NOW(), NOW()),
('hash9', 'ياسر الغامدي', 'Yasser Al-Ghamdi', 'yasser.ghamdi@email.com', '+966509012345', 'تقييم دقيق وشامل، استحق كل فلس', 'Accurate and comprehensive valuation, worth every penny', 5, 'approved', 0, 0, NOW(), NOW()),
('hash10', 'هند الجهني', 'Hind Al-Johani', 'hind.johani@email.com', '+966510123456', 'خدمة ممتازة وفريق محترف جداً، شكراً على الجهود', 'Excellent service and very professional team, thanks for the effort', 5, 'approved', 0, 0, NOW(), NOW());

-- Verify the data
SELECT COUNT(*) as total_comments FROM clients_comments;

