
7/24 Mobil Lastik Yol Yardım Gece Gündüz Yerinde Lastik değişimi yerinde çıkma ve sıfır lastik büyük yama yapılır nöbetçi yapılır açık lastikçi Mobil /Seyyar Gezici Lastikçi 7/24 Otoban Lastikçi Yerinde Her türlü aracın lastik jant tamiri yapılır.Kamyon Otoban Lastikçi Seyyar 724 /Lastikçi
İletişim Butonları
// Jet Lastikçi - Animasyonlu Arama & WhatsApp Butonları
function jet_iletisim_butonlari_shortcode() {
ob_start(); ?>
<style>
.jet-contact {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 9999;
display: flex;
flex-direction: column;
gap: 14px;
}
.jet-btn {
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 26px;
text-decoration: none;
box-shadow: 0 0 0 rgba(0,0,0,0.4);
animation: pulse 1.6s infinite;
}
.jet-call {
background: #0d6efd;
}
.jet-whatsapp {
background: #25D366;
animation-delay: .4s;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(0,0,0,0.4);
transform: scale(1);
}
70% {
box-shadow: 0 0 0 15px rgba(0,0,0,0);
transform: scale(1.08);
}
100% {
box-shadow: 0 0 0 0 rgba(0,0,0,0);
transform: scale(1);
}
}
@media (max-width: 768px) {
.jet-contact {
bottom: 15px;
right: 15px;
}
}
</style>
<div class="jet-contact">
<a href="tel:+905330855356" class="jet-btn jet-call" aria-label="Hemen Ara">
📞
</a>
<a href="https://wa.me/905330855356" target="_blank" class="jet-btn jet-whatsapp" aria-label="WhatsApp">
💬
</a>
</div>
<?php
return ob_get_clean();
}
add_shortcode('jet_iletisim', 'jet_iletisim_butonlari_shortcode');