function sendToWhatsApp() { const name = document.getElementById('studentName').value; const age = document.getElementById('studentAge').value; const parentPhone = document.getElementById('parentPhone').value; const text = `Hello, I want to enroll my child in Little AI Creators.%0A- Student Name: ${name}%0A- Age: ${age}%0A- Phone: ${parentPhone}`; const whatsappURL = `https://wa.me/8801XXXXXXXXX?text=${text}`; window.open(whatsappURL, '_blank'); }