/* Mobil alt sabit bar*/
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;                /* Tam alta */
    left: 0;
    right: 0;
    padding: 12px 0;          /* İç padding korundu */
    z-index: 1000;
}

/* Rezervasyon butonu - köşeler düz, kırmızı */
.btn-reserve {
    background: #dc3545;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 14px 20px;
    border: none;
    /*border-radius: 0 !important;   Yuvarlaklık tamamen kalktı */
    transition: all 0.2s ease;
}

.btn-reserve:hover {
    background: #c82333;
}

/* WhatsApp butonu - köşeler düz, kare */
.btn-whatsapp {
    background: #14999e;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 20px;
    border: none;
    /*border-radius: 0 !important;   Yuvarlaklık tamamen kalktı */
    transition: all 0.2s ease;
}

.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}

@media(max-width:767px)
{
    .floating_btn {
        display:none !important;
    }
}

.tour-detail-list .swiper-button-prev,
.tour-detail-list .swiper-button-next {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: white;
}

.tour-detail-list .swiper-button-prev:after,
.tour-detail-list .swiper-button-next:after {
    font-size: 18px;
}