/* ─── TOUR HERO ─── */
.tour-hero {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.15) 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
}
.tour-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.tour-back:hover { color: var(--gold-light); }
.tour-hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tour-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.tour-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 560px;
}

/* ─── TOUR CONTENT LAYOUT ─── */
.tour-content {
  padding: 60px 0 100px;
}
.tour-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* ─── QUICK INFO BAR ─── */
.tour-quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.quick-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
}
.quick-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 2px;
}
.quick-item div { display: flex; flex-direction: column; }
.quick-item strong {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.quick-item span { font-size: 0.92rem; font-weight: 500; color: var(--charcoal); }

/* ─── SECTIONS ─── */
.tour-section {
  margin-bottom: 48px;
}
.tour-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--charcoal);
}

/* ─── ITINERARY TIMELINE ─── */
.itinerary-list {
  position: relative;
  padding-left: 28px;
}
.itinerary-list::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--teal-light);
  border-radius: 2px;
}
.itinerary-item {
  position: relative;
  padding: 0 0 24px 20px;
}
.itinerary-item:last-child { padding-bottom: 0; }
.itinerary-dot {
  position: absolute;
  left: -24px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--teal);
}
.itinerary-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--charcoal);
}

.itinerary-link{
  color: #000000;
}

/* ─── NOTE CARDS ─── */
.note-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.note-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--sand);
  border-radius: 16px;
}
.note-icon { font-size: 1.4rem; flex-shrink: 0; }
.note-card p { font-size: 0.88rem; line-height: 1.6; color: var(--charcoal); }

/* ─── INCLUDES / EXCLUDES ─── */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.include-col {
  padding: 24px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
}
.include-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid;
}
.include-title.include-yes { color: var(--teal); border-color: var(--teal); }
.include-title.include-no { color: #c0392b; border-color: #e74c3c; }
.include-list {
  list-style: none;
}
.include-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--charcoal);
}
.include-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
}
.include-list.exclude li::before {
  content: '✗';
  color: #c0392b;
}

/* ─── SIDEBAR ─── */
.tour-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.sidebar-price {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 4px;
}
.sidebar-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--charcoal);
}
.sidebar-note {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 24px;
}
.sidebar-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 1rem;
}
.sidebar-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 24px 0;
}
.sidebar-contact p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 12px;
}
.sidebar-contact a {
  display: block;
  text-decoration: none;
  color: var(--teal);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.sidebar-contact a:hover { color: var(--teal-dark); }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 80px 32px 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-nav a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 1.3rem;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav .btn-book-mobile {
  margin-top: 24px;
  background: var(--gold);
  color: var(--white);
  text-align: center;
  border-radius: 50px;
  padding: 16px;
  font-weight: 600;
  border: none;
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* ─── SLIDESHOW ─── */
.slideshow {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}
.slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.slideshow img.active { opacity: 1; }
.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 2;
}
.slideshow-btn:hover { background: var(--white); }
.slideshow-btn.prev { left: 14px; }
.slideshow-btn.next { right: 14px; }
.slideshow-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.slideshow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.slideshow-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: white;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}
.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  background: rgba(0,0,0,0.5);
  padding: 8px 20px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

.lightbox-btn:hover { background: rgba(255,255,255,0.4); }
.lightbox-btn.prev { left: 20px; }
.lightbox-btn.next { right: 20px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 968px) {
  .tour-layout { grid-template-columns: 1fr; }
  .tour-sidebar { position: static; }
  .tour-quick-info { grid-template-columns: 1fr 1fr; }
  .tour-hero { min-height: 320px; }
}
@media (max-width: 600px) {
  .tour-hero { min-height: 350px; }
  .tour-hero h1 { font-size: 1.6rem; }
  .tour-hero-sub { font-size: 0.9rem; line-height: 1.5; }
  .tour-hero-overlay { padding-bottom: 32px; }
  .tour-hero-tag { font-size: 0.65rem; padding: 5px 12px; }
  .tour-back { font-size: 0.78rem; }
  .tour-quick-info { grid-template-columns: 1fr; }
  .note-cards { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 160px; }
}
@media (max-width: 400px) {
  .tour-hero { min-height: 320px; }
  .tour-hero h1 { font-size: 1.4rem; }
  .tour-hero-sub { font-size: 0.82rem; }
  .container { padding: 0 16px; }
}
