/* HIMTECH sağ alt sabit telefon + WhatsApp butonları */

.floating-contact-buttons{
  position:fixed;
  right:22px;
  bottom:24px;
  z-index:9999;
  display:grid;
  gap:10px;
  pointer-events:none;
}

.floating-contact-btn{
  width:132px;
  height:50px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  padding:8px 13px 8px 8px;
  color:#fff !important;
  font-weight:950;
  text-decoration:none !important;
  box-shadow:0 18px 38px rgba(7,17,31,.22);
  border:1px solid rgba(255,255,255,.18);
  pointer-events:auto;
  transition:.18s ease;
}

.floating-contact-btn:hover{
  transform:translateY(-3px);
}

.floating-contact-btn span{
  width:34px;
  height:34px;
  min-width:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.18);
  font-size:18px;
  line-height:1;
}

.floating-contact-btn b{
  display:block;
  font-size:13px;
  line-height:1;
  letter-spacing:.01em;
}

.floating-contact-btn.phone{
  background:linear-gradient(135deg,#07111f,#12233a);
}

.floating-contact-btn.phone:hover{
  box-shadow:0 22px 46px rgba(7,17,31,.30);
}

.floating-contact-btn.whatsapp{
  background:linear-gradient(135deg,#18a64f,#0d8338);
  box-shadow:0 18px 38px rgba(22,163,74,.28);
}

.floating-contact-btn.whatsapp span{
  background:rgba(255,255,255,.22);
}

.floating-contact-btn.whatsapp:hover{
  box-shadow:0 22px 46px rgba(22,163,74,.38);
}

/* Topbar telefon daha temiz görünsün */
.topbar-links a[href^="tel:"]{
  font-weight:900;
}

@media(max-width:760px){
  .floating-contact-buttons{
    right:14px;
    bottom:16px;
    gap:8px;
  }

  .floating-contact-btn{
    width:50px;
    height:50px;
    padding:8px;
    justify-content:center;
  }

  .floating-contact-btn b{
    display:none;
  }

  .floating-contact-btn span{
    width:34px;
    height:34px;
    min-width:34px;
  }
}


.floating-contact-btn span svg{
  width:20px;
  height:20px;
  display:block;
  fill:currentColor;
}
.floating-contact-btn.whatsapp .wa-icon-bubble{
  color:#fff;
}
