:root {
  --blue-950: #06264a;
  --blue-900: #073b67;
  --blue-700: #087bd7;
  --blue-500: #0aa5f5;
  --blue-50: #eff8ff;
  --orange: #ff5b22;
  --orange-dark: #e94916;
  --ink: #1f344a;
  --muted: #65758a;
  --line: #dde6ef;
  --soft: #f4f8fc;
  --white: #ffffff;
  --radius-sm: 6px;
  --radius-md: 8px;
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 36px;
  --shadow-sm: 0 8px 20px rgba(7, 39, 75, 0.08);
  --shadow: 0 18px 44px rgba(7, 39, 75, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: env(safe-area-inset-top);
  padding-right: env(safe-area-inset-right);
  padding-left: env(safe-area-inset-left);
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, var(--soft) 720px, #eef5fb 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(10, 165, 245, 0.34);
  outline-offset: 3px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 48, 88, 0.96), rgba(5, 48, 88, 0.52));
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.topbar,
.product-nav {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.topbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.account-nav,
.product-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 800;
}

.login-btn,
.register-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  padding: 0 24px;
}

.login-btn {
  color: #0a4778;
  background: #dff3ff;
}

.register-btn {
  color: var(--white);
  background: var(--blue-500);
}

.product-nav {
  min-height: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.product-nav a,
.account-nav a:not(.login-btn):not(.register-btn) {
  opacity: 0.92;
}

.product-nav a:hover,
.account-nav a:not(.login-btn):not(.register-btn):hover {
  opacity: 1;
  color: #dff3ff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(180deg, rgba(2, 37, 72, 0.88), rgba(5, 48, 87, 0.48) 42%, rgba(3, 18, 43, 0.86)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=85") center/cover;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    radial-gradient(circle at 7% -8%, rgba(0, 160, 230, 0.56), transparent 18%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.24));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding-top: 190px;
  text-align: center;
}

.hero h1 {
  max-width: 980px;
  margin: 0 auto 42px;
  font-size: clamp(34px, 3.8vw, 48px);
  line-height: 1.12;
  font-weight: 900;
}

.booking-engine {
  text-align: left;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-md);
  background: rgba(5, 32, 62, 0.42);
  box-shadow: 0 24px 70px rgba(4, 19, 38, 0.32);
  backdrop-filter: blur(12px);
}

.service-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.tab {
  min-height: 54px;
  border: 0;
  border-radius: var(--radius-md);
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.tab.is-active {
  color: #0d3355;
  background: var(--white);
}

.booking-form {
  padding: 24px 4px 0;
}

.booking-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.option-chip,
.option-check,
.control-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: rgba(9, 40, 76, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.34);
  padding: 0 16px;
  font-size: 15px;
  font-weight: 900;
}

.option-chip.active {
  border-color: var(--blue-500);
  background: var(--blue-500);
}

.option-chip input,
.option-check input {
  width: auto;
}

.control-chip {
  border-radius: var(--radius-md);
  padding-right: 8px;
}

.control-chip select {
  width: auto;
  max-width: 300px;
  min-height: 38px;
  border: 0;
  color: var(--white);
  background: transparent;
  box-shadow: none;
  font-size: 14px;
  font-weight: 800;
}

.control-chip option {
  color: var(--ink);
}

.form-heading {
  display: none;
}

.search-line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 14px;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.search-grid label {
  display: grid;
  gap: 9px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}

.search-grid input,
.search-grid select {
  min-height: 72px;
  border: 1px solid #b8c8d6;
  border-radius: var(--radius-md);
  background: var(--white);
  color: #0d243b;
  padding: 16px 18px;
  font-size: 18px;
  font-weight: 800;
  outline: none;
  box-shadow: 0 10px 24px rgba(3, 20, 43, 0.12);
}

.search-grid label:first-child input,
.search-grid label:first-child select {
  border-radius: var(--radius-md);
}

.search-grid label:nth-last-child(1) input,
.search-grid label:nth-last-child(1) select {
  border-radius: var(--radius-md);
}

.contact-drawer {
  margin-top: 14px;
}

.contact-drawer summary {
  width: fit-content;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(5, 25, 55, 0.45);
}

.contact-grid label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-weight: 800;
}

.contact-grid input,
.contact-grid select,
.contact-grid textarea,
.map-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
}

.wide-field {
  grid-column: 1 / -1;
}

.engine-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.looking-for {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.looking-for button {
  min-height: 42px;
  border: 0;
  border-radius: var(--radius-md);
  color: var(--white);
  background: rgba(255, 255, 255, 0.22);
  padding: 0 16px;
  cursor: pointer;
  font-weight: 900;
}

#formStatus {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.search-button {
  min-width: 74px;
  height: 72px;
  border: 5px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--orange);
  cursor: pointer;
  font-size: 0;
  font-weight: 900;
  position: relative;
  box-shadow: 0 14px 28px rgba(255, 91, 34, 0.3);
}

.search-button::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 20px;
  display: block;
  width: 23px;
  height: 23px;
  border: 3px solid var(--white);
  border-radius: 50%;
}

.search-button::after {
  content: "";
  position: absolute;
  left: 43px;
  top: 43px;
  width: 16px;
  height: 3px;
  border-radius: 999px;
  background: var(--white);
  transform: rotate(45deg);
}

.trusted-card {
  width: min(520px, 100%);
  min-height: 62px;
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.trusted-card em {
  color: #26384c;
}

.trusted-card span {
  color: rgba(38, 56, 76, 0.28);
  font-weight: 900;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 76px auto 0;
}

.centered {
  text-align: center;
}

.section-heading h2,
.row-heading h2,
.app-panel h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.16;
}

.section-heading,
.row-heading {
  position: relative;
}

.section-icon,
.eyebrow {
  color: var(--blue-700);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 13px;
}

.row-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin-bottom: 18px;
}

.row-heading a {
  color: var(--blue-700);
  font-weight: 900;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.country-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 6px;
  border-radius: var(--radius-md);
  overflow: hidden;
  color: var(--white);
  padding: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: var(--shadow);
}

.country-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.68));
}

.country-card > * {
  position: relative;
}

.country-card strong {
  font-size: 20px;
}

.country-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.indonesia { background-image: url("https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&w=600&q=80"); }
.thailand { background-image: url("https://images.unsplash.com/photo-1508009603885-50cf7c579365?auto=format&fit=crop&w=600&q=80"); }
.vietnam { background-image: url("https://images.unsplash.com/photo-1528127269322-539801943592?auto=format&fit=crop&w=600&q=80"); }
.malaysia { background-image: url("https://images.unsplash.com/photo-1596422846543-75c6fc197f07?auto=format&fit=crop&w=600&q=80"); }
.japan { background-image: url("https://images.unsplash.com/photo-1542640244-7e672d6cef4e?auto=format&fit=crop&w=600&q=80"); }
.philippines { background-image: url("https://images.unsplash.com/photo-1518509562904-e7ef99cdcc86?auto=format&fit=crop&w=600&q=80"); }

.service-overview {
  margin-top: 64px;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.overview-grid article {
  min-height: 188px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.overview-grid span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--blue-700);
  font-weight: 900;
}

.overview-grid strong {
  font-size: 19px;
}

.overview-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.pill-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 18px;
}

.pill-tabs button {
  min-height: 42px;
  border: 1px solid #cce0ec;
  border-radius: var(--radius-md);
  color: var(--blue-700);
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
  padding: 0 16px;
  white-space: nowrap;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.product-card:hover,
.country-card:hover,
.article-list article:hover,
.interest-columns div:hover,
.overview-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  display: block;
  object-fit: cover;
}

.product-card div {
  padding: 14px;
}

.product-card span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.product-card h3 {
  margin: 8px 0;
  font-size: 17px;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.article-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-list article {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.article-list img {
  width: 100%;
  height: 110px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.article-list h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.article-list p {
  margin: 0;
  color: var(--muted);
}

.app-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border-radius: var(--radius-md);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(8, 76, 125, 0.94), rgba(9, 50, 89, 0.9)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80") center/cover;
  box-shadow: var(--shadow);
}

.app-panel p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.primary-button,
.secondary-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 0;
  cursor: pointer;
  font-weight: 900;
  padding: 0 18px;
}

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

.secondary-button {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
}

.benefit-list strong,
.benefit-list span {
  display: block;
}

.benefit-list span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.payment-section {
  scroll-margin-top: 86px;
}

.payment-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(34, 82, 111, 0.09);
}

.payment-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.16;
}

.payment-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.payment-partners,
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-partners span,
.footer-payments span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cce0ec;
  border-radius: var(--radius-md);
  color: var(--blue-900);
  background: #f7fbff;
  padding: 0 14px;
  font-weight: 900;
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-cards a {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid #d8e8f4;
  border-radius: var(--radius-md);
  background: #f8fcff;
}

.contact-cards strong {
  color: var(--blue-700);
  font-size: 13px;
}

.contact-cards span {
  color: var(--ink);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.payment-form {
  display: grid;
  gap: 18px;
}

.payment-methods {
  display: inline-flex;
  width: fit-content;
  padding: 4px;
  border: 1px solid #cce0ec;
  border-radius: var(--radius-md);
  background: #f2f8fd;
}

.payment-tab {
  min-height: 42px;
  border: 0;
  border-radius: var(--radius-md);
  color: var(--blue-900);
  background: transparent;
  cursor: pointer;
  padding: 0 22px;
  font-weight: 900;
}

.payment-tab.is-active {
  color: var(--white);
  background: var(--blue-700);
  box-shadow: 0 8px 18px rgba(8, 123, 215, 0.24);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.payment-grid label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.payment-grid input,
.payment-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
}

.payment-pane {
  display: none;
  padding: 16px;
  border: 1px solid #d8e8f4;
  border-radius: var(--radius-md);
  background: #f8fcff;
}

.payment-pane.is-active {
  display: grid;
  gap: 12px;
}

.payment-note,
.payment-actions p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.payment-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.map-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 16px;
}

.map-section iframe {
  width: 100%;
  height: 430px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.interest-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.interest-columns div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.interest-columns h3 {
  margin: 0 0 12px;
}

.interest-columns a {
  display: block;
  padding: 7px 0;
  color: #315f83;
  font-weight: 800;
}

.chat-launcher {
  position: fixed;
  right: 8px;
  bottom: 8px;
  z-index: 70;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--orange);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.chat-panel {
  position: fixed;
  right: 22px;
  bottom: 98px;
  z-index: 80;
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

.chat-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chat-panel header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  color: var(--white);
  background: var(--blue-900);
}

.chat-panel header span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.chat-panel header button,
.chat-panel form button {
  border: 0;
  border-radius: var(--radius-md);
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 280px;
  overflow-y: auto;
  padding: 16px;
}

.chat-messages p {
  width: fit-content;
  max-width: 88%;
  margin: 0;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: #eef5fb;
  line-height: 1.5;
}

.chat-messages .user {
  justify-self: end;
  color: var(--white);
  background: var(--orange);
}

.chat-panel form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.chat-panel form input {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 10px 12px;
}

.chat-panel form button {
  background: var(--blue-700);
  padding: 0 14px;
  font-weight: 900;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 86px auto 34px;
  margin-bottom: max(34px, env(safe-area-inset-bottom));
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
  color: var(--muted);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.footer-wordmark {
  display: block;
  color: var(--blue-900);
  font-size: 30px;
  margin-bottom: 8px;
}

.footer-payments {
  margin-top: 14px;
}

.footer-payments span {
  min-height: 34px;
  padding: 0 10px;
  font-size: 12px;
}

.site-footer strong,
.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.site-footer strong {
  color: var(--ink);
}

@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-18px, -8px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1180px) {
  .account-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .product-nav {
    position: absolute;
    left: 22px;
    right: 22px;
    top: 78px;
    display: none;
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(5, 44, 79, 0.96);
    box-shadow: var(--shadow);
  }

  .product-nav.is-open {
    display: grid;
  }

  .service-tabs {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .search-grid,
  .search-line,
  .contact-grid,
  .country-grid,
  .card-grid,
  .overview-grid,
  .article-list,
  .app-panel,
  .payment-shell,
  .interest-columns,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 1040px;
  }

  .hero-inner {
    width: min(100% - 24px, 1180px);
    padding-top: 134px;
  }

  .booking-engine {
    padding: 14px;
  }

  .tab {
    min-height: 46px;
    font-size: 16px;
    padding: 0 14px;
  }

  .booking-form {
    padding: 18px 0 0;
  }

  .search-grid,
  .search-line,
  .contact-grid,
  .country-grid,
  .card-grid,
  .overview-grid,
  .article-list,
  .app-panel,
  .payment-shell,
  .payment-grid,
  .interest-columns,
  .site-footer,
  .map-search {
    grid-template-columns: 1fr;
  }

  .search-grid input,
  .search-grid select,
  .search-grid label:first-child input,
  .search-grid label:first-child select,
  .search-grid label:nth-last-child(1) input,
  .search-grid label:nth-last-child(1) select {
    border-left: 1px solid #b8c8d6;
    border-radius: 14px;
  }

  .engine-footer,
  .row-heading {
    display: grid;
  }

  .trusted-card {
    flex-wrap: wrap;
    padding: 12px;
  }

  .payment-shell,
  .site-footer,
  .app-panel {
    padding: 22px;
  }
}
