:root {
  --primary: #0066cc;
  --primary-dark: #0055aa;
  --accent: #00a67e;
  --accent-dark: #008f6b;
  --danger: #e74c3c;
  --warning: #f39c12;
  --dark: #1a1a2e;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --bg: #ffffff;
  --bg-light: #f8f9fa;
  --bg-gray: #f0f2f5;
  --border: #e0e0e0;
  --border-light: #eeeeee;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.25s ease;
  --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1400px;
  --search-bar-max-width: 780px;
  --header-height: 64px;
  --header-search-height: 0px;
  --header-total-height: var(--header-height);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #141414;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: var(--header-height);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.site-header .logo {
  color: #fff;
}

.site-header .phone-link strong {
  color: #fff;
}

.site-header .phone-link span {
  color: rgba(255, 255, 255, 0.55);
}

.site-header .sign-in-btn {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
}

.site-header .sign-in-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.site-header .menu-toggle span {
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--accent);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-main a.nav-link,
.nav-main a.nav-link-plain {
  color: rgba(255, 255, 255, 0.88);
}

.nav-main a {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

.nav-main a.nav-link:hover,
.nav-main a.nav-link-plain:hover,
.nav-main a.nav-link-plain.active {
  color: #fff;
}

/* Legacy simple links (if any remain) */
.nav-main > a:not(.nav-link):not(.nav-link-plain) {
  color: var(--text);
}

.nav-main > a:not(.nav-link):not(.nav-link-plain):hover,
.nav-main > a:not(.nav-link):not(.nav-link-plain).active {
  color: var(--primary);
}

.nav-main > a:not(.nav-link):not(.nav-link-plain)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-main > a:not(.nav-link):not(.nav-link-plain):hover::after,
.nav-main > a:not(.nav-link):not(.nav-link-plain).active::after {
  width: 100%;
}

/* ===== MEGA MENU NAV ===== */
.nav-main {
  align-items: stretch;
  gap: 0;
  height: var(--header-height);
}

.nav-item-mega {
  position: static;
  height: 100%;
}

.nav-link-row {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-item-mega > .nav-link-row > .nav-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  position: relative;
  transition: color 0.2s ease;
}

.nav-item-mega > .nav-link-row > .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.12s ease;
}

.nav-item-mega:hover > .nav-link-row > .nav-link,
.nav-item-mega:focus-within > .nav-link-row > .nav-link,
.nav-item-mega.is-active > .nav-link-row > .nav-link {
  color: #fff;
}

.nav-item-mega:hover > .nav-link-row > .nav-link::after,
.nav-item-mega:focus-within > .nav-link-row > .nav-link::after,
.nav-item-mega.is-active > .nav-link-row > .nav-link::after {
  transform: scaleX(1);
}

.nav-main > .nav-link-plain {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  transition: color 0.2s ease;
}

.nav-main > .nav-link-plain::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.12s ease;
}

.nav-main > .nav-link-plain:hover,
.nav-main > .nav-link-plain.active {
  color: #fff;
}

.nav-main > .nav-link-plain:hover::after,
.nav-main > .nav-link-plain.active::after {
  transform: scaleX(1);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #141414;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.14s ease, transform 0.14s ease, visibility 0s linear 0.14s;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-item-mega:hover .mega-menu,
.nav-item-mega:focus-within .mega-menu,
.nav-item-mega.is-mega-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.05s ease, transform 0.05s ease, visibility 0s;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 280px 1fr 1.15fr;
  gap: 40px;
  padding: 32px 24px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.mega-promo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mega-promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-promo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
}

.mega-promo-content {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.mega-promo-content h3 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.mega-promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 2px solid #fff;
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.mega-promo-btn:hover {
  background: #fff;
  color: #141414;
}

.mega-section-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.mega-section-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.mega-section-sub a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mega-link-list {
  list-style: none;
}

.mega-link-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mega-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mega-link-list a:hover {
  color: var(--accent);
}

.mega-link-list a svg {
  width: 16px;
  height: 16px;
  opacity: 0.5;
  flex-shrink: 0;
}

.mega-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mega-dest-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.mega-dest-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.mega-dest-tile:hover img {
  transform: scale(1.06);
}

.mega-dest-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
}

.mega-dest-tile span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 1;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.mega-mobile-toggle {
  display: none;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .mega-menu-inner {
    grid-template-columns: 240px 1fr 1fr;
    gap: 28px;
  }

  .mega-dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-main {
    align-items: stretch;
    height: auto;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .nav-item-mega {
    height: auto;
  }

  .nav-item-mega > .nav-link-row {
    width: 100%;
    height: auto;
    justify-content: space-between;
  }

  .nav-item-mega > .nav-link-row > .nav-link,
  .nav-main > .nav-link-plain {
    width: auto;
    flex: 1;
    height: auto;
    padding: 14px 0;
  }

  .nav-item-mega > .nav-link-row > .nav-link::after,
  .nav-main > .nav-link-plain::after {
    display: none;
  }

  .mega-mobile-toggle {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    cursor: pointer;
  }

  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border-top: none;
    display: none;
    background: transparent;
    padding-bottom: 8px;
  }

  .nav-item-mega.is-open .mega-menu {
    display: block;
  }

  .mega-menu-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 0 12px;
  }

  .mega-promo-card {
    min-height: 200px;
  }

  .mega-dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.85rem;
}

.phone-link strong {
  font-size: 1rem;
  color: var(--primary);
}

.phone-link span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

.btn-accent {
  background: var(--accent);
  color: white;
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,166,126,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,102,204,0.2);
}

.btn-white {
  background: white;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 120px 24px 0;
  overflow: visible;
}

.hero--with-search {
  min-height: 540px;
  padding: 100px 0 0;
  justify-content: flex-start;
  text-align: left;
  align-items: stretch;
  overflow: hidden;
}

.hero--with-search .hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 36px 24px 0;
  flex: 1;
}

.hero--with-search h1 {
  font-size: 2.35rem;
  margin-bottom: 10px;
  line-height: 1.15;
}

.hero--with-search p {
  font-size: 1.05rem;
  margin-bottom: 0;
  max-width: 480px;
  line-height: 1.5;
}

.hero--with-search .hero-content p {
  margin-bottom: 0;
  max-width: 480px;
}

.hero-search {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  z-index: 5;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  transform: none;
}

.hero-search .search-bar-wrapper {
  padding: 0;
  --search-compact: 0;
}

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

.hero-bg img,
.hero-bg .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.08) 45%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.95;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.trust-item svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}

.trust-item span {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* ===== TRUST BAR (below hero) ===== */
.trust-bar {
  background: #f3f3f3;
  border-bottom: 1px solid var(--border-light);
  margin-top: 0;
  position: relative;
  z-index: 4;
}

.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-bar-carousel {
  max-width: var(--max-width);
  margin: 0 auto;
}

.trust-bar-viewport {
  overflow: hidden;
}

.trust-bar-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  transition: transform 0.45s ease;
  will-change: transform;
}

.trust-bar-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  padding: 0 16px 18px;
}

.trust-bar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #c8c8c8;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.trust-bar-dot.active {
  background: #666;
  transform: scale(1.1);
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border-right: 1px solid #ddd;
  text-align: left;
}

.trust-bar-item:last-child {
  border-right: none;
}

.trust-bar-item svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--text);
}

.trust-bar-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.trust-bar-item span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.45;
}

/* ===== SEARCH BAR ===== */
.search-bar-wrapper {
  position: relative;
  z-index: 10;
  padding: 24px 0;
  --search-compact: 0;
  transition: padding 0.25s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.hero-search .search-bar-wrapper {
  padding: 0;
}

.search-bar-wrapper .search-bar {
  max-width: 100%;
}

.search-bar {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  padding: 12px 16px;
  width: 100%;
  max-width: var(--search-bar-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    padding 0.3s ease,
    gap 0.3s ease,
    box-shadow 0.3s ease,
    border-radius 0.3s ease,
    max-width 0.3s ease;
}

.search-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Category Row */
.search-bar-categories {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.search-categories {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.search-category-label {
  font-size: 0.75rem;
  color: var(--text);
  margin-right: 2px;
}

.search-category-pill {
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: white;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}

.search-category-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.search-category-pill.active {
  border-color: var(--text);
  color: var(--text);
  box-shadow: none;
  font-weight: 600;
}

.search-reset {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.search-reset:hover {
  color: var(--primary);
}

.search-reset svg {
  width: 14px;
  height: 14px;
}

/* Input Row */
.search-bar-inputs {
  gap: 10px;
}

.search-input-group {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #f5f5f5;
  cursor: pointer;
  position: relative;
  transition: min-height 0.3s ease, padding 0.3s ease, border-color 0.2s ease;
  min-height: 48px;
}

.search-input-group:hover {
  border-color: var(--primary-light);
}

.search-input-icon {
  width: 18px;
  height: 18px;
  color: var(--text-light);
  flex-shrink: 0;
}

.search-input-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.search-input-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: font-size 0.3s ease;
}

.search-input-label {
  font-size: 0.7rem;
  color: var(--text-light);
  transition: opacity 0.3s ease, max-height 0.3s ease;
  overflow: hidden;
}

.search-input-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.search-input-select {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.btn-search {
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  height: 48px;
  background: #00c9a7;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: height 0.3s ease, padding 0.3s ease, font-size 0.3s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-search:hover {
  background: #00b396;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 201, 167, 0.35);
}

/* Compact sticky search bar */
.search-bar-compact {
  display: none;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px 20px;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 16px;
}

.compact-company {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.company-logo {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
}

.company-logo:hover {
  color: var(--primary-dark);
}

.company-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.3;
}

.compact-search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.compact-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.compact-pill {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-light);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* Mobile/tablet compact pill (hidden on desktop) */
.search-bar-pill {
  display: none;
}

.hero-search-card {
  display: none;
}

.search-bar-placeholder {
  width: 100%;
  flex-shrink: 0;
}

/* Homepage hero + search stack */
.home-hero-stack {
  position: relative;
}

.page-home {
  --header-search-height: 52px;
  --header-total-height: calc(var(--header-height) + var(--header-search-height));
}

.page-home.search-collapsed {
  --header-search-height: 0px;
  --header-total-height: var(--header-height);
}

.search-bar-wrapper.sticky.scroll-hidden {
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
}

/* Progressive shrink while scrolling (before sticky) */
.search-bar-wrapper.compacting {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, calc(0.35 * var(--search-compact))) 35%,
    rgba(255, 255, 255, calc(0.88 * var(--search-compact))) 100%
  );
  padding: calc(6px * var(--search-compact)) 0;
  border-radius: var(--radius-lg);
}

.search-bar-wrapper.compacting .search-bar,
.search-bar-wrapper.sticky:not(.expanded) .search-bar {
  padding:
    calc(12px - 4px * var(--search-compact))
    calc(16px - 3px * var(--search-compact));
  gap: calc(10px * (1 - var(--search-compact)));
  border-radius: calc(var(--radius-lg) - 4px * var(--search-compact));
  box-shadow: 0 calc(6px - 2px * var(--search-compact)) calc(24px - 10px * var(--search-compact)) rgba(0, 0, 0, calc(0.15 - 0.07 * var(--search-compact)));
}

.search-bar-wrapper.compacting .search-bar-categories,
.search-bar-wrapper.sticky:not(.expanded) .search-bar-categories {
  opacity: calc(1 - var(--search-compact));
  max-height: calc(36px * (1 - var(--search-compact)));
  margin-bottom: calc(-10px * var(--search-compact));
  overflow: hidden;
  transition: none;
}

.search-bar-wrapper.compacting .search-input-label,
.search-bar-wrapper.sticky:not(.expanded) .search-input-label {
  opacity: calc(1 - var(--search-compact));
  max-height: calc(16px * (1 - var(--search-compact)));
}

.search-bar-wrapper.compacting .search-input-group,
.search-bar-wrapper.sticky:not(.expanded) .search-input-group {
  min-height: calc(48px - 8px * var(--search-compact));
  padding:
    calc(7px - 2px * var(--search-compact))
    calc(12px - 2px * var(--search-compact));
}

.search-bar-wrapper.compacting .search-input-value,
.search-bar-wrapper.sticky:not(.expanded) .search-input-value {
  font-size: calc(0.88rem - 0.05rem * var(--search-compact));
}

.search-bar-wrapper.compacting .btn-search,
.search-bar-wrapper.sticky:not(.expanded) .btn-search {
  height: calc(48px - 8px * var(--search-compact));
  padding:
    calc(10px - 2px * var(--search-compact))
    calc(20px - 4px * var(--search-compact));
  font-size: calc(0.88rem - 0.05rem * var(--search-compact));
}

/* Sticky state — pins below header after shrink completes */
.search-bar-wrapper.sticky {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  padding: 8px 24px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transform: none;
  --search-compact: 1;
}

.search-bar-wrapper.sticky .search-bar {
  display: flex;
  flex-direction: column;
}

.search-bar-wrapper.sticky .search-bar-inputs {
  gap: 8px;
}

.search-bar-wrapper.sticky .search-sticky-expand {
  display: flex;
  opacity: 1;
}

.search-bar-wrapper.sticky .search-bar-compact {
  display: none;
}

.search-sticky-expand {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  flex-shrink: 0;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease, border-color 0.2s ease, color 0.2s ease;
  opacity: 0;
}

.search-sticky-expand:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.search-bar-wrapper.sticky.expanded .search-sticky-expand svg {
  transform: rotate(180deg);
}
.search-bar-wrapper.sticky.expanded {
  padding: 10px 24px;
  --search-compact: 0;
}

.search-bar-wrapper.sticky.expanded .search-bar {
  padding: 12px 16px;
  gap: 10px;
}

.search-bar-wrapper.sticky.expanded .search-bar-categories {
  display: flex;
  opacity: 1;
  max-height: 36px;
  margin-bottom: 0;
}

.search-bar-wrapper.sticky.expanded .search-input-label {
  display: block;
  opacity: 1;
  max-height: 16px;
}

.search-bar-wrapper.sticky.expanded .search-input-group {
  min-height: 48px;
  padding: 7px 12px;
}

.search-bar-wrapper.sticky.expanded .search-input-value {
  font-size: 0.88rem;
}

.search-bar-wrapper.sticky.expanded .btn-search {
  height: 48px;
  padding: 10px 20px;
  font-size: 0.88rem;
}

.search-bar-placeholder {
  width: 100%;
  flex-shrink: 0;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 12px 24px;
  text-align: center;
  font-size: 0.9rem;
}

.promo-banner strong {
  font-weight: 700;
}

/* ===== PROMO CAROUSEL ===== */
.promo-carousel-section {
  padding: 32px 0 8px;
}

.promo-carousel {
  position: relative;
}

.promo-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.promo-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.promo-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 210px;
  padding: 40px 56px;
  color: #fff;
  overflow: hidden;
  text-decoration: none;
}

.promo-slide--sale {
  background: linear-gradient(115deg, #b8478a 0%, #e0523f 55%, #f6902a 100%);
}

.promo-slide--duo {
  background: linear-gradient(115deg, #0f766e 0%, #0891a5 55%, #22b8b0 100%);
}

.promo-slide--pay {
  background: linear-gradient(115deg, #4338ca 0%, #6d5ce0 55%, #9b6ef0 100%);
}

.promo-slide--trip {
  background: linear-gradient(115deg, #1a4d6d 0%, #2a7099 50%, #3d9cc4 100%);
}

.promo-tag--light {
  background: #fff;
  color: #1a1a1a;
  border: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 14px;
}

.promo-btn--outline {
  background: transparent;
  border: 2px solid #fff;
  box-shadow: none;
}

.promo-slide:hover .promo-btn--outline {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
  box-shadow: none;
}

/* Trip Only phone mockup */
.trip-phone-mockup {
  position: relative;
  width: 200px;
}

.trip-phone-frame {
  position: relative;
  background: #1a1a1a;
  border-radius: 28px;
  padding: 10px 8px 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.trip-phone-notch {
  width: 56px;
  height: 6px;
  background: #333;
  border-radius: 100px;
  margin: 0 auto 8px;
}

.trip-phone-screen {
  background: #f5f5f5;
  border-radius: 18px;
  padding: 12px 10px;
  min-height: 150px;
}

.trip-ui-field {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 8px;
}

.trip-ui-label {
  display: block;
  font-size: 0.55rem;
  color: #888;
  margin-bottom: 2px;
}

.trip-ui-value {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: #333;
}

.trip-ui-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.58rem;
  color: #555;
  margin-bottom: 8px;
  padding: 0 2px;
}

.trip-toggle-pill {
  width: 28px;
  height: 16px;
  background: #ccc;
  border-radius: 100px;
  position: relative;
  flex-shrink: 0;
}

.trip-toggle-pill::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}

.trip-ui-included {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.65rem;
  font-weight: 600;
  color: #333;
  padding: 6px 4px 0;
}

.trip-included-tag {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--accent);
}

.trip-only-float {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.trip-only-float strong {
  font-size: 0.82rem;
  font-weight: 800;
  color: #1a1a1a;
}

.trip-only-float span {
  font-size: 0.58rem;
  color: #888;
  text-align: right;
  line-height: 1.3;
}

.promo-slide-text {
  position: relative;
  z-index: 2;
  max-width: 62%;
}

.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  backdrop-filter: blur(4px);
}

.promo-heading {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.promo-heading-xl {
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.promo-sub {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 20px;
}

.promo-btn {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 100px;
  transition: var(--transition);
}

.promo-slide:hover .promo-btn {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.promo-slide-badge {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Drop badge + countdown (sale slide) */
.drop-badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1a1a1a;
  color: #fff;
  padding: 14px 20px 14px 18px;
  border-radius: 10px 0 0 10px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 50%, 100% 100%, 0 100%);
  padding-right: 34px;
}

.drop-badge::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f6902a;
}

.drop-label {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.drop-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: #f6902a;
}

.drop-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #1a1a1a;
  padding: 10px 18px;
  border-radius: 0 10px 10px 0;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 34px;
}

.timer-block strong {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.timer-block span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-top: 3px;
}

.timer-sep {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-muted);
  align-self: flex-start;
  margin-top: 2px;
}

.drop-hurry {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #e0523f;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Duo + Pay circular badges */
.duo-badge,
.pay-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.45);
  text-align: center;
  backdrop-filter: blur(4px);
}

.duo-big,
.pay-big {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.pay-big {
  font-size: 2.4rem;
}

.duo-small,
.pay-small {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 4px;
  opacity: 0.95;
  line-height: 1.3;
}

/* Dots */
.promo-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.promo-dot {
  width: 28px;
  height: 6px;
  border-radius: 100px;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.promo-dot.active {
  background: var(--text);
  width: 40px;
}

/* Arrows */
.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.promo-arrow:hover {
  background: #fff;
  border-color: var(--text-light);
  box-shadow: var(--shadow);
}

.promo-prev {
  left: -12px;
}

.promo-next {
  right: -12px;
}

@media (max-width: 1024px) {
  .promo-carousel-section {
    padding: 16px 0 6px;
  }

  .promo-carousel-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .promo-slide {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    min-height: 112px;
    gap: 10px;
  }

  .promo-slide-text {
    max-width: 68%;
    flex: 1;
    min-width: 0;
  }

  .promo-tag {
    font-size: 0.62rem;
    padding: 3px 8px;
    margin-bottom: 6px;
    gap: 4px;
  }

  .promo-tag svg {
    width: 11px;
    height: 11px;
  }

  .promo-heading {
    font-size: 1.25rem;
    margin-bottom: 3px;
    line-height: 1.15;
  }

  .promo-heading-xl {
    font-size: 1.7rem;
  }

  .promo-sub {
    font-size: 0.78rem;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .promo-btn {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .promo-slide-badge {
    align-self: center;
    flex-shrink: 0;
    transform: none;
    transform-origin: center right;
  }

  .drop-badge {
    padding: 8px 10px 8px 10px;
    padding-right: 24px;
    border-radius: 8px 0 0 8px;
  }

  .drop-badge::after {
    right: 14px;
    width: 5px;
    height: 5px;
  }

  .drop-label {
    font-size: 0.7rem;
  }

  .drop-number {
    font-size: 1.15rem;
  }

  .drop-timer {
    padding: 6px 10px;
    gap: 4px;
    border-radius: 0 8px 8px 0;
  }

  .drop-timer .timer-block:last-child,
  .drop-timer .timer-sep:last-child {
    display: none;
  }

  .timer-block {
    min-width: 26px;
  }

  .timer-block strong {
    font-size: 0.95rem;
  }

  .timer-block span {
    font-size: 0.48rem;
    margin-top: 2px;
  }

  .timer-sep {
    font-size: 0.9rem;
    margin-top: 0;
  }

  .drop-hurry {
    font-size: 0.5rem;
    padding: 2px 8px;
    bottom: -9px;
  }

  .duo-badge,
  .pay-badge {
    width: 72px;
    height: 72px;
  }

  .duo-big {
    font-size: 1.75rem;
  }

  .pay-big {
    font-size: 1.4rem;
  }

  .duo-small,
  .pay-small {
    font-size: 0.52rem;
    margin-top: 2px;
  }

  .promo-slide--trip .trip-phone-mockup {
    width: 88px;
  }

  .promo-slide--trip .trip-phone-frame {
    transform: scale(0.75);
    transform-origin: center;
  }

  .promo-slide--trip .trip-only-float {
    display: none;
  }

  .promo-arrow {
    display: none;
  }

  .promo-carousel-dots {
    margin-top: 10px;
    gap: 6px;
  }

  .promo-dot {
    width: 20px;
    height: 5px;
  }

  .promo-dot.active {
    width: 28px;
  }
}

@media (max-width: 768px) {
  .promo-slide {
    padding: 10px 14px;
    min-height: 104px;
    gap: 8px;
  }

  .promo-heading {
    font-size: 1.2rem;
  }

  .promo-heading-xl {
    font-size: 1.55rem;
  }

  .promo-slide-badge {
    transform: none;
  }
}

@media (max-width: 480px) {
  .promo-carousel-section {
    padding: 12px 0 4px;
  }

  .promo-slide {
    padding: 10px 12px;
    min-height: 96px;
  }

  .promo-slide-text {
    max-width: 70%;
  }

  .promo-heading {
    font-size: 1.05rem;
  }

  .promo-heading-xl {
    font-size: 1.35rem;
  }

  .promo-sub {
    font-size: 0.72rem;
    margin-bottom: 6px;
  }

  .promo-btn {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  .promo-slide-badge {
    transform: none;
  }

  .drop-timer {
    padding: 5px 8px;
    gap: 3px;
  }

  .timer-block strong {
    font-size: 0.85rem;
  }

  .drop-number {
    font-size: 1rem;
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: 64px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.section-header p {
  color: var(--text-light);
  font-size: 1rem;
}

/* ===== TABS ===== */
.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: white;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ===== DEAL CARDS ===== */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.deal-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
  contain: layout style paint;
}

.deal-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  transform: translateY(-8px);
}

.deal-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.deal-card:hover .deal-image img {
  transform: scale(1.08);
}

.deal-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.badge-red {
  background: var(--danger);
  color: white;
}

.badge-green {
  background: var(--accent);
  color: white;
}

.badge-blue {
  background: var(--primary);
  color: white;
}

.badge-gold {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #333;
}

.badge-outline {
  background: rgba(255,255,255,0.9);
  color: var(--text);
  border: 1px solid var(--border);
}

.compare-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.75rem;
  font-weight: 600;
}

.compare-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.deal-duration {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.deal-duration strong {
  font-size: 1.1rem;
}

.deal-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.deal-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.deal-destinations {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.deal-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  background: var(--bg-light);
  color: var(--text-light);
  border: 1px solid var(--border-light);
}

.deal-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

.deal-includes {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
}

.deal-dates {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.deal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.deal-price {
  text-align: right;
}

.price-from {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.price-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.price-value .currency {
  font-size: 1rem;
  vertical-align: top;
}

.price-unit {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.price-original {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-save {
  font-size: 0.75rem;
  color: var(--danger);
  font-weight: 600;
}

/* ===== DESTINATION CARDS ===== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.dest-card:hover img {
  transform: scale(1.1);
}

.dest-card a {
  display: block;
  position: absolute;
  inset: 0;
  text-decoration: none;
  color: inherit;
  z-index: 2;
}

.dest-card a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover a img {
  transform: scale(1.1);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: white;
}

.dest-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.dest-card p {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* ===== CAROUSEL ===== */
.carousel-wrap {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 280px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-nav button:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ===== FEATURES / TRUST ===== */
.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
}

.feature-item {
  text-align: center;
  padding: 24px;
}

.feature-item svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--primary);
}

.feature-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--bg-gray);
  padding: 48px 24px;
  text-align: center;
}

.newsletter h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.newsletter p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

/* Newsletter banner (homepage style) */
.newsletter--banner {
  position: relative;
  padding: 56px 24px;
  text-align: left;
  overflow: hidden;
}

.newsletter-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.42) 100%),
    url('../01-homepage/04-guilin-li-river.jpg') center/cover no-repeat;
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.newsletter-copy h3 {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.newsletter-underline {
  position: relative;
  display: inline-block;
}

.newsletter-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 3px;
  background: #00c9a7;
  border-radius: 2px;
  transform: rotate(-0.5deg);
}

.newsletter-action {
  max-width: 480px;
  justify-self: end;
  width: 100%;
}

.newsletter-form--joined {
  display: flex;
  max-width: 100%;
  margin: 0;
  gap: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
  overflow: hidden;
}

.newsletter-form--joined input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: 0;
  font-size: 0.95rem;
  background: #fff;
  min-width: 0;
}

.newsletter-form--joined input:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px #00c9a7;
}

.btn-newsletter-signup {
  flex-shrink: 0;
  padding: 14px 28px;
  background: #00c9a7;
  color: #fff;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-newsletter-signup:hover {
  background: #00b396;
}

.newsletter-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  line-height: 1.5;
}

.newsletter-disclaimer a {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .newsletter-copy h3 {
    font-size: 1.65rem;
  }
  .newsletter-action {
    justify-self: center;
    max-width: 100%;
  }
  .newsletter-form--joined {
    flex-direction: column;
    border-radius: var(--radius);
  }
  .newsletter-form--joined input {
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .btn-newsletter-signup {
    width: 100%;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 14px;
  }
}

/* ===== OFFER PAGE SHARED SECTIONS ===== */
.offer-page-sections {
  padding: 0 0 48px;
}

/* Newsletter card (split layout) */
.newsletter-card {
  display: grid;
  grid-template-columns: 42% 58%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 56px;
  background: #fff;
}

.newsletter-card-visual {
  position: relative;
  min-height: 340px;
}

.newsletter-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 100%);
}

.newsletter-card-quote {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 32px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.newsletter-card-form {
  padding: 36px 40px;
}

.newsletter-card-form h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.newsletter-rich-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.newsletter-rich-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}

.newsletter-rich-form input,
.newsletter-rich-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font);
  outline: none;
  transition: var(--transition);
  background: #fff;
}

.newsletter-rich-form input:focus,
.newsletter-rich-form select:focus {
  border-color: var(--primary);
}

.newsletter-rich-form .form-field {
  margin-bottom: 12px;
}

.newsletter-rich-form .btn-subscribe {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  background: #00c9a7;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-rich-form .btn-subscribe:hover {
  background: #00b396;
}

.newsletter-legal {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 14px;
}

.newsletter-legal a {
  color: var(--primary);
  text-decoration: underline;
}

/* GO with the experts */
.experts-section {
  text-align: center;
  margin-bottom: 56px;
}

.experts-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.experts-section > p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.expert-item svg {
  width: 48px;
  height: 48px;
  color: var(--text);
  margin: 0 auto 14px;
}

.expert-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.expert-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* Reviews carousel */
.reviews-carousel-section {
  margin-bottom: 56px;
}

.reviews-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.reviews-carousel-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-carousel-title svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  flex-shrink: 0;
}

.reviews-carousel-title h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
}

.reviews-rating-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-rating-badge .rating-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.reviews-rating-badge .rating-stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 1px;
}

.reviews-carousel-wrap {
  position: relative;
}

.reviews-carousel-track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.reviews-carousel-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: calc(33.333% - 14px);
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.reviews-carousel-card .card-stars {
  color: #f5a623;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.reviews-carousel-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.reviews-carousel-card p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 12px;
}

.reviews-carousel-card .read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
}

.reviews-carousel-card .review-footer {
  margin-top: auto;
}

.reviews-carousel-card .reviewer-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-light);
  text-transform: uppercase;
}

.reviews-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.reviews-carousel-footer p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.reviews-carousel-footer a {
  color: var(--primary);
  font-weight: 600;
}

.reviews-carousel-nav {
  display: flex;
  gap: 8px;
}

.reviews-carousel-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.reviews-carousel-nav button:hover {
  border-color: var(--text);
  box-shadow: var(--shadow-sm);
}

/* Experts CTA */
.experts-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.experts-cta-visual {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.experts-cta-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-light);
}

.experts-cta-bubble {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
}

.experts-cta-bubble::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-right-color: var(--border);
}

.experts-cta-bubble::after {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-right-color: var(--bg-light);
}

.experts-cta-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.experts-cta-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.experts-cta-action {
  flex-shrink: 0;
}

.btn-call-expert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #00c9a7;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-call-expert:hover {
  background: #00b396;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 201, 167, 0.35);
}

.btn-call-expert svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1024px) {
  .reviews-carousel-card {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .newsletter-card {
    grid-template-columns: 1fr;
  }
  .newsletter-card-visual {
    min-height: 200px;
  }
  .newsletter-card-form {
    padding: 28px 24px;
  }
  .experts-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .experts-cta-action {
    width: 100%;
  }
  .btn-call-expert {
    width: 100%;
    justify-content: center;
  }
  .reviews-carousel-card {
    flex: 0 0 85%;
    min-width: 85%;
  }
  .reviews-carousel-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .newsletter-rich-form .form-row {
    grid-template-columns: 1fr;
  }
  .experts-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== REVIEWS ===== */
.reviews-section {
  background: var(--bg-light);
  padding: 64px 0;
}

/* Homepage showcase layout */
.reviews-section--showcase {
  background: #fff;
  padding: 56px 0 64px;
}

.reviews-showcase-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.reviews-showcase-header svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  flex-shrink: 0;
}

.reviews-showcase-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.reviews-showcase-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 32px;
  align-items: center;
}

.reviews-showcase-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-left: 48px;
  max-width: 380px;
}

.reviews-stats-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.reviews-stat {
  padding: 30px 24px;
  text-align: center;
}

.reviews-stat:first-child {
  border-right: 1px solid var(--border-light);
}

.reviews-stat-value {
  font-size: 2.45rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 8px;
}

.reviews-stat-value .stat-plus {
  color: var(--primary);
  font-weight: 700;
}

.reviews-stat-label {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.35;
}

.reviews-trust-block {
  padding: 6px 0;
}

.reviews-trust-block strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.reviews-trust-stars {
  color: #f5a623;
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.reviews-trust-meta {
  font-size: 0.95rem;
  color: var(--text-light);
}

.reviews-view-all {
  align-self: flex-start;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
}

.reviews-showcase-visual {
  position: relative;
  min-height: 560px;
  width: 100%;
  margin-left: -20px;
}

.reviews-visual-circle {
  position: absolute;
  right: 8%;
  top: 8px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: #dff3f8;
  z-index: 0;
}

.reviews-couple-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 92%;
  max-width: 560px;
  height: 500px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 0;
  display: block;
}

.reviews-float-cards {
  position: absolute;
  left: 28%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 320px;
  max-width: 48%;
}

.reviews-float-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
  border: none;
}

.reviews-float-card:nth-child(1) {
  margin-left: 24px;
  margin-right: 0;
}

.reviews-float-card:nth-child(2) {
  margin-left: -8px;
  margin-right: 0;
  width: calc(100% + 20px);
}

.reviews-float-card:nth-child(3) {
  margin-left: 32px;
  margin-right: 0;
}

.reviews-float-card:nth-child(4) {
  margin-left: 4px;
  margin-right: 0;
  width: calc(100% + 12px);
}

.reviews-float-card:nth-child(5) {
  margin-left: 20px;
  margin-right: 0;
}

.reviews-float-stars {
  color: #f5a623;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.reviews-float-card p {
  font-size: 0.82rem;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

.reviews-float-card .review-footer {
  margin-top: 12px;
}

.reviews-float-card .review-avatar {
  width: 32px;
  height: 32px;
}

.reviews-float-card .review-author {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .reviews-showcase-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .reviews-showcase-stats {
    margin-left: 0;
    max-width: 100%;
  }
  .reviews-showcase-visual {
    min-height: 480px;
    margin-left: 0;
  }
  .reviews-visual-circle {
    width: 380px;
    height: 380px;
    right: 50%;
    transform: translateX(50%);
  }
  .reviews-couple-img {
    width: 88%;
    height: 400px;
    right: 50%;
    transform: translateX(50%);
  }
  .reviews-float-cards {
    width: 52%;
    max-width: 300px;
    left: 18%;
  }
}

@media (max-width: 768px) {
  .reviews-showcase-header h2 {
    font-size: 1.45rem;
  }
  .reviews-showcase-visual {
    min-height: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .reviews-visual-circle {
    width: 280px;
    height: 280px;
    top: 60px;
    right: 50%;
    transform: translateX(50%);
  }
  .reviews-couple-img {
    position: relative;
    right: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: 320px;
    margin: 0 auto;
    display: block;
  }
  .reviews-float-cards {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-top: -48px;
    padding: 0 4px;
  }
  .reviews-float-card:nth-child(1),
  .reviews-float-card:nth-child(2),
  .reviews-float-card:nth-child(3),
  .reviews-float-card:nth-child(4),
  .reviews-float-card:nth-child(5) {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--warning);
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.6;
  flex: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.review-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
  width: fit-content;
}

/* ===== MAGAZINE / TRAVEL STORIES ===== */
.magazine-section {
  background: #fff;
  padding: 64px 0;
}

.magazine-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.magazine-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.2;
  margin: 0;
}

.magazine-more {
  flex-shrink: 0;
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.magazine-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.magazine-card:hover h3 {
  color: var(--primary);
}

.magazine-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.magazine-card:hover img {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

.magazine-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--dark);
  transition: color 0.2s ease;
}

.magazine-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.magazine-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.magazine-grid--full {
  grid-template-columns: repeat(3, 1fr);
}

/* Article detail */
.story-article-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.story-article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.story-article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.story-article-hero .container {
  position: relative;
  z-index: 2;
  padding: 48px 24px 56px;
}

.story-article-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}

.story-article-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  max-width: 800px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.story-article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.story-article-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.4em;
}

.story-article-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2em 0 0.8em;
  color: var(--dark);
}

.story-figure {
  margin: 2.2em 0;
}

.story-figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: block;
}

.story-figure--wide {
  width: min(900px, calc(100vw - 48px));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.story-figure figcaption {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 10px;
  text-align: center;
  line-height: 1.5;
}

.story-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 2.2em 0;
}

.story-gallery .story-figure {
  margin: 0;
}

.story-gallery .story-figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  height: 100%;
}

@media (max-width: 640px) {
  .story-gallery {
    grid-template-columns: 1fr;
  }
}

.story-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.story-back-link:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .magazine-grid,
  .magazine-grid--full {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .magazine-grid,
  .magazine-grid--full {
    grid-template-columns: 1fr;
  }
  .magazine-title {
    font-size: 1.45rem;
  }
  .story-article-hero h1 {
    font-size: 1.75rem;
  }
}

/* ===== STORIES / BLOG (legacy) ===== */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: white;
}

.story-card:hover {
  box-shadow: var(--shadow-lg);
}

.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-body {
  padding: 20px;
}

.story-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--bg-light);
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.story-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.story-excerpt {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: white;
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}

.footer-brand .logo span {
  color: var(--accent);
}

.footer-brand p {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.85rem;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-bottom a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: calc(var(--header-height) + 16px) 24px 48px;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a4a 100%);
  color: white;
  text-align: center;
}

.page-header .container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: left;
}

.page-header-content {
  text-align: center;
  margin-top: 8px;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.breadcrumb {
  font-size: 0.85rem;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 0;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Hero breadcrumb — destination pages (dark header, slash) */
.breadcrumb--hero {
  margin-bottom: 20px;
}

.breadcrumb--hero ol {
  justify-content: flex-start;
}

.breadcrumb--hero a {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb--hero a:hover {
  color: #fff;
}

.breadcrumb--hero li:not(:last-child)::after {
  content: '/';
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb--hero li[aria-current="page"] {
  color: rgba(255, 255, 255, 0.75);
}

/* Light breadcrumb bar — tour pages (below header, chevron) */
.breadcrumb-bar {
  margin-top: var(--header-height);
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  padding: 11px 0;
}

/* Tour page — breadcrumb between gallery and info bar */
.tour-breadcrumb-strip {
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  padding: 11px 0;
  margin-bottom: 20px;
}

.breadcrumb--tour {
  margin: 0;
}

.breadcrumb--light ol {
  justify-content: flex-start;
}

.breadcrumb--light a {
  color: #4b5563;
  font-weight: 500;
}

.breadcrumb--light a:hover {
  color: var(--primary);
}

.breadcrumb--light li:not(:last-child)::after {
  content: '\203A';
  margin: 0 10px;
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1;
}

.breadcrumb--light li[aria-current="page"] {
  color: #6b7280;
  font-weight: 500;
}

/* ===== TOUR DETAIL ===== */
.tour-detail {
  padding: 40px 0 64px;
}

.tour-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.495fr);
  gap: 40px;
  align-items: start;
}

.tour-detail-grid.tab-adaptive-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.495fr);
  gap: 40px;
  align-items: start;
}

.tour-detail-grid.tab-adaptive-grid .tour-content {
  padding-right: 0;
  min-width: 0;
}

.tour-detail-grid .tour-sidebar,
.tour-detail-grid.tab-adaptive-grid .tour-sidebar {
  position: sticky;
  top: 100px;
  width: 100%;
  min-width: 0;
}

.tour-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 0;
}

.tour-gallery img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.tour-info h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.tour-info .subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 8px;
}

.tour-meta {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.tour-meta-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.tour-highlights {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 24px;
}

.tour-highlights h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.tour-highlights ul {
  list-style: none;
}

.tour-highlights li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-highlights li:last-child {
  border-bottom: none;
}

.itinerary-day {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
  border: 1px solid var(--border-light);
  transition: background 0.2s ease;
}

.itinerary-day:hover {
  background: var(--bg-light);
}

.itinerary-day h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.itinerary-day p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Sidebar */
.tour-sidebar {
  position: sticky;
  top: 100px;
  width: 100%;
  min-width: 0;
}

.booking-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  min-width: 0;
}

.booking-card .price-main {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.booking-card .price-main .currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.booking-card .price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.booking-card .btn {
  width: 100%;
  margin-bottom: 8px;
}

.booking-features {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.booking-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.booking-features li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
  align-items: start;
}

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
}

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

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 0;
  margin-bottom: 24px;
}

.contact-info-item:last-of-type {
  margin-bottom: 0;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 120px 24px 64px;
  text-align: center;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f5f0 100%);
}

.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  padding: 64px 0;
}

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

.about-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.stat-item strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-item span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tour-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .tour-sidebar {
    position: static;
  }

  .tour-detail-grid.tab-adaptive-grid .tour-content {
    padding-right: 0;
  }

  .tour-detail-grid.tab-adaptive-grid .tour-sidebar {
    position: static;
    width: auto;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .page-home {
    --header-search-height: 0px;
    --header-total-height: var(--header-height);
  }

  .page-home .header-search-bar {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 0 16px;
    background: transparent;
    border: none;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .page-home .header-search-bar .hero-search-card,
  .page-home .header-search-bar .search-bar,
  .page-home .header-search-bar .search-bar-pill {
    pointer-events: auto;
  }

  .page-home.search-collapsed .header-search-bar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
  }

  .page-home .hero--with-search {
    padding-top: calc(var(--header-height) + 16px);
    padding-bottom: 96px;
    min-height: 440px;
    transition: padding-bottom 0.25s ease;
  }

  .page-home .hero-search {
    display: none !important;
  }

  .hero-search-card {
    display: block;
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    padding: 12px 14px;
  }

  .search-bar-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: 44px;
    padding: 0 14px;
    background: #f7f7f7;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    box-shadow: none;
    font-family: var(--font);
    font-size: 0.92rem;
    color: #666;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  .search-bar-pill:hover {
    background: #fff;
    border-color: #ccc;
  }

  .search-bar-pill-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #888;
  }

  .search-bar-pill-text {
    flex: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .page-home .header-search-bar:not(.expanded) .search-bar {
    display: none;
  }

  .page-home .header-search-bar .search-bar-compact {
    display: none !important;
  }

  .page-home .header-search-bar.expanded {
    position: fixed;
    top: var(--header-height);
    bottom: auto;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px 16px;
    background: #141414;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .page-home .header-search-bar.expanded .hero-search-card {
    display: none;
  }

  .page-home .header-search-bar.expanded .search-bar-pill {
    display: none;
  }

  .page-home .header-search-bar.expanded .search-bar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  .page-home .header-search-bar.expanded .search-bar-categories {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .page-home .header-search-bar.expanded .search-bar-inputs {
    flex-direction: column;
    align-items: stretch;
  }

  .page-home .header-search-bar.expanded .search-input-group {
    min-height: 48px;
    padding: 8px 12px;
  }

  .page-home .header-search-bar.expanded .btn-search {
    width: 100%;
    justify-content: center;
    height: 48px;
  }

  .page-home .header-search-bar.expanded .search-sticky-expand {
    display: none;
  }

  /* Trust bar carousel */
  .trust-bar-track {
    display: flex;
    grid-template-columns: none;
  }

  .trust-bar-item {
    flex: 0 0 100%;
    min-width: 100%;
    border-right: none;
    border-bottom: none;
    justify-content: center;
    padding: 22px 28px 10px;
    text-align: left;
  }

  .trust-bar-dots {
    display: flex;
  }
}

@media (min-width: 1025px) {
  .page-home {
    --header-search-height: 0px;
    --header-total-height: var(--header-height);
  }

  .page-home .header-search-bar {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 0 clamp(48px, 11vw, 200px);
    pointer-events: none;
  }

  .page-home .header-search-bar.sticky {
    position: fixed;
    top: var(--header-height);
    bottom: auto;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 8px clamp(48px, 11vw, 200px);
    pointer-events: none;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  }

  .page-home .header-search-bar .search-bar,
  .page-home .header-search-bar .search-bar-compact {
    pointer-events: auto;
  }

  .page-home .search-bar-pill,
  .page-home .hero-search-card {
    display: none;
  }

  .page-home .search-bar-pill-icon {
    display: none !important;
  }

  .page-home .header-search-bar .hero-search-card,
  .page-home .header-search-bar .search-bar-pill {
    display: none !important;
  }

  .page-home .header-search-bar .search-bar {
    display: flex !important;
    max-width: var(--search-bar-max-width);
    margin-left: auto;
    margin-right: auto;
  }

  .page-home .hero--with-search {
    padding-bottom: 112px;
  }

  .trust-bar-dots {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-main {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #141414;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .nav-main.active {
    display: flex;
  }
  
  .nav-main a,
  .nav-main .nav-link,
  .nav-main .nav-link-plain {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero--with-search h1 {
    font-size: 1.9rem;
  }

  .hero--with-search p {
    font-size: 0.95rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-trust {
    gap: 20px;
  }

  .hero-search {
    bottom: 24px;
    padding: 0 16px;
  }

  .trust-bar {
    margin-top: 0;
  }

  .search-bar-wrapper.sticky .search-bar-inputs {
    flex-direction: row;
    align-items: center;
  }

  .search-bar-wrapper.sticky .btn-search {
    width: auto;
  }
  
  .features-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .deals-grid {
    grid-template-columns: 1fr;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .header-right .phone-link {
    display: none;
  }
}

/* Keep every primary header action visible on mobile and tablet. */
@media (max-width: 1024px) {
  .site-header .header-inner {
    gap: 12px;
    padding-right: clamp(10px, 2vw, 20px);
    padding-left: clamp(10px, 2vw, 20px);
  }

  .site-header .logo {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    line-height: 1;
    white-space: nowrap;
  }

  .site-header .nav-main {
    display: none;
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - var(--header-height));
    padding: 20px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #141414;
    box-shadow: var(--shadow);
  }

  .site-header .nav-main.active {
    display: flex;
  }

  .site-header .nav-main a,
  .site-header .nav-main .nav-link,
  .site-header .nav-main .nav-link-plain {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
  }

  .site-header .header-right {
    flex: 0 0 auto;
    gap: clamp(6px, 1.2vw, 12px);
  }

  .site-header .header-right .phone-link {
    display: none;
  }

  .site-header .sign-in-btn {
    gap: 5px;
    padding: 7px 10px;
  }

  .site-header .header-right > .btn {
    padding: 7px 12px;
  }

  .site-header .menu-toggle {
    position: relative;
    display: flex;
    flex: 0 0 72px;
    width: 72px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 4px;
  }

  .site-header .menu-toggle::before {
    content: "Menu";
    position: absolute;
    top: 50%;
    left: 10px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-50%);
  }

  .site-header .menu-toggle span {
    position: absolute;
    right: 10px;
    width: 18px;
    height: 2px;
  }

  .site-header .menu-toggle span:nth-child(1) {
    top: 11px;
  }

  .site-header .menu-toggle span:nth-child(2) {
    top: 17px;
  }

  .site-header .menu-toggle span:nth-child(3) {
    top: 23px;
  }
}

@media (max-width: 600px) {
  .site-header .header-inner {
    gap: 5px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .site-header .logo {
    font-size: clamp(0.88rem, 4.15vw, 1.05rem);
  }

  .site-header .sign-in-btn {
    gap: 4px;
    padding: 7px 8px;
    font-size: 0.72rem;
  }

  .site-header .sign-in-btn svg {
    width: 15px;
    height: 15px;
  }

  .site-header .sign-in-btn .arrow {
    display: none;
  }

  .site-header .header-right > .btn {
    padding: 7px 9px;
    font-size: 0.7rem;
  }

  .site-header .menu-toggle {
    flex-basis: 62px;
    width: 62px;
    height: 36px;
  }

  .site-header .menu-toggle::before {
    left: 7px;
    font-size: 0.7rem;
  }

  .site-header .menu-toggle span {
    right: 7px;
    width: 16px;
  }

  .site-header .menu-toggle span:nth-child(1) {
    top: 10px;
  }

  .site-header .menu-toggle span:nth-child(2) {
    top: 16px;
  }

  .site-header .menu-toggle span:nth-child(3) {
    top: 22px;
  }
}

@media (max-width: 520px) {
  .site-header {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .site-header .header-inner {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    gap: 4px;
    padding-right: 6px;
    padding-left: 6px;
  }

  .site-header .logo {
    flex: 1 1 94px;
    max-width: calc(100vw - 206px);
    font-size: clamp(0.78rem, 3.9vw, 0.94rem);
    letter-spacing: -0.25px;
  }

  .site-header .header-right {
    flex: 0 0 auto;
    max-width: calc(100vw - 104px);
    gap: 4px;
    overflow: visible;
  }

  .site-header .header-right > * {
    flex-shrink: 0;
  }

  .site-header .sign-in-btn {
    gap: 3px;
    padding: 6px 5px;
    font-size: 0.64rem;
  }

  .site-header .sign-in-btn span {
    max-width: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header .sign-in-btn svg {
    width: 13px;
    height: 13px;
  }

  .site-header .header-right > .btn {
    padding: 6px 6px;
    font-size: 0.62rem;
    line-height: 1;
  }

  .site-header .menu-toggle {
    flex-basis: 50px;
    width: 50px;
    height: 34px;
  }

  .site-header .menu-toggle::before {
    left: 5px;
    font-size: 0.6rem;
  }

  .site-header .menu-toggle span {
    right: 5px;
    width: 13px;
  }
}

@media (max-width: 430px) {
  .site-header .logo {
    flex-basis: 82px;
    max-width: calc(100vw - 190px);
    font-size: clamp(0.68rem, 3.35vw, 0.8rem);
  }

  .site-header .header-right {
    max-width: calc(100vw - 90px);
    gap: 3px;
  }

  .site-header .sign-in-btn {
    padding: 6px 4px;
  }

  .site-header .sign-in-btn span {
    max-width: 32px;
  }

  .site-header .header-right > .btn {
    padding: 6px 5px;
    font-size: 0.58rem;
  }

  .site-header .menu-toggle {
    flex-basis: 46px;
    width: 46px;
  }

  .site-header .menu-toggle::before {
    left: 4px;
    font-size: 0.56rem;
  }

  .site-header .menu-toggle span {
    right: 4px;
    width: 12px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero--with-search h1 {
    font-size: 1.55rem;
  }

  .hero--with-search p {
    font-size: 0.88rem;
  }
  
  .section {
    padding: 40px 0;
  }

  .trust-bar-item {
    padding: 18px 20px 8px;
  }

  .trust-bar {
    margin-top: 0;
  }

  .hero--with-search {
    min-height: 480px;
  }

  .hero-search {
    bottom: 16px;
  }

  .search-bar-wrapper.sticky {
    padding: 8px 12px;
  }

  .search-bar-wrapper.sticky .search-bar-inputs {
    flex-direction: column;
    align-items: stretch;
  }

  .search-bar-wrapper.sticky .btn-search {
    width: 100%;
  }
  
  .features-row {
    grid-template-columns: 1fr;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
  }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-top: 50%; }
.mb-4 { margin-bottom: 32px; }

.bg-light { background: var(--bg-light); }
.bg-gray { background: var(--bg-gray); }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.hidden { display: none; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transition: opacity 0.45s ease;
}

.reveal.active {
  opacity: 1;
}

/* Defer off-screen sections until needed */
.promo-carousel-section,
.section,
.reviews-section,
.magazine-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 280px;
}

/* Homepage: avoid layout gaps when content-visibility + scroll-reveal interact */
.page-home .promo-carousel-section,
.page-home .section,
.page-home .reviews-section,
.page-home .magazine-section {
  content-visibility: visible;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transition: none;
  }

  .hero-bg img {
    animation: none;
  }
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ===== TOUR DETAIL PAGE STYLES ===== */

.tour-detail-page {
  padding-top: var(--header-height);
}

/* ===== TOUR HERO GALLERY ===== */
.tour-hero-gallery {
  position: relative;
  margin-bottom: 0;
}

.gallery-main {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

.gallery-main img.is-changing {
  opacity: 0.35;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-thumbs img {
  flex: 0 0 calc(25% - 6px);
  min-width: 140px;
  width: auto;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.25s ease, box-shadow 0.25s ease;
  opacity: 0.8;
  border: 3px solid transparent;
  box-shadow: none;
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
  opacity: 1;
  border-color: var(--primary);
  box-shadow: none;
}

.gallery-overlay {
  position: absolute;
  top: 50%;
  left: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tour-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--danger);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-duration {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== TOUR INFO BAR ===== */
.tour-info-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  margin-bottom: 32px;
}

.content-switch-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  margin-bottom: 24px;
}

.content-switch-btn {
  border: none;
  background: transparent;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 10px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.content-switch-btn:hover {
  color: #0f172a;
}

.content-switch-btn.active {
  color: #0f172a;
  font-weight: 800;
}

.content-switch-tabs-line {
  overflow: visible;
  border-bottom: 1px solid var(--border-light);
}

.content-switch-tabs-line .content-switch-btn {
  position: relative;
}

.content-switch-tabs-line .content-switch-btn.active::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -1px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
}

.tab-content-section {
  display: none;
}

.tab-content-section.active {
  display: block;
}

.info-item {
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid var(--border-light);
}

.info-item:last-child {
  border-right: none;
}

.info-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

/* ===== TOUR CONTENT SECTIONS ===== */
.tour-content > section {
  margin-bottom: 40px;
}

.tour-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.tour-description {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
}

.tour-description p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.tour-description p:last-child {
  margin-bottom: 0;
}

/* ===== HIGHLIGHTS ===== */
.highlight-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.highlight-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.highlight-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===== WHAT'S INCLUDED ===== */
.whats-included {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
}

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

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.included-icon {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.included-item span:last-child {
  font-size: 0.9rem;
  color: var(--text);
}

/* ===== ITINERARY ===== */
.tour-itinerary {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
}

.itinerary-day {
  border-left: 3px solid var(--primary);
  padding-left: 24px;
  padding-top: 24px;
  margin-top: 24px;
  position: relative;
}

.itinerary-day::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--primary);
}

.itinerary-day:last-child {
  border-left: 3px solid transparent;
  margin-bottom: 0;
  padding-bottom: 0;
}

.day-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.day-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.day-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.day-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 8px;
}

.day-meals {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.day-meals span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--bg-light);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  border: 1px solid var(--border-light);
}

/* ===== IMPORTANT NOTES ===== */
.important-notes {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.notes-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note-item {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.note-item h4 {
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  transition: var(--transition);
}

.note-item h4:hover {
  background: var(--bg-light);
}

.note-item h4::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 300;
}

.note-item.active h4::after {
  content: '−';
}

.note-item p {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  display: none;
}

.note-item.active p {
  display: block;
}

/* ===== AT A GLANCE ===== */
.tour-at-a-glance {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  margin-bottom: 32px;
}

.glance-table {
  width: 100%;
  border-collapse: collapse;
}

.glance-table tr {
  border-bottom: 1px solid var(--border-light);
}

.glance-table tr:last-child {
  border-bottom: none;
}

.glance-table td {
  padding: 12px 16px;
  font-size: 0.9rem;
}

.glance-table td:first-child {
  font-weight: 600;
  color: var(--text);
  width: 40%;
}

.glance-table td:last-child {
  color: var(--text-light);
}

/* ===== TRAVEL TIPS ===== */
.travel-tips {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
}

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

.tip-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px;
}

.tip-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.tip-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* ===== FAQ ===== */
.tour-faq {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ===== PHOTO GALLERY ===== */
.photo-gallery {
  margin-bottom: 16px;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  z-index: 5000;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: calc(100vw - 32px);
  z-index: 1;
}

.gallery-lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.gallery-lightbox-image-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.gallery-lightbox-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.gallery-lightbox-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-image {
  display: block;
  max-width: min(1200px, calc(100vw - 140px));
  max-height: 72vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.gallery-lightbox-caption {
  margin: 14px 0 0;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  max-width: min(1200px, calc(100vw - 140px));
}

.gallery-lightbox-close {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.32);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.gallery-lightbox-prev svg,
.gallery-lightbox-next svg {
  width: 24px;
  height: 24px;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.32);
}

@media (max-width: 640px) {
  .gallery-lightbox-stage {
    gap: 8px;
  }

  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    width: 40px;
    height: 40px;
  }

  .gallery-lightbox-image {
    max-width: calc(100vw - 112px);
    max-height: 70vh;
  }

  .gallery-lightbox-caption {
    max-width: calc(100vw - 112px);
  }
}

/* ===== RELATED TOURS ===== */
.related-tours {
  margin-top: 0;
  margin-bottom: 32px;
}

.photo-gallery + .related-tours {
  margin-top: 0;
}

.photo-gallery + .related-tours h2 {
  margin-top: 0;
}

.related-tours h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--dark);
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.deal-content {
  padding: 16px;
}

.deal-tag {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  background: var(--bg-light);
  color: var(--text-light);
  border: 1px solid var(--border-light);
  margin-bottom: 6px;
}

.deal-price {
  text-align: right;
}

.price-includes {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.price-per {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.price-block {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

/* ===== BOOKING SIDEBAR ===== */
.tour-sidebar.sticky {
  position: sticky;
  top: 100px;
}

.booking-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  margin-bottom: 20px;
  transition: var(--transition);
  min-width: 0;
}

.booking-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.booking-card .price-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.booking-card .price-left {
  flex: 1;
  min-width: 0;
}

.booking-card .price-from {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2px;
  display: block;
}

.booking-card .price-block {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.booking-card .price-per {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.booking-card .price-right {
  text-align: right;
  flex-shrink: 1;
  min-width: 0;
  max-width: 100%;
  padding-top: 4px;
}

html.translated-ltr .booking-card .price-from,
html.translated-ltr .booking-card .price-per,
html.translated-ltr .booking-card .price-original-label,
html.translated-ltr .booking-card .price-save {
  word-break: break-word;
}

.booking-card .price-original-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

.booking-card .price-original-value {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  display: block;
}

.booking-card .price-save {
  font-size: 0.8rem;
  color: var(--danger);
  font-weight: 700;
  display: block;
  margin-top: 2px;
}

.booking-card .btn-large {
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  margin-bottom: 8px;
}

.booking-card .instalment-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: var(--bg-light);
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.booking-card .instalment-bar svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.instalment-info {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.booking-features {
  list-style: none;
  margin-bottom: 20px;
}

.booking-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.booking-features li svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.booking-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: var(--bg-light);
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: var(--text-light);
}

.booking-guarantee svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.booking-contact {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.booking-contact a {
  color: var(--primary);
  font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.tour-testimonials {
  margin-bottom: 32px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-light);
}

.testimonial-stars {
  color: var(--warning);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

/* ===== PAGE TITLE & SUBTITLE ===== */
.page-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: white;
}

.page-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0;
}

/* ===== RESPONSIVE TOUR DETAIL ===== */
@media (max-width: 1024px) {
  .tour-info-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
  .info-item:nth-child(odd) {
    border-right: 1px solid var(--border-light);
  }
  .included-grid {
    grid-template-columns: 1fr;
  }
  .tips-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .deal-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .gallery-main {
    height: 350px;
  }
  .gallery-thumbs img {
    flex: 0 0 calc(50% - 4px);
    min-width: 120px;
  }
}

@media (max-width: 768px) {
  .tour-info-bar {
    grid-template-columns: 1fr;
  }
  .info-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border-light);
  }
  .info-item:last-child {
    border-bottom: none;
  }
  .page-title {
    font-size: 1.8rem;
  }
  .gallery-main {
    height: 250px;
  }
  .gallery-thumbs img {
    flex: 0 0 70%;
    min-width: 0;
  }
  .tour-content > section {
    padding: 20px;
  }
  .tour-description,
  .whats-included,
  .tour-itinerary,
  .important-notes,
  .tour-at-a-glance,
  .travel-tips,
  .tour-faq,
  .booking-card {
    padding: 20px;
  }
  .highlight-list {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FIXES FOR CARD LINKS ===== */
.deal-card {
  cursor: pointer;
}

.compare-btn {
  position: relative;
  z-index: 2;
}

/* ===== ANIMATED HERO ===== */
@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-bg img {
  animation: heroFadeIn 1s ease forwards;
}

.tour-hero-gallery .gallery-main img {
  animation: none;
}


/* ===== NEWSLETTER POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  position: fixed;
  top: 50%;
  left: 24px;
  max-width: 420px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 2001;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.popup-modal.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.popup-logo {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.8rem;
  line-height: 1.1;
  text-align: center;
  padding: 4px;
}

.popup-content {
  flex: 1;
}

.popup-content p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 16px;
}

.popup-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.popup-btn-later {
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.popup-btn-later:hover {
  color: var(--text);
}

.popup-btn-subscribe {
  padding: 8px 24px;
  border: none;
  border-radius: var(--radius);
  background: var(--primary);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.popup-btn-subscribe:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.popup-close:hover {
  color: var(--text);
}

/* ===== NEWSLETTER SIGNUP POPUP (Homepage) ===== */
body.lead-popup-open {
  overflow: hidden;
}

.lead-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 5200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lead-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lead-popup-modal {
  position: fixed;
  z-index: 5201;
  top: 50%;
  left: 50%;
  width: min(480px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  transform: translate(-50%, -46%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
}

.lead-popup-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.lead-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: none;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  z-index: 2;
  padding: 4px;
  transition: color 0.2s ease;
}

.lead-popup-close:hover {
  color: var(--text);
}

.lead-popup-close-icon {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 400;
}

.lead-popup-body {
  padding: 36px 32px 28px;
  overflow-y: auto;
  max-height: calc(100vh - 40px);
}

.lead-popup-body h2 {
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 10px;
  padding-right: 72px;
}

.lead-popup-highlight {
  color: var(--accent);
}

.lead-popup-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 22px;
}

.lead-popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-popup-form input,
.lead-popup-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8dde3;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-popup-form input::placeholder {
  color: #9aa3ad;
}

.lead-popup-form select {
  color: #9aa3ad;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239aa3ad' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.lead-popup-form select.has-value {
  color: var(--text);
}

.lead-popup-form input:focus,
.lead-popup-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 166, 126, 0.12);
}

.lead-popup-submit {
  width: 100%;
  border: none;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lead-popup-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.lead-popup-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.lead-popup-message {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.lead-popup-message.is-error {
  color: #c0392b;
}

.lead-popup-message.is-success {
  color: #1e8449;
}

.lead-popup-legal {
  margin-top: 16px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

.lead-popup-legal a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.lead-popup-legal a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .lead-popup-body {
    padding: 28px 20px 22px;
  }

  .lead-popup-body h2 {
    font-size: 1.35rem;
    padding-right: 60px;
  }

  .lead-popup-subtitle {
    font-size: 0.92rem;
  }
}

/* ===== NEED HELP PANEL (Non-homepage, TripADeal style) ===== */
.help-idle-panel {
  position: fixed;
  right: 100px;
  top: 50%;
  width: min(360px, calc(100vw - 32px));
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
  z-index: 5100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(-50% + 12px));
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
}

.help-idle-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}

.help-idle-minimize {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}

.help-idle-minimize::before {
  content: '';
  display: block;
  width: 14px;
  height: 2px;
  margin: 0 auto;
  background: #9aa3ad;
  border-radius: 1px;
}

.help-idle-minimize:hover::before {
  background: var(--text);
}

.help-idle-header {
  border-bottom: 1px solid #e8eaed;
  padding-right: 40px;
}

.help-idle-header.help-idle-row {
  display: flex;
  align-items: center;
  cursor: default;
}

.help-idle-header.help-idle-row:hover {
  background: #fff;
}

.help-idle-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.help-idle-actions {
  display: flex;
  flex-direction: column;
}

.help-idle-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  border: none;
  border-bottom: 1px solid #e8eaed;
  background: #fff;
  text-align: left;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.15s ease;
}

.help-idle-actions .help-idle-row:last-child {
  border-bottom: none;
}

.help-idle-row:hover {
  background: #f7f8f9;
}

.help-idle-row--phone {
  background: #e8f4fc;
}

.help-idle-row--phone:hover {
  background: #dceef9;
}

.help-idle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #00b4c5;
}

.help-idle-icon svg {
  width: 28px;
  height: 28px;
}

.help-idle-row-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.help-idle-row-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.help-idle-row-text > span {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #757575;
}

@media (max-width: 480px) {
  .help-idle-panel {
    right: 16px;
    top: auto;
    bottom: 100px;
    transform: translateY(12px);
  }

  .help-idle-panel.active {
    transform: translateY(0);
  }

  .help-idle-row {
    padding: 16px 18px;
    gap: 14px;
  }
}

/* ===== REQUEST A CALL BACK MODAL ===== */
.callback-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 5300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.callback-overlay.active {
  opacity: 1;
  visibility: visible;
}

.callback-modal {
  position: fixed;
  right: 100px;
  top: 50%;
  width: min(400px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  z-index: 5301;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(-50% + 16px));
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
}

.callback-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}

.callback-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #e8eaed;
  flex-shrink: 0;
}

.callback-modal-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.callback-modal-close {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: none;
  background: none;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
}

.callback-modal-close span {
  font-size: 1.1rem;
  line-height: 1;
}

.callback-modal-body {
  padding: 20px 24px 24px;
  overflow-y: auto;
  flex: 1;
}

.callback-step {
  display: none;
}

.callback-step.active {
  display: block;
}

.callback-intro {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 12px;
}

.callback-phone-note {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-light);
  margin: 0 0 20px;
}

.callback-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
}

.callback-field {
  margin-bottom: 16px;
}

.callback-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.callback-required {
  color: #e53935;
  margin-left: 2px;
}

.callback-optional {
  font-weight: 400;
  color: var(--text-light);
}

.callback-field input,
.callback-country {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s ease;
}

.callback-field input:focus,
.callback-country:focus {
  outline: none;
  border-color: var(--primary);
}

.callback-phone-row {
  display: flex;
  gap: 8px;
}

.callback-country {
  width: 110px;
  flex-shrink: 0;
  padding-right: 8px;
}

.callback-phone-row input {
  flex: 1;
  min-width: 0;
}

.callback-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease, opacity 0.15s ease;
  margin-top: 8px;
}

.callback-btn--primary {
  background: #c5c9ce;
  color: #fff;
}

.callback-btn--primary:not(:disabled) {
  background: var(--primary);
}

.callback-btn--primary:not(:disabled):hover {
  background: var(--primary-dark, #0056b3);
}

.callback-btn--back {
  background: none;
  color: var(--primary);
  margin-top: 12px;
}

.callback-btn--back:hover {
  text-decoration: underline;
}

.callback-slots {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  max-height: 240px;
  overflow-y: auto;
}

.callback-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.callback-slot:hover {
  border-color: var(--primary);
}

.callback-slot.active {
  border-color: var(--primary);
  background: #f0f7ff;
}

.callback-slot-day {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.callback-slot-time {
  font-size: 0.85rem;
  color: var(--text-light);
}

.callback-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.callback-step--success {
  text-align: center;
}

.callback-step--success h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--dark);
}

.callback-step--success p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0 0 20px;
}

body.callback-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .callback-modal {
    right: 16px;
    left: 16px;
    width: auto;
    top: auto;
    bottom: 24px;
    max-height: calc(100vh - 48px);
    transform: translateY(16px);
  }

  .callback-modal.active {
    transform: translateY(0);
  }
}

/* ===== LOGIN / SIGN IN ===== */
.sign-in-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.sign-in-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.sign-in-btn svg {
  width: 18px;
  height: 18px;
}

.sign-in-btn .arrow {
  transition: transform 0.2s ease;
}

.sign-in-btn:hover .arrow {
  transform: translateX(2px);
}

/* ===== CHAT WIDGET ===== */
.chat-widget {
  position: fixed;
  top: 50%;
  right: 24px;
  z-index: 1500;
  transform: translateY(-50%);
  text-decoration: none;
  color: inherit;
}





.chat-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
  padding: 8px;
  text-decoration: none;
}

.chat-bubble:hover {
  transform: translateY(-2px);
}

.chat-bubble img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 3px solid white;
}

.chat-bubble span {
  font-size: 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  background: white;
  padding: 4px 10px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}

.chat-window {
  position: fixed;
  right: 100px;
  top: 50%;
  width: min(380px, calc(100vw - 32px));
  max-height: min(560px, calc(100vh - 48px));
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  z-index: 5400;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(-50% + 16px));
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
  pointer-events: auto;
}

.chat-window.chat-window--minimized {
  max-height: none;
  height: auto;
}

.chat-window.chat-window--minimized .chat-preform,
.chat-window.chat-window--minimized .chat-conversation {
  display: none !important;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  flex-shrink: 0;
}

.chat-header--dark {
  background: #111;
  color: #fff;
}

.chat-header-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.chat-header-dots {
  width: 4px;
  height: 18px;
  background: linear-gradient(to bottom, #fff 0%, #fff 30%, transparent 30%, transparent 40%, #fff 40%, #fff 70%, transparent 70%, transparent 80%, #fff 80%);
  flex-shrink: 0;
  opacity: 0.9;
}

.chat-header-logo {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #fff;
}

.chat-header-logo span {
  color: var(--accent, #00b4c5);
}

.chat-header-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.chat-header .chat-close,
.chat-header .chat-minimize {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.chat-header .chat-close:hover,
.chat-header .chat-minimize:hover {
  opacity: 1;
}

.chat-header .chat-close svg,
.chat-header .chat-minimize svg {
  width: 18px;
  height: 18px;
}

/* Pre-chat form */
.chat-preform,
.chat-conversation {
  display: none;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.chat-preform.active,
.chat-conversation.active {
  display: flex;
}

.chat-preform form {
  padding: 20px 20px 0;
  overflow-y: auto;
  flex: 1;
}

.chat-form-field {
  margin-bottom: 14px;
}

.chat-form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.chat-required {
  color: #e53935;
  margin-left: 2px;
}

.chat-form-field input,
.chat-form-field select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--text);
  background: #fff;
}

.chat-form-field input:focus,
.chat-form-field select:focus {
  outline: none;
  border-color: var(--primary);
}

.chat-start-btn {
  display: block;
  width: calc(100% - 40px);
  margin: 8px 20px 20px;
  padding: 14px 20px;
  border: none;
  border-radius: 0;
  background: #00b4c5;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease;
}

.chat-start-btn:hover {
  background: #009aaa;
}

/* Conversation */
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  background: #fff;
  min-height: 280px;
}

.chat-system-msg {
  text-align: center;
  font-size: 0.78rem;
  color: #888;
  line-height: 1.5;
  margin-bottom: 14px;
}

.chat-join-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 16px;
}

.chat-bot-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e0f7fa;
  color: #00b4c5;
  flex-shrink: 0;
}

.chat-bot-avatar svg {
  width: 16px;
  height: 16px;
}

.chat-message {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.chat-message.bot {
  justify-content: flex-start;
}

.chat-message.user {
  justify-content: flex-end;
}

.chat-message .bubble {
  max-width: 260px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.chat-message.bot .bubble {
  background: #f5f5f5;
  color: var(--text);
  border-top-left-radius: 4px;
}

.chat-message.user .bubble {
  background: var(--primary);
  color: white;
  border-top-right-radius: 4px;
}

.chat-footer {
  padding: 10px 12px 14px;
  border-top: 1px solid #e8eaed;
  background: white;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}

.chat-tool-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  color: #00b4c5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  opacity: 0.5;
}

.chat-tool-btn svg {
  width: 20px;
  height: 20px;
}

.chat-footer input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.15s ease;
}

.chat-footer input:focus {
  border-color: var(--primary);
}

.chat-footer .send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.chat-footer .send-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.chat-footer .send-btn svg {
  width: 16px;
  height: 16px;
}

/* Chat status bar */
.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px 12px;
  background: var(--bg-light);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.chat-status .online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== AUTH PAGES ===== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
  padding: 80px 24px 40px;
}

.auth-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.auth-card .logo {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 8px;
  display: block;
}

.auth-card h1 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: var(--dark);
}

.auth-card .subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.social-login {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: white;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--bg-light);
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.auth-footer a {
  color: var(--primary);
  font-weight: 600;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.form-error {
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-error.visible {
  display: block;
}

/* ===== MOBILE: Chat widget ===== */
@media (max-width: 480px) {
  .chat-window {
    width: auto;
    right: 16px;
    left: 16px;
    top: auto;
    bottom: 24px;
    max-height: calc(100vh - 48px);
    transform: translateY(16px);
  }

  .chat-window.active {
    transform: translateY(0);
  }

  .chat-widget {
    bottom: 16px;
    right: 16px;
    top: auto;
    transform: none;
  }
  
  .chat-bubble img {
    width: 48px;
    height: 48px;
  }
  
  .popup-modal {
    left: 16px;
    right: 16px;
    bottom: 80px;
    max-width: none;
  }
}

/* ===== BOOKING FLOW / CHECKOUT STYLES ===== */

.booking-flow {
  padding: 120px 24px 64px;
  background: var(--bg-light);
  min-height: 100vh;
}

.booking-flow .container {
  max-width: 1000px;
}

/* Booking Steps */
.booking-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  padding: 0 24px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

.step-item.active {
  color: var(--primary);
  font-weight: 700;
}

.step-item.completed {
  color: var(--accent);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border-light);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.step-item.active .step-number {
  background: var(--primary);
  color: white;
}

.step-item.completed .step-number {
  background: var(--accent);
  color: white;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--border-light);
  flex-shrink: 0;
}

.step-connector.completed {
  background: var(--accent);
}

/* Booking Card */
.booking-card-large {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  overflow: hidden;
  margin-bottom: 32px;
}

.booking-card-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-light);
}

.booking-card-header h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.booking-card-header p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.booking-card-body {
  padding: 32px;
}

/* Payment Tabs */
.payment-tabs {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.payment-tab {
  flex: 1;
  padding: 14px 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--bg-light);
  border: none;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}

.payment-tab:last-child {
  border-right: none;
}

.payment-tab.active {
  background: white;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  margin-bottom: -1px;
}

.payment-tab:hover:not(.active) {
  background: var(--bg-gray);
  color: var(--text);
}

/* Price Display */
.price-display {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-light);
  gap: 24px;
}

.price-display-main {
  flex: 1;
}

.price-display-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.price-display-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.price-display-amount .currency {
  font-size: 1.8rem;
  vertical-align: top;
}

.price-display-share {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.price-display-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.price-display-original .save-tag {
  color: var(--danger);
  font-weight: 700;
  margin-left: 8px;
}

.price-display-bonus {
  text-align: right;
  flex-shrink: 0;
  padding-top: 8px;
}

.price-display-bonus .bonus-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-display-bonus .bonus-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.price-display-bonus .bonus-detail {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Trip Summary Box */
.trip-summary-box {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
  border: 1px solid var(--border-light);
}

.trip-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.trip-summary-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.trip-summary-header .deal-id {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.trip-summary-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  padding: 16px 20px;
}

.trip-summary-card .trip-days {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.trip-summary-card .trip-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.trip-summary-card .trip-price {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

/* Date Selection */
.date-selection {
  margin-top: 24px;
}

.date-selection h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.date-picker-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.date-picker-field {
  flex: 1;
  position: relative;
}

.date-picker-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.date-picker-field input,
.date-picker-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  background: white;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23999' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.date-picker-field input:focus,
.date-picker-field select:focus {
  border-color: var(--primary);
  outline: none;
}

.date-picker-field .calendar-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

/* Year Toggle */
.year-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.year-btn {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.year-btn.active,
.year-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--bg-light);
}

/* Departure Dates Grid */
.dates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.date-option {
  padding: 12px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: white;
}

.date-option:hover {
  border-color: var(--primary);
  background: var(--bg-light);
}

.date-option.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.date-option .month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.date-option .day {
  font-size: 1.2rem;
  font-weight: 700;
}

.date-option .year {
  font-size: 0.75rem;
}

.date-option.hidden {
  display: none;
}

/* Subtotal Row */
.subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
  margin-top: 24px;
}

.subtotal-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.subtotal-label strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.subtotal-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
}

/* Traveller Counter */
.traveller-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.traveller-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.traveller-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.traveller-row:last-child {
  border-bottom: none;
}

.traveller-info {
  display: flex;
  flex-direction: column;
}

.traveller-info .label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.traveller-info .detail {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.traveller-counter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.counter-btn:hover:not(:disabled) {
  border-color: var(--primary);
  background: var(--bg-light);
}

.counter-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.counter-value {
  min-width: 24px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

/* Flight Upgrade Table */
.flight-upgrade-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.flight-upgrade-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.flight-upgrade-section .subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.flight-upgrade-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.flight-upgrade-table .upgrade-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr 1fr;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
}

.flight-upgrade-table .upgrade-row.header {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.85rem;
  border-bottom: 2px solid var(--border);
  padding: 10px 0;
}

.flight-upgrade-table .upgrade-row.airline {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

.flight-upgrade-table .airline-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flight-upgrade-table .airline-logo {
  width: 60px;
  height: 30px;
  object-fit: contain;
  border-radius: 4px;
}

.upgrade-option {
  text-align: center;
  padding: 12px 8px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.upgrade-option:hover {
  border-color: var(--primary);
}

.upgrade-option.active {
  border-color: var(--primary);
  background: rgba(0, 102, 204, 0.05);
}

.upgrade-option .class-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.upgrade-option .class-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.upgrade-option .class-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.upgrade-option .class-price .per {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

.upgrade-option .class-included {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.upgrade-option .seat-image {
  width: 60px;
  height: 40px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.upgrade-option .class-unavailable {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.upgrade-option .radio-btn {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upgrade-option.active .radio-btn {
  border-color: var(--primary);
}

.upgrade-option.active .radio-btn::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.upgrade-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.upgrade-info svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .flight-upgrade-table .upgrade-row {
    grid-template-columns: 100px 1fr 1fr 1fr;
    gap: 8px;
  }
  .upgrade-option .class-name {
    font-size: 0.75rem;
  }
  .upgrade-option .class-price {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .flight-upgrade-table .upgrade-row {
    grid-template-columns: 80px 1fr 1fr 1fr;
    gap: 4px;
  }
  .upgrade-option {
    padding: 8px 4px;
  }
  .upgrade-option .class-name {
    font-size: 0.7rem;
  }
  .upgrade-option .class-price {
    font-size: 0.8rem;
  }
  .upgrade-option .class-badge {
    font-size: 0.6rem;
    padding: 1px 4px;
  }
}

/* Tour Route Map */
.tour-route-map {
  margin: 32px 0;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-light);
}

.tour-route-map h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.route-map-image {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.route-map-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tour Tabs */
.tour-tabs {
  display: flex;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 32px;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tour-tab {
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.tour-tab:hover {
  color: var(--primary);
}

.tour-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tour-tab svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: text-bottom;
}

.tour-tab-panel {
  display: none;
}

.tour-tab-panel.active {
  display: block;
}

/* Destination explore article cards */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.article-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.article-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Flight Info Section */
.flight-info-section {
  margin-bottom: 32px;
}

.flight-info-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.flight-route {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.flight-route .airport {
  text-align: center;
}

.flight-route .airport-code {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}

.flight-route .airport-city {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.flight-route .flight-arrow {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.flight-route .flight-arrow::before,
.flight-route .flight-arrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.flight-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.flight-detail-item {
  text-align: center;
  padding: 12px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.flight-detail-item .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.flight-detail-item .value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 4px;
}

/* Hotel Info Section */
.hotel-info-section {
  margin-bottom: 32px;
}

.hotel-info-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.hotel-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.hotel-card-image {
  width: 120px;
  height: 90px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.hotel-card-info {
  flex: 1;
}

.hotel-card-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.hotel-card-info .stars {
  color: #f39c12;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.hotel-card-info .location {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hotel-card-info .nights {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .hotel-card {
    flex-direction: column;
  }
  .hotel-card-image {
    width: 100%;
    height: 160px;
  }
  .flight-details {
    grid-template-columns: 1fr;
  }
  .flight-route {
    flex-direction: column;
    text-align: center;
  }
  .flight-route .flight-arrow::before,
  .flight-route .flight-arrow::after {
    display: none;
  }
  .tour-tab {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
}

/* Passenger Form */
.passenger-form h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.passenger-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
}

.passenger-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.passenger-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.passenger-card-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-field label .required {
  color: var(--danger);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  background: white;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.form-field small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Booking Actions */
.booking-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-top: 1px solid var(--border-light);
  gap: 16px;
  flex-wrap: wrap;
}

.booking-actions .btn-back {
  padding: 12px 24px;
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.booking-actions .btn-back:hover {
  background: var(--bg-light);
}

.booking-actions .btn-primary {
  padding: 14px 32px;
  font-size: 1rem;
}

/* Order Summary Sidebar */
.order-summary-sidebar {
  position: sticky;
  top: 100px;
}

.summary-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.summary-card-header {
  padding: 20px 24px;
  background: var(--dark);
  color: white;
}

.summary-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.summary-card-body {
  padding: 24px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}

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

.summary-item .label {
  color: var(--text-light);
}

.summary-item .value {
  font-weight: 600;
  color: var(--text);
  text-align: right;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 2px solid var(--border);
  margin-top: 8px;
}

.summary-total .label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.summary-total .value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

/* Payment Methods */
.payment-method-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 50%;
}

.payment-method-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  background: white;
}

.payment-method-item:hover {
  border-color: var(--primary);
  background: var(--bg-light);
}

.payment-method-item.active {
  border-color: var(--primary);
  background: var(--bg-light);
  box-shadow: 0 0 0 2px var(--primary);
}

.payment-method-item input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.payment-method-item .method-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.payment-method-item .method-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.payment-method-item .method-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.payment-method-item .method-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* Credit Card Form */
.credit-card-form {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border-light);
  margin-top: 50%;
}

.card-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}

/* Secure Badge */
.secure-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.secure-badge svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Terms Checkbox */
.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  margin-bottom: 16px;
}

.terms-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-checkbox label {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.terms-checkbox label a {
  color: var(--primary);
  text-decoration: underline;
}

/* Booking Confirmation */
.confirmation-box {
  text-align: center;
  padding: 48px 32px;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
}

.confirmation-box h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.confirmation-box p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.confirmation-details {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
  text-align: left;
  border: 1px solid var(--border-light);
}

.confirmation-details h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.confirmation-details .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
}

.confirmation-details .detail-row .label {
  color: var(--text-muted);
}

.confirmation-details .detail-row .value {
  font-weight: 600;
  color: var(--text);
}

/* Booking Layout */
.booking-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
}

@media (max-width: 1024px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .order-summary-sidebar {
    position: static;
  }
  .dates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-row {
    grid-template-columns: 1fr;
  }
  .form-row-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .booking-steps {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .step-connector {
    display: none;
  }
  .price-display {
    flex-direction: column;
    gap: 16px;
  }
  .price-display-bonus {
    text-align: left;
  }
  .booking-actions {
    flex-direction: column-reverse;
  }
  .booking-actions .btn-back,
  .booking-actions .btn-primary {
    width: 100%;
  }
  .dates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .date-picker-row {
    flex-direction: column;
  }
  .content-switch-tabs {
    gap: 0;
  }
  .booking-card-body {
    padding: 20px;
  }
  .booking-card-header {
    padding: 20px;
  }
  /* Search bar mobile */
  .search-bar-wrapper {
    padding: 16px 0;
  }
  .search-bar {
    padding: 16px;
    gap: 12px;
  }
  .search-bar-categories {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .search-bar-inputs {
    flex-direction: column;
    align-items: stretch;
  }
  .search-input-group {
    min-height: 48px;
    padding: 8px 12px;
  }
  .btn-search {
    width: 100%;
    justify-content: center;
    height: 48px;
  }
  .search-bar-compact {
    padding: 8px 14px;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .compact-company {
    width: 100%;
  }
  .compact-search {
    width: 100%;
    justify-content: space-between;
  }
  .compact-label {
    font-size: 0.75rem;
  }
  .compact-pill {
    font-size: 0.8rem;
    padding: 4px 10px;
  }
  .search-category-pill {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}

/* ===== CITY PAGE TAB STYLES ===== */
.city-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.city-tab-btn {
  padding: 10px 28px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: white;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}

.city-tab-btn:hover,
.city-tab-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.city-tab-panel {
  display: none;
}

.city-tab-panel.active {
  display: block;
}

.city-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.city-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: white;
  border: 1px solid var(--border-light);
}

.city-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.city-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.city-card-body {
  padding: 20px;
}

.city-card-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--bg-light);
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.city-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--dark);
}

.city-card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.content-switch-select {
  display: none;
}

.mobile-date-trigger {
  display: none;
}

/* ===== TRIPADEAL-STYLE MOBILE TOUR + BOOKING LAYOUT ===== */
@media (max-width: 1024px) {
  .tour-detail-page {
    background: var(--bg-light);
  }

  .tour-detail-page > .container {
    max-width: 760px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .tour-hero-gallery {
    background: #fff;
  }

  .gallery-main {
    height: clamp(250px, 46vw, 420px);
    border-radius: 0;
  }

  .gallery-overlay {
    top: auto;
    bottom: 22px;
    left: 16px;
  }

  .gallery-thumbs {
    gap: 8px;
    padding: 10px 16px 14px;
  }

  .gallery-thumbs img {
    flex-basis: 132px;
    min-width: 132px;
    height: 82px;
    border-width: 2px;
  }

  .tour-breadcrumb-strip {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
  }

  .breadcrumb--tour ol {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .breadcrumb--tour ol::-webkit-scrollbar {
    display: none;
  }

  .tour-detail-grid,
  .tour-detail-grid.tab-adaptive-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 16px;
  }

  .tour-detail-grid .tour-content,
  .tour-detail-grid.tab-adaptive-grid .tour-content {
    order: 2;
    width: 100%;
  }

  .tour-detail-grid .tour-sidebar,
  .tour-detail-grid.tab-adaptive-grid .tour-sidebar {
    order: 1;
    position: static;
    width: 100%;
  }

  .tour-sidebar .booking-card {
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  }

  .tour-sidebar .price-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: end;
    margin-bottom: 16px;
  }

  .tour-sidebar .price-from,
  .tour-sidebar .price-per,
  .tour-sidebar .price-original-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .tour-sidebar .price-block,
  .booking-card .price-main {
    color: var(--accent);
    font-size: clamp(2.35rem, 7vw, 3.25rem);
    font-weight: 900;
    line-height: 0.95;
  }

  .tour-sidebar .price-right {
    min-width: 86px;
    text-align: right;
  }

  .tour-sidebar .price-original-value {
    display: block;
    color: var(--text-muted);
    font-size: 0.86rem;
    text-decoration: line-through;
  }

  .tour-sidebar .price-save {
    display: inline-block;
    color: var(--danger);
    font-size: 0.82rem;
    font-weight: 800;
  }

  .tour-sidebar .booking-card .btn {
    width: 100%;
    min-height: 48px;
    margin-bottom: 10px;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  .tour-sidebar .instalment-bar {
    justify-content: center;
    margin: 12px 0 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--bg-light);
    font-size: 0.86rem;
  }

  .tour-sidebar .booking-features,
  .tour-sidebar .booking-contact,
  .tour-sidebar .booking-guarantee {
    margin-top: 14px;
    padding-top: 14px;
  }

  .tour-sidebar .booking-features ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 14px;
  }

  .tour-sidebar .booking-features li {
    padding: 0;
    border-bottom: none;
    font-size: 0.82rem;
  }

  .content-switch-tabs,
  .content-switch-tabs-line {
    display: none;
  }

  .content-switch-select {
    display: block;
    width: 100%;
    min-height: 42px;
    margin-bottom: 16px;
    padding: 0 38px 0 12px;
    border: 1px solid #9fd0fb;
    border-radius: 3px;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23111111' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
    appearance: none;
  }

  .content-switch-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.12);
  }

  .content-switch-tabs.mobile-pill-tabs,
  .content-switch-tabs-line.mobile-pill-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 0 -16px 16px;
    padding: 0 16px 12px;
    overflow-x: auto;
    border-bottom: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .content-switch-tabs::-webkit-scrollbar,
  .content-switch-tabs-line::-webkit-scrollbar {
    display: none;
  }

  .content-switch-btn,
  .content-switch-tabs-line .content-switch-btn {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--text);
    font-size: 0.86rem;
  }

  .content-switch-btn.active,
  .content-switch-tabs-line .content-switch-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
  }

  .content-switch-tabs-line .content-switch-btn.active::after {
    display: none;
  }

  .tour-description,
  .tour-highlights,
  .whats-included,
  .tour-itinerary,
  .important-notes,
  .tour-at-a-glance,
  .travel-tips,
  .tour-faq,
  .tour-route-map {
    width: 100%;
    margin: 0 0 16px;
    padding: 22px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  }

  .tour-content h2 {
    margin-bottom: 16px;
    font-size: 1.35rem;
  }

  .included-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .glance-table td {
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  .glance-table td:first-child {
    width: 100%;
    padding-bottom: 2px;
  }

  .itinerary-day {
    padding: 18px 0 18px 20px;
    margin-top: 16px;
  }

  .booking-flow {
    padding: calc(var(--header-height) + 20px) 16px 40px;
  }

  .booking-flow .container {
    max-width: 760px;
    padding: 0;
  }

  .booking-layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .booking-main {
    order: 2;
    min-width: 0;
  }

  .order-summary-sidebar {
    order: 1;
    position: static;
    width: 100%;
  }

  .booking-steps {
    position: sticky;
    top: var(--header-height);
    z-index: 50;
    justify-content: flex-start;
    gap: 0;
    margin: -8px -16px 18px;
    padding: 8px 16px;
    overflow-x: auto;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    scrollbar-width: none;
  }

  .booking-steps::-webkit-scrollbar {
    display: none;
  }

  .step-item {
    flex: 0 0 auto;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    background: #fff;
    font-size: 0.76rem;
  }

  .step-item.active {
    border-color: var(--dark);
    background: var(--dark);
    color: #fff;
  }

  .step-item.active .step-number {
    background: #fff;
    color: var(--dark);
  }

  .step-number {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }

  .step-connector {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--border);
    flex: 0 0 18px;
  }

  .booking-card-large,
  .summary-card {
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  }

  .summary-card + .summary-card {
    margin-top: 14px !important;
  }

  .summary-card-header {
    padding: 16px 18px;
  }

  .summary-card-body {
    padding: 18px;
  }

  .summary-item,
  .summary-total {
    gap: 16px;
  }

  .booking-card-header {
    padding: 20px 22px;
  }

  .booking-card-body {
    padding: 22px;
  }

  .price-display {
    display: block;
    padding: 18px;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    background: var(--bg-light);
  }

  .price-display-amount {
    color: var(--accent);
    font-size: clamp(2.4rem, 8vw, 3.2rem);
  }

  .price-display-bonus {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
    text-align: left;
  }

  .payment-tabs {
    border-radius: 12px;
    margin-bottom: 14px;
  }

  .dates-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flight-upgrade-table .upgrade-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 0;
  }

  .flight-upgrade-table .upgrade-row.header .airline-label,
  .flight-upgrade-table .upgrade-row.airline .airline-name {
    font-size: 0.9rem;
  }

  .flight-upgrade-table .upgrade-row.header,
  .flight-upgrade-table .upgrade-row.airline {
    border-bottom: 1px solid var(--border-light);
  }

  .flight-upgrade-table {
    width: calc(100% - 2px);
    margin-right: 1px;
    box-sizing: border-box;
  }

  .upgrade-option {
    display: grid;
    grid-template-columns: 24px 56px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 12px;
    text-align: left;
    box-sizing: border-box;
    min-width: 0;
  }

  .upgrade-option .radio-btn {
    position: static;
  }

  .upgrade-option .seat-image {
    width: 56px;
    height: 40px;
    margin: 0;
  }

  .passenger-card {
    padding: 18px;
  }

  .form-row,
  .form-row-3,
  .card-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .payment-method-list {
    margin-top: 0;
  }

  .payment-method-item {
    padding: 14px 16px;
  }

  .credit-card-form {
    margin-top: 16px;
    padding: 18px;
  }

  .secure-badge {
    align-items: flex-start;
    line-height: 1.45;
  }

  .terms-checkbox {
    padding-top: 6px;
  }

  .booking-actions {
    flex-direction: column-reverse;
    align-items: stretch;
    padding: 18px 22px;
  }

  .booking-actions .btn-back,
  .booking-actions .btn-primary {
    width: 100%;
    min-height: 48px;
    text-align: center;
  }

  .booking-dates-page .booking-main {
    order: 1;
  }

  .booking-dates-page .order-summary-sidebar {
    order: 2;
  }

  .booking-dates-page .booking-main > .booking-card-large:first-child {
    border: none;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .booking-dates-page .booking-main > .booking-card-large:first-child > .booking-card-header,
  .booking-dates-page .booking-main > .booking-card-large:first-child .payment-tabs,
  .booking-dates-page .booking-main > .booking-card-large:first-child .price-display {
    display: none;
  }

  .booking-dates-page .booking-main > .booking-card-large:first-child > .booking-card-body {
    padding: 0;
  }

  .booking-dates-page .trip-summary-box,
  .booking-dates-page .date-selection,
  .booking-dates-page .traveller-section,
  .booking-dates-page .flight-upgrade-section {
    margin: 0 0 16px;
    padding: 0;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
  }

  .booking-dates-page .trip-summary-header,
  .booking-dates-page .date-selection h3,
  .booking-dates-page .traveller-section h3,
  .booking-dates-page .flight-upgrade-section h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    background: #f5f7f7;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 800;
  }

  .booking-dates-page .trip-summary-card {
    position: relative;
    display: block;
    width: calc(100% - 32px);
    margin: 18px 16px 12px;
    padding: 14px 44px 14px 18px;
    border: 1px solid #00a9e0;
    border-radius: 7px;
    background: #eefcff;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
  }

  .booking-dates-page .trip-summary-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--dark);
    border-bottom: 2px solid var(--dark);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.2s ease;
  }

  .booking-dates-page .trip-summary-card[aria-expanded="true"]::after {
    transform: translateY(-35%) rotate(225deg);
  }

  .booking-dates-page .trip-summary-card .trip-name {
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .booking-dates-page .trip-summary-card .trip-price {
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 500;
  }

  .booking-dates-page .trip-summary-details {
    margin: 0 16px 16px;
    padding: 0 16px 14px;
    border: 1px solid #00a9e0;
    border-top: none;
    border-radius: 0 0 7px 7px;
    background: #eefcff;
    color: var(--text-light);
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .booking-dates-page .trip-summary-card[aria-expanded="true"] {
    margin-bottom: 0;
    border-radius: 7px 7px 0 0;
  }

  .mobile-date-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 32px);
    height: 46px;
    margin: 16px 16px 8px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: #fff;
    color: var(--text);
    font: inherit;
    font-size: 0.95rem;
  }

  .mobile-date-trigger svg {
    width: 20px;
    height: 20px;
    color: var(--dark);
  }

  .booking-dates-page .year-toggle {
    display: flex;
    gap: 8px;
    margin: 0 16px;
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }

  .booking-dates-page .date-selection:not(.dates-open) .year-toggle,
  .booking-dates-page .date-selection:not(.dates-open) .dates-grid {
    display: none;
  }

  .booking-dates-page .mobile-date-trigger[aria-expanded="true"] {
    border-color: #00a9e0;
    box-shadow: 0 0 0 2px rgba(0, 169, 224, 0.08);
  }

  .booking-dates-page .year-btn {
    display: block;
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: #fff;
    color: var(--text);
    font-weight: 800;
  }

  .booking-dates-page .year-btn.active {
    border-color: var(--primary);
    background: #fff;
    color: var(--primary);
  }

  .booking-dates-page .dates-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 16px 16px 20px;
    border: none;
    border-radius: 0;
    overflow: visible;
  }

  .booking-dates-page .date-option {
    display: block;
    min-height: 96px;
    padding: 14px 10px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: #fff;
    text-align: center;
  }

  .booking-dates-page .date-option:last-child {
    border-bottom: 1px solid var(--border);
  }

  .booking-dates-page .date-option.active {
    border-color: var(--primary);
    color: #fff;
    background: var(--primary);
  }

  .booking-dates-page .date-option .month {
    color: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .booking-dates-page .date-option .month::after {
    display: none;
    content: none;
  }

  .booking-dates-page .date-option .day,
  .booking-dates-page .date-option .year {
    color: inherit;
  }

  .booking-dates-page .date-option .day {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 6px;
  }

  .booking-dates-page .date-option .year {
    display: block;
    font-size: 0.78rem;
    margin-top: 4px;
  }

  .booking-dates-page .date-option::after {
    display: none;
    content: none;
  }

  .booking-dates-page .traveller-section,
  .booking-dates-page .flight-upgrade-section {
    padding-bottom: 16px;
  }

  .booking-dates-page .traveller-row,
  .booking-dates-page .flight-upgrade-table,
  .booking-dates-page .upgrade-info {
    margin-right: 16px;
    margin-left: 16px;
  }

  .booking-dates-page .subtotal-row {
    position: sticky;
    bottom: 0;
    z-index: 20;
    margin: 0 0 16px;
    padding: 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px 8px 0 0;
    background: #fff;
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
  }

  .booking-dates-page .subtotal-label strong {
    font-size: 1rem;
    text-transform: uppercase;
  }

  .booking-dates-page .subtotal-amount {
    color: var(--dark);
    font-size: 1.55rem;
  }
}

@media (max-width: 600px) {
  .gallery-main {
    height: 245px;
  }

  .gallery-thumbs img {
    flex-basis: 112px;
    min-width: 112px;
    height: 72px;
  }

  .tour-badge,
  .tour-duration {
    padding: 6px 12px;
    font-size: 0.72rem;
  }

  .tour-detail-page > .container,
  .booking-flow {
    padding-right: 12px;
    padding-left: 12px;
  }

  .tour-sidebar .booking-card,
  .tour-description,
  .tour-highlights,
  .whats-included,
  .tour-itinerary,
  .important-notes,
  .tour-at-a-glance,
  .travel-tips,
  .tour-faq,
  .tour-route-map,
  .booking-card-large,
  .summary-card {
    border-radius: 14px;
  }

  .tour-sidebar .booking-card {
    padding: 16px;
  }

  .tour-sidebar .booking-features ul {
    grid-template-columns: 1fr;
  }

  .tour-description,
  .tour-highlights,
  .whats-included,
  .tour-itinerary,
  .important-notes,
  .tour-at-a-glance,
  .travel-tips,
  .tour-faq,
  .tour-route-map {
    padding: 18px;
  }

  .content-switch-tabs,
  .content-switch-tabs-line {
    margin-right: -12px;
    margin-left: -12px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .booking-card-header,
  .booking-card-body,
  .summary-card-body,
  .booking-actions {
    padding-right: 16px;
    padding-left: 16px;
  }

  .dates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .traveller-row,
  .summary-item,
  .summary-total {
    align-items: flex-start;
  }

  .upgrade-option {
    grid-template-columns: 22px minmax(0, 1fr) auto;
  }

  .upgrade-option .seat-image {
    display: none;
  }

}

@media (max-width: 430px) {
  .booking-steps {
    margin-right: -12px;
    margin-left: -12px;
    padding: 6px 12px;
  }

  .step-item {
    gap: 4px;
    padding: 5px 7px;
    font-size: 0.66rem;
  }

  .step-number {
    width: 19px;
    height: 19px;
    font-size: 0.62rem;
  }

  .step-connector {
    width: 10px;
    flex-basis: 10px;
  }
}
