
.floating-phone {
  position: fixed;
  right: 20px;
  bottom: 25px;
  width: 64px;
  height: 64px;
  background: #e30613;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 9999999;
}

.floating-phone.show {
  opacity: 1;
  transform: scale(1);
  animation: softBounce 4s ease-in-out infinite;
}

@keyframes softBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.phone-icon {
  display: inline-block;
  animation: ring 5s infinite;
}

@keyframes ring {
  0%,90%,100% { transform: rotate(0deg); }
  92% { transform: rotate(-10deg); }
  94% { transform: rotate(10deg); }
  96% { transform: rotate(-8deg); }
  98% { transform: rotate(8deg); }
}

.floating-phone::after {
  content: "Masz pytania? Zadzwoń!";
  position: absolute;
  right: 75px;
  background: #1f2f46;
  color: #fff;
  padding: 9px 16px;
  border-radius: 30px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-phone.show-tooltip::after,
.floating-phone:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 992px) {
  .floating-phone {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
}

.floating-booking {
  position: fixed;
  right: 20px;
  bottom: 105px;
  background: #1f2f46;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  z-index: 9999998;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floating-booking.show {
  opacity: 1;
  transform: translateY(0);
}

.floating-booking small {
  font-size: 12px;
  font-weight: 400;
  margin-top: 4px;
  opacity: 0.85;
}

@media (max-width: 480px) {
  .floating-booking {
    right: 15px;
    bottom: 100px;
    padding: 12px 18px;
    font-size: 15px;
  }
}
