/* =============================================
   THOUSAND MILES KRAKOW - Light Theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #ffffff;
  --dark: #f5f5f5;
  --card: #eeeeee;
  --border: #e0e0e0;
  --text-dark: #111111;
  --text-body: #555555;
  --text-light: #999999;
  --orange: #f38829;
  --orange-hover: #d97520;
  --orange-soft: rgba(243, 136, 41, 0.08);
  --white: #ffffff;
  --font-head: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; }

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 54px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: stretch;
  gap: 32px;
  height: 100%;
}

.nav-links > li {
  display: flex;
  align-items: center;
}

.nav-links > li > a {
  font-size: 14px;
  font-weight: 500;
  color: #444444;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links > li > a:hover,
.nav-links > li.has-dropdown:hover > a,
.nav-links > li > a.active-nav {
  color: #111111;
}

.nav-links > li > a.active-nav {
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}

.nav-btn {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  transition: background 0.2s !important;
}

.nav-btn:hover {
  background: var(--orange-hover) !important;
}

.arrow {
  font-size: 9px;
  opacity: 0.4;
  margin-top: 1px;
}

/* =============================================
   MEGA DROPDOWN
   ============================================= */

.has-dropdown { position: static; }

.dropdown-mega {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 2px solid var(--orange);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.10);
  z-index: 999;
}

.has-dropdown:hover .dropdown-mega { display: flex; }

.dropdown-left {
  width: 300px;
  padding: 20px 0;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}

.dropdown-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 8px 32px 14px;
}

.tour-link {
  display: block;
  padding: 14px 32px;
  transition: background 0.2s;
  border-left: 3px solid transparent;
}

.tour-link:hover,
.tour-link.active-link {
  background: #f2f2f2;
  border-left-color: var(--orange);
}

.tour-link:hover .tour-name { color: var(--orange); }

.tour-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 3px;
  transition: color 0.2s;
}

.tour-desc {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

.dropdown-right {
  flex: 1;
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.tour-banner {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
}

.tour-banner.active { opacity: 1; visibility: visible; }

.tour-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.banner-content {
  position: relative;
  z-index: 1;
  padding: 28px 36px;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.banner-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 3px 10px;
  margin-bottom: 10px;
}

.banner-content h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: #fff;
}

.banner-content p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
  line-height: 1.5;
}

.banner-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 5px;
  transition: background 0.2s;
}

.banner-btn:hover { background: var(--orange-hover); }

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  height: 85vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.32);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,0.72) 35%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-inner { max-width: 620px; }

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--orange); }

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 14px;
  line-height: 1.6;
}

.hero-text {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 15px 32px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}

.cta-btn:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.cta-btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}

.cta-btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* =============================================
   TRUST BAR
   ============================================= */

.trust-bar {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}
.trust-bar::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.trust-bar::after  { right: 0; background: linear-gradient(to left, var(--dark), transparent); }

.trust-bar-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.trust-bar-inner:hover { animation-play-state: paused; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-dot {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-item span:last-child {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-body);
}

/* =============================================
   SECTIONS BASE
   ============================================= */

.section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full { padding: 80px 24px; }
.section-tight-bottom .section,
.section-tight-bottom { padding-bottom: 32px !important; }
.section-tight-top .section,
.section-tight-top { padding-top: 32px !important; }
.section-full .section-inner { max-width: 1200px; margin: 0 auto; }
.section--no-bottom { padding-bottom: 0; }
.section-full--no-top { padding-top: 0; }
.section-bg { background: var(--dark); }

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-body);
  max-width: 540px;
  line-height: 1.75;
}

/* =============================================
   TOURS GRID
   ============================================= */

.tours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}

.tour-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--card);
  display: block;
  cursor: pointer;
}

.tour-card.featured {
  grid-column: 1 / -1;
  height: 460px;
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.tour-card:hover img {
  filter: brightness(0.55);
  transform: scale(1.04);
}

.tour-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.tour-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 3px 10px;
  margin-bottom: 10px;
}

.tour-card-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: #fff;
  text-transform: uppercase;
}

.tour-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.tour-card:hover .tour-card-desc { opacity: 1; transform: translateY(0); }

.tour-card-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.tour-card:hover .tour-card-cta { gap: 10px; }

.tour-card-pickup {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.tour-card-pickup-dot {
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =============================================
   ABOUT
   ============================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-text {
  position: sticky;
  top: 100px;
}

.about-text p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-text p:last-of-type { margin-bottom: 0; }

.about-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image img.parallax-img {
  height: 130%;
  will-change: transform;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--orange);
  color: #fff;
  padding: 18px 22px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.4;
}

/* =============================================
   WHY US
   ============================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
  border: 1px solid var(--border);
}

.why-item {
  padding: 28px 24px;
  background: var(--dark);
  border-top: 3px solid transparent;
  transition: border-top-color 0.2s;
}

.why-item:hover { border-top-color: var(--orange); }

.why-number {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: #e0e0e0;
  margin-bottom: 14px;
  line-height: 1;
  transition: color 0.2s;
}

.why-item:hover .why-number { color: var(--orange); }

.why-title {
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}

.why-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
}

/* =============================================
   WHAT'S INCLUDED — IMMERSIVE
   ============================================= */

.included-immersive {
  position: relative;
  padding: 96px 24px;
  background-size: cover;
  background-position: center 40%;
}

.included-immersive-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.68);
}

.included-immersive-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.included-immersive-header {
  margin-bottom: 48px;
}

.included-immersive-header .section-label {
  color: rgba(255,255,255,0.7);
}

.included-glass-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
}

.included-glass {
  background: rgba(20,20,20,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 36px 32px;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.included-glass:hover {
  background: rgba(20,20,20,0.9);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-5px);
}

.included-glass h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.18);
}

.included-glass--yes h4 { border-bottom-color: var(--orange); }

.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.included-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}

.il-yes { color: #4cda74; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.il-no  { color: rgba(255,255,255,0.4); font-weight: 700; font-size: 15px; flex-shrink: 0; }

@media (max-width: 768px) {
  .included-immersive {
    background-image: none !important;
    background: var(--card);
    padding: 48px 24px;
  }
  .included-immersive-overlay { display: none; }
  .included-glass-grid { grid-template-columns: 1fr; gap: 16px; }
  .included-glass {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid var(--border);
    padding: 24px 20px;
    transform: none !important;
  }
  .included-glass:hover { transform: none !important; }
  .included-glass h4 { color: #111; border-bottom-color: var(--border); }
  .included-glass--yes h4 { border-bottom-color: var(--orange); }
  .included-immersive-header .section-title { color: #111 !important; }
  .included-immersive-header .section-label { color: var(--orange) !important; }
  .included-list li { color: var(--text-body); }
  .il-yes { color: #22aa44; }
  .il-no { color: #aaa; }
}

/* =============================================
   NOTICE BOX
   ============================================= */

.notice-box {
  border-left: 3px solid var(--orange);
  background: rgba(255, 85, 0, 0.05);
  padding: 20px 24px;
  margin-top: 32px;
}

.notice-box p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.7;
}

.notice-box p + p { margin-top: 10px; }
.notice-box strong { color: #111111; }

/* =============================================
   PLEASE NOTE / BRING
   ============================================= */

.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.notes-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 16px;
}

.notes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notes-list li {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.notes-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* =============================================
   CANCELLATION POLICY
   ============================================= */

.cancellation-box {
  border: 1px solid var(--border);
  padding: 28px 32px;
  margin-top: 32px;
  background: var(--dark);
}

.cancellation-box h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 14px;
}

.cancellation-box p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 6px;
}

/* =============================================
   WHO THIS IS FOR
   ============================================= */

.for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
  border: 1px solid var(--border);
}

.for-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px 32px;
  background: var(--dark);
  border-left: 3px solid transparent;
  transition: border-left-color 0.2s;
}

.for-item:hover { border-left-color: var(--orange); }

.for-text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
}

/* =============================================
   COMPARISON
   ============================================= */

.comparison-wrap {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.comparison-col {
  padding: 40px 36px;
  background: var(--dark);
}

.comparison-col.ours {
  background: #fff8f5;
  border-left: 2px solid var(--orange);
}

.comparison-col h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--text-light);
}

.comparison-col.ours h3 { color: var(--orange); }

.comp-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-light);
}

.comparison-col.ours .comp-item { color: var(--text-body); }

.ci { font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 1px; width: 18px; }
.ci-x  { color: #ff4444; }
.ci-ok { color: #22aa44; }

/* =============================================
   FAQ
   ============================================= */

.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--border);
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #111111;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--orange); }

.faq-icon {
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.85;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 22px; }

/* =============================================
   CONTACT FORM
   ============================================= */

.form-wrap {
  max-width: 700px;
  margin: 28px auto 0;
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 28px 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-wrap h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111111;
  margin-bottom: 3px;
}

.form-wrap > p {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.form-group { margin-bottom: 12px; }

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: #111111;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 6px 0;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--orange);
}

.form-group input::placeholder { color: #ccc; }

.form-group input[readonly] {
  color: var(--orange);
  cursor: default;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-color: transparent;
  padding-right: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--orange-hover); }

.form-note {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 10px;
  text-align: center;
  line-height: 1.6;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 0;
}

.form-success h4 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: var(--text-light);
}

/* =============================================
   TOUR PAGE HERO
   ============================================= */

.tour-hero {
  position: relative;
  height: 72vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.tour-hero-bg { position: absolute; inset: 0; }

.tour-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38);
}

.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 12%, transparent 65%);
}

.tour-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 52px;
  width: 100%;
}

.tour-hero-content .tour-tag { margin-bottom: 14px; }

.tour-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 6.5vw, 74px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.tour-hero-content .hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* =============================================
   HIGHLIGHTS ROW
   ============================================= */

.highlights-row {
  display: flex;
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.highlight-item {
  flex: 1;
  padding: 24px 20px;
  background: var(--dark);
  text-align: center;
  border-right: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: border-top-color 0.2s;
}

.highlight-item:last-child { border-right: none; }
.highlight-item:hover { border-top-color: var(--orange); }

.highlight-value {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 2px;
  line-height: 1;
}

.highlight-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   GALLERY
   ============================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 48px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--card);
}

.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.7);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  color: #fff;
  font-size: 32px;
  font-weight: 300;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 36px;
  font-weight: 300;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 20px;
  opacity: 0.5;
  transition: opacity 0.2s;
  line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }

.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  letter-spacing: 1px;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 52px 24px 28px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo { display: inline-flex; margin-bottom: 16px; }

.footer-brand p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--text-light);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #111111; }

.footer-made-by {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
}

.footer-made-by span {
  font-size: 12px;
  color: var(--text-light);
}

.tapit-link {
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.tapit-link:hover { opacity: 1; }

.tapit-logo {
  height: 22px;
  width: auto;
  filter: invert(1);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-light);
  flex-wrap: wrap;
  gap: 8px;
}

/* =============================================
   HOW IT WORKS — JOURNEY
   ============================================= */

.journey-wrap {
  margin-top: 64px;
  position: relative;
}

.journey-endpoints {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.journey-endpoint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.journey-endpoint-dot {
  width: 14px;
  height: 14px;
  background: var(--text-light);
  border-radius: 50%;
}

.journey-endpoint-dot.end {
  background: var(--orange);
}

.journey-endpoint-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
}

.journey-endpoint-label.end {
  color: var(--orange);
}

.journey-track {
  position: relative;
  margin: 16px 0 0;
}

.journey-line {
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.journey-line-progress {
  position: absolute;
  top: 13px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #cccccc, var(--orange));
  z-index: 0;
  transition: width 1.2s ease;
}

.journey-line-progress.animated { width: 100%; }

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.journey-step-node {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}

.journey-step-node-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s;
}

.journey-step:hover .journey-step-node {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,85,0,0.1);
}

.journey-step:hover .journey-step-node-inner {
  background: var(--orange);
}

.journey-step-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.journey-step-title {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
  line-height: 1.3;
}

.journey-step-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* =============================================
   STATISTICS
   ============================================= */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}

.stat-item {
  background: var(--dark);
  padding: 40px 32px;
  text-align: center;
  border-top: 3px solid transparent;
  transition: border-top-color 0.2s;
}

.stat-item:hover { border-top-color: var(--orange); }

.stat-value {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* =============================================
   WHY ZAKOPANE — IMMERSIVE
   ============================================= */

.zakopane-immersive {
  position: relative;
  padding: 96px 24px;
  overflow: hidden;
}

.zakopane-immersive-bg {
  position: absolute;
  inset: 0;
}

.zakopane-immersive-bg img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.45);
  will-change: transform;
}

.zakopane-immersive-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 100%);
}

.zakopane-immersive-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.zakopane-immersive .section-title {
  color: #ffffff;
  margin-bottom: 0;
}

.zakopane-immersive-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
}

.zakopane-immersive-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 360px;
  line-height: 1.7;
}

.zakopane-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.zakopane-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 32px 26px;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.zakopane-card:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-5px);
}

.zakopane-card-num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 14px;
}

.zakopane-card-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.zakopane-card-text {
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
}

/* =============================================
   REVIEWS
   ============================================= */

/* Reviews — immersive mountain background */
.reviews-immersive {
  position: relative;
  padding: 96px 24px;
  overflow: hidden;
}

.reviews-immersive-bg {
  position: absolute;
  inset: 0;
}

.reviews-immersive-bg img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.38);
  will-change: transform;
}

.reviews-immersive-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 100%);
}

.reviews-immersive-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.reviews-immersive-inner .section-label {
  color: rgba(255,255,255,0.55);
}

.reviews-immersive-inner .section-title {
  color: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.review-card {
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 36px 36px 32px;
  text-align: left;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.review-card:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-flag {
  font-size: 20px;
  line-height: 1;
}

.review-name {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.review-tour {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

.reviews-source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 36px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.review-more {
  display: none;
}

.review-text--collapsible.expanded .review-more {
  display: inline;
}

.review-expand-btn {
  background: none;
  border: none;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 18px;
  display: block;
}

.review-expand-btn:hover {
  text-decoration: underline;
}

/* =============================================
   FAQ V1: TWO COLUMNS
   ============================================= */

.faq-two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  min-height: 340px;
}

.faq-questions-list {
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.faq-col-q {
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-left 0.15s;
  border-left: 3px solid transparent;
  line-height: 1.4;
}

.faq-col-q:last-child { border-bottom: none; }

.faq-col-q:hover {
  background: var(--card);
  color: var(--text-dark);
}

.faq-col-q.active {
  background: #fff;
  color: var(--orange);
  border-left-color: var(--orange);
  font-weight: 600;
}

.faq-answers-panel {
  padding: 36px 40px;
  position: relative;
}

.faq-col-a {
  display: none;
}

.faq-col-a.active {
  display: block;
}

.faq-col-a h4 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.faq-col-a p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
}

/* =============================================
   FAQ V2: ICON CARDS
   ============================================= */

.faq-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: var(--border);
  border: 1px solid var(--border);
}

.faq-card {
  background: var(--bg);
  padding: 32px 28px;
  transition: background 0.2s;
}

.faq-card:hover {
  background: var(--dark);
}

.faq-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}

.faq-card-q {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-card-a {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-two-col { grid-template-columns: 1fr; }
  .faq-questions-list { border-right: none; border-bottom: 1px solid var(--border); }
  .faq-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .faq-cards { grid-template-columns: 1fr; }
}

/* =============================================
   UTILITIES
   ============================================= */

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-orange { color: var(--orange); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; aspect-ratio: 4/3; }
  .about-text { position: static; }
}

@media (max-width: 768px) {
  .journey-steps { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .journey-line, .journey-line-progress, .journey-endpoints { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .zakopane-cards { grid-template-columns: repeat(2, 1fr); }
  .zakopane-immersive-header { flex-direction: column; align-items: flex-start; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-immersive { padding: 64px 20px; }
  .tours-grid { grid-template-columns: 1fr; gap: 1px; }
  .tour-card.featured { grid-column: 1; height: 400px; }
  .comparison-wrap { grid-template-columns: 1fr; }
  .for-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .highlights-row { flex-wrap: wrap; }
  .highlight-item { flex: 0 0 50%; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 20px; }
  .included-grid { grid-template-columns: 1fr; }
  .notes-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.featured { grid-column: span 2; grid-row: span 1; }
}

.nav-btn--mobile { display: none !important; }

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-btn--mobile { display: inline-block !important; margin-left: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .tour-hero { height: 58vh; }
}

/* =============================================
   ABOUT IMAGE FRAME
   ============================================= */

.about-img-wrap {
  border-left: 2px solid var(--orange);
  padding-left: 14px;
}

/* Version label banner */
.about-version-label {
  background: #222;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
}

/* --- V1: Highlights + floating card --- */
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.about-hl {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-hl-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-soft, #fff4e8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--orange);
  flex-shrink: 0;
}
.about-hl div { display: flex; flex-direction: column; gap: 2px; }
.about-hl strong { font-size: 15px; color: var(--text); font-weight: 600; }
.about-hl span { font-size: 13.5px; color: var(--text-body); }

.about-image--card { position: relative; }
.about-float-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.96);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.about-float-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.about-float-val { font-size: 17px; font-weight: 700; color: var(--text); }
.about-float-lbl { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.05em; }
.about-float-sep { width: 1px; height: 32px; background: var(--border); }

/* --- V2: Cinematic full-width split --- */
.about-cinema {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.about-cinema-img {
  overflow: hidden;
}
.about-cinema-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-cinema-text {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.about-cinema-text p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-cinema-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.about-cinema-stats div { display: flex; flex-direction: column; gap: 3px; }
.about-cinema-stats strong { font-size: 18px; font-weight: 700; color: var(--text); }
.about-cinema-stats span { font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: 0.05em; }

/* --- V3: Journey timeline --- */
.journey-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.jt-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.jt-icon {
  width: 64px;
  height: 64px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.jt-connector {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--orange);
  opacity: 0.25;
  z-index: 0;
}
.jt-content {
  margin-top: 20px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.jt-content strong { font-size: 15px; font-weight: 600; color: var(--text); }
.jt-content span { font-size: 13.5px; color: var(--text-body); line-height: 1.6; }

/* --- V4: Photo mosaic --- */
.about-mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-mosaic-text p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-mosaic-photos {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  height: 460px;
}
.mosaic-main {
  overflow: hidden;
  border-radius: 8px;
}
.mosaic-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mosaic-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mosaic-side img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  min-height: 0;
}

@media (max-width: 768px) {
  .about-cinema { grid-template-columns: 1fr; }
  .about-cinema-img { height: 280px; }
  .about-cinema-text { padding: 40px 24px; }
  .journey-timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
  .jt-connector { display: none; }
  .about-mosaic-grid { grid-template-columns: 1fr; }
  .about-mosaic-photos { height: 320px; }
}

/* =============================================
   MOUNTAIN BACKGROUND
   ============================================= */

.mountain-bg {
  position: relative;
  overflow: hidden;
}

.mountain-bg::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath fill='%231a1a1a' fill-opacity='0.055' d='M0,200V120L80,85L160,105L240,65L320,95L400,55L480,80L560,70L640,90L720,50L800,75L880,60L960,85L1040,55L1120,80L1200,65L1300,85L1380,70L1440,80V200Z'/%3E%3Cpath fill='%231a1a1a' fill-opacity='0.08' d='M0,200V145L100,120L180,135L260,105L360,128L440,100L520,120L600,110L680,128L760,105L840,122L920,112L1000,130L1080,115L1160,132L1260,118L1360,130L1440,122V200Z'/%3E%3C/svg%3E");
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.mountain-bg > * {
  position: relative;
  z-index: 1;
}

/* =============================================
   TOURS V2: NUMBERED
   ============================================= */

.tours-numbered {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  border: 1px solid var(--border);
}

.tour-num-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--bg);
  transition: background 0.2s;
  border-right: 1px solid var(--border);
}

.tour-num-card:last-child { border-right: none; }

.tour-num-card:hover { background: var(--dark); }

.tour-num-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.tour-num-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-num-card:hover .tour-num-img img { transform: scale(1.04); }

.tour-num-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}

.tour-num-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tour-num-number {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: var(--border);
  position: absolute;
  top: 16px;
  right: 20px;
  letter-spacing: -2px;
  pointer-events: none;
}

.tour-num-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.2;
  max-width: 80%;
}

.tour-num-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 14px;
}

.tour-num-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.tour-num-features li {
  font-size: 12px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-num-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}

.tour-num-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-top: auto;
}

/* =============================================
   TOURS V3: HORIZONTAL ROWS
   ============================================= */

.tours-rows {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 48px;
}

.tour-row-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: inherit;
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.tour-row-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

.tour-row-img {
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}

.tour-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tour-row-card:hover .tour-row-img img { transform: scale(1.05); }

.tour-row-body {
  padding: 24px 28px;
}

.tour-row-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.tour-row-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.tour-row-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.tour-row-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tour-row-pills span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-body);
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 20px;
}

.tour-row-action {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
  border-left: 1px solid var(--border);
}

.tour-row-price {
  font-size: 13px;
  color: var(--text-light);
  white-space: nowrap;
}

.tour-row-price strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  display: block;
  line-height: 1;
}

/* =============================================
   TOURS V4: FEATURED LAYOUT
   ============================================= */

.tours-featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3px;
  margin-top: 48px;
  height: 540px;
}

.tour-feat-main,
.tour-feat-small {
  position: relative;
  overflow: hidden;
  display: flex;
  text-decoration: none;
  color: #fff;
}

.tour-feat-main img,
.tour-feat-small img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-feat-main:hover img,
.tour-feat-small:hover img { transform: scale(1.04); }

.tour-feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  z-index: 1;
}

.tour-feat-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  margin-top: auto;
  width: 100%;
}

.tour-feat-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 8px 0 6px;
}

.tour-feat-small .tour-feat-title { font-size: 20px; }

.tour-feat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 12px;
}

.tour-feat-price {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.tour-feat-price strong {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.tour-feat-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
}

.tour-feat-side {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tour-feat-small { flex: 1; }

@media (max-width: 768px) {
  .tours-numbered { grid-template-columns: 1fr; }
  .tour-num-card { border-right: none; border-bottom: 1px solid var(--border); }
  .tour-row-card { grid-template-columns: 1fr; }
  .tour-row-img { height: 200px; }
  .tour-row-action { border-left: none; border-top: 1px solid var(--border); align-items: flex-start; flex-direction: row; align-items: center; }
  .tours-featured { grid-template-columns: 1fr; height: auto; }
  .tour-feat-main { height: 320px; }
  .tour-feat-small { height: 200px; }
  .tour-feat-side { flex-direction: row; }
}

/* =============================================
   COMPARE V1: CARDS
   ============================================= */

.compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  max-width: 900px;
  margin: 48px auto 0;
  align-items: stretch;
}

.compare-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.compare-card--featured {
  background: var(--dark);
  border: 2px solid var(--orange);
  border-radius: 16px;
  transform: scale(1.04);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(243,136,41,0.18);
}

.compare-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.compare-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.compare-card-name {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.compare-card-price {
  font-size: 14px;
  color: var(--muted);
}

.compare-card-price strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.compare-list li {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.compare-list li::before {
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.compare-list li.yes {
  color: var(--text);
}

.compare-list li.yes::before {
  content: '✓';
  color: #4caf8a;
}

.compare-list li.no {
  color: var(--muted);
}

.compare-list li.no::before {
  content: '✗';
  color: #c0392b;
}

/* =============================================
   COMPARE V2: ROWS
   ============================================= */

.compare-rows-section {
  background: var(--dark);
}

.compare-rows {
  max-width: 760px;
  margin: 48px auto 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
}

.compare-row-header,
.compare-row {
  display: grid;
  grid-template-columns: 1fr 120px 120px 140px;
  align-items: center;
}

.compare-row-header {
  background: rgba(255,255,255,0.04);
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.4;
  text-align: center;
}

.compare-row {
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
  color: var(--text);
}

.compare-row:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

.compare-row-label {
  font-size: 14px;
  color: var(--muted);
  text-align: left;
}

.compare-row-col {
  text-align: center;
}

.compare-row-col--mid {
  color: var(--text);
}

.compare-row-col--best {
  background: rgba(243,136,41,0.07);
  font-weight: 600;
}

.compare-row-header .compare-row-col--best {
  color: var(--orange);
  background: rgba(243,136,41,0.1);
  border-radius: 6px 6px 0 0;
}

.cr-yes {
  color: #4caf8a;
  font-weight: 700;
  font-size: 16px;
}

.cr-no {
  color: rgba(255,255,255,0.18);
  font-size: 16px;
}

.compare-row--price .compare-row-col {
  font-size: 13px;
  color: var(--muted);
}

.compare-row--price strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  display: block;
}

.compare-row--cta {
  padding: 18px 20px;
  background: rgba(255,255,255,0.02);
}

.compare-row--cta .cta-btn,
.compare-row--cta .cta-btn-outline {
  font-size: 12px;
  padding: 9px 16px;
}

@media (max-width: 680px) {
  .compare-cards { grid-template-columns: 1fr; gap: 16px; }
  .compare-card--featured { transform: none; }
  .compare-row-header,
  .compare-row { grid-template-columns: 1fr 80px 80px 100px; }
}

/* =============================================
   MOUNTAIN OUTLINE BACKGROUND
   ============================================= */


/* =============================================
   GALLERY VARIANTS
   ============================================= */

/* 5 images: featured spans 2 cols x 1 row, then 3 items fill row 2 */
.gallery-grid--5 .gallery-item.featured {
  grid-column: span 2;
  grid-row: span 1;
  aspect-ratio: 8 / 5;
}

/* 4 images: featured spans full 3 cols x 1 row (cinematic), then 3 items fill row 2 */
.gallery-grid--4 .gallery-item.featured {
  grid-column: span 3;
  grid-row: span 1;
  aspect-ratio: 21 / 9;
}

/* =============================================
   PHONE INPUT WITH COUNTRY CODE
   ============================================= */

.phone-wrap {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  transition: border-color 0.2s;
}

.phone-wrap:focus-within {
  border-color: var(--orange);
}

.phone-wrap .phone-code {
  width: 110px;
  flex-shrink: 0;
  border: none;
  border-right: 1.5px solid var(--border);
  background: var(--dark);
  padding: 12px 8px;
  font-size: 14px;
  color: var(--text-dark);
  border-radius: 0;
  outline: none;
  cursor: pointer;
  appearance: auto;
}

.phone-wrap input[type="tel"] {
  flex: 1;
  border: none;
  background: var(--bg);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  min-width: 0;
}

.phone-wrap input[type="tel"]::placeholder { color: #bbbbbb; }

.form-group .phone-wrap { border: 1.5px solid var(--border); }
.form-group .phone-wrap:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,85,0,0.08); }

/* =============================================
   HOTEL PICKUP TOGGLE
   ============================================= */

.pickup-pills {
  display: flex;
  gap: 5px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.pickup-pill {
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  user-select: none;
}

.pickup-pill input[type="radio"] {
  display: none;
}

.pickup-pill:hover {
  border-color: var(--orange);
}

.pickup-pill:has(input:checked) {
  border-color: var(--orange);
  background: var(--orange-soft);
}

.pickup-pill:has(input:checked) span {
  color: var(--orange);
}

.pickup-pill span {
  font-size: 11px;
  color: var(--text-dark);
  font-weight: 500;
}

.pickup-note {
  display: none;
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}

.form-group--pickup {
  margin-bottom: 10px;
}

.form-group--pickup label {
  font-size: 10px;
  margin-bottom: 5px;
}

/* =============================================
   AGE COUNTERS
   ============================================= */

.age-counters {
  border: 1px solid var(--border);
  margin-top: 4px;
}

.age-counter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 12px;
  border-bottom: 1px solid var(--border);
}

.age-counter-item:last-child { border-bottom: none; }

.age-counter-info {
  flex: 1;
}

.age-counter-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.age-counter-age {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 1px;
}

.age-counter-control {
  display: flex;
  align-items: center;
  gap: 12px;
}

.age-counter-btn {
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  user-select: none;
  padding: 0;
}

.age-counter-btn:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.age-counter-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  border-color: var(--border);
  background: var(--bg);
  color: var(--text-light);
}

.age-counter-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  min-width: 16px;
  text-align: center;
}

/* =============================================
   ABOUT IMAGE REVEAL ANIMATION
   ============================================= */

.about-image {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-col {}

.contact-info-col {
  padding: 40px;
  background: var(--dark);
  border: 1px solid var(--border);
}

.contact-info-col h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.contact-detail {
  margin-bottom: 20px;
}

.contact-detail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.6;
}

.contact-form-full .form-group textarea {
  min-height: 120px;
  resize: vertical;
}

@media (max-width: 900px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* Override: ensure phone-wrap inputs don't get double border from .form-group */
.form-group .phone-wrap input[type="tel"],
.form-group .phone-wrap select {
  border: none !important;
  box-shadow: none !important;
}
