Ana SayfaMaliyet Hesaplayıcı

Maliyet Hesaplayıcı

Gerçek rakamlarla, şeffaf hesaplama

Bilgilerini Gir

Yıllık Toplam Tahmini
$7,250
Eğitim + yaşam dahil

Detaylı Dökümü

Toplam Eğitim Maliyeti
$29,000
4 yıl boyunca tahmini

Ülke Karşılaştırması

ÜlkeEğitim/YılYaşam/AyVize4 Yıl Toplam
🇦🇿 Azerbaycan EN UYGUN$1.350–$2.200$420–$900Yok!≈$25K–$45K
🇵🇱 Polonya $2.500–$6.000$800–$1.400Gerekli≈$55K–$90K
🇬🇪 Gürcistan $2.000–$5.000$600–$1.200Yok≈$43K–$75K
🇭🇺 Macaristan $3.000–$7.000$900–$1.600Gerekli≈$65K–$110K
+ yearlyTotal.toLocaleString(); document.getElementById('result-total').textContent = '
1
AI Danışman
BLOCK6
+ totalAll.toLocaleString(); const items = [ { label: 'Eğitim ücreti/yıl', val: tuition, color: 'text-blue-600' }, { label: 'Kira/ay', val: rent, color: 'text-orange-600' }, { label: 'Yemek/ay', val: food, color: 'text-green-600' }, { label: 'Ulaşım/ay', val: transport, color: 'text-purple-600' }, { label: 'Kişisel/ay', val: personal, color: 'text-red-600' }, { label: 'Aylık toplam yaşam', val: monthlyLiving, color: 'text-gray-900 font-bold' }, ]; document.getElementById('result-breakdown').innerHTML = items.map(item => `
${item.label} ${item.val.toLocaleString()}
`).join(''); // Highlight active accommodation document.querySelectorAll('.accommodation-opt').forEach(el => el.classList.remove('border-blue-500', 'bg-blue-50')); document.querySelector(`input[name="accommodation"]:checked`)?.nextElementSibling?.classList.add('border-blue-500', 'bg-blue-50'); } calculate(); // Initialize visual state of accommodation radios document.querySelectorAll('input[name="accommodation"]').forEach(inp => { if (inp.checked) inp.nextElementSibling?.classList.add('border-blue-500', 'bg-blue-50'); inp.addEventListener('change', () => { document.querySelectorAll('.accommodation-opt').forEach(el => el.classList.remove('border-blue-500','bg-blue-50')); inp.nextElementSibling?.classList.add('border-blue-500','bg-blue-50'); calculate(); }); }); // Load saved calculations function loadSavedCalcs() { const saved = JSON.parse(localStorage.getItem('eurostar_calc_saves') || '[]'); if (saved.length > 0) { document.getElementById('savedCalcs').classList.remove('hidden'); document.getElementById('savedCalcList').innerHTML = saved.slice(-3).reverse().map((s, i) => `
${s.programName}
${s.yearly}/yıl · ${s.total} toplam · ${s.date}
`).join(''); } } function saveCalcResult() { const yearly = document.getElementById('result-yearly').textContent; const total = document.getElementById('result-total').textContent; const programEl = document.getElementById('calc-program'); const programName = programEl.options[programEl.selectedIndex]?.text?.split('–')[0]?.trim() || 'Program'; const saved = JSON.parse(localStorage.getItem('eurostar_calc_saves') || '[]'); saved.push({ programName, yearly, total, date: new Date().toLocaleDateString('tr-TR') }); if (saved.length > 10) saved.shift(); localStorage.setItem('eurostar_calc_saves', JSON.stringify(saved)); loadSavedCalcs(); // Show feedback const btn = document.querySelector('button[onclick="saveCalcResult()"]'); if (btn) { btn.innerHTML = ' Kaydedildi!'; setTimeout(() => { btn.innerHTML = ' Kaydet'; }, 2000); } } function deleteCalc(idx) { const saved = JSON.parse(localStorage.getItem('eurostar_calc_saves') || '[]'); saved.splice(idx, 1); localStorage.setItem('eurostar_calc_saves', JSON.stringify(saved)); loadSavedCalcs(); } function copyCalcLink() { const yearly = document.getElementById('result-yearly').textContent; const total = document.getElementById('result-total').textContent; navigator.clipboard?.writeText(window.location.href).then(() => { const btn = document.querySelector('button[onclick="copyCalcLink()"]'); if (btn) { btn.innerHTML = ' Kopyalandı!'; setTimeout(() => { btn.innerHTML = ' Link Kopyala'; }, 2000); } }); } function shareCalcResult() { const yearly = document.getElementById('result-yearly').textContent; const total = document.getElementById('result-total').textContent; const programEl = document.getElementById('calc-program'); const programName = programEl.options[programEl.selectedIndex]?.text?.split('–')[0]?.trim() || 'Program'; const msg = `Merhaba, AzTU maliyet hesapladım:\n\nProgram: ${programName}\nYıllık toplam: ${yearly}\nToplam maliyet: ${total}\n\nDetaylı bilgi almak istiyorum.`; window.open('https://wa.me/905433445887?text=' + encodeURIComponent(msg), '_blank'); } loadSavedCalcs();
1
AI Danışman
BLOCK6