/*
  Public pages design system (home page redesign).
  Shared stylesheet for the public marketing pages — imported per-page via
  <%= stylesheet_link_tag "public_pages" %> inside content_for :head.

  Palette:
    deep navy   #0A4A68
    teal        #01A9C7
    orange      #F0974D
    ink         #1B2A3A
    muted       #5E6B7B
    faint       #9AA6B2
    bg          #F4F6F8
*/

.tvl-page {
  font-family: "DM Sans", system-ui, sans-serif;
  color: #1B2A3A;
  background: #F4F6F8;
  min-height: 100vh;
  overflow-x: hidden;
}
/* :where() keeps these resets at class-level specificity so every
   tvl-* component (buttons, pills, chips) can win with its own color. */
.tvl-page :where(a) { text-decoration: none; color: inherit; }
.tvl-page :where(a:hover) { color: #01A9C7; }
.tvl-page img { display: block; max-width: 100%; }
.tvl-page ::selection { background: rgba(1, 169, 199, .18); }

@keyframes tvl-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes tvl-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ══════════ Header ══════════ */
.tvl-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244, 246, 248, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 74, 104, .07);
}
.tvl-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.tvl-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.tvl-header__logo img { height: 44px; width: auto; }
.tvl-header__nav { display: flex; align-items: center; gap: 4px; margin-left: 12px; }
.tvl-navlink {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: #5E6B7B;
  white-space: nowrap;
}
.tvl-navlink--active {
  font-weight: 600;
  color: #0A4A68;
  background: #fff;
  box-shadow: 0 1px 2px rgba(10, 74, 104, .06);
}
.tvl-header__auth { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.tvl-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1.5px solid #0A4A68;
  background: transparent;
  color: #0A4A68;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.tvl-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  border: none;
  background: #01A9C7;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(1, 169, 199, .28);
  transition: all 0.3s ease;
}
.tvl-btn-solid:hover { 
  color: #fff; 
  background: #0197b3; 
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(1, 169, 199, .4);
}

/* Auth dropdowns (agent / supplier) */
.tvl-dropdown-wrap { position: relative; }
.tvl-dropdown-wrap .tvl-chevron { transition: transform .2s; }
.tvl-dropdown-wrap.tvl-dropdown-open .tvl-chevron { transform: rotate(180deg); }
.tvl-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  overflow: hidden;
  z-index: 70;
  min-width: 190px;
}
.tvl-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  color: #0A4A68;
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
}
.tvl-dropdown__item:hover { background: #f0fafe; }
.tvl-dropdown__item svg { color: #01A9C7; flex-shrink: 0; }
.tvl-dropdown__divider { margin: 0 16px; border-top: 1px solid rgba(0, 0, 0, .05); }

/* Language switcher (button_to form) */
.tvl-lang-form { display: inline; }
.tvl-lang-btn {
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(10, 74, 104, .25);
  background: transparent;
  color: #0A4A68;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
}
.tvl-lang-btn:hover { border-color: #01A9C7; color: #01A9C7; }

/* Mobile menu */
.tvl-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; cursor: pointer; }
.tvl-hamburger span { display: block; width: 24px; height: 2px; background: #0A4A68; border-radius: 2px; }
.tvl-mobile-menu {
  display: none;
  background: #fff;
  border-bottom: 1px solid rgba(10, 74, 104, .08);
  padding: 16px;
  flex-direction: column;
  gap: 12px;
}
.tvl-mobile-menu.tvl-open { display: flex; }
.tvl-mobile-menu__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tvl-mobile-menu__row .tvl-btn-solid,
.tvl-mobile-menu__row .tvl-btn-outline,
.tvl-mobile-menu > .tvl-btn-solid,
.tvl-mobile-menu > .tvl-btn-outline { justify-content: center; width: 100%; }

/* ══════════ Hero ══════════ */
.tvl-hero { position: relative; width: 100%; }
.tvl-hero__bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F5FAFC 0%, #E9F4F8 100%);
}
.tvl-hero__bg::before,
.tvl-hero__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.6;
}
.tvl-hero__bg::before {
  width: 400px;
  height: 400px;
  background: rgba(1, 169, 199, 0.15); /* Teal glow */
  top: -100px;
  right: 10%;
  animation: tvl-float 8s ease-in-out infinite;
}
.tvl-hero__bg::after {
  width: 300px;
  height: 300px;
  background: rgba(240, 151, 77, 0.12); /* Orange glow */
  bottom: 10%;
  left: 5%;
  animation: tvl-float 10s ease-in-out infinite reverse;
}
.tvl-hero__grid {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items: center;
  min-height: clamp(560px, 70vh, 720px);
}
.tvl-hero__copy { padding: 48px 8px 56px; }
.tvl-hero__title {
  margin: 22px 0 0;
  max-width: 560px;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  color: #0A4A68;
  letter-spacing: -.028em;
}
.tvl-hero__sub {
  margin: 16px 0 0;
  max-width: 500px;
  font-size: 16px;
  line-height: 1.6;
  color: #5E6B7B;
  font-weight: 500;
}
.tvl-hero__proof { margin-top: 20px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.tvl-hero__proof-item { display: flex; align-items: center; gap: 9px; }
.tvl-stars { display: flex; gap: 1px; color: #F0974D; }
.tvl-hero__proof-text { font-size: 13.5px; font-weight: 600; color: #0A4A68; }
.tvl-hero__proof-sep { width: 1px; height: 20px; background: rgba(10, 74, 104, .16); }
.tvl-hero__visual { position: relative; display: flex; align-items: center; justify-content: center; padding: 24px 0; }
.tvl-hero__visual img {
  width: 100%;
  max-width: none;
  height: auto;
  animation: tvl-float 6s ease-in-out infinite;
}

/* Search widget — lives inside the hero copy column */
.tvl-searchwrap { position: relative; z-index: 3; margin-top: 26px; }
.tvl-search {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(6, 32, 47, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  padding: 12px;
  width: 100%;
}
.tvl-search__tabs { display: flex; gap: 4px; padding: 4px 4px 12px; flex-wrap: wrap; }
.tvl-search__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border: none;
  border-radius: 14px;
  background: transparent;
  color: #5E6B7B;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.tvl-search__tab.tvl-active { background: #0A4A68; color: #fff; }
.tvl-search__form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 8px;
  align-items: end;
  background: rgba(246, 248, 250, 0.65);
  border-radius: 18px;
  padding: 12px;
}
.tvl-search__field { display: flex; flex-direction: column; gap: 5px; padding: 4px 12px; }
.tvl-search__field + .tvl-search__field { border-left: 1px solid #E4E9EE; }
.tvl-search__field:nth-of-type(1) {
  grid-column: 1 / -1;
  border-bottom: 1px solid #E4E9EE;
  padding-bottom: 10px;
}
.tvl-search__field:nth-of-type(2) { border-left: none; }
.tvl-search__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #9AA6B2;
}
.tvl-search__input {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #0A4A68;
  width: 100%;
}
.tvl-search__submit {
  grid-column: 1 / -1;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  flex-shrink: 0;
  border: none;
  border-radius: 14px;
  background: #01A9C7;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 10px 22px rgba(1, 169, 199, .34);
  transition: all 0.3s ease;
}
.tvl-search__submit:hover {
  background: #0197b3;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(1, 169, 199, .45);
}

/* Popular chips — inside the hero copy column */
.tvl-popular {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.tvl-popular__label { font-size: 13px; font-weight: 600; color: #9AA6B2; }
.tvl-popular__chip {
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #0A4A68;
  box-shadow: 0 1px 3px rgba(10, 74, 104, .08);
}

/* ══════════ Category quick links ══════════ */
.tvl-cats { max-width: 1320px; margin: 0 auto; padding: 34px 24px 0; }
.tvl-cats__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.tvl-cat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 6px 18px rgba(10, 74, 104, .06);
  transition: all 0.3s ease;
}
.tvl-cat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(10, 74, 104, .12);
}
.tvl-cat__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #E7F7FB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #01A9C7;
  flex-shrink: 0;
}
.tvl-cat__icon--orange { background: #FDEFE1; color: #F0974D; }
.tvl-cat__title { font-size: 15px; font-weight: 700; color: #0A4A68; }
.tvl-cat__sub { font-size: 12px; font-weight: 500; color: #8A97A4; }

/* ══════════ Stats band ══════════ */
.tvl-stats { max-width: 1320px; margin: 0 auto; padding: 44px 24px 0; }
.tvl-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tvl-stat { 
  background: #fff; 
  border-radius: 18px; 
  padding: 22px 24px; 
  box-shadow: 0 6px 18px rgba(10, 74, 104, .06); 
  transition: all 0.3s ease;
}
.tvl-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(10, 74, 104, .12);
}
.tvl-stat__num { font-size: 32px; font-weight: 800; color: #0A4A68; line-height: 1; }
.tvl-stat__label { margin-top: 8px; font-size: 13px; font-weight: 600; color: #5E6B7B; }

/* ══════════ Partner strip ══════════ */
.tvl-partners {
  margin-top: 44px;
  padding: 26px 0;
  background: #fff;
  border-top: 1px solid rgba(10, 74, 104, .05);
  border-bottom: 1px solid rgba(10, 74, 104, .05);
  overflow: hidden;
}
.tvl-partners__label {
  text-align: center;
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #AEB8C2;
}
.tvl-marquee-clip { position: relative; overflow: hidden; }
.tvl-scrolltrack { display: flex; width: max-content; animation: tvl-marquee 32s linear infinite; }
.tvl-marquee-set { display: flex; align-items: center; gap: 64px; padding-right: 64px; }
.tvl-marquee-name { font-size: 26px; font-weight: 800; color: #C3CCD5; white-space: nowrap; }
.tvl-marquee-name--italic { font-style: italic; }

/* ══════════ Shared section scaffolding ══════════ */
.tvl-section { position: relative; overflow: hidden; max-width: 1320px; margin: 0 auto; padding: 80px 24px 0; }
.tvl-section__head-center { text-align: center; max-width: 640px; margin: 0 auto 42px; }
.tvl-section__head-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.tvl-h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  font-weight: 800;
  color: #0A4A68;
  letter-spacing: -.02em;
}
.tvl-section__lede { margin: 14px 0 0; font-size: 16px; line-height: 1.6; color: #5E6B7B; font-weight: 500; }
.tvl-section__aside { max-width: 360px; margin: 0; font-size: 15px; line-height: 1.6; color: #5E6B7B; font-weight: 500; }
.tvl-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #01A9C7;
}

.tvl-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  background: #01A9C7;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(1, 169, 199, .28);
  transition: all 0.3s ease;
}
.tvl-cta-pill:hover { 
  color: #fff;
  background: #0197b3; 
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(1, 169, 199, .4);
}

/* ══════════ How it works ══════════ */
.tvl-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tvl-step { 
  position: relative; 
  background: #fff; 
  border-radius: 22px; 
  padding: 26px 22px 24px; 
  box-shadow: 0 10px 30px rgba(10, 74, 104, .07); 
  transition: all 0.3s ease;
}
.tvl-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 74, 104, .12);
}
.tvl-step__top { display: flex; align-items: center; justify-content: space-between; }
.tvl-step__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #E7F7FB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #01A9C7;
}
.tvl-step__icon--orange { background: #FDEFE1; color: #F0974D; }
.tvl-step__num { font-size: 40px; font-weight: 800; color: #EDF1F4; line-height: 1; }
.tvl-step h3 { margin: 18px 0 0; font-size: 18px; font-weight: 700; color: #0A4A68; }
.tvl-step p { margin: 8px 0 0; font-size: 14px; line-height: 1.55; color: #5E6B7B; }

/* ══════════ Packages ══════════ */
.tvl-pkgs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tvl-pkg { 
  background: #fff; 
  border-radius: 22px; 
  overflow: hidden; 
  box-shadow: 0 10px 30px rgba(10, 74, 104, .07); 
  display: block; 
  transition: all 0.3s ease;
}
.tvl-pkg:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(10, 74, 104, .14);
}
.tvl-pkg:hover .tvl-pkg__media img {
  transform: scale(1.05);
}
.tvl-pkg__media { position: relative; height: 230px; overflow: hidden; }
.tvl-pkg__media img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.5s ease;
}
.tvl-pkg__price {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  font-size: 12px;
  font-weight: 700;
  color: #F0974D;
}
.tvl-pkg__body { padding: 18px 18px 20px; }
.tvl-pkg__loc { display: flex; align-items: center; gap: 6px; color: #8A97A4; font-size: 13px; font-weight: 600; }
.tvl-pkg__name { margin: 8px 0 0; font-size: 19px; font-weight: 700; color: #0A4A68; }
.tvl-pkg__foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #EEF1F4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tvl-pkg__meta { font-size: 13px; font-weight: 600; color: #5E6B7B; }
.tvl-pkg__go {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #E7F7FB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #01A9C7;
}

/* ══════════ Why choose ══════════ */
.tvl-whygrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tvl-why { 
  background: #fff; 
  border-radius: 20px; 
  padding: 26px; 
  box-shadow: 0 8px 24px rgba(10, 74, 104, .06); 
  transition: all 0.3s ease;
}
.tvl-why:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(10, 74, 104, .12);
}
.tvl-why__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #E7F7FB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #01A9C7;
}
.tvl-why__icon--orange { background: #FDEFE1; color: #F0974D; }
.tvl-why h3 { margin: 16px 0 0; font-size: 18px; font-weight: 700; color: #0A4A68; }
.tvl-why p { margin: 8px 0 0; font-size: 14px; line-height: 1.55; color: #5E6B7B; }

/* ══════════ About ══════════ */
.tvl-about__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; align-items: center; }
.tvl-about__collage { position: relative; height: 520px; }
.tvl-about__main {
  position: absolute;
  top: 0;
  left: 0;
  width: 64%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(10, 74, 104, .12);
}
.tvl-about__small {
  position: absolute;
  top: 44px;
  right: 0;
  width: 44%;
  height: 210px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(10, 74, 104, .16);
  border: 5px solid #fff;
}
.tvl-about__main img, .tvl-about__small img { width: 100%; height: 100%; object-fit: cover; }
.tvl-about__statcard {
  position: absolute;
  bottom: 22px;
  right: 0;
  width: 52%;
  background: #0A4A68;
  border-radius: 18px;
  padding: 20px 22px;
  color: #fff;
  box-shadow: 0 16px 34px rgba(10, 74, 104, .24);
}
.tvl-about__statnum { font-size: 34px; font-weight: 800; line-height: 1; color: #64E4F6; }
.tvl-about__stattext { margin-top: 6px; font-size: 13px; font-weight: 500; opacity: .9; }
.tvl-about__body { margin: 18px 0 0; font-size: 16px; line-height: 1.65; color: #5E6B7B; font-weight: 500; }
.tvl-about__tiles { margin-top: 26px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.tvl-tile { 
  background: #fff; 
  border-radius: 16px; 
  padding: 18px; 
  box-shadow: 0 6px 18px rgba(10, 74, 104, .06); 
  transition: all 0.3s ease;
}
.tvl-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(10, 74, 104, .12);
}
.tvl-tile__num { font-size: 28px; font-weight: 800; color: #0A4A68; }
.tvl-tile__label { font-size: 13px; font-weight: 600; color: #5E6B7B; margin-top: 4px; }

/* ══════════ Who it's for ══════════ */
.tvl-who { padding-top: 88px; }
.tvl-who__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.tvl-who__copy { position: relative; }
.tvl-who__title-highlight { color: #01A9C7; }
.tvl-who__body { margin: 18px 0 0; max-width: 520px; font-size: 16px; line-height: 1.65; color: #5E6B7B; font-weight: 500; }
.tvl-who__chips { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.tvl-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  background: #EAF6FA;
  color: #0A4A68;
  font-size: 13.5px;
  font-weight: 600;
}
.tvl-chip__dot { width: 7px; height: 7px; border-radius: 50%; background: #01A9C7; }
.tvl-chip__dot--orange { background: #F0974D; }
.tvl-who__skyline {
  position: absolute;
  left: 167px;
  top: 308px;
  width: 476px;
  max-width: none;
  pointer-events: none;
  z-index: 0;
}
.tvl-about__skyline {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.tvl-dest__skyline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.tvl-who__photos { position: relative; height: 460px; z-index: 1; }
.tvl-who__photo-main {
  position: absolute;
  right: 0;
  top: 20px;
  width: 70%;
  height: 400px;
  border-radius: 52% 48% 46% 54% / 56% 54% 46% 44%;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(10, 74, 104, .16);
}
.tvl-who__photo-tr {
  position: absolute;
  right: 56%;
  top: 0;
  width: 38%;
  height: 210px;
  border-radius: 52% 48% 50% 50% / 58% 42% 58% 42%;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(10, 74, 104, .18);
  border: 6px solid #fff;
}
.tvl-who__photo-bl {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44%;
  height: 210px;
  border-radius: 50% 50% 48% 52% / 52% 48% 52% 48%;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(10, 74, 104, .18);
  border: 6px solid #fff;
}
.tvl-who__photos img { width: 100%; height: 100%; object-fit: cover; }
.tvl-who__statcard {
  position: absolute;
  right: 6px;
  bottom: 6px;
  background: #0A4A68;
  color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 14px 30px rgba(10, 74, 104, .24);
}
.tvl-who__statnum { font-size: 26px; font-weight: 800; line-height: 1; color: #64E4F6; }
.tvl-who__stattext { margin-top: 5px; font-size: 12.5px; font-weight: 500; opacity: .9; }

/* ══════════ Technology ══════════ */
.tvl-tech__grid { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; }
.tvl-tech__checks { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.tvl-check { display: flex; align-items: flex-start; gap: 12px; }
.tvl-check__icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #E7F7FB;
  color: #01A9C7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tvl-check span:last-child { font-size: 15px; font-weight: 600; color: #3F5262; }
.tvl-tech__ctas { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.tvl-btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: #0A4A68;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(10, 74, 104, .2);
}
.tvl-btn-navy:hover { 
  color: #fff; 
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 74, 104, .35);
}
.tvl-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1.5px solid #DCE3E9;
  color: #0A4A68;
  font-size: 15px;
  font-weight: 700;
  transition: border-color 0.3s ease;
}
.tvl-btn-ghost:hover { color: #0A4A68; border-color: #0A4A68; }
.tvl-tech__visual { position: relative; height: 440px; }
.tvl-tech__photo { position: absolute; inset: 0;  overflow: hidden;  }
.tvl-tech__photo img { width: 100%; height: 100%;  }
.tvl-tech__badge-light {
  position: absolute;
  left: -14px;
  bottom: 26px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 16px 34px rgba(10, 74, 104, .2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.tvl-tech__badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #E7F7FB;
  color: #01A9C7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tvl-tech__badge-num { font-size: 15px; font-weight: 800; color: #0A4A68; line-height: 1; }
.tvl-tech__badge-label { font-size: 12px; font-weight: 500; color: #8A97A4; margin-top: 3px; }
.tvl-tech__badge-dark {
  position: absolute;
  right: -10px;
  top: 22px;
  background: #0A4A68;
  color: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 16px 34px rgba(10, 74, 104, .24);
}
.tvl-tech__badge-dark-sub { font-size: 12px; font-weight: 600; opacity: .8; }
.tvl-tech__badge-dark-main { font-size: 15px; font-weight: 800; margin-top: 2px; }

/* ══════════ Destination tabs ══════════ */
.tvl-desttabs { margin-top: 26px; }
.tvl-pilltabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.tvl-pilltab {
  height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1.5px solid #DCE3E9;
  background: #fff;
  color: #5E6B7B;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.tvl-pilltab.tvl-active { border-color: #0A4A68; background: #0A4A68; color: #fff; }
.tvl-destpanel { display: none; }
.tvl-destpanel.tvl-active { display: block; }
.tvl-destpanel__card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 30px;
  box-shadow: 0 10px 30px rgba(10, 74, 104, .06);
}
.tvl-pillset { display: flex; flex-wrap: wrap; gap: 8px; }
.tvl-pill {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 999px;
  background: #F1F5F8;
  font-size: 13px;
  font-weight: 600;
  color: #3F5262;
  transition: background .15s, color .15s;
}
.tvl-pill:hover { background: #E7F7FB; color: #01A9C7; }

/* ══════════ Testimonials ══════════ */
.tvl-rating-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: 0 8px 22px rgba(10, 74, 104, .08);
}
.tvl-rating-card__num { font-size: 16px; font-weight: 800; color: #0A4A68; }
.tvl-rating-card__note { font-size: 13px; font-weight: 600; color: #8A97A4; }
.tvl-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tvl-quote { 
  margin: 0; 
  background: #fff; 
  border-radius: 22px; 
  padding: 28px; 
  box-shadow: 0 10px 30px rgba(10, 74, 104, .07); 
  transition: all 0.3s ease;
}
.tvl-quote:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 74, 104, .14);
}
.tvl-quote .tvl-stars { margin-bottom: 14px; gap: 2px; }
.tvl-quote blockquote { margin: 0; font-size: 15px; line-height: 1.6; color: #3F5262; font-weight: 500; }
.tvl-quote figcaption { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.tvl-quote__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E7F7FB;
  color: #01A9C7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.tvl-quote__avatar--orange { background: #FDEFE1; color: #F0974D; }
.tvl-quote__name { font-size: 15px; font-weight: 700; color: #0A4A68; }
.tvl-quote__role { font-size: 13px; font-weight: 500; color: #8A97A4; }

/* ══════════ Follow the adventure ══════════ */
.tvl-subscribe {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  box-shadow: 0 6px 18px rgba(10, 74, 104, .08);
  max-width: 100%;
}
.tvl-subscribe input {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #0A4A68;
  width: 220px;
  max-width: 44vw;
}
.tvl-subscribe button {
  height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  border: none;
  background: #F0974D;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.tvl-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 16px;
}
.tvl-gallery__cell { 
  border-radius: 20px; 
  overflow: hidden; 
  box-shadow: 0 10px 26px rgba(10, 74, 104, .08); 
  transition: all 0.4s ease;
}
.tvl-gallery__cell:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 36px rgba(10, 74, 104, .16);
  z-index: 10;
}
.tvl-gallery__cell--tall { grid-row: span 2; }
.tvl-gallery__cell img { width: 100%; height: 100%; object-fit: cover; }
.tvl-gallery__card {
  border-radius: 20px;
  background: #0A4A68;
  color: #fff;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(10, 74, 104, .2);
}
.tvl-gallery__card-num { font-size: 38px; font-weight: 800; line-height: 1; color: #64E4F6; }
.tvl-gallery__card-title { margin-top: 10px; font-size: 16px; font-weight: 700; line-height: 1.25; }
.tvl-gallery__card-sub { margin-top: 8px; font-size: 13px; font-weight: 500; opacity: .82; }

/* ══════════ FAQ ══════════ */
.tvl-faq__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.tvl-faq__list { display: flex; flex-direction: column; gap: 12px; }
.tvl-faq__item { background: #fff; border-radius: 16px; padding: 20px 22px; box-shadow: 0 4px 14px rgba(10, 74, 104, .05); }
.tvl-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #0A4A68;
}
.tvl-faq__item summary::-webkit-details-marker { display: none; }
.tvl-faq__plus { color: #01A9C7; font-size: 22px; font-weight: 400; flex-shrink: 0; }
.tvl-faq__item[open] .tvl-faq__plus { transform: rotate(45deg); }
.tvl-faq__item p { margin: 12px 0 0; font-size: 14px; line-height: 1.6; color: #5E6B7B; }
.tvl-btn-outline-lg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1.5px solid #0A4A68;
  color: #0A4A68;
  font-size: 15px;
  font-weight: 700;
}

/* ══════════ Explore (tabbed link directory) ══════════ */
.tvl-explore__tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.tvl-explore__tab {
  height: 42px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1.5px solid #DCE3E9;
  background: #fff;
  color: #5E6B7B;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.tvl-explore__tab.tvl-active { border-color: #0A4A68; background: #0A4A68; color: #fff; }
.tvl-explore__panel {
  display: none;
  background: #fff;
  border-radius: 22px;
  padding: 28px 30px;
  box-shadow: 0 10px 30px rgba(10, 74, 104, .06);
}
.tvl-explore__panel.tvl-active { display: block; }
.tvl-explore__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 40px; }
.tvl-explore__cols--4 { grid-template-columns: repeat(4, 1fr); }
.tvl-explore__region {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #01A9C7;
}
.tvl-explore__group { margin-bottom: 20px; }
.tvl-explore__group:last-child { margin-bottom: 0; }

/* ══════════ CTA band ══════════ */
.tvl-ctaband { max-width: 1320px; margin: 0 auto; padding: 82px 24px 0; }
.tvl-ctaband__inner {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 60px 56px;
  background: linear-gradient(120deg, #01A9C7 0%, #0A4A68 100%);
  text-align: center;
}
.tvl-ctaband__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .1) 1.4px, transparent 1.4px);
  background-size: 24px 24px;
}
.tvl-ctaband__glow-tl {
  position: absolute;
  top: -50px;
  left: -30px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .16), transparent 70%);
}
.tvl-ctaband__glow-br {
  position: absolute;
  bottom: -70px;
  right: -20px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 151, 77, .28), transparent 70%);
}
.tvl-ctaband__content { position: relative; max-width: 640px; margin: 0 auto; }
.tvl-ctaband__title {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.tvl-ctaband__sub { margin: 16px 0 0; font-size: 17px; line-height: 1.55; color: rgba(255, 255, 255, .9); font-weight: 500; }
.tvl-ctaband__actions { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.tvl-btn-white {
  display: inline-flex;
  align-items: center;
  height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: #0A4A68;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}
.tvl-btn-white:hover { color: #0A4A68; }
.tvl-btn-white-outline {
  display: inline-flex;
  align-items: center;
  height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, .6);
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.tvl-btn-white-outline:hover { color: #fff; border-color: #fff; }

/* Bottom breathing room before footer */
.tvl-prefooter { padding-bottom: 70px; }

/* ══════════ RTL ══════════ */
[dir="rtl"] .tvl-header__nav { margin-left: 0; margin-right: 12px; }
[dir="rtl"] .tvl-header__auth { margin-left: 0; margin-right: auto; }
[dir="rtl"] .tvl-dropdown { right: auto; left: 0; }
[dir="rtl"] .tvl-search__field + .tvl-search__field { border-left: none; border-right: 1px solid #E4E9EE; }
[dir="rtl"] .tvl-search__field:nth-of-type(2) { border-right: none; }
[dir="rtl"] .tvl-who__skyline { left: auto; right: 167px; }

/* ══════════ Responsive ══════════ */
@media (max-width: 1080px) {
  .tvl-hero__grid { grid-template-columns: 1fr; min-height: 0; gap: 0; }
  .tvl-hero__visual { order: -1; padding: 32px 0 0; }
  .tvl-hero__visual img { max-width: 560px; }
  .tvl-hero__copy { padding: 8px 8px 40px; }
  .tvl-cats__grid { grid-template-columns: repeat(2, 1fr); }
  .tvl-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .tvl-steps { grid-template-columns: repeat(2, 1fr); }
  .tvl-pkgs { grid-template-columns: repeat(2, 1fr); }
  .tvl-whygrid { grid-template-columns: repeat(2, 1fr); }
  .tvl-about__grid, .tvl-who__grid, .tvl-tech__grid, .tvl-faq__grid { grid-template-columns: 1fr; }
  .tvl-about__collage { height: 420px; }
  .tvl-who__skyline { display: none; }
  .tvl-quotes { grid-template-columns: 1fr; }
  .tvl-explore__cols, .tvl-explore__cols--4 { grid-template-columns: repeat(2, 1fr); }
  .tvl-search__form { grid-template-columns: 1fr 1fr; }
  .tvl-search__field + .tvl-search__field { border-left: none; }
  .tvl-search__submit { grid-column: 1 / -1; justify-content: center; }
}

@media (max-width: 768px) {
  .tvl-header__nav { display: none; }
  .tvl-header__auth { display: none; }
  .tvl-hamburger { display: flex; margin-left: auto; }
  [dir="rtl"] .tvl-hamburger { margin-left: 0; margin-right: auto; }
  .tvl-section { padding: 56px 16px 0; }
  .tvl-cats { padding: 24px 16px 0; }
  .tvl-cats__grid { grid-template-columns: 1fr; }
  .tvl-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .tvl-steps, .tvl-pkgs, .tvl-whygrid { grid-template-columns: 1fr; }
  .tvl-search__form { grid-template-columns: 1fr; }
  .tvl-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .tvl-gallery__cell--tall { grid-row: auto; min-height: 200px; }
  .tvl-ctaband { padding: 56px 16px 0; }
  .tvl-ctaband__inner { padding: 44px 24px; }
  .tvl-who__photos { height: 380px; }
  .tvl-about__collage { height: 340px; }
  .tvl-explore__cols, .tvl-explore__cols--4 { grid-template-columns: 1fr; }
}

/* ══════════ Width alignment ══════════ */
/* The shared footer's box is 1300px wide; align it with the 1240px sections. */
.tvl-page .standard-footer-wrap { padding-left: 24px; padding-right: 24px; }
.tvl-page .standard-footer-box { width: 1240px; }

/* ══════════ Compact search widget ══════════ */
.tvl-page .tvl-search { padding: 10px; border-radius: 18px; }
.tvl-page .tvl-search__tabs { padding: 2px 2px 8px; }
.tvl-page .tvl-search__tab { height: 34px; padding: 0 12px; font-size: 13px; border-radius: 10px; gap: 6px; }
.tvl-page .tvl-search__tab svg { width: 14px; height: 14px; }
.tvl-page .tvl-search__form { padding: 8px; gap: 6px; border-radius: 14px; }
.tvl-page .tvl-search__field { padding: 2px 10px; gap: 3px; }
.tvl-page .tvl-search__field:nth-of-type(1) { padding-bottom: 7px; }
.tvl-page .tvl-search__label { font-size: 10px; }
.tvl-page .tvl-search__input { font-size: 14px; }
.tvl-page .tvl-search__submit { height: 44px; font-size: 14px; border-radius: 12px; margin-top: 2px; }
.tvl-page .tvl-search__submit svg { width: 17px; height: 17px; }
