www Israel Taxi Lady com
050.212.8080
נהגת לנשים חרדית ירושלים
בית שמש , בני ברק
050.218.2973
speak English, Parle Français
+1.347.450.9235

נהגת לנשים
+972502182973
*השירות לנשים, משפחות ומוסדות
בתיאום מראש בלבד.
* נהגת חרדית מנוסה יראת שמיים.
* טויוטה סיינה (7 מקומות).
* מרצדס ספרינטר (20 מקומות)
* אוטובוס (60 מק)
בהזמנה מראש.
* שירות בנתב"ג ורחבי הארץ בשפות: עברית, אנגלית וצרפתית.English
Yael VIP Transportation
Professional and modest private transfer services.
* Service for women, families, and institutions – by prior arrangement only.
* Haredi female driver, reliable and experienced.
* Toyota Sienna (7 seats).
* Mercedes Sprinter (20 seats)
* Bus (60 seats)
Available for pre-order.
* Fluent in Hebrew
* English
* French
Français
Yael VIP Transports
Services de transport privé professionnels et discrets.
* Service pour femmes, familles et institutions – sur rendez-vous uniquement.
* Chauffeur femme Haredi, professionnelle et courtoise.
* Toyota Sienna (7 places).
* Mercedes Sprinter (20 places)
* Bus (60 seats)
Sur réservation.
* Services en hébreu, anglais et français.

בית שמש , רמת אברהם
בית שמש , רמת אברהם
// פונקציה שמחברת את הכפתור האדום הקיים שלך לשאלון window.addEventListener('load', function() { // אנחנו מחפשים כפתור שכתוב עליו "שאלון Qa" const buttons = document.querySelectorAll('a, button'); buttons.forEach(btn => { if (btn.innerText && btn.innerText.includes('שאלון Qa')) { btn.onclick = function(e) { e.preventDefault(); // מונע מהדף להתרענן toggleQuiz(true); // פותח את השאלון }; } }); }); const quizData = [ { q_he: "1. האם נהגת היא לדעתך זהירה יותר?", q_en: "Road Safety", q_fr: "Sécurité Routière" }, { q_he: "2. עד כמה חשוב לך נהגות נשים לנשים?", q_en: "Privacy & Comfort", q_fr: "Confidentialité" }, { q_he: "3. האם את מקבלת הרגשת 'בית בוטיק'?", q_en: "Boutique Experience", q_fr: "Expérience Boutique" }, { q_he: "4. האם הנסיעה מאפשרת לך 'לשחרר' מתח?", q_en: "Peace of Mind", q_fr: "Tranquillité d'esprit" }, { q_he: "5. מה הערך של הגעה בזמן עבורך?", q_en: "Punctuality", q_fr: "Ponctualité" }, { q_he: "6. עד כמה חשוב רכב נקי ומבוסם?", q_en: "Cleanliness", q_fr: "Propreté" }, { q_he: "7. האם תעדיפי נהגת שתבין בקשות קטנות?", q_en: "Sensitivity to Needs", q_fr: "Sensibilité" }, { q_he: "8. מה הכי חשוב לך במפגש עם הנהגת?", q_en: "Professional Standard", q_fr: "Standard Pro" } ]; let currentIdx = 0; function toggleQuiz(show) { document.getElementById('quizOverlay').style.display = show ? 'flex' : 'none'; if(show) { currentIdx = 0; document.getElementById('question-wrapper').style.display = 'block'; document.getElementById('contact-form').style.display = 'none'; renderStep(); } } function renderStep() { const progress = (currentIdx / quizData.length) * 100; document.getElementById('progress-fill').style.width = progress + '%'; if (currentIdx >= quizData.length) { document.getElementById('question-wrapper').style.display = 'none'; document.getElementById('contact-form').style.display = 'block'; return; } const item = quizData[currentIdx]; document.getElementById('question-wrapper').innerHTML = `

${item.q_he}
${item.q_en} | ${item.q_fr}

`; } function next() { currentIdx++; renderStep(); } function sendToWhatsApp() { const name = document.getElementById('userName').value; const phone = document.getElementById('userPhone').value; if(!name || !phone) { alert("נא למלא את כל הפרטים"); return; } const msg = encodeURIComponent(`שלום יעל, סיימתי את השאלון באתר!\nשם: ${name}\nטלפון: ${phone}`); window.open(`https://wa.me/972528224524?text=${msg}`, '_blank'); }