    /* ===============================
   TOUR DETAILS BANNER
================================ */
.tour-details-banner {
  background-size: cover;
  background-position: center;
  padding: 120px 0 90px;
  position: relative;
}
/* MODAL */
.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.booking-modal.active {
  display: block;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.booking-box {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 420px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}



.booking-box h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.booking-box label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.booking-box input {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

.whatsapp-btn {
  width: 100%;
  background: #458CCC;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
}

.note {
  font-size: 12px;
  color: #777;
  text-align: center;
  margin-top: 10px;
}

.tour-details-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.tour-banner-content {
  position: relative;
  color: #fff;
  text-align: center;
}

.tour-banner-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.tour-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tour-meta li {
  font-size: 15px;
  color: #eee;
}

.tour-meta i {
  margin-right: 6px;
  color: #458ccc;
}


/* ===============================
   TOUR DETAILS AREA
================================ */
.tour-details-area {
  background: #f9f9f9;
}

.tour-details-area h2,
.tour-details-area h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.tour-details-area p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* ===============================
   GALLERY
================================ */
.tour-gallery img {
  width: 100%;
  border-radius: 14px;
}

/* ===============================
   HIGHLIGHTS
================================ */
.highlight-list {
  padding-left: 20px;
}

.highlight-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.highlight-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #458ccc;
  font-weight: bold;
}

/* ===============================
   INCLUSIONS / EXCLUSIONS
================================ */
.tour-inclusions ul,
.tour-exclusions ul {
  padding-left: 20px;
}

.tour-inclusions li,
.tour-exclusions li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* ===============================
   ACCORDION (ITINERARY)
================================ */
.accordion {
  margin-top: 20px;
}

.accordion-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.06);
  overflow: hidden;
}

.accordion-title {
  padding: 15px 20px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  background: #fff;
  position: relative;
}
.highlight-list, .tour-inclusions ul, .tour-exclusions ul {
  padding-left: 0px;
}
.accordion-title::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  color: #458ccc;
}

.accordion-item.active .accordion-title::after {
  content: "-";
}

.accordion-content {
  padding: 0 20px 15px;
  display: none;
  font-size: 16px;
  color: #555;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* ===============================
   SIDEBAR
================================ */
.tour-sidebar {
  position: sticky;
  top: 100px;
}

.tour-price-box {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.tour-price-box h3 {
  margin-bottom: 15px;
}

.tour-price-box ul {
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}

.tour-price-box ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

/* ===============================
   BUTTON
================================ */
.th-btn {
  background: #458ccc;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease;
}

.th-btn:hover {
  background: #0da39b;
  color: #fff;
}

/* ===============================
   SPACING HELPERS
================================ */
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.sec-padding { padding: 80px 0; }
.bannersection{
    padding-top: 220px;
    padding-bottom: 70px;
}
.bannersection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
}
/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .tour-banner-content h1 {
    font-size: 30px;
}

.tour-sidebar {
    position: static;
    margin-top: 40px;
}
}
.accordion-content img {
  width: auto;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin: 15px 0;
  display: block;
}
@media screen and (max-width: 767px){
    .bannersection {
  padding-top: 50px;
  padding-bottom: 35px;
}.sec-padding {
  padding: 40px 0;
}.mb-30 {
  margin-bottom: 16px;
}.tour-details-area h2, .tour-details-area h3 {
  font-weight: 700;
  margin-bottom: 4px;
}.mb-40 {
  margin-bottom: 20px;
}
.tour-highlights{
    margin-top: 20px;
}
}


