/* 🌐 Tour Booking Pro Frontend Styles */

.tbp-tour-single {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
}

.tbp-tour-single h1 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #005f99;
}

.tbp-tour-single h3 {
  margin-top: 30px;
  font-size: 1.4em;
  color: #0073aa;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.tbp-tour-single p {
  margin: 10px 0;
}

.tbp-tour-single ul {
  padding-left: 20px;
  margin: 10px 0;
}

.tbp-tour-single ul li {
  margin-bottom: 5px;
}

.tbp-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tbp-gallery img {
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.tbp-gallery img:hover {
  transform: scale(1.05);
}

.tbp-tour-single .button {
  background-color: #0073aa;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: background-color 0.2s ease;
}

.tbp-tour-single .button:hover {
  background-color: #005f99;
}

@media (max-width: 600px) {
  .tbp-gallery {
    justify-content: center;
  }

  .tbp-tour-single {
    padding: 20px 10px;
  }

  .tbp-tour-single h1 {
    font-size: 1.8em;
  }

  .tbp-tour-single h3 {
    font-size: 1.2em;
  }
}
html {
  scroll-behavior: smooth;
}

.tbp-floating-book {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #0073aa;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  transition: background-color 0.3s ease;
}

.tbp-floating-book:hover {
  background-color: #005f99;
}

@media (max-width: 600px) {
  .tbp-floating-book {
    display: none;
  }
}
.tbp-gallery-slider {
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.tbp-including-excluding {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.tbp-including-excluding ul {
  padding-left: 20px;
  list-style-type: disc;
}

.tbp-including-excluding strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}
.tbp-including-excluding ul li {
  margin-bottom: 6px;
  font-size: 15px;
}
.tbp-inquiry-form input,
.tbp-inquiry-form select {
  padding: 10px;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
}

.tbp-inquiry-form button {
  margin-top: 10px;
}