/* Gallery Grid (fallback or static view) */
.tbp-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.tbp-gallery-img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Gallery Slider (Swiper) */
.tbp-gallery-slider {
  margin-bottom: 30px;
}
.tbp-gallery-slider .swiper-slide {
  text-align: center;
}
.tbp-gallery-slider img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.swiper-button-next,
.swiper-button-prev {
  color: #0073aa;
}
.swiper-pagination-bullet {
  background: #0073aa;
}

/* Pricing Cards */
.tbp-pricing {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.tbp-cab-card {
  border: 1px solid #ccc;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.tbp-cab-card:hover {
  background-color: #f9f9f9;
}

/* FAQs */
.tbp-faqs .tbp-faq-item {
  margin-bottom: 15px;
}
.tbp-faq-question {
  font-weight: bold;
  cursor: pointer;
}
.tbp-faq-answer {
  display: none;
  margin-top: 5px;
}
.tbp-faq-question.active + .tbp-faq-answer {
  display: block;
}

/* Itinerary */
.tbp-itinerary {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

/* Inquiry Form */
#tbp-inquiry-form input,
#tbp-inquiry-form select,
#tbp-inquiry-form button {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  font-size: 14px;
}
#tbp-inquiry-form button {
  background-color: #0073aa;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
#tbp-inquiry-form button:hover {
  background-color: #005f8d;
}

/* Tourist Place Single */
.tourist-place-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}
.place-thumbnail img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.place-details ul {
  list-style: none;
  padding: 0;
}
.place-details li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Tourist Place Archive */
.tourist-place-archive {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
}
.place-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.place-card {
  width: calc(33.333% - 20px);
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.place-card:hover {
  transform: translateY(-5px);
}
.place-thumb img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.place-title {
  font-size: 18px;
  margin: 10px 0;
  color: #0073aa;
}
.place-meta p {
  font-size: 14px;
  color: #555;
}

/* Responsive Grid */
@media (max-width: 768px) {
  .place-card {
    width: calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .place-card {
    width: 100%;
  }
}
