/* ==========================================================================
   South American Luxe - Tour / Itinerary Single Detail Stylesheet
   Crafted by Cusco Creativos
   ========================================================================== */

/* 1. Tour Hero Banner */
.sal-tour-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  padding: 140px 0 80px;
  overflow: hidden;
  text-align: center;
}

.sal-tour-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sal-tour-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
}

.sal-tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 19, 21, 0.75) 0%,
    rgba(11, 19, 21, 0.5) 40%,
    rgba(11, 19, 21, 0.9) 100%
  );
}

.sal-tour-hero-container {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.sal-tour-badge {
  margin-bottom: 20px;
}

.sal-tour-title {
  font-family: var(--sal-font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

.sal-tour-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.sal-tour-meta-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(18, 30, 33, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: var(--sal-radius-full);
  padding: 10px 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.sal-tour-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #FFFFFF;
  font-weight: 500;
}

.sal-tour-meta-item svg {
  color: var(--sal-gold-light);
}

.sal-tour-meta-price {
  color: var(--sal-gold-light);
  font-weight: 600;
}

.sal-meta-dot {
  color: rgba(255, 255, 255, 0.3);
}

.sal-tour-hero-cta {
  display: flex;
  justify-content: center;
}

/* Sticky Tour Secondary Navigation Bar (Accompanies cleanly at top: 0) */
.sal-tour-nav-bar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(11, 19, 21, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(197, 168, 128, 0.2);
  border-bottom: 1px solid rgba(197, 168, 128, 0.35);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.45);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sal-tour-nav-bar.sal-tour-nav-is-sticky {
  background: rgba(11, 19, 21, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  border-bottom-color: var(--sal-gold-primary);
}

.sal-tour-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.sal-tour-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.sal-tour-nav-links::-webkit-scrollbar {
  display: none;
}

.sal-tnav-link {
  font-family: var(--sal-font-heading);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  transition: color var(--sal-transition-fast);
}

.sal-tnav-link:hover, .sal-tnav-link.sal-tnav-active {
  color: var(--sal-gold-light);
}

.sal-tnav-link.sal-tnav-active::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--sal-gold-primary);
  box-shadow: 0 0 10px var(--sal-gold-primary);
}

.sal-tour-nav-cta {
  flex-shrink: 0;
}

/* 2. Overview & Key Facts */
.sal-tour-overview-section {
  background-color: var(--sal-bg-light);
  padding: 80px 0;
}

.sal-overview-container {
  max-width: 900px;
}

.sal-tour-editorial-lead {
  font-family: var(--sal-font-display);
  font-size: 1.35rem;
  line-height: 1.8;
  color: var(--sal-text-dark);
  text-align: center;
  margin-bottom: 40px;
}

.sal-tour-quote-box {
  background: var(--sal-bg-surface);
  border-left: 3px solid var(--sal-gold-primary);
  border-radius: 0 var(--sal-radius-sm) var(--sal-radius-sm) 0;
  padding: 28px 36px;
  margin-bottom: 50px;
  box-shadow: var(--sal-shadow-subtle);
}

.sal-tour-quote-text {
  font-family: var(--sal-font-accent);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--sal-gold-dark);
}

.sal-tour-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sal-fact-card {
  background: var(--sal-bg-surface);
  border: 1px solid var(--sal-border-subtle);
  border-radius: var(--sal-radius-md);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--sal-transition-fast);
}

.sal-fact-card:hover {
  border-color: var(--sal-gold-primary);
  box-shadow: var(--sal-shadow-card);
}

.sal-fact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sal-gold-subtle);
  color: var(--sal-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sal-fact-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--sal-text-muted);
  text-transform: uppercase;
}

.sal-fact-val {
  display: block;
  font-size: 0.875rem;
  color: var(--sal-text-dark);
  font-weight: 600;
  margin-top: 2px;
}

/* Interactive Expedition Map Section */
.sal-tour-map-section {
  background-color: var(--sal-bg-surface);
  padding: 90px 0;
  border-top: 1px solid var(--sal-border-subtle);
  border-bottom: 1px solid var(--sal-border-subtle);
}

.sal-map-container-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: var(--sal-bg-surface);
  border: 1px solid var(--sal-border-subtle);
  border-radius: var(--sal-radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  min-height: 540px;
}

/* Left Sidebar */
.sal-map-sidebar {
  background: #0B1315;
  color: #FFFFFF;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(197, 168, 128, 0.25);
  z-index: 5;
}

.sal-ms-eyebrow {
  display: block;
  font-family: var(--sal-font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--sal-gold-light);
  margin-bottom: 4px;
}

.sal-ms-title {
  font-family: var(--sal-font-display);
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.sal-map-stops-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.sal-map-stop-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--sal-radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
  width: 100%;
  color: #FFFFFF;
  transition: var(--sal-transition-fast);
}

.sal-map-stop-btn:hover {
  background: rgba(197, 168, 128, 0.1);
  border-color: rgba(197, 168, 128, 0.4);
}

.sal-map-stop-btn.sal-stop-active {
  background: rgba(197, 168, 128, 0.18);
  border-color: var(--sal-gold-primary);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.25);
}

.sal-stop-index {
  font-family: var(--sal-font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sal-gold-light);
  background: rgba(11, 19, 21, 0.8);
  border: 1px solid var(--sal-gold-primary);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sal-stop-active .sal-stop-index {
  background: var(--sal-gold-primary);
  color: #0B1315;
}

.sal-stop-text {
  flex-grow: 1;
}

.sal-stop-text strong {
  display: block;
  font-family: var(--sal-font-heading);
  font-size: 0.875rem;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.sal-stop-text span {
  display: block;
  font-size: 0.72rem;
  color: var(--sal-text-light-muted);
}

.sal-stop-arrow {
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.sal-stop-active .sal-stop-arrow {
  color: var(--sal-gold-light);
  transform: translateX(3px);
}

/* Legend */
.sal-map-legend {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sal-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--sal-text-light-muted);
}

.sal-leg-line {
  width: 20px;
  height: 3px;
  border-radius: 2px;
}

.sal-leg-flight {
  background: repeating-linear-gradient(90deg, #E2B774 0, #E2B774 4px, transparent 4px, transparent 8px);
}

.sal-leg-train {
  background: repeating-linear-gradient(90deg, #2DD4BF 0, #2DD4BF 4px, transparent 4px, transparent 8px);
}

.sal-leg-car {
  background: #C5A880;
}

/* Map Canvas Wrap & Floating Card */
.sal-map-canvas-wrap {
  position: relative;
  background: #0E1618;
}

.sal-interactive-map-canvas {
  width: 100%;
  height: 540px;
  background: #0B1315;
}

/* Custom Leaflet Dark/Gold Pins */
.sal-map-pin {
  background: none;
  border: none;
}

.sal-map-pin-inner {
  position: relative;
  width: 32px;
  height: 32px;
  background: #0B1315;
  border: 2px solid var(--sal-gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sal-gold-light);
  font-family: var(--sal-font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: var(--sal-transition-fast);
}

.sal-map-pin-inner:hover, .sal-map-pin.sal-pin-active .sal-map-pin-inner {
  background: var(--sal-gold-primary);
  color: #0B1315;
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(197, 168, 128, 0.8);
}

.sal-map-pin-pulse {
  position: absolute;
  inset: -6px;
  border: 2px solid var(--sal-gold-primary);
  border-radius: 50%;
  animation: salPinPulse 2s infinite cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

@keyframes salPinPulse {
  0% { transform: scale(0.8); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Floating Card */
.sal-map-floating-card {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 310px;
  background: rgba(11, 19, 21, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: var(--sal-radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow: hidden;
  color: #FFFFFF;
  animation: salFadeIn 0.3s ease;
}

.sal-mfc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px 8px;
}

.sal-mfc-badge {
  font-family: var(--sal-font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--sal-gold-light);
  background: rgba(197, 168, 128, 0.15);
  border: 1px solid var(--sal-gold-primary);
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}

.sal-mfc-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color var(--sal-transition-fast);
}

.sal-mfc-close:hover {
  color: #FFFFFF;
}

.sal-mfc-image-wrap {
  width: 100%;
  height: 130px;
  overflow: hidden;
}

.sal-mfc-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sal-mfc-body {
  padding: 16px;
}

.sal-mfc-title {
  font-family: var(--sal-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.sal-mfc-desc {
  font-size: 0.8rem;
  color: var(--sal-text-light-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.sal-mfc-hotel {
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--sal-radius-sm);
  padding: 8px 12px;
  margin-bottom: 14px;
}

.sal-mfc-hotel-lbl {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--sal-text-light-muted);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.sal-mfc-actions {
  display: flex;
  justify-content: flex-end;
}

/* Map Mobile Breakpoint */
@media (max-width: 992px) {
  .sal-map-container-card {
    grid-template-columns: 1fr;
  }
  .sal-map-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(197, 168, 128, 0.25);
  }
  .sal-map-floating-card {
    position: static;
    width: 100%;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(197, 168, 128, 0.3);
  }
}

/* 3. Highlights Section (Emerald & Gold Container) */
.sal-tour-highlights-section {
  background: #082823;
  color: #FFFFFF;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.sal-tour-highlights-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(197, 168, 128, 0.12) 0%, rgba(8, 40, 35, 0) 60%);
  pointer-events: none;
}

.sal-highlights-box {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.sal-highlights-title {
  font-family: var(--sal-font-display);
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.sal-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 36px;
  margin-top: 40px;
}

.sal-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.sal-highlight-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.2);
  border: 1px solid var(--sal-gold-primary);
  color: var(--sal-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.sal-highlight-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

/* 4. Day-by-Day Itinerary Luxury Timeline */
.sal-tour-itinerary-section {
  background-color: var(--sal-bg-light);
  position: relative;
  padding: 90px 0;
}

.sal-timeline-controls {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.sal-btn-timeline-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sal-bg-surface);
  border: 1px solid var(--sal-border-light);
  color: var(--sal-gold-dark);
  font-family: var(--sal-font-heading);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border-radius: var(--sal-radius-full);
  cursor: pointer;
  transition: var(--sal-transition-fast);
  box-shadow: var(--sal-shadow-subtle);
  text-transform: uppercase;
}

.sal-btn-timeline-toggle:hover {
  background: var(--sal-gold-primary);
  border-color: var(--sal-gold-primary);
  color: #0B1315;
  box-shadow: var(--sal-shadow-glow);
}

.sal-luxury-timeline {
  position: relative;
  max-width: 980px;
  margin: 50px auto 0;
  padding-left: 60px;
}

/* Spine Line */
.sal-timeline-spine {
  position: absolute;
  top: 30px;
  bottom: 50px;
  left: 20px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--sal-gold-primary) 0%,
    rgba(197, 168, 128, 0.45) 80%,
    rgba(197, 168, 128, 0.1) 100%
  );
}

.sal-timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.sal-timeline-item:last-child {
  margin-bottom: 0;
}

/* Node Marker */
.sal-timeline-node {
  position: absolute;
  top: 20px;
  left: -60px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.sal-node-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0B1315;
  border: 2px solid var(--sal-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--sal-transition-smooth);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.sal-node-number {
  font-family: var(--sal-font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sal-gold-light);
  letter-spacing: 0.05em;
}

.sal-timeline-item.sal-tl-open .sal-node-circle,
.sal-timeline-item:hover .sal-node-circle {
  background: var(--sal-gold-primary);
  box-shadow: 0 0 16px rgba(197, 168, 128, 0.6);
  transform: scale(1.08);
}

.sal-timeline-item.sal-tl-open .sal-node-number,
.sal-timeline-item:hover .sal-node-number {
  color: #0B1315;
}

/* Timeline Card */
.sal-timeline-card {
  background: var(--sal-bg-surface);
  border: 1px solid var(--sal-border-subtle);
  border-radius: var(--sal-radius-md);
  box-shadow: var(--sal-shadow-subtle);
  overflow: hidden;
  transition: var(--sal-transition-smooth);
}

.sal-timeline-item.sal-tl-open .sal-timeline-card,
.sal-timeline-card:hover {
  border-color: var(--sal-gold-primary);
  box-shadow: var(--sal-shadow-card);
}

.sal-timeline-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  gap: 20px;
  transition: var(--sal-transition-fast);
}

.sal-timeline-trigger:hover {
  background: rgba(197, 168, 128, 0.04);
}

.sal-tl-header-content {
  flex-grow: 1;
}

.sal-tl-meta-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.sal-tl-badge {
  background: var(--sal-bg-dark);
  color: var(--sal-gold-light);
  font-family: var(--sal-font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: var(--sal-radius-sm);
  border: 1px solid var(--sal-border-light);
  text-transform: uppercase;
  font-weight: 600;
}

.sal-tl-step-label {
  font-size: 0.78rem;
  color: var(--sal-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sal-tl-title {
  font-family: var(--sal-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sal-text-dark);
  line-height: 1.35;
  transition: color var(--sal-transition-fast);
}

.sal-timeline-trigger:hover .sal-tl-title {
  color: var(--sal-gold-dark);
}

.sal-tl-chevron {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sal-bg-muted);
  border: 1px solid var(--sal-border-subtle);
  color: var(--sal-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.sal-timeline-item.sal-tl-open .sal-tl-chevron {
  transform: rotate(180deg);
  background: var(--sal-gold-primary);
  border-color: var(--sal-gold-primary);
  color: #0B1315;
}

/* Card Body */
.sal-timeline-body {
  border-top: 1px solid var(--sal-border-subtle);
  padding: 30px;
  animation: salFadeIn 0.35s ease;
}

.sal-tl-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 32px;
  align-items: center;
}

/* Day Timeline Interactive Image Gallery Slider */
.sal-tl-slider-wrap {
  position: relative;
  height: 280px;
  border-radius: var(--sal-radius-sm);
  overflow: hidden;
  border: 1px solid rgba(197, 168, 128, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  user-select: none;
  background-color: #0B1315;
}

.sal-tl-slides-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.sal-tl-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.04);
  z-index: 1;
}

.sal-tl-slide.sal-slide-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.sal-tl-day-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sal-tl-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 19, 21, 0.3) 0%, rgba(11, 19, 21, 0) 40%, rgba(11, 19, 21, 0.7) 100%);
  pointer-events: none;
}

.sal-tl-day-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(11, 19, 21, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--sal-gold-light);
  font-family: var(--sal-font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  border-radius: 3px;
  border: 1px solid rgba(197, 168, 128, 0.45);
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Slider Controls: Subtle luxury navigation arrows */
.sal-tl-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(11, 19, 21, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(197, 168, 128, 0.4);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.sal-tl-slider-wrap:hover .sal-tl-slider-nav {
  opacity: 1;
}

.sal-tl-nav-prev {
  left: 12px;
}

.sal-tl-nav-next {
  right: 12px;
}

.sal-tl-slider-nav:hover {
  background: var(--sal-gold-primary);
  color: #0B1315;
  transform: translateY(-50%) scale(1.1);
  border-color: var(--sal-gold-light);
}

/* Pagination Dots */
.sal-tl-slider-pagination {
  position: absolute;
  bottom: 12px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
}

.sal-tl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sal-tl-dot.sal-dot-active {
  width: 20px;
  border-radius: 4px;
  background: var(--sal-gold-light);
  box-shadow: 0 0 8px rgba(229, 195, 120, 0.8);
}

/* Counter Badge (e.g. 1 / 3) */
.sal-tl-counter-badge {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(11, 19, 21, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--sal-font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 3px;
  border: 1px solid rgba(197, 168, 128, 0.35);
  z-index: 5;
}

.sal-tl-desc {
  font-size: 0.95rem;
  color: var(--sal-text-body);
  line-height: 1.75;
  margin-bottom: 22px;
}

.sal-tl-meta-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--sal-bg-muted);
  border-radius: var(--sal-radius-sm);
  padding: 16px 20px;
  border: 1px solid var(--sal-border-subtle);
}

.sal-tl-meta-row-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sal-tl-meta-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sal-gold-subtle);
  color: var(--sal-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.sal-tl-meta-text {
  font-size: 0.85rem;
  line-height: 1.45;
}

.sal-tl-meta-title {
  display: block;
  font-weight: 600;
  color: var(--sal-text-dark);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.sal-tl-meta-val {
  color: var(--sal-text-body);
}

/* Timeline Mobile Adaptations */
@media (max-width: 768px) {
  .sal-luxury-timeline {
    padding-left: 45px;
  }
  .sal-timeline-spine {
    left: 14px;
  }
  .sal-timeline-node {
    left: -45px;
    width: 32px;
    height: 32px;
  }
  .sal-node-circle {
    width: 30px;
    height: 30px;
  }
  .sal-node-number {
    font-size: 0.68rem;
  }
  .sal-tl-inner-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sal-tl-image-frame {
    height: 200px;
  }
  .sal-timeline-trigger {
    padding: 18px 20px;
  }
  .sal-timeline-body {
    padding: 20px;
  }
}

/* 5. Inquire / Booking Form ("Your Trip Begins Here") */
.sal-tour-inquire-section {
  background: var(--sal-bg-dark);
  color: #FFFFFF;
  padding: 90px 0;
  position: relative;
}

.sal-tour-form-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--sal-bg-dark-surface);
  border: 1px solid var(--sal-border-light);
  border-radius: var(--sal-radius-lg);
  padding: 48px 56px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.sal-form-card-title {
  font-family: var(--sal-font-display);
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.sal-form-card-desc {
  font-size: 0.95rem;
  color: var(--sal-text-light-muted);
  margin-bottom: 36px;
}

.sal-booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.sal-booking-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--sal-text-light-muted);
  margin-bottom: 6px;
}

.sal-booking-input, .sal-booking-select, .sal-booking-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--sal-radius-sm);
  padding: 14px 18px;
  color: #FFFFFF;
  font-size: 0.875rem;
  transition: var(--sal-transition-fast);
}

.sal-booking-input:focus, .sal-booking-select:focus, .sal-booking-textarea:focus {
  outline: none;
  border-color: var(--sal-gold-primary);
  background: rgba(255, 255, 255, 0.08);
}

.sal-booking-select option {
  background-color: var(--sal-bg-dark-card);
  color: #FFF;
}

.sal-booking-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.sal-booking-feedback {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--sal-radius-sm);
  font-size: 0.9rem;
  text-align: center;
}

.sal-booking-feedback.sal-feedback-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid #22C55E;
  color: #86EFAC;
}

/* 6. Price & Inclusions */
.sal-tour-inclusions-section {
  background: var(--sal-bg-light);
}

.sal-inclusions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.sal-inclusion-card {
  background: var(--sal-bg-surface);
  border: 1px solid var(--sal-border-subtle);
  border-radius: var(--sal-radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.sal-inc-card-included {
  border-color: var(--sal-gold-primary);
  box-shadow: var(--sal-shadow-subtle);
}

.sal-inc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sal-border-subtle);
}

.sal-inc-title {
  font-family: var(--sal-font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--sal-text-dark);
}

.sal-inc-badge {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--sal-gold-subtle);
  border: 1px solid var(--sal-border-light);
  color: var(--sal-gold-dark);
  padding: 3px 8px;
  border-radius: var(--sal-radius-sm);
  font-weight: 600;
}

.sal-badge-dim {
  background: #F1F5F9;
  border-color: #CBD5E1;
  color: #64748B;
}

.sal-inc-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--sal-text-dark);
  margin-bottom: 14px;
  line-height: 1.5;
}

.sal-inc-list-dim li {
  color: var(--sal-text-muted);
}

.sal-hotels-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sal-hotel-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 10px;
  border-bottom: 1px solid var(--sal-border-subtle);
  border-radius: var(--sal-radius-sm);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 12px;
}

.sal-hotel-link:hover {
  background: rgba(197, 168, 128, 0.08);
  border-bottom-color: var(--sal-gold-primary);
  transform: translateX(4px);
}

.sal-hotel-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--sal-text-dark);
  transition: color 0.2s ease;
}

.sal-hotel-link:hover .sal-hotel-name {
  color: var(--sal-gold-dark, #8C6D46);
}

.sal-hotel-arrow {
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.25s ease;
  color: var(--sal-gold-primary);
}

.sal-hotel-link:hover .sal-hotel-arrow {
  opacity: 1;
  transform: translateX(0);
}

.sal-hotel-loc {
  display: block;
  font-size: 0.78rem;
  color: var(--sal-text-muted);
  margin-top: 2px;
}

.sal-hotel-tag {
  font-size: 0.7rem;
  background: var(--sal-bg-muted);
  padding: 4px 10px;
  border-radius: 3px;
  color: var(--sal-text-body);
  font-weight: 500;
  flex-shrink: 0;
  border: 1px solid var(--sal-border-subtle);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.sal-hotel-link:hover .sal-hotel-tag {
  background: #FFFFFF;
  border-color: var(--sal-gold-primary);
  color: var(--sal-gold-dark);
}

/* 8. Reviews Grid */
.sal-tour-reviews-section {
  background: var(--sal-bg-surface);
}

.sal-tour-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sal-tour-review-card {
  background: var(--sal-bg-muted);
  border: 1px solid var(--sal-border-subtle);
  border-radius: var(--sal-radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.sal-tour-review-quote {
  font-family: var(--sal-font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--sal-text-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

.sal-tour-review-author strong {
  display: block;
  font-family: var(--sal-font-heading);
  font-size: 0.875rem;
  color: var(--sal-text-dark);
}

.sal-tour-review-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--sal-text-muted);
}

/* 9. Sustainable Travel Banner */
.sal-tour-sustainable-section {
  padding: 80px 0;
  background: var(--sal-bg-light);
}

.sal-sustainable-banner-card {
  position: relative;
  border-radius: var(--sal-radius-lg);
  overflow: hidden;
  color: #FFFFFF;
  padding: 80px 60px;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.sal-sustainable-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sal-sustainable-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(100%) contrast(110%);
}

.sal-sustainable-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 19, 21, 0.95) 0%,
    rgba(11, 19, 21, 0.8) 60%,
    rgba(11, 19, 21, 0.4) 100%
  );
}

.sal-sustainable-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.sal-sustainable-title {
  font-family: var(--sal-font-display);
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.sal-sustainable-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 32px;
}

.sal-sustainable-commitments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sal-commitment-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(18, 30, 33, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: var(--sal-radius-sm);
  padding: 10px 14px;
  font-size: 0.8125rem;
  color: #FFFFFF;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .sal-tour-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sal-highlights-grid {
    grid-template-columns: 1fr;
  }
  .sal-acc-inner-grid {
    grid-template-columns: 1fr;
  }
  .sal-booking-grid {
    grid-template-columns: 1fr;
  }
  .sal-inclusions-grid {
    grid-template-columns: 1fr;
  }
  .sal-tour-reviews-grid {
    grid-template-columns: 1fr;
  }
  .sal-sustainable-commitments-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .sal-tour-facts-grid {
    grid-template-columns: 1fr;
  }
  .sal-tour-form-card {
    padding: 32px 20px;
  }
}
