/* Tour detail page styles (moved unchanged from tour_detail.html) */

.tour-detail-sec {
  background: transparent;
  min-height: 100vh;
  padding-top: 80px;
}

.equal-frame {
  height: 100%;
  min-height: 480px;
}

.glass-box {
  backdrop-filter: blur(14px) saturate(160%);
  background-color: rgba(255,255,255,0.6);
  border: 1px solid rgba(90,140,255,0.3);
  transition: .4s;
}
.glass-box:hover {
  box-shadow: 0 0 20px rgba(90,140,255,0.25);
}

.pre-reserve-form {
  backdrop-filter: blur(12px) saturate(160%);
  background-color: rgba(255,255,255,0.55);
  border: 1px solid rgba(90,140,255,0.3);
}
.form-glass {
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(90,140,255,0.3);
  border-radius: 8px;
  color: #132554;
}
.form-glass:focus {
  background: rgba(255,255,255,0.75);
  box-shadow: 0 0 12px rgba(95,155,255,0.35);
  border-color: #5a8cff;
}

.phone-prefix-editable {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(90,140,255,0.3);
  color: #0053ec;
  font-weight: 600;
  border-radius: 8px;
  transition: all .3s ease;
}
.phone-prefix-editable:focus {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 10px rgba(95,155,255,0.35);
  border-color: #5a8cff;
}

.btn-hero {
  background: linear-gradient(145deg,#2d9eff,#0053ec);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all .3s ease-in-out;
  box-shadow: 0 3px 15px rgba(0,0,0,0.25);
}
.btn-hero:hover {
  box-shadow: 0 0 22px rgba(37,159,255,0.55);
  transform: scale(1.04);
}

.back-btn-glass {
  padding: 10px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  color: #0053ec;
  border: 1.5px solid rgba(90,140,255,0.35);
  border-radius: 10px;
  backdrop-filter: blur(12px) saturate(160%);
  background: rgba(255,255,255,0.55);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: all .35s ease;
}
.back-btn-glass i {
  font-size: 1.3rem;
  color: #0053ec;
  transition: transform .4s ease, color .3s ease;
}
.back-btn-glass:hover {
  background: rgba(255,255,255,0.75);
  color: #0040c8;
  border-color: #5a8cff;
  box-shadow: 0 0 18px rgba(90,140,255,0.35);
  transform: translateY(-3px);
}
.back-btn-glass:hover i {
  transform: translateX(-4px);
  color: #0040c8;
}

.text-teal {color:#0053ec!important;}
.hover-underline:hover {text-decoration:underline!important;}

/* Formatted tour description (paragraphs, bullet lists, bold headings) */
.tour-description p { margin-bottom: .6rem; }
.tour-description p.desc-heading,
.tour-description h3, .tour-description h4 { margin-top: .9rem; margin-bottom: .35rem; color: #132554; font-weight: 700; }
.tour-description h3 { font-size: 1.15rem; }
.tour-description h4 { font-size: 1rem; }
.tour-description ul, .tour-description ol { padding-left: 1.25rem; margin-bottom: .6rem; }
.tour-description li { margin-bottom: .2rem; }
.tour-description strong { color: #132554; }
