:root {
  --teal: #078d84;
  --teal-dark: #027269;
  --blue: #0d6d9d;
  --yellow: #ffd817;
  --ink: #17211d;
  --muted: #66736e;
  --line: #e4ebe8;
  --paper: #f7faf8;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
}
body.menu-open {
  overflow: hidden;
}
body.search-open {
  overflow: hidden;
}
body.callback-open {
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(260px, 360px) auto auto auto;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  padding: 26px clamp(28px, 6vw, 128px);
  color: var(--white);
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}
.topbar.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(7, 141, 132, .96);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(15px);
}
.topbar.menu-open .logo {
  position: relative;
  z-index: 61;
}
.topbar.menu-open {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.topbar.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 54;
  background: rgba(0, 0, 0, .66);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
}
.brand-logo-link {
  min-width: 136px;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}
.brand-logo {
  display: block;
  width: 146px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}
.logo-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #02a99d;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.15);
}
.logo-icon::before,
.logo-icon::after,
.logo-icon span {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 999px;
  transform-origin: center;
}
.logo-icon::before { width: 3px; height: 29px; transform: rotate(35deg); }
.logo-icon::after { width: 3px; height: 29px; transform: rotate(-35deg); }
.logo-icon span { width: 30px; height: 3px; bottom: 15px; }
.logo-text {
  display: grid;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.logo-text strong {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 1px;
}
.logo-text strong span {
  color: var(--yellow);
  font-size: 11px;
  margin-left: 2px;
  vertical-align: 6px;
}
.logo-text small {
  margin-top: 3px;
  font-size: 7px;
  font-weight: 700;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-size: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}
.call-btn span { font-size: 17px; }

.search-box {
  justify-self: end;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 46px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--blue);
}
.search-box label {
  padding-left: 14px;
  color: var(--yellow);
}
.search-box input {
  min-width: 0;
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 10px;
  color: var(--white);
  background: transparent;
  font-weight: 800;
  font-size: 15px;
}
.search-box input::-webkit-search-cancel-button { display: none; }
.search-box button {
  width: 44px;
  height: 24px;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.45);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-items: start;
  justify-items: center;
  padding-top: 48px;
  background: rgba(0, 0, 0, .72);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.search-overlay::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 149px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(220, 112, 91, .22) inset;
}
.search-overlay-form {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 26px;
}
.overlay-input {
  display: grid;
  grid-template-columns: 36px minmax(240px, 1fr) auto;
  align-items: center;
  width: min(504px, calc(100vw - 118px));
  height: 67px;
  padding: 0 8px;
  border: 1px solid #222a35;
  border-radius: 8px;
  background: #fff;
}
.overlay-input span {
  display: grid;
  place-items: center;
  color: #2d333a;
}
.overlay-input svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.overlay-input input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  color: #101418;
  font-size: 18px;
  font-weight: 400;
}
.overlay-input input::placeholder {
  color: #c9cbd4;
}
.overlay-input button {
  height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #08aaa8;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.overlay-input button:hover {
  background: #078d84;
  transform: translateY(-1px);
}
.search-close {
  position: relative;
  width: 55px;
  height: 54px;
  border: 1px solid #222a35;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}
.search-close::before,
.search-close::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 26px;
  width: 23px;
  height: 2px;
  border-radius: 2px;
  background: #111;
}
.search-close::before {
  transform: rotate(45deg);
}
.search-close::after {
  transform: rotate(-45deg);
}
.search-close:hover {
  background: #f4f7f7;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 16px;
}
.main-nav a,
.main-nav button {
  position: relative;
  border: 0;
  padding: 7px 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
  white-space: nowrap;
}
.main-nav .active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 3px;
  background: var(--white);
  border-radius: 99px;
}
.main-nav button span { font-size: 16px; }
.main-nav button span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  font-size: 0;
  line-height: 0;
  transform: translateY(-2px) rotate(45deg);
  vertical-align: middle;
}

@media (max-width: 1280px) {
  .main-nav.is-open .nav-category {
    display: block;
    width: 100%;
  }
  .main-nav.is-open .category-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
  .main-nav.is-open .mega-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 8px 0 16px;
    padding: 14px;
    grid-template-columns: 1fr 1fr;
    gap: 14px 22px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .main-nav.is-open .nav-category.is-open .mega-menu {
    display: grid;
  }
  .main-nav.is-open .mega-menu h3 {
    font-size: 15px;
    margin-bottom: 7px;
    padding-bottom: 7px;
  }
  .main-nav.is-open .mega-menu a {
    display: block;
    width: auto;
    padding: 0;
    margin: 0 0 8px;
    color: #111;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    text-shadow: none;
  }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 350px;
    padding-top: 112px;
  }
  .page-hero h1 {
    font-size: 42px;
  }
  .page-hero nav {
    font-size: 13px;
  }
  .upcoming-list-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .upcoming-list-grid .trip-card .content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
  .upcoming-list-grid .trip-card .content > .trip-details,
  .upcoming-list-grid .trip-card .content > .price-box,
  .upcoming-list-grid .trip-card .content > .card-actions {
    grid-column: 1;
  }
  .upcoming-list-grid .trip-card .content > .price-box {
    grid-row: 3;
    padding: 12px 0 0;
  }
  .upcoming-list-grid .trip-card .content > .card-actions {
    grid-row: 4;
  }
  .upcoming-row .trip-card .content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
  .upcoming-row .trip-card .content > .trip-details,
  .upcoming-row .trip-card .content > .price-box,
  .upcoming-row .trip-card .content > .card-actions {
    grid-column: 1;
  }
  .upcoming-row .trip-card .content > .price-box {
    grid-row: 3;
    padding: 12px 0 0;
  }
  .upcoming-row .trip-card .content > .card-actions {
    grid-row: 4;
  }
  .trip-details {
    border-right: 0;
    border-bottom: 1px solid #d7dfe3;
    padding: 0 0 12px;
  }
  .search-overlay {
    padding-top: 28px;
  }
  .search-overlay::before {
    height: 132px;
  }
  .search-overlay-form {
    width: calc(100vw - 28px);
    gap: 10px;
  }
  .overlay-input {
    width: 100%;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    height: 58px;
  }
  .overlay-input input {
    font-size: 15px;
  }
  .overlay-input button {
    height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }
  .search-close {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
  }
  .brand-logo-link {
    min-width: 112px;
    padding: 4px 6px;
  }
  .brand-logo {
    width: 118px;
    max-height: 48px;
  }
  .main-nav.is-open .mega-menu {
    grid-template-columns: 1fr;
    max-height: 56vh;
    overflow-y: auto;
  }
}

.nav-category > .mega-menu {
  left: auto !important;
  right: 0 !important;
  width: min(914px, calc(100vw - 44px));
  transform: translateY(8px) !important;
}

.nav-category:hover > .mega-menu,
.nav-category.is-open > .mega-menu {
  transform: translateY(0) !important;
}

.nav-upcoming > .upcoming-menu {
  transform: translateX(-50%) translateY(8px);
}

.nav-upcoming:hover > .upcoming-menu,
.nav-upcoming.is-open > .upcoming-menu {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1280px) {
  .main-nav.is-open .nav-upcoming > .upcoming-menu,
  .main-nav.is-open .nav-category > .mega-menu {
    transform: none !important;
  }
}

/* Final nav dropdown overrides */
.nav-category > .mega-menu {
  left: auto;
  right: 0;
  width: min(914px, calc(100vw - 44px));
  transform: translateY(8px);
}

.nav-category:hover > .mega-menu,
.nav-category.is-open > .mega-menu {
  transform: translateY(0);
}

.nav-upcoming > .upcoming-menu {
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(8px);
}

.nav-upcoming:hover > .upcoming-menu,
.nav-upcoming.is-open > .upcoming-menu {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1280px) {
  .main-nav.is-open .nav-upcoming > .upcoming-menu,
  .main-nav.is-open .nav-category > .mega-menu {
    transform: none;
  }
}

.nav-upcoming,
.nav-category {
  position: relative;
}

.upcoming-toggle span,
.category-toggle span {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}

.nav-upcoming.is-open .upcoming-toggle span,
.nav-upcoming:hover .upcoming-toggle span,
.nav-category.is-open .category-toggle span,
.nav-category:hover .category-toggle span {
  transform: translateY(2px) rotate(225deg);
}

.upcoming-menu {
  position: absolute;
  top: calc(100% + 13px);
  left: 50%;
  z-index: 80;
  width: 165px;
  padding: 12px 15px 10px;
  border-radius: 5px;
  background: #fff;
  color: #111;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.upcoming-menu::before,
.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 16px;
}

.nav-upcoming:hover .upcoming-menu,
.nav-upcoming.is-open .upcoming-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.upcoming-menu h3,
.mega-menu h3 {
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 2px dashed #4b5563;
  color: #111;
  font-size: 16px;
  line-height: 1.1;
}

.upcoming-menu a,
.mega-menu a {
  display: block;
  width: auto;
  margin: 0 0 10px;
  padding: 0;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-shadow: none;
}

.upcoming-menu a:hover,
.mega-menu a:hover {
  color: var(--teal);
}

.nav-category .mega-menu {
  left: auto;
  right: 0;
  width: min(914px, calc(100vw - 44px));
  transform: translateY(8px);
}

.nav-category:hover .mega-menu,
.nav-category.is-open .mega-menu {
  transform: translateY(0);
}

@media (max-width: 1280px) {
  .main-nav.is-open .nav-upcoming,
  .main-nav.is-open .nav-category {
    display: block;
    width: 100%;
  }

  .main-nav.is-open .upcoming-toggle,
  .main-nav.is-open .category-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }

  .main-nav.is-open .upcoming-menu,
  .main-nav.is-open .mega-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 8px 0 16px;
    padding: 14px;
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav.is-open .upcoming-menu {
    width: 100%;
  }

  .main-nav.is-open .mega-menu {
    grid-template-columns: 1fr 1fr;
    gap: 14px 22px;
  }

  .main-nav.is-open .nav-upcoming.is-open .upcoming-menu {
    display: block;
  }

  .main-nav.is-open .nav-category.is-open .mega-menu {
    display: grid;
  }

  .main-nav.is-open .upcoming-menu a,
  .main-nav.is-open .mega-menu a {
    display: block;
    width: auto;
    margin: 0 0 8px;
    padding: 0;
    color: #111;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    text-shadow: none;
  }
}

@media (max-width: 640px) {
  .main-nav.is-open .mega-menu {
    grid-template-columns: 1fr;
    max-height: 56vh;
    overflow-y: auto;
  }
}
.nav-category {
  position: relative;
}
.nav-category.is-open .category-toggle span,
.nav-category:hover .category-toggle span {
  transform: translateY(2px) rotate(225deg);
}
.mega-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: auto;
  right: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1.05fr 1.6fr .65fr .8fr;
  gap: 34px;
  width: min(914px, calc(100vw - 44px));
  padding: 12px 18px 10px;
  border-radius: 4px;
  background: var(--white);
  color: #111;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.nav-category:hover .mega-menu,
.nav-category.is-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-menu h3 {
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 2px dashed #4b5563;
  color: #111;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
}
.mega-menu a {
  display: block;
  margin: 0 0 10px;
  color: #1f1f1f;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  text-shadow: none;
  white-space: normal;
}
.mega-menu a:hover {
  color: var(--teal);
}
.drawer-login,
.drawer-only {
  display: none;
}
.main-nav.is-open {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: block;
  width: min(628px, 78vw);
  padding: 168px 40px 42px;
  background: var(--teal);
  box-shadow: none;
  pointer-events: auto;
  transform: translateX(0);
  opacity: 1;
}
.main-nav.is-open a,
.main-nav.is-open button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.25;
  text-shadow: none;
}
.main-nav.is-open .active::after {
  display: none;
}
.main-nav.is-open .drawer-only {
  display: flex;
}
.main-nav.is-open .drawer-login {
  position: absolute;
  top: 36px;
  right: 101px;
  display: inline-flex;
  width: auto;
  height: 41px;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  border-radius: 7px;
  color: var(--white);
  background: rgba(0, 174, 178, .65);
  font-size: 18px;
  font-weight: 600;
}
.main-nav.is-open .nav-category {
  display: block;
  width: 100%;
}
.main-nav.is-open .category-toggle {
  display: flex;
  width: 100%;
}
.main-nav.is-open .mega-menu {
  position: static;
  display: none;
  width: 100%;
  margin: 8px 0 16px;
  padding: 14px;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  border-radius: 8px;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.main-nav.is-open .nav-category.is-open .mega-menu {
  display: grid;
}
.main-nav.is-open .mega-menu h3 {
  font-size: 15px;
}
.main-nav.is-open .mega-menu a {
  display: block;
  width: auto;
  padding: 0;
  margin-bottom: 8px;
  color: #111;
  font-size: 14px;
  font-weight: 400;
}

.login-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 15px;
  border-radius: 7px;
  background: var(--white);
  color: #020202;
  font-size: 18px;
}
.login-btn span {
  font-size: 22px;
  line-height: 1;
}
.hamburger {
  position: relative;
  z-index: 60;
  width: 50px;
  height: 44px;
  border: 0;
  border-radius: 7px;
  background: var(--white);
  cursor: pointer;
}
.hamburger.is-open {
  border-radius: 50%;
  background: #14b5b7;
  width: 48px;
  height: 48px;
}
.hamburger.is-open span {
  height: 3px;
  background: var(--white);
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 4px;
  margin: 4px auto;
  border-radius: 999px;
  background: #101010;
  transition: transform .22s ease, opacity .22s ease, background .22s ease;
}

.hero {
  position: relative;
  min-height: 857px;
  height: 89vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  background:
    linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.18)),
    url("https://images.pexels.com/photos/19652058/pexels-photo-19652058.jpeg?auto=compress&cs=tinysrgb&w=1920") center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 53% 57%, rgba(0,0,0,0) 0 18%, rgba(0,0,0,.18) 48%),
    linear-gradient(90deg, rgba(0,0,0,.18), rgba(0,0,0,.02) 45%, rgba(0,0,0,.2));
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.2);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  margin-top: 80px;
  text-align: center;
  color: var(--white);
}
.script-title {
  margin: 0 0 4px;
  color: var(--yellow);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 5px 14px rgba(0,0,0,.35);
}
.hero h1 {
  margin: 0;
  font-size: clamp(46px, 4.6vw, 68px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 6px 16px rgba(0,0,0,.45);
}
.hero h1 span {
  display: block;
  margin-top: 16px;
}
.hero mark {
  position: relative;
  display: inline-grid;
  width: 292px;
  height: 68px;
  place-items: center;
  padding: 0 34px 4px;
  color: var(--yellow);
  background: transparent;
  isolation: isolate;
  overflow: visible;
  white-space: nowrap;
}
.hero mark span {
  display: inline-block;
  position: relative;
  z-index: 1;
  max-width: 238px;
  overflow: hidden;
  font-size: .78em;
  line-height: 1;
  text-overflow: clip;
}
.hero mark span.is-long {
  font-size: .66em;
}
.hero mark::before {
  content: "";
  position: absolute;
  inset: 3px 0 0;
  z-index: -1;
  border: 5px solid rgba(255,255,255,.92);
  border-radius: 50%;
  transform: rotate(1deg);
}
.hero mark::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 10px;
  height: 3px;
  border-top: 3px dashed var(--yellow);
  border-radius: 50%;
}
.tagline {
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 700;
  text-shadow: 0 5px 14px rgba(0,0,0,.5);
}

.stats-strip {
  position: relative;
  z-index: 5;
  width: min(1595px, calc(100% - 230px));
  min-height: 106px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 88px);
  margin: -56px auto 42px;
  padding: 16px clamp(44px, 9vw, 176px);
  border: 5px solid var(--white);
  border-radius: 64px;
  background: var(--teal);
  color: var(--white);
  box-shadow: none;
}
.stats-strip i {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--white);
}
.stat {
  display: grid;
  grid-template-columns: 50px auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  transition: transform .22s ease;
}
.stat:hover {
  transform: translateY(-2px);
}
.stat-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  font-weight: 900;
  font-size: 23px;
}
.google { color: #4285f4; }
.insta { color: #e84393; font-size: 36px; }
.smile { color: #f3a51a; }
.stat strong,
.stat b {
  display: inline;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}
.stat small {
  display: block;
  margin-top: 2px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: 48px clamp(18px, 6vw, 130px);
}
#categories {
  padding-top: 14px;
  padding-bottom: 60px;
}
.section-title {
  margin-bottom: 24px;
}
.section-title.row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.section-title h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1;
  font-weight: 800;
}
.section-title p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.show-all {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
}
.show-all.outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid #121917;
  border-radius: 7px;
  color: #020707;
  background: transparent;
  font-size: 16px;
}
.show-all.outline span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  line-height: 1;
  font-size: 20px;
  font-family: Arial, sans-serif;
}

.wide-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}
.wide-card,
.destination-card,
.trip-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(0,0,0,.1);
}
.wide-card {
  aspect-ratio: 1.66 / 1;
  min-height: 0;
  overflow: visible;
  box-shadow: none;
  transition: transform .3s ease;
}
.wide-card::before,
.wide-card::after {
  pointer-events: none;
}
.wide-card img {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,.16);
}
.wide-card img,
.destination-card img,
.trip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.destination-card .image::after,
.trip-card .image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.68));
}
.wide-card strong {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 50%;
  z-index: 2;
  color: var(--white);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.02;
  text-align: center;
  text-shadow: 0 3px 12px rgba(0,0,0,.45);
  transform: translateY(-50%);
}
.wide-card:hover {
  transform: translateY(-4px);
}
.wide-card:hover img,
.destination-card:hover img,
.trip-card:hover img {
  transform: scale(1.035);
}
.wide-card {
  isolation: isolate;
}
.wide-card::before,
.wide-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 5px solid rgba(170, 218, 108, .8);
  border-radius: 12px;
  opacity: 0;
  transform: rotate(0deg) scale(.98);
  transition: transform .35s ease, inset .35s ease, opacity .25s ease;
}
.wide-card::after {
  inset: 0;
  border-color: rgba(80, 211, 218, .55);
  transform: rotate(0deg) scale(.98);
}
.wide-card:hover::before {
  opacity: 1;
  transform: rotate(-7deg) scale(1);
  inset: -16px 20px -18px 20px;
}
.wide-card:hover::after {
  opacity: 1;
  transform: rotate(-7deg) scale(1);
  inset: -3px 8px -31px -16px;
}
.monsoon-card .promo-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  padding-left: 42%;
  color: #082033;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
}
.monsoon-card .promo-copy span {
  justify-self: start;
  margin-left: -84%;
  color: #477d2a;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(15px, 1.4vw, 22px);
  line-height: 1.15;
  transform: rotate(-8deg);
}
.monsoon-card .promo-copy strong {
  position: static;
  transform: none;
  color: #0b2a42;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(31px, 3.2vw, 50px);
  line-height: .9;
  text-shadow: 0 2px 0 rgba(255,255,255,.55);
}
.monsoon-card .promo-copy em {
  color: #6a9224;
  font-style: italic;
  font-weight: 900;
}
.monsoon-card .promo-copy small {
  margin-top: 6px;
  font-size: clamp(8px, .8vw, 11px);
  font-weight: 700;
}
.dham-card strong {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.promo-slider-section {
  padding: 14px clamp(18px, 6vw, 130px) 58px;
  background: #eef7f6;
}
.promo-slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.promo-track {
  position: relative;
  min-height: clamp(250px, 21vw, 405px);
}
.promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.promo-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.promo-slide img {
  width: 100%;
  height: 100%;
  min-height: clamp(250px, 21vw, 405px);
  object-fit: cover;
  border-radius: 10px;
}
.promo-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(255,255,255,.15), rgba(255,255,255,.72) 68%, rgba(255,255,255,.9));
}
.slide-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: .75fr 1.2fr .75fr;
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 4vw, 56px);
  color: #132033;
}
.slide-copy span {
  color: #4f842c;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(23px, 2.1vw, 38px);
  line-height: 1.1;
  transform: rotate(-6deg);
}
.slide-copy strong {
  justify-self: center;
  color: #182269;
  font-size: clamp(46px, 5.5vw, 102px);
  line-height: .82;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 2px 0 rgba(255,255,255,.55);
}
.slide-copy em {
  color: #4b8d29;
  font-style: italic;
}
.slide-copy p {
  grid-column: 2;
  margin: 0;
  justify-self: center;
  font-size: clamp(16px, 1.6vw, 27px);
  font-weight: 700;
}
.slide-copy b {
  justify-self: end;
  color: #222;
  font-size: clamp(20px, 2vw, 33px);
  line-height: 1.2;
  text-align: center;
}
.slide-copy mark {
  display: inline-block;
  margin-top: 6px;
  color: #4b8d29;
  background: transparent;
  font-size: clamp(28px, 3vw, 52px);
}
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}
.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.75);
  cursor: pointer;
}
.slider-dots button.is-active {
  width: 26px;
  border-radius: 99px;
  background: var(--teal);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.destination-card {
  min-height: 480px;
  border-radius: 7px;
  box-shadow: none;
}
.destination-card .image {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
}
.destination-card .image img {
  border-radius: 7px;
}
.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.62));
  transition: background .28s ease;
}
.destination-card .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  min-height: 74px;
  padding: 17px 15px 15px;
  color: var(--white);
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(7px);
  transform: translateY(38px);
  transition: transform .3s ease, min-height .3s ease, background .3s ease;
}
.destination-card h3 {
  width: fit-content;
  margin: 0;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--white);
  font-size: 24px;
  line-height: 1.05;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.destination-card p {
  margin: 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}
.destination-card small {
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}
.hidden-info {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.hidden-info i {
  display: block;
  width: 1px;
  height: 15px;
  background: rgba(255,255,255,.8);
}
.destination-card:hover::before {
  background: linear-gradient(180deg, rgba(0,0,0,.03) 36%, rgba(0,0,0,.78));
}
.destination-card:hover .content {
  min-height: 92px;
  background: rgba(0,0,0,.45);
  transform: translateY(0);
}
.destination-card:hover .hidden-info {
  opacity: 1;
  transform: translateY(0);
}

.trek-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.trek-grid .destination-card {
  min-height: 340px;
  border-radius: 7px;
}
.trek-grid .destination-card .image img {
  border-radius: 7px;
}
.trek-grid .destination-card::before {
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.18) 45%, rgba(0,0,0,.72));
}
.trek-grid .destination-card .content {
  min-height: 78px;
  padding: 18px 15px 15px;
  background: transparent;
  backdrop-filter: none;
  transform: translateY(35px);
}
.trek-grid .destination-card h3 {
  max-width: 100%;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.12;
  border-bottom-width: 2px;
}
.trek-grid .destination-card:hover .content {
  min-height: 98px;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(5px);
  transform: translateY(0);
}

.trip-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 32%);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
}
.trip-row::-webkit-scrollbar { height: 7px; }
.trip-row::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: #9bbab4;
}
.trip-card {
  scroll-snap-align: start;
}
.trip-card .image {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.trip-card .tag {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border-radius: 99px;
  background: var(--yellow);
  color: #111;
  font-weight: 900;
}
.trip-card .content {
  padding: 17px;
}
.trip-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}
.trip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.price-row strong {
  color: var(--teal-dark);
  font-size: 19px;
}
.price-row span {
  padding: 8px 13px;
  border-radius: 99px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.upcoming-section {
  position: relative;
  border-top: 4px solid var(--teal);
  background: #eef7f6;
  padding-top: 26px;
  padding-bottom: 54px;
}
.upcoming-section .section-title {
  margin-bottom: 24px;
}
.upcoming-section .section-title h2 {
  font-size: clamp(30px, 3vw, 42px);
}
.upcoming-wrap {
  position: relative;
}
.upcoming-row {
  grid-auto-columns: calc((100% - 96px) / 4);
  gap: 32px;
  overflow-x: auto;
  padding: 0 0 4px;
  scrollbar-width: none;
}
.upcoming-row::-webkit-scrollbar {
  display: none;
}
.upcoming-row .trip-card {
  display: flex;
  min-height: 492px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #d5dfdc;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(15, 54, 50, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}
.upcoming-row .trip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(15, 54, 50, .14);
}
.upcoming-row .trip-card .image {
  height: 232px;
  flex: 0 0 232px;
  border: 0;
  border-radius: 10px 10px 0 0;
  background: #eef7f6;
}
.upcoming-row .trip-card .image::after {
  display: none;
}
.upcoming-row .trip-card img {
  border-radius: 10px 10px 0 0;
}
.upcoming-row .trip-card .tag {
  top: 10px;
  left: 10px;
  padding: 4px 15px;
  background: var(--white);
  color: #000;
  font-size: 14px;
  font-weight: 400;
}
.duration {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 138px;
  padding: 7px 15px 8px;
  border-radius: 999px;
  background: var(--white);
  color: #111;
  box-shadow: 0 5px 16px rgba(0,0,0,.12);
  font-size: 12px;
  font-weight: 500;
}
.duration svg,
.trip-details svg,
.card-actions svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.upcoming-row .trip-card .content {
  position: static;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(104px, .86fr);
  grid-template-rows: auto auto 1fr;
  flex: 1;
  border: 0;
  border-radius: 0;
  padding: 22px 20px 20px;
  background: var(--white);
}
.upcoming-row .trip-card h3 {
  grid-column: 1 / -1;
  grid-row: 1;
  overflow: hidden;
  min-height: 48px;
  margin: 0 0 18px;
  color: #111;
  font-size: clamp(17px, 1.1vw, 20px);
  font-weight: 600;
  line-height: 1.12;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.trip-details {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding-right: 14px;
  border-right: 1px solid #9fa6b5;
}
.trip-details div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #111;
  font-size: 13px;
}
.trip-details span {
  display: inline-flex;
  flex: 0 0 16px;
  color: #111;
}
.trip-details b {
  overflow: hidden;
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.upcoming-row .trip-card .content > .trip-details {
  grid-column: 1;
  grid-row: 2;
}
.upcoming-row .trip-card .content > .price-box {
  grid-column: 2;
  grid-row: 2;
}
.upcoming-row .trip-card .content > .card-actions {
  grid-column: 1 / -1;
  grid-row: 3;
}
.price-box {
  min-width: 0;
  padding-left: 16px;
}
.price-box small {
  display: block;
  color: #7b1c25;
  font-size: 8px;
}
.price-box s {
  margin-right: 2px;
}
.price-box strong {
  display: block;
  color: #0c0c0c;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1;
}
.price-box em {
  color: #68707b;
  font-size: 11px;
  font-style: normal;
}
.card-actions {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-self: end;
  padding-top: 22px;
}
.card-actions button,
.card-actions span,
.card-actions a {
  display: grid;
  place-items: center;
  height: 58px;
  border-radius: 7px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.card-actions button {
  border: 1px solid #00aeb0;
  color: #02a8aa;
  background: var(--white);
  cursor: pointer;
}
.card-actions button svg {
  width: 27px;
  height: 27px;
  fill: #02a8aa;
  stroke-width: 1.8;
}
.card-actions button:hover svg {
  fill: #fff;
}
.card-actions button:hover {
  color: var(--white);
  background: #08aaa8;
  box-shadow: 0 8px 18px rgba(8,170,168,.22);
  transform: translateY(-2px);
}
.card-actions span,
.card-actions a {
  color: var(--white);
  background: #08aaa8;
  font-size: 17px;
  font-weight: 700;
}
.card-actions span:hover,
.card-actions a:hover {
  background: #078d84;
  box-shadow: 0 10px 20px rgba(8,170,168,.28);
  transform: translateY(-2px);
}
.card-actions button:active,
.card-actions span:active,
.card-actions a:active {
  transform: translateY(0);
}
.next-trek {
  position: absolute;
  right: -22px;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 0;
  border-radius: 50%;
  color: #00a6a5;
  background: var(--white);
  box-shadow: 0 5px 17px rgba(0,0,0,.16);
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
}

.cta-treasure {
  padding: 50px clamp(18px, 3vw, 50px);
  background:
    linear-gradient(rgba(0,0,0,.56), rgba(0,0,0,.56)),
    url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1900&q=85") center / cover no-repeat;
}
.cta-box {
  min-height: 380px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 12px;
  text-align: center;
  color: var(--white);
}
.cta-box h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 1px;
}
.cta-box a {
  display: inline-grid;
  place-items: center;
  min-width: 157px;
  height: 57px;
  padding: 0 24px;
  border-radius: 7px;
  background: #08aaa8;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.cta-box a:hover {
  background: #078d84;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  transform: translateY(-2px);
}

.why-choose {
  background: var(--white);
  padding: 56px clamp(18px, 6vw, 120px) 62px;
}
.why-title {
  max-width: 1120px;
  margin: 0 auto 46px;
  text-align: center;
}
.why-title h2 {
  margin: 0 0 10px;
  font-size: clamp(32px, 2.7vw, 40px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}
.why-title p {
  margin: 0;
  color: #2f4056;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.35;
}
.why-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
.why-tile {
  min-height: 416px;
  padding: 40px 40px 34px;
  border: 1px solid;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(30, 45, 68, .035);
  transition: transform .24s ease, box-shadow .24s ease;
}
.why-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(30, 45, 68, .08);
}
.why-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 32px;
  border-radius: 12px;
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  transition: transform .65s ease;
}
.why-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-icon svg text {
  fill: currentColor;
  stroke: none;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  text-anchor: middle;
}
.why-icon svg text:first-of-type {
  font-size: 12px;
}
.why-icon svg text:last-of-type {
  font-size: 4px;
}
.why-tile:hover .why-icon {
  transform: rotateY(360deg);
}
.why-tile h3 {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid currentColor;
  color: #061529;
  font-size: clamp(20px, 1.34vw, 24px);
  line-height: 1.2;
  font-weight: 800;
}
.why-tile p {
  margin: 20px 0 0;
  color: #2f4056;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.52;
}
.why-tile.orange {
  border-color: #ffe0ba;
  background: #fffdf9;
  color: #ffbd76;
}
.why-tile.orange .why-icon { background: #ffb66d; }
.why-tile.purple {
  border-color: #eadcff;
  background: #fffbff;
  color: #d3a7ff;
}
.why-tile.purple .why-icon { background: #caa3ff; }
.why-tile.green {
  border-color: #38dc7c;
  background: #fbfffc;
  color: #85ecaa;
}
.why-tile.green .why-icon { background: #7beb9f; }
.why-tile.blue {
  border-color: #d2e7ff;
  background: #f9fbff;
  color: #91c5fa;
}
.why-tile.blue .why-icon { background: #8dc1f6; }

.reviews-section {
  background: #f4fbfa;
  padding-top: 66px;
  padding-bottom: 80px;
}
.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.reviews-head h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 800;
}
.review-controls {
  display: flex;
  gap: 14px;
}
.review-controls button {
  display: grid;
  place-items: center;
  width: 41px;
  height: 41px;
  border: 0;
  border-radius: 50%;
  color: #00a7a5;
  background: var(--white);
  box-shadow: 0 5px 16px rgba(0,0,0,.18);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}
.review-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 90px) / 3);
  gap: 45px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.review-row::-webkit-scrollbar {
  display: none;
}
.review-card-item {
  scroll-snap-align: start;
  min-height: 412px;
  padding: 20px 20px 0;
  border: 1px solid #dce4e2;
  border-radius: 8px;
  background: var(--white);
}
.review-top {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 20px;
}
.review-top img {
  width: 100px;
  height: 100px;
  border-radius: 5px;
  object-fit: cover;
  background: #08aaa8;
}
.review-top h3 {
  margin: 0 0 4px;
  color: #080808;
  font-size: 24px;
  line-height: 1.1;
}
.review-top p {
  margin: 0;
  color: #3d3d4c;
  font-size: 19px;
}
.quote {
  align-self: start;
  color: #08aaa8;
  font-size: 88px;
  font-weight: 900;
  line-height: .75;
}
.rating {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 24px 0 22px;
}
.rating strong {
  color: #303442;
  font-size: 18px;
}
.rating span {
  color: #f2c400;
  font-size: 20px;
  letter-spacing: 2px;
}
.review-text {
  height: 212px;
  overflow-y: auto;
  padding-right: 18px;
}
.review-text::-webkit-scrollbar {
  width: 11px;
}
.review-text::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 99px;
}
.review-text::-webkit-scrollbar-thumb {
  background: #f0c600;
  border-radius: 99px;
}
.review-text p {
  margin: 0;
  color: #171717;
  font-size: 19px;
  line-height: 1.43;
}

.faq-section {
  padding-top: 36px;
  padding-bottom: 70px;
}
.faq-section .section-title {
  width: min(1660px, 100%);
  margin: 0 auto;
  padding: 32px 24px 28px;
  border-radius: 11px 11px 0 0;
  background: #f2f8f7;
  text-align: center;
}
.faq-section .section-title h2 {
  font-size: clamp(32px, 3vw, 40px);
}
.faq-list {
  width: min(1660px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0 0 11px 11px;
  background: #f2f8f7;
}
.faq-item {
  border-top: 1px solid rgba(0,0,0,.18);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border: 0;
  padding: 21px 39px 21px 29px;
  background: transparent;
  color: #000;
  text-align: left;
  cursor: pointer;
  font-weight: 400;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.15;
}
.faq-question span {
  position: relative;
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 38px 0 29px;
  color: #2f4056;
  font-size: 16px;
  line-height: 1.55;
}
.faq-item.is-open .faq-question span {
  transform: rotate(225deg);
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding-bottom: 20px; }

.contact-section {
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(420px, 1.1fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: center;
  padding: 74px clamp(18px, 6vw, 115px) 58px;
  background: var(--white);
}
.contact-copy h2 {
  margin: 0 0 23px;
  font-size: clamp(32px, 3vw, 37px);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}
.contact-copy p {
  max-width: 680px;
  margin: 0 0 42px;
  color: #000;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.45;
}
.touch-form {
  display: grid;
  gap: 20px;
  max-width: 560px;
}
.touch-form label {
  position: relative;
  display: block;
}
.touch-form input {
  width: 100%;
  height: 59px;
  border: 1px solid #dfe3e8;
  border-radius: 7px;
  padding: 0 56px 0 16px;
  color: #1b2530;
  outline: none;
  font-size: 16px;
}
.touch-form input::placeholder {
  color: #87909e;
}
.touch-form label span {
  position: absolute;
  right: 15px;
  top: 50%;
  color: #8b929d;
  font-size: 25px;
  transform: translateY(-50%);
}
.touch-form input:focus {
  border-color: #08aaa8;
  box-shadow: 0 0 0 4px rgba(8,170,168,.09);
}
.touch-form button {
  height: 51px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: #08aaa8;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.touch-form button:hover {
  background: #078d84;
  box-shadow: 0 10px 22px rgba(8,170,168,.25);
  transform: translateY(-2px);
}
.contact-graphic {
  position: relative;
  min-height: 520px;
}
.phone-mock {
  position: absolute;
  left: 28%;
  top: 80px;
  width: 235px;
  height: 445px;
  border: 14px solid #283640;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 0 rgba(0,0,0,.08);
}
.phone-notch {
  position: absolute;
  left: 58px;
  top: -1px;
  width: 95px;
  height: 15px;
  border-radius: 0 0 9px 9px;
  background: #283640;
}
.phone-mock .bubble {
  width: 72px;
  height: 50px;
  margin: 45px auto 14px;
  border: 2px solid #f4df58;
  border-radius: 50%;
  box-shadow: 39px 13px 0 -12px #08aaa8;
}
.phone-mock h3 {
  margin: 0 0 18px;
  color: #aaa;
  text-align: center;
  font-size: 24px;
  letter-spacing: 2px;
}
.phone-mock i,
.phone-mock b {
  display: block;
  width: 150px;
  height: 42px;
  margin: 0 auto 11px;
  background: #caeeee;
}
.phone-mock b {
  height: 60px;
}
.phone-mock button {
  display: block;
  width: 74px;
  height: 24px;
  margin: 10px auto;
  border: 0;
  color: var(--white);
  background: #08aaa8;
}
.person {
  position: absolute;
  left: 58%;
  top: 78px;
  width: 170px;
  height: 440px;
}
.person .head {
  position: absolute;
  left: 38px;
  top: 0;
  width: 42px;
  height: 52px;
  border-radius: 48%;
  background: #a36554;
}
.person .body {
  position: absolute;
  left: 9px;
  top: 49px;
  width: 92px;
  height: 142px;
  border-radius: 34px 26px 18px 18px;
  background: #08aaa8;
  transform: rotate(-15deg);
}
.person .leg {
  position: absolute;
  top: 174px;
  width: 43px;
  height: 230px;
  border-radius: 20px;
  background: #2e424b;
}
.person .leg.left {
  left: 45px;
  transform: rotate(-7deg);
}
.person .leg.right {
  left: 92px;
  transform: rotate(-20deg);
}
.plant {
  position: absolute;
  left: 16%;
  bottom: 50px;
  width: 70px;
  height: 110px;
  border-bottom: 42px solid #35424a;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}
.plant::before {
  content: "";
  position: absolute;
  left: -28px;
  bottom: 40px;
  width: 110px;
  height: 90px;
  border-radius: 60% 40%;
  background: radial-gradient(circle at 20% 45%, #08aaa8 0 16px, transparent 17px),
    radial-gradient(circle at 50% 20%, #08aaa8 0 21px, transparent 22px),
    radial-gradient(circle at 78% 50%, #08aaa8 0 20px, transparent 21px);
}
.lamp {
  position: absolute;
  top: 0;
  width: 2px;
  height: 145px;
  background: #d5d9dc;
}
.lamp::after {
  content: "";
  position: absolute;
  left: -34px;
  bottom: -20px;
  width: 72px;
  height: 28px;
  background: #e9eaeb;
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
}
.lamp.one { left: 18%; }
.lamp.two { left: 28%; height: 110px; }

.footer {
  color: var(--white);
  background:
    linear-gradient(rgba(23, 21, 28, .52), rgba(23, 21, 28, .52)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1900&q=80") center / cover no-repeat;
}
.footer-overlay {
  width: min(1568px, 100%);
  margin: 0 auto;
  padding: 46px clamp(22px, 5vw, 108px) 0;
  background: linear-gradient(135deg, rgba(148,112,114,.76), rgba(27,70,64,.74), rgba(108,97,119,.72));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .75fr 1.25fr .85fr;
  gap: clamp(34px, 4vw, 62px);
  align-items: start;
  padding-bottom: 24px;
}
.footer h3 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.1;
}
.footer-about p {
  max-width: 370px;
  margin: 0 0 28px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}
.footer a:not(.logo) {
  display: block;
  width: fit-content;
  margin: 0 0 14px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  transition: color .2s ease, transform .2s ease;
}
.footer-grid > div:not(.footer-about) > a:not(.logo) {
  position: relative;
  padding-left: 20px;
}
.footer-grid > div:not(.footer-about) > a:not(.logo)::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 10px;
  line-height: 1;
}

.inner-page {
  background: #eef7f6;
}
.trips-hero {
  position: relative;
  min-height: 635px;
  display: grid;
  align-items: end;
  padding: 150px max(24px, calc((100vw - 1560px) / 2 + 56px)) 94px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.44) 46%, rgba(0,0,0,.2)),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.86)),
    url("https://images.unsplash.com/photo-1524492412937-b28074a5d7da?auto=format&fit=crop&w=1900&q=88") center/cover;
}
.trips-hero-content {
  max-width: 760px;
  transform: translateY(-28px);
}
.trips-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(42px, 4vw, 56px);
  line-height: 1;
  font-weight: 800;
}
.trips-hero-content p {
  margin: 0 0 30px;
  font-size: 20px;
  font-weight: 600;
}
.callback-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #13b9af;
  box-shadow: 0 14px 28px rgba(19,185,175,.24);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.callback-btn:hover {
  background: #08aaa8;
  box-shadow: 0 18px 32px rgba(19,185,175,.32);
  transform: translateY(-2px);
}
.callback-btn span {
  font-size: 20px;
}
.hero-mini-stats {
  position: absolute;
  left: max(24px, calc((100vw - 1560px) / 2 + 56px));
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}
.hero-mini-stats span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-mini-stats strong {
  display: inline-block;
  min-width: 2.35em;
  font-weight: 800;
  text-align: right;
}
.hero-mini-stats i {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.7);
}
.hero-mini-stats b {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
}
.google-dot {
  color: #1683ff;
  background: #fff;
}
.insta-dot {
  color: #fff;
  background: radial-gradient(circle at 30% 110%, #ffcc55 0 24%, #ff3d7f 47%, #7a4cff 75%, #2276ff 100%);
}
.smile-dot {
  color: #6d4100;
  background: #ffc24c;
}
.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 22px;
  background: rgba(0,0,0,.76);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.callback-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.callback-dialog {
  position: relative;
  width: min(576px, calc(100vw - 44px));
  margin: 0;
  padding: 30px 28px 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(0,0,0,.35);
  transform: translateY(14px);
  transition: transform .2s ease;
}
.callback-modal.is-open .callback-dialog {
  transform: translateY(0);
}
.callback-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 5px;
  background: #222;
  cursor: pointer;
}
.callback-close::before,
.callback-close::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 17px;
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.callback-close::before {
  transform: rotate(45deg);
}
.callback-close::after {
  transform: rotate(-45deg);
}
.callback-dialog h2 {
  max-width: 505px;
  margin: 0 0 26px;
  color: #0f0f0f;
  font-size: clamp(26px, 3vw, 30px);
  line-height: 1.22;
  font-weight: 800;
}
.callback-form {
  display: grid;
  gap: 18px;
}
.callback-form label {
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: center;
  height: 54px;
  border: 1px solid #dde1e6;
  border-radius: 7px;
  background: #fff;
}
.callback-form input {
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 14px;
  color: #101418;
  font-size: 16px;
}
.callback-form input::placeholder {
  color: #8f96a1;
}
.callback-form label span {
  color: #8c939c;
  text-align: center;
  font-size: 22px;
}
.callback-form button[type="submit"] {
  height: 45px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #08aaa8;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}
.callback-form p {
  margin: 0;
  color: #ff2020;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .trips-hero {
    min-height: 580px;
    padding: 126px 22px 104px;
  }

  .trips-hero-content {
    transform: none;
  }

  .trips-hero h1 {
    font-size: 40px;
  }

  .trips-hero-content p {
    max-width: 330px;
    font-size: 16px;
  }

  .callback-btn {
    height: 52px;
    padding-inline: 20px;
    font-size: 15px;
  }

  .hero-mini-stats {
    left: 22px;
    right: 22px;
    bottom: 20px;
    flex-wrap: wrap;
    gap: 12px 16px;
    font-size: 14px;
  }

  .hero-mini-stats i {
    display: none;
  }

  .hero-mini-stats b {
    width: 18px;
    height: 18px;
    font-size: 12px;
  }

  .callback-modal {
    align-items: start;
    justify-items: center;
    overflow-y: auto;
    padding: 18px 14px;
  }

  .callback-dialog {
    width: min(100%, 576px);
    margin-left: 0;
    padding: 28px 20px 24px;
  }

  .callback-dialog h2 {
    padding-right: 28px;
    font-size: 24px;
    line-height: 1.18;
  }

  .callback-form {
    gap: 14px;
  }

  .callback-form label {
    height: 52px;
  }

  .callback-form p {
    font-size: 13px;
  }
}
.page-hero {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 130px 22px 58px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0,0,0,.48), rgba(0,0,0,.58)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=88") center/cover;
}

.package-hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  padding: 150px max(24px, calc((100vw - 1560px) / 2 + 56px)) 76px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.42) 48%, rgba(0,0,0,.28)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.82)),
    url("https://images.unsplash.com/photo-1589308078059-be1415eab4c3?auto=format&fit=crop&w=1900&q=88") center/cover;
}
.package-hero-copy {
  max-width: 760px;
}
.package-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #111;
  background: #fff;
  font-weight: 700;
}
.package-hero h1 {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.04;
  font-weight: 800;
}
.package-hero p {
  max-width: 650px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.92);
  font-size: 19px;
  line-height: 1.65;
  font-weight: 500;
}
.package-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.package-hero-actions a,
.package-hero-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #08aaa8;
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.package-hero-actions button {
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
}
.package-hero-actions a:hover,
.package-hero-actions button:hover {
  background: #078d84;
  box-shadow: 0 14px 28px rgba(8,170,168,.22);
  transform: translateY(-2px);
}
.package-quick {
  position: absolute;
  right: max(24px, calc((100vw - 1560px) / 2 + 56px));
  bottom: 42px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  max-width: 560px;
}
.package-quick span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(0,0,0,.32);
  color: #fff;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.package-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 28px;
}
.package-main {
  display: grid;
  gap: 24px;
}
.package-gallery {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: 190px 190px;
  gap: 14px;
}
.package-gallery img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(13, 36, 31, .12);
}
.package-gallery img:first-child {
  grid-row: 1 / 3;
}
.detail-card,
.booking-card {
  border: 1px solid #dce7e6;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(13, 36, 31, .08);
}
.detail-card {
  padding: 28px;
}
.detail-card h2 {
  margin: 0 0 16px;
  color: #09130f;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}
.detail-card p {
  margin: 0;
  color: #3f4b58;
  font-size: 16px;
  line-height: 1.75;
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.overview-grid span {
  display: grid;
  gap: 7px;
  min-height: 86px;
  padding: 16px;
  border-radius: 8px;
  background: #eef8f7;
  color: #111;
  font-weight: 800;
}
.overview-grid b {
  color: #66736e;
  font-size: 12px;
  text-transform: uppercase;
}
.timeline {
  display: grid;
  gap: 18px;
}
.timeline > div {
  position: relative;
  padding: 20px 20px 20px 78px;
  border: 1px solid #e2eceb;
  border-radius: 10px;
  background: #fbfdfd;
}
.timeline b {
  position: absolute;
  left: 18px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: #08aaa8;
  font-size: 12px;
}
.timeline h3 {
  margin: 0 0 8px;
  font-size: 20px;
}
.detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.check-list,
.carry-grid {
  padding: 0;
  margin: 0;
  list-style: none;
}
.check-list {
  display: grid;
  gap: 13px;
}
.check-list li,
.carry-grid li {
  position: relative;
  color: #344039;
  font-size: 15px;
  line-height: 1.5;
}
.check-list li {
  padding-left: 28px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #08aaa8;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.check-list.cross li::before {
  background: #ef6b6b;
}
.booking-card {
  position: sticky;
  top: 92px;
  padding: 24px;
}
.booking-price {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #e4ebe8;
}
.booking-price small {
  display: block;
  color: #a12c2c;
  font-size: 13px;
}
.booking-price strong {
  display: block;
  margin-top: 4px;
  color: #050b08;
  font-size: 32px;
  line-height: 1;
}
.booking-price span {
  color: #66736e;
  font-size: 13px;
}
.booking-meta,
.booking-form {
  display: grid;
  gap: 12px;
}
.booking-meta span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 7px;
  background: #eef8f7;
  font-weight: 700;
}
.booking-form {
  margin-top: 18px;
}
.booking-form input {
  height: 46px;
  border: 1px solid #dce4e2;
  border-radius: 7px;
  padding: 0 13px;
  outline: 0;
}
.booking-form button,
.booking-call {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #08aaa8;
  font-weight: 800;
  cursor: pointer;
}
.booking-call {
  margin-top: 12px;
  background: #0d6d9d;
}
.package-info-band {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  padding-top: 0;
}
.carry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.carry-grid li {
  padding: 14px;
  border-radius: 8px;
  background: #eef8f7;
  font-weight: 700;
}

.trip-detail-v2 {
  background: #fff;
}
.trip-detail-v2 .topbar {
  padding-top: 18px;
  padding-bottom: 18px;
  background: #07887f;
  box-shadow: none;
  backdrop-filter: none;
}
.trip-detail-v2 .topbar.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: #07887f;
}
.trip-detail-v2 .topbar + .search-overlay + main {
  border-top: 15px solid #07887f;
}
.detail-carousel-section {
  position: relative;
  min-height: 822px;
  padding: 147px 0 72px;
  overflow: hidden;
  background: #fff;
}
.detail-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 272px minmax(0, calc(100vw - 604px)) 272px;
  align-items: start;
  justify-content: center;
  gap: 26px;
  width: calc(100vw - 232px);
  max-width: none;
  min-width: 1180px;
  margin: 0 auto;
}
.detail-gallery-card {
  position: relative;
  height: 660px;
  overflow: hidden;
  background: #eef4f7;
}
.detail-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-gallery-card.is-left img {
  object-position: center;
}
.detail-gallery-card.is-active img {
  object-position: center top;
}
.detail-gallery-card.is-right img {
  object-position: center;
}
.detail-gallery-card.is-left {
  grid-column: 1;
  grid-row: 1;
  clip-path: polygon(0 0, 100% 3.1%, 100% 97%, 0 100%);
}
.detail-gallery-card.is-active {
  grid-column: 2;
  grid-row: 1;
  height: 616px;
  margin-top: 21px;
  clip-path: polygon(0 0, 50% 2%, 100% 0, 100% 100%, 50% 98%, 0 100%);
}
.detail-gallery-card.is-right {
  grid-column: 3;
  grid-row: 1;
  clip-path: polygon(0 3.1%, 100% 0, 100% 100%, 0 97%);
}
.detail-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
}
.detail-gallery-card.is-active::after {
  background: rgba(0,0,0,.08);
}
.detail-gallery-arrow {
  position: absolute;
  top: 455px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #08aaa8;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  font-size: 37px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.detail-gallery-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
.detail-gallery-arrow.prev {
  left: 97px;
}
.detail-gallery-arrow.next {
  right: 97px;
}
.package-detail-body {
  padding: 34px 24px 80px;
  background: #fff;
}
.package-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 492px;
  gap: 44px;
  align-items: start;
  max-width: 1566px;
  margin: 0 auto;
}
.package-detail-left h1 {
  margin: 0 0 24px;
  color: #000;
  font-size: 40px;
  line-height: 1.12;
  font-weight: 800;
}
.package-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 36px;
}
.package-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 5px;
  color: #000;
  background: #d8eff0;
  font-size: 16px;
  font-weight: 800;
}
.about-trip-box,
.highlight-panel {
  position: relative;
  border: 1px solid #aeb9c0;
  border-radius: 16px;
  background: #fff;
}
.about-trip-box {
  margin-bottom: 36px;
  padding: 20px 22px 36px;
}
.about-trip-box h2,
.highlight-panel h2 {
  margin: 0 0 14px;
  color: #000;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
}
.about-trip-box p {
  margin: 0;
  color: #12203b;
  font-size: 18px;
  line-height: 1.6;
}
.about-trip-box button {
  position: absolute;
  left: 50%;
  bottom: -21px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #17191f;
  font-size: 31px;
  line-height: 1;
  transform: translateX(-50%);
}
.detail-tab-strip {
  position: sticky;
  top: 132px;
  z-index: 25;
  display: grid;
  grid-template-columns: 56px repeat(4, 1fr) 56px;
  height: 45px;
  margin-bottom: 36px;
  overflow: hidden;
  border-radius: 8px;
  background: #08aaa8;
}
.detail-tab-strip a,
.detail-tab-strip button {
  display: grid;
  place-items: center;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.55);
  color: rgba(255,255,255,.62);
  background: #08aaa8;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.detail-tab-strip button {
  color: #d9f8f8;
  font-size: 42px;
  line-height: 1;
}
.detail-tab-strip a.is-active,
.detail-tab-strip button:first-child,
.detail-tab-strip button:last-child {
  background: #07887f;
  color: #fff;
}
.detail-tab-strip a.is-active {
  position: relative;
}
.detail-tab-strip a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 70px;
  height: 3px;
  border-radius: 99px;
  background: #f2c500;
  transform: translateX(-50%);
}
.highlight-panel {
  padding: 20px 20px 34px;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 34px;
  margin: 24px 0 24px;
}
.highlight-grid span {
  color: #000;
  font-size: 20px;
  line-height: 1.35;
}
.highlight-panel h3 {
  margin: 0 0 10px;
  color: #000;
  font-size: 17px;
  font-weight: 800;
}
.highlight-panel ul {
  margin: 0;
  padding-left: 28px;
}
.highlight-panel li {
  margin-bottom: 8px;
  color: #162036;
  font-size: 18px;
}
.package-detail-right {
  display: grid;
  gap: 28px;
}
.price-widget {
  position: relative;
  padding: 31px 27px 27px;
  border-top: 6px solid #f2c500;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(0,0,0,.08);
}
.duration-pill {
  position: absolute;
  right: 27px;
  top: 27px;
  display: flex;
  overflow: hidden;
  border: 1px solid #8d8d8d;
  border-radius: 4px;
}
.duration-pill b {
  padding: 7px 8px;
  color: #000;
  background: #fff;
  font-size: 18px;
}
.duration-pill b:last-child {
  color: #fff;
  background: #000;
}
.price-widget p {
  margin: 0 0 34px;
  color: #555b68;
  font-size: 18px;
}
.price-widget strong {
  display: block;
  color: #000;
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
}
.price-widget strong span {
  color: #8b8d95;
  font-size: 22px;
}
.price-widget em {
  display: block;
  margin: 14px 0 22px;
  color: #00a7a4;
  font-size: 22px;
  font-style: normal;
}
.price-widget small {
  position: absolute;
  right: 28px;
  top: 74px;
  color: #ff2525;
  font-size: 13px;
}
.price-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.price-actions button,
.book-now {
  height: 51px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}
.price-actions button {
  border: 2px solid #111;
  color: #edc400;
  background: #fff;
}
.book-now {
  width: 100%;
  margin: 17px 0 18px;
  border: 0;
  color: #fff;
  background: #08aaa8;
}
.price-widget ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 19px 0 0;
  border-top: 2px solid #222;
  list-style: none;
  text-align: center;
}
.price-widget li {
  color: #111;
  font-size: 18px;
}
.price-widget li::before {
  content: "\2713";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  color: #fff;
  background: #22c45e;
  font-size: 13px;
  font-weight: 800;
}
.coupon-slider {
  position: relative;
}
.coupon-track {
  position: relative;
  min-height: 213px;
}
.coupon-card {
  position: absolute;
  inset: 0;
  padding: 28px 28px 24px;
  border: 1px solid #dce1e7;
  border-radius: 7px;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity .32s ease, transform .32s ease;
}
.coupon-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.coupon-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 26px;
  border-bottom: 2px solid #111;
}
.coupon-card b {
  color: #26303d;
  font-size: 21px;
}
.coupon-card strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #111;
  border-radius: 5px;
  color: #0b76c9;
  font-size: 25px;
}
.coupon-card p {
  margin: 18px 0 14px;
  color: #1a1a1a;
  font-size: 18px;
}
.coupon-card small {
  display: block;
  color: #5d6574;
  text-align: center;
}
.coupon-arrow {
  position: absolute;
  top: 90px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #08aaa8;
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
}
.coupon-arrow.prev {
  left: -17px;
}
.coupon-arrow.next {
  right: -17px;
}

@media (max-width: 980px) {
  .package-shell,
  .package-info-band {
    grid-template-columns: 1fr;
  }
  .booking-card {
    position: static;
  }
  .overview-grid,
  .detail-columns {
    grid-template-columns: 1fr 1fr;
  }
  .package-quick {
    position: static;
    justify-content: flex-start;
    margin-top: 26px;
  }
  .detail-carousel-section {
    min-height: 620px;
    padding: 122px 18px 56px;
  }
  .detail-gallery {
    grid-template-columns: 20% 1fr 20%;
    gap: 14px;
  }
  .detail-gallery-card {
    height: 500px;
  }
  .detail-gallery-card.is-active {
    height: 470px;
    margin-top: 16px;
  }
  .package-detail-body {
    padding-inline: 18px;
  }
  .package-detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .detail-tab-strip {
    top: 116px;
  }
  .package-detail-right {
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .package-hero {
    min-height: 640px;
    padding: 128px 18px 54px;
  }
  .package-hero h1 {
    font-size: 38px;
  }
  .package-hero p {
    font-size: 16px;
  }
  .package-gallery,
  .overview-grid,
  .detail-columns,
  .carry-grid {
    grid-template-columns: 1fr;
  }
  .package-gallery {
    grid-template-rows: none;
  }
  .package-gallery img,
  .package-gallery img:first-child {
    grid-row: auto;
    height: 220px;
  }
  .detail-card {
    padding: 22px;
  }
  .detail-card h2 {
    font-size: 24px;
  }
  .timeline > div {
    padding-left: 20px;
    padding-top: 74px;
  }
  .detail-carousel-section {
    min-height: 520px;
    padding: 106px 12px 44px;
  }
  .detail-gallery {
    grid-template-columns: 1fr;
  }
  .detail-gallery-card {
    display: none;
  }
  .detail-gallery-card.is-active {
    display: block;
    height: 380px;
    margin-top: 0;
    clip-path: polygon(0 3%, 50% 5%, 100% 3%, 100% 97%, 50% 95%, 0 97%);
  }
  .detail-gallery-arrow {
    top: 56%;
  }
  .package-detail-left h1 {
    font-size: 32px;
  }
  .package-chip-row {
    gap: 10px;
    margin-bottom: 24px;
  }
  .package-chip-row span {
    min-height: 36px;
    font-size: 14px;
  }
  .about-trip-box h2,
  .highlight-panel h2 {
    font-size: 24px;
  }
  .about-trip-box p {
    font-size: 15px;
  }
  .detail-tab-strip {
    grid-template-columns: 38px repeat(4, minmax(92px, 1fr)) 38px;
    overflow-x: auto;
    top: 104px;
  }
  .detail-tab-strip a,
  .detail-tab-strip button {
    min-width: 92px;
    font-size: 14px;
  }
  .detail-tab-strip button {
    min-width: 38px;
  }
  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .highlight-grid span,
  .highlight-panel li {
    font-size: 16px;
  }
  .price-widget {
    padding: 24px 18px;
  }
  .duration-pill {
    position: static;
    width: fit-content;
    margin-bottom: 16px;
  }
  .price-widget small {
    position: static;
    display: block;
    margin: -10px 0 14px;
  }
  .price-actions {
    grid-template-columns: 1fr;
  }
  .coupon-card {
    padding: 22px 18px;
  }
}
.page-hero-inner p {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 18px;
  font-weight: 700;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .96;
  font-weight: 800;
}
.page-hero nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  font-weight: 600;
}
.page-hero nav span {
  opacity: .7;
}
.page-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 80px);
  align-items: end;
  padding-bottom: 16px;
}
.page-intro .eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.page-intro h2 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1;
}
.page-intro > p {
  margin: 0;
  color: #3d4a52;
  font-size: 17px;
  line-height: 1.7;
}
.trips-page-section {
  padding-top: 28px;
}
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.filter-pills span {
  padding: 9px 14px;
  border: 1px solid rgba(8,170,168,.22);
  border-radius: 999px;
  color: #066f69;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}
.filter-pills span:first-child {
  color: #fff;
  background: var(--teal);
}
.upcoming-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}
.upcoming-list-grid .trip-card {
  display: flex;
  min-height: 492px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #d5dfdc;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(15, 54, 50, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}
.upcoming-list-grid .trip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(15, 54, 50, .14);
}
.upcoming-list-grid .trip-card .image {
  height: 232px;
  flex: 0 0 232px;
  border-radius: 10px 10px 0 0;
  background: #e8f3f1;
}
.upcoming-list-grid .trip-card .image::after {
  display: none;
}
.upcoming-list-grid .trip-card img {
  border-radius: 10px 10px 0 0;
}
.upcoming-list-grid .trip-card .tag {
  top: 10px;
  left: 10px;
  padding: 4px 15px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 400;
}
.upcoming-list-grid .trip-card .content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(104px, .86fr);
  grid-template-rows: auto auto 1fr;
  flex: 1;
  padding: 22px 20px 20px;
  background: #fff;
}
.upcoming-list-grid .trip-card h3 {
  grid-column: 1 / -1;
  grid-row: 1;
  overflow: hidden;
  min-height: 48px;
  margin: 0 0 18px;
  color: #111;
  font-size: clamp(17px, 1.1vw, 20px);
  font-weight: 600;
  line-height: 1.12;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.upcoming-list-grid .trip-card .content > .trip-details {
  grid-column: 1;
  grid-row: 2;
}
.upcoming-list-grid .trip-card .content > .price-box {
  grid-column: 2;
  grid-row: 2;
}
.upcoming-list-grid .trip-card .content > .card-actions {
  grid-column: 1 / -1;
  grid-row: 3;
}
.inner-cta {
  margin-top: 24px;
}
.footer a:not(.logo):hover {
  color: #d7fffb;
  transform: translateX(3px);
}
.footer-about a {
  display: flex !important;
  align-items: center;
  gap: 16px;
  margin-top: 23px !important;
}
.contact-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
}
.footer-subhead {
  margin-top: 28px !important;
}
.active-link {
  padding: 2px 5px;
  border: 1px solid var(--white);
  border-radius: 3px;
}
.footer-center {
  display: grid;
  justify-items: center;
  margin-top: 8px;
  padding-top: 8px;
  text-align: center;
}
.footer-logo .logo-icon {
  width: 51px;
  height: 51px;
}
.footer-logo .brand-logo {
  width: 164px;
  max-height: 70px;
}
.footer-logo .logo-text strong {
  font-size: 28px;
}
.footer-center p {
  margin: 18px 0 12px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}
.socials {
  display: flex;
  gap: 28px;
  margin: 0 0 18px;
}
.socials a {
  display: grid !important;
  place-items: center;
  width: 36px !important;
  height: 36px;
  margin: 0 !important;
  border-radius: 8px;
  font-size: 27px !important;
  font-weight: 900 !important;
}
.socials a:first-child {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
}
.socials a:last-child {
  color: #4285f4;
  background: transparent;
}
.footer-policies {
  display: flex;
  justify-content: center;
  gap: clamp(55px, 8vw, 130px);
  width: 100%;
  margin-top: 2px;
}
.footer-policies a {
  margin: 0 !important;
}
.footer-line {
  height: 2px;
  margin: 24px 0 18px;
  background: rgba(255,255,255,.78);
}
.copyright {
  margin: 0;
  padding-bottom: 14px;
  color: var(--white);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.copyright a {
  display: inline !important;
  margin: 0 !important;
  text-decoration: underline;
}

.whatsapp {
  position: fixed;
  right: 25px;
  bottom: 28px;
  z-index: 55;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 8px solid rgba(255,255,255,.75);
  background: #27d366;
  color: var(--white);
  font-size: 30px;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.top-btn {
  position: fixed;
  right: 31px;
  bottom: 105px;
  z-index: 55;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .25s ease;
  cursor: pointer;
}
.top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1280px) {
  .topbar {
    grid-template-columns: auto auto minmax(230px, 1fr) auto auto;
    padding-inline: 34px;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: min(628px, 78vw);
    padding: 168px 40px 42px;
    background: var(--teal);
    box-shadow: none;
    z-index: 55;
    pointer-events: none;
    transform: translateX(104%);
    transition: transform .28s ease;
    opacity: 1;
  }
  .main-nav.is-open {
    pointer-events: auto;
    transform: translateX(0);
  }
  .main-nav .active::after { display: none; }
  .main-nav a,
  .main-nav button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.25;
    text-shadow: none;
  }
  .drawer-only { display: flex; }
  .drawer-login {
    position: absolute;
    top: 36px;
    right: 101px;
    display: inline-flex;
    width: auto !important;
    height: 41px;
    align-items: center;
    gap: 7px;
    padding: 0 15px !important;
    border-radius: 7px;
    color: var(--white);
    background: rgba(0, 174, 178, .65);
    font-size: 18px !important;
    font-weight: 600 !important;
  }
  .hamburger {
    position: relative;
    z-index: 60;
  }
  .stats-strip {
    width: min(1160px, calc(100% - 80px));
    min-height: 100px;
    padding: 15px 56px;
  }
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto auto;
    padding: 16px 18px;
    gap: 12px;
  }
  .call-btn,
  .search-box {
    display: none;
  }
  .logo-text strong { font-size: 21px; }
  .logo-icon { width: 43px; height: 43px; }
  .hero {
    min-height: 760px;
    height: 86vh;
    background-position: center;
  }
  .hero-content { margin-top: 40px; }
  .hero h1 {
    font-size: clamp(40px, 8vw, 60px);
  }
  .stats-strip {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: -70px;
    padding: 20px 32px;
    border-radius: 32px;
  }
  .stats-strip i { display: none; }
  .wide-cards,
  .destination-grid,
  .footer {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }
  .footer-policies {
    gap: 34px;
    flex-wrap: wrap;
  }
  .destination-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trek-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .destination-card {
    min-height: 390px;
  }
  .trek-grid .destination-card {
    min-height: 310px;
  }
  .wide-cards {
    gap: 34px;
  }
  .wide-card {
    aspect-ratio: 1.75 / 1;
  }
  .why-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-tile {
    min-height: 360px;
    padding: 30px;
  }
  .review-row {
    grid-auto-columns: calc((100% - 24px) / 2);
    gap: 24px;
  }
  .review-top {
    grid-template-columns: 82px 1fr auto;
    gap: 14px;
  }
  .review-top img {
    width: 78px;
    height: 78px;
  }
  .review-top h3 {
    font-size: 20px;
  }
  .review-top p {
    font-size: 16px;
  }
  .trip-row { grid-auto-columns: minmax(280px, 48%); }
  .upcoming-row {
    grid-auto-columns: calc((100% - 30px) / 2);
  }
  .page-intro {
    grid-template-columns: 1fr;
  }
  .upcoming-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .filter-pills {
    justify-content: flex-start;
  }
  .next-trek {
    right: -10px;
  }
  .cta-box {
    min-height: 310px;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: start;
  }
  .login-btn {
    display: none;
  }
  .hamburger {
    width: 46px;
    height: 42px;
  }
  .main-nav {
    top: 0;
    right: 0;
    left: auto;
  }
  .hero {
    min-height: 660px;
    height: 82vh;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }
  .script-title { font-size: 34px; }
  .hero h1 {
    font-size: 36px;
    letter-spacing: 0;
  }
  .hero h1 span { margin-top: 10px; }
  .hero mark {
    width: 184px;
    height: 58px;
    padding-inline: 22px;
  }
  .hero mark span {
    max-width: 146px;
    font-size: .72em;
  }
  .hero mark span.is-long {
    font-size: .6em;
  }
  .main-nav {
    width: calc(100vw - 22px);
    padding: 132px 40px 36px;
  }
  .main-nav a,
  .main-nav button {
    font-size: 23px;
    padding: 10px 0;
  }
  .drawer-login {
    top: 30px;
    right: 101px;
  }
  .tagline {
    font-size: 18px;
    max-width: 330px;
    margin-inline: auto;
  }
  .stats-strip {
    min-height: 0;
    margin-top: -46px;
    border-width: 4px;
    border-radius: 28px;
    padding: 18px 20px;
  }
  .stat {
    grid-template-columns: 43px auto;
  }
  .stat-icon {
    width: 43px;
    height: 43px;
  }
  .section { padding: 38px 16px; }
  #categories {
    padding-top: 18px;
  }
  .wide-card {
    aspect-ratio: 1.52 / 1;
  }
  .wide-card strong {
    font-size: 26px;
  }
  .wide-card::before {
    inset: 0;
  }
  .wide-card::after {
    inset: 0;
  }
  .wide-card:hover::before {
    inset: -9px 12px -12px 14px;
    transform: rotate(-7deg) scale(1);
  }
  .wide-card:hover::after {
    inset: -2px 7px -16px -8px;
    transform: rotate(-7deg) scale(1);
  }
  .monsoon-card .promo-copy {
    padding-left: 38%;
  }
  .monsoon-card .promo-copy strong {
    font-size: 30px;
  }
  .monsoon-card .promo-copy span {
    margin-left: -70%;
    font-size: 14px;
  }
  .destination-card .image,
  .trip-card .image {
    height: 205px;
  }
  .destination-card .image {
    height: 100%;
  }
  .destination-grid {
    grid-template-columns: 1fr;
  }
  .trek-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .destination-card {
    min-height: 360px;
  }
  .trek-grid .destination-card {
    min-height: 270px;
  }
  .trip-row { grid-auto-columns: 86%; }
  .upcoming-row {
    grid-auto-columns: 86%;
  }
  .page-hero {
    min-height: 350px;
    padding-top: 112px;
  }
  .page-hero h1 {
    font-size: 42px;
  }
  .page-hero nav {
    font-size: 13px;
  }
  .upcoming-list-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .upcoming-list-grid .trip-card .content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
  .upcoming-list-grid .trip-card .content > .trip-details,
  .upcoming-list-grid .trip-card .content > .price-box,
  .upcoming-list-grid .trip-card .content > .card-actions {
    grid-column: 1;
  }
  .upcoming-list-grid .trip-card .content > .price-box {
    grid-row: 3;
    padding: 12px 0 0;
  }
  .upcoming-list-grid .trip-card .content > .card-actions {
    grid-row: 4;
  }
  .upcoming-row .trip-card .image {
    height: 220px;
    flex-basis: 220px;
  }
  .upcoming-row .trip-card .content {
    padding-top: 20px;
  }
  .upcoming-row .trip-card h3 {
    font-size: 20px;
  }
  .card-actions {
    grid-template-columns: 62px 1fr;
  }
  .card-actions button,
  .card-actions span,
  .card-actions a {
    height: 54px;
  }
  .card-actions span,
  .card-actions a {
    font-size: 16px;
  }
  .next-trek {
    right: 2px;
  }
  .cta-treasure {
    padding: 32px 16px;
  }
  .cta-box {
    min-height: 260px;
    padding: 28px 16px;
  }
  .cta-box h2 {
    font-size: 32px;
    letter-spacing: 0;
  }
  .why-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .why-tile {
    min-height: auto;
    padding: 26px;
  }
  .why-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
  }
  .reviews-head {
    align-items: flex-start;
  }
  .review-row {
    grid-auto-columns: 92%;
    gap: 18px;
  }
  .review-card-item {
    min-height: 390px;
    padding: 18px 18px 0;
  }
  .review-top {
    grid-template-columns: 70px 1fr auto;
  }
  .review-top img {
    width: 64px;
    height: 64px;
  }
  .review-top h3 {
    font-size: 18px;
  }
  .review-top p {
    font-size: 14px;
  }
  .quote {
    font-size: 56px;
  }
  .rating {
    gap: 12px;
    margin: 18px 0;
  }
  .review-text p {
    font-size: 16px;
  }
  .faq-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .faq-section .section-title {
    padding: 26px 14px 22px;
  }
  .faq-question {
    padding: 18px 18px 18px 16px;
    font-size: 16px;
  }
  .faq-answer p {
    padding-left: 16px;
    padding-right: 18px;
    font-size: 14px;
  }
  .contact-section {
    grid-template-columns: 1fr;
    padding: 52px 16px 42px;
  }
  .contact-copy p {
    font-size: 16px;
  }
  .contact-graphic {
    min-height: 390px;
    transform: scale(.82);
    transform-origin: top center;
  }
  .footer-overlay {
    padding: 36px 18px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer h3 {
    margin-bottom: 14px;
  }
  .footer a:not(.logo),
  .footer-about p {
    font-size: 14px;
  }
  .footer-policies {
    display: grid;
    gap: 12px;
  }
  .whatsapp {
    width: 58px;
    height: 58px;
    border-width: 6px;
    right: 16px;
    bottom: 18px;
  }
}

@media (max-width: 1280px) {
  .main-nav.is-open .mega-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 8px 0 16px;
    padding: 14px;
    grid-template-columns: 1fr 1fr;
    gap: 14px 22px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .main-nav.is-open .nav-category.is-open .mega-menu {
    display: grid;
  }
  .main-nav.is-open .mega-menu a {
    display: block;
    width: auto;
    padding: 0;
    margin: 0 0 8px;
    color: #111;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    text-shadow: none;
  }
}

@media (max-width: 640px) {
  .main-nav.is-open .mega-menu {
    grid-template-columns: 1fr;
    max-height: 56vh;
    overflow-y: auto;
  }
}

