/* ═══════════════════════════════════════════════════════
   TOUR DETAIL PAGE STYLES (appended to style.css)
═══════════════════════════════════════════════════════ */

/* HERO */
.tour-hero {
  position: relative; min-height: 480px;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  background-color: var(--cabernet-dark);
}
.tour-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(24,12,16,.97) 0%, rgba(24,12,16,.78) 50%, rgba(24,12,16,.35) 100%);
}
.tour-hero-inner {
  position: relative; padding: 64px 0 56px; color: white;
}
.tour-eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.tour-cat-badge {
  background: var(--gold); color: var(--cabernet-dark);
  font-size: 11px; font-weight: 900; letter-spacing: .06em;
  padding: 5px 11px; border-radius: 4px;
}
.tour-region { color: #d9cdb9; font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.tour-hero-inner h1 {
  font-family: Georgia, serif; font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05; color: white; margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.tour-tagline {
  margin-top: 14px; max-width: 640px;
  font-family: Georgia, serif; font-size: 18px; line-height: 1.55;
  color: #ede0cc;
}
.tour-hero-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-top: 26px;
}
.tour-hero-meta span {
  display: inline-flex; align-items: center; gap: 6px;
  color: white; font-size: 14px; font-weight: 600;
}

/* METADATA STRIP */
.tour-meta-strip {
  background: var(--cabernet);
  border-bottom: 1px solid var(--gold-line);
}
.tour-meta-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.tour-meta-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 22px 24px;
  border-right: 1px solid var(--gold-line);
}
.tour-meta-item:last-child { border-right: none; }
.tour-meta-item strong {
  color: var(--gold); font-size: 11px; font-weight: 900;
  letter-spacing: .06em;
}
.tour-meta-item span {
  color: white; font-size: 16px; font-weight: 700;
}
.tour-meta-price span {
  font-family: Georgia, serif; font-size: 22px;
  color: var(--gold);
}

/* GALLERY */
.tour-gallery {
  display: grid; grid-template-columns: 1.6fr 1fr;
  height: 360px; overflow: hidden;
}
.tour-gallery-main { background-size: cover; background-position: center; }
.tour-gallery-col { display: grid; grid-template-rows: 1fr 1fr; gap: 3px; }
.tour-gallery-col > div { background-size: cover; background-position: center; }

/* LAYOUT — content + sticky widget */
.tour-content-area { background: var(--cream); padding: 56px 0 80px; }
.tour-layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 48px; align-items: start;
}
.tour-main { min-width: 0; }
.tour-sidebar {
  position: sticky; top: 90px;
}

/* SECTIONS */
.tour-sec { background: white; border-radius: 9px; padding: 28px 32px; margin-bottom: 20px; border: 1px solid var(--line); }
.tour-sec h2 {
  color: var(--cabernet); font-family: Georgia, serif;
  font-size: clamp(22px, 2.8vw, 30px); margin: 0 0 18px;
  padding-bottom: 12px; border-bottom: 2px solid var(--gold);
}
.tour-sec h3 { color: var(--cabernet); font-size: 17px; margin: 16px 0 6px; font-family: Inter, sans-serif; }
.tour-sec p { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0 0 12px; }
.tour-sec ul { color: var(--muted); font-size: 15px; line-height: 1.7; padding-left: 24px; }
.tour-sec ul li { margin-bottom: 6px; }

/* ITINERARY */
.tour-itinerary {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.tour-itinerary li {
  display: flex; gap: 16px;
  padding: 16px;
  border: 1px solid var(--line); border-radius: 8px;
  background: var(--ivory);
}
.tour-stop-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cabernet); color: var(--gold);
  font-family: Georgia, serif; font-weight: 900; font-size: 18px;
  flex-shrink: 0;
}
.tour-itinerary h3 { margin: 0 0 4px; color: var(--cabernet); font-size: 16px; }
.tour-itinerary p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* VEHICLE GRID (inside tour page) */
.tour-vehicle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 14px; }
.tour-vehicle-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  background: var(--ivory);
  transition: box-shadow .15s, transform .15s;
  color: inherit;
}
.tour-vehicle-card:hover { box-shadow: 0 10px 30px rgba(43,15,22,.1); transform: translateY(-2px); }
.tour-vehicle-img {
  height: 140px; background-size: cover; background-position: center;
  position: relative;
}
.tour-vehicle-cap {
  position: absolute; left: 12px; top: 12px;
  background: var(--gold); color: var(--cabernet-dark);
  font-size: 11px; font-weight: 900;
  padding: 5px 10px; border-radius: 4px;
}
.tour-vehicle-body { padding: 14px; }
.tour-vehicle-body h3 { margin: 0; color: var(--cabernet); font-size: 16px; }
.tour-vehicle-body span { color: var(--muted); font-size: 13px; }

/* INCLUSIONS */
.tour-incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tour-incl-grid h3 { font-size: 14px; margin: 0 0 10px; color: var(--cabernet); }
.tour-incl-grid ul { padding-left: 0; list-style: none; }
.tour-incl-grid li {
  padding-left: 20px; position: relative; margin-bottom: 7px;
  color: var(--muted); font-size: 14px;
}
.tour-incl-grid li::before { content: '✓'; position: absolute; left: 0; color: #2e7d32; font-weight: 900; }
.tour-incl-grid .tour-excl li::before { content: '✗'; color: #c62828; }

/* PICKUP CITIES */
.tour-pickup-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 10px; margin-top: 14px; }
.tour-pickup-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px;
  border: 1px solid var(--line); border-radius: 8px;
  background: var(--ivory);
  color: inherit; transition: background .15s;
}
.tour-pickup-card:hover { background: var(--cabernet); color: white; }
.tour-pickup-card:hover * { color: white !important; }
.tour-pickup-card strong { color: var(--cabernet); font-size: 14px; }
.tour-pickup-card span { color: var(--muted); font-size: 12px; }

/* FAQ DETAILS */
.tour-sec details {
  border: 1px solid var(--line); border-radius: 8px;
  background: var(--ivory); margin-bottom: 10px;
}
.tour-sec details summary {
  cursor: pointer; padding: 14px 18px;
  font-weight: 700; color: var(--cabernet);
  list-style: none; user-select: none;
}
.tour-sec details summary::-webkit-details-marker { display: none; }
.tour-sec details summary::after {
  content: '▾'; float: right; color: var(--gold); transition: transform .15s;
}
.tour-sec details[open] summary::after { transform: rotate(180deg); }
.tour-sec details p {
  padding: 0 18px 16px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6;
}

/* POLICY */
.tour-policy { background: var(--ivory); }

/* RELATED TOURS */
.tour-related { background: var(--ivory); padding: 64px 0; }
.tour-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 32px;
}
.tour-section-head h2 {
  font-family: Georgia, serif; color: var(--cabernet);
  font-size: clamp(24px, 3vw, 36px); line-height: 1.15;
  margin: 8px 0 0;
}

/* SLIDER (reusable) */
.nwtl-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 18px;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.nwtl-slider::-webkit-scrollbar { height: 6px; }
.nwtl-slider::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
.nwtl-slider > * {
  flex: 0 0 calc(25% - 14px);
  scroll-snap-align: start;
}
@media (max-width: 1100px) { .nwtl-slider > * { flex: 0 0 calc(33% - 12px); } }
@media (max-width: 900px)  { .nwtl-slider > * { flex: 0 0 calc(50% - 9px); } }
@media (max-width: 640px)  { .nwtl-slider > * { flex: 0 0 85%; } }

/* TOUR CARD (used in related slider, hub grids) */
.tour-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 9px; overflow: hidden;
  background: white; color: inherit;
  transition: box-shadow .15s, transform .15s;
  min-width: 0;
}
.tour-card:hover { box-shadow: 0 12px 32px rgba(43,15,22,.12); transform: translateY(-3px); }
.tour-card-img {
  height: 180px;
  background-size: cover; background-position: center;
  position: relative;
}
.tour-card-duration {
  position: absolute; top: 12px; left: 12px;
  background: var(--cabernet); color: var(--gold);
  font-size: 11px; font-weight: 900; padding: 5px 10px;
  border-radius: 4px;
}
.tour-card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.tour-card-body h3 {
  color: var(--cabernet); font-family: Georgia, serif;
  font-size: 18px; line-height: 1.2; margin: 0 0 8px;
}
.tour-card-body p { color: var(--muted); font-size: 13px; line-height: 1.6; margin: 0 0 12px; flex: 1; }
.tour-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line); padding-top: 12px;
}
.tour-card-foot span:first-child { color: var(--cabernet); font-weight: 800; font-size: 13px; }
.tour-card-arrow { color: var(--gold); font-size: 18px; }

/* GLOBAL FLEET SLIDER */
.global-fleet-slider {
  background: var(--cabernet-dark); padding: 64px 0;
}
.global-fleet-slider .tour-section-head h2 { color: white; }
.global-fleet-slider .eyebrow { color: var(--gold); }

.fleet-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--gold-line); border-radius: 9px; overflow: hidden;
  background: rgba(255,255,255,.04); color: white;
  transition: background .15s, transform .15s;
}
.fleet-card:hover { background: rgba(216,181,109,.08); transform: translateY(-3px); }
.fleet-card-img {
  height: 170px;
  background-size: cover; background-position: center;
  position: relative;
}
.fleet-card-cap {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--cabernet-dark);
  font-size: 11px; font-weight: 900; padding: 5px 10px; border-radius: 4px;
}
.fleet-card-tier {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,.6); color: var(--gold);
  font-size: 10px; font-weight: 800; padding: 4px 8px; border-radius: 4px;
}
.fleet-card-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; }
.fleet-card-body h3 { color: white; font-family: Georgia, serif; font-size: 18px; margin: 0; }
.fleet-card-model { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .03em; }
.fleet-card-body p { color: #d9cdb9; font-size: 13px; line-height: 1.5; margin: 4px 0; }
.fleet-card-arrow { color: var(--gold); font-size: 12px; font-weight: 700; margin-top: 4px; }

/* MOBILE — collapse tour layout */
@media (max-width: 980px) {
  .tour-layout { grid-template-columns: 1fr; }
  .tour-sidebar { position: static; }
  .tour-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-meta-item:nth-child(2) { border-right: none; }
  .tour-gallery { grid-template-columns: 1fr; height: 240px; }
  .tour-gallery-col { display: none; }
  .tour-vehicle-grid, .tour-incl-grid { grid-template-columns: 1fr; }
}
