:root {
  --aqua: #4ec3d5;
  --aqua-strong: #16b4cf;
  --aqua-soft: #e7f9fc;
  --navy: #0d2845;
  --navy-2: #173c5f;
  --coral: #ff6b68;
  --sand: #f7e9d6;
  --paper: #ffffff;
  --canvas: #f4f8fb;
  --ink: #10283e;
  --muted: #667b8d;
  --line: #dce8ef;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-lg: 0 22px 60px rgba(13, 40, 69, 0.13);
  --shadow-md: 0 12px 30px rgba(13, 40, 69, 0.10);
  --shadow-sm: 0 6px 18px rgba(13, 40, 69, 0.07);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font: 16px/1.75 "Source Han Sans SC", "Noto Sans CJK SC", -apple-system,
    BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(78, 195, 213, 0.12), transparent 28rem),
    var(--canvas);
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 1000; padding: 10px 14px; border-radius: 10px; background: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 232, 239, 0.85);
  box-shadow: 0 4px 22px rgba(13, 40, 69, 0.05);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; font-weight: 900; }
.brand-image { width: 152px; height: 48px; gap: 8px; overflow: hidden; }
.brand-image img { display: none; }
.brand-image::before,
.brand-image::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  background: url("/官号二维码/官网 logo.jpg") no-repeat;
}
.brand-image::before {
  width: 48px;
  height: 38px;
  background-size: 92px 91px;
  background-position: -22px -12px;
}
.brand-image::after {
  width: 94px;
  height: 36px;
  background-size: 119px 118px;
  background-position: -14px -68px;
}
.cat-mark { width: 34px; height: 28px; position: relative; border: 3px solid currentColor; border-radius: 8px 8px 13px 13px; }
.brand small { display: block; color: var(--aqua-strong); font: 700 9px/1.1 sans-serif; letter-spacing: 1.8px; }
.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(16px, 1.8vw, 28px); color: var(--navy); font-size: 15px; font-weight: 700; }
.nav > a, .dest-toggle { position: relative; white-space: nowrap; }
.nav > a::after, .dest-toggle::before { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; border-radius: 2px; background: var(--aqua-strong); transition: right 0.22s ease; }
.nav > a:hover, .nav > a.active, .dest-toggle:hover, .dest-toggle.active { color: var(--aqua-strong); }
.nav > a:hover::after, .nav > a.active::after, .dest-toggle:hover::before, .dest-toggle.active::before { right: 0; }
.dropdown { position: relative; }
.dest-toggle::-webkit-details-marker { display: none; }
.dest-toggle::marker { content: ""; }
.dest-toggle { list-style: none; cursor: pointer; }
.dest-toggle::after { content: "⌄"; display: inline-block; margin-left: 4px; font-size: 13px; transition: transform 0.2s ease; }
.dropdown[open] .dest-toggle::after { transform: rotate(180deg); }
.dropdown-menu { display: none; position: absolute; top: 42px; left: 50%; width: 280px; padding: 12px; transform: translateX(-36%); background: rgba(255, 255, 255, 0.98); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); }
.dropdown[open] .dropdown-menu { display: grid; }
.dropdown-menu::before { content: ""; position: absolute; top: -6px; left: 34%; width: 12px; height: 12px; transform: rotate(45deg); background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.dropdown-menu a { position: relative; z-index: 1; padding: 10px 12px; border-radius: 11px; color: var(--navy); font-weight: 650; }
.dropdown-menu a:hover { color: var(--aqua-strong); background: var(--aqua-soft); }
.nav-actions { display: inline-flex; align-items: center; gap: 9px; margin-left: 2px; padding-left: 16px; border-left: 1px solid var(--line); }
.nav-icon, .consult-nav, .nav-toggle { border: 0; cursor: pointer; }
.nav-icon { display: inline-flex; align-items: center; gap: 6px; padding: 7px 3px; background: transparent; color: var(--navy); font-size: 14px; font-weight: 750; }
.nav-icon::before { content: "⌕"; font-size: 21px; line-height: 1; }
.consult-nav { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 4px 15px 4px 5px; overflow: visible; border-radius: 999px; color: #fff; background: linear-gradient(135deg, var(--aqua), var(--aqua-strong)); box-shadow: 0 8px 18px rgba(22, 180, 207, 0.24); font-weight: 800; }
.consult-button-avatar { position: relative; flex: 0 0 36px; width: 36px; height: 36px; border: 2px solid rgba(255, 255, 255, 0.92); border-radius: 50%; background: #fff; box-shadow: 0 3px 9px rgba(13, 40, 69, 0.16); }
.consult-button-avatar img { display: block; width: 100%; height: 100%; border-radius: inherit; object-fit: cover; object-position: 50% 28%; }
.consult-button-avatar::after { content: ""; position: absolute; right: -2px; bottom: 0; width: 10px; height: 10px; border: 2px solid #fff; border-radius: 50%; background: #22c36a; box-shadow: 0 1px 3px rgba(13, 40, 69, 0.18); }
.consult-button-label { white-space: nowrap; }
.nav-toggle { display: none; margin-left: auto; padding: 8px; background: transparent; color: var(--navy); font-size: 27px; }

/* Buttons */
.btn { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 8px; padding: 10px 21px; border: 0; border-radius: 999px; color: #fff; background: linear-gradient(135deg, var(--aqua), var(--aqua-strong)); box-shadow: 0 9px 20px rgba(22, 180, 207, 0.22); cursor: pointer; font-weight: 850; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(22, 180, 207, 0.28); }
.btn.secondary { color: var(--aqua-strong); background: rgba(255, 255, 255, 0.93); border: 1px solid rgba(22, 180, 207, 0.42); box-shadow: none; }
.btn.small { min-height: 36px; padding: 7px 14px; font-size: 13px; }

/* Home hero */
.hero { padding: 0; }
.hero-grid {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #aee8f4;
  box-shadow: var(--shadow-lg);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(610px, 56%);
  padding: 68px 0 118px 62px;
}
.hero h1,
.page-hero h1 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.hero p { max-width: 610px; margin: 0; color: #31536e; font-size: 17px; line-height: 1.9; }
.eyebrow { color: #078fa9; font-size: 13px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.actions { display: flex; flex-wrap: wrap; gap: 11px; margin: 18px 0 0; }
.placeholder {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
  color: transparent;
  background:
    linear-gradient(90deg, rgba(226, 244, 251, 0.88) 0%, rgba(226, 244, 251, 0.63) 31%, rgba(226, 244, 251, 0.08) 61%),
    url("../images/home-hero.jpg") center / cover no-repeat;
}
.trip-search {
  position: absolute;
  z-index: 3;
  left: 62px;
  bottom: 18px;
  width: min(790px, calc(100% - 124px));
  min-height: 68px;
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, 1fr)) 134px;
  align-items: stretch;
  padding: 10px 12px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(13, 40, 69, 0.18);
  backdrop-filter: blur(16px);
}
.trip-field,
.hero-search {
  min-width: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.trip-field {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  padding: 2px 13px;
  color: var(--navy);
  text-align: left;
}
.trip-field:not(:nth-last-child(2))::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  bottom: 10px;
  width: 1px;
  background: var(--line);
}
.trip-field .trip-icon { grid-row: 1 / 3; color: var(--aqua-strong); font-size: 18px; }
.trip-field strong { align-self: end; font-size: 13px; line-height: 1.2; }
.trip-field small { align-self: start; overflow: hidden; color: #8395a4; font-size: 10px; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.hero-search {
  align-self: center;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 15px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--aqua), var(--aqua-strong));
  box-shadow: 0 8px 18px rgba(22, 180, 207, 0.24);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}
.hero-search-icon { width: 17px; height: 17px; display: grid; flex: 0 0 17px; place-items: center; }
.hero-search-icon svg { display: block; width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { padding: 6px 11px; border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 999px; color: var(--navy-2); background: rgba(255, 255, 255, 0.82); box-shadow: 0 5px 14px rgba(13, 40, 69, 0.05); font-size: 12px; font-weight: 750; }

/* Homepage feature stack */
.home-destinations { padding: 30px 0 28px; background: #fff; }
.home-section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.home-section-head h2 { margin: 0 0 3px; color: var(--navy); font-size: 28px; line-height: 1.25; }
.home-section-head p { margin: 0; color: var(--muted); font-size: 14px; }
.home-section-head > a { flex: 0 0 auto; color: #547084; font-size: 13px; font-weight: 750; }
.home-section-head > a:hover { color: var(--aqua-strong); }
.home-destination-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.home-dest-card {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 23px;
  border-radius: 13px;
  color: #fff;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.home-dest-card::before { content: ""; position: absolute; inset: 26% 0 0; background: linear-gradient(180deg, transparent, rgba(4, 42, 68, 0.78)); }
.home-dest-card::after { content: "›"; position: absolute; right: 20px; bottom: 20px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: rgba(255, 255, 255, 0.95); font-size: 25px; line-height: 1; }
.home-dest-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.home-dest-card.semporna { background-image: url("../images/home-hero.jpg"); background-position: center 58%; }
.home-dest-card.kota-kinabalu { background-image: url("../images/destination-kota-kinabalu.jpg"); }
.home-dest-card.phuket { background-image: url("../images/destination-phuket.jpg"); }
.home-dest-card h3,
.home-dest-card p { position: relative; z-index: 1; max-width: calc(100% - 50px); }
.home-dest-card h3 { margin: 0; font-size: 23px; line-height: 1.25; }
.home-dest-card p { margin: 3px 0 0; font-size: 13px; line-height: 1.5; }
.home-safety { padding: 0 0 34px; background: #fff; }
.safety-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 118px;
  padding: 22px 28px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 248, 238, 1) 0%, rgba(255, 248, 238, 0.97) 68%, rgba(255, 248, 238, 0.36)),
    url("../images/home-hero.jpg") right 56% / 38% auto no-repeat;
  box-shadow: var(--shadow-sm);
}
.safety-banner h2 { margin: 0; color: var(--navy); font-size: 22px; }
.safety-features { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.safety-feature { display: grid; grid-template-columns: 38px 1fr; gap: 9px; align-items: center; }
.safety-feature > span { width: 36px; height: 36px; display: grid; place-items: center; border: 2px solid var(--aqua); border-radius: 50%; color: var(--aqua-strong); font-weight: 900; }
.safety-feature strong { display: block; color: var(--navy); font-size: 13px; line-height: 1.35; }
.safety-feature small { display: block; color: #7e8e99; font-size: 10px; line-height: 1.45; }

/* Sections */
.section { padding: 76px 0; }
.home-compact-section { padding-block: 50px; }
.section.alt { background: linear-gradient(180deg, rgba(231, 249, 252, 0.62), rgba(255, 255, 255, 0.45)); border-block: 1px solid rgba(220, 232, 239, 0.7); }
.section-head { max-width: 790px; margin-bottom: 32px; }
.section-head h2, .content-section h2 { margin: 8px 0 12px; color: var(--navy); font-size: clamp(28px, 3.6vw, 43px); line-height: 1.22; letter-spacing: -0.035em; }
.section-head p, .muted { color: var(--muted); }
.grid-3, .grid-4 { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { position: relative; overflow: hidden; padding: 27px; border: 1px solid rgba(220, 232, 239, 0.9); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.92); box-shadow: var(--shadow-sm); transition: transform 0.22s ease, box-shadow 0.22s ease; }
.card::after { content: ""; position: absolute; right: -38px; bottom: -46px; width: 110px; height: 110px; border-radius: 50%; background: rgba(78, 195, 213, 0.10); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin: 7px 0 8px; color: var(--navy); font-size: 20px; line-height: 1.35; }
.card p { margin-bottom: 0; color: var(--muted); }
.num { color: var(--coral); font-size: 13px; font-weight: 900; letter-spacing: 0.08em; }
.dest-card { position: relative; min-height: 285px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 28px; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(180deg, transparent 25%, rgba(6, 45, 72, 0.74)), linear-gradient(145deg, #94e5ef, #17a9c9 62%, #087e9c); box-shadow: var(--shadow-md); transition: transform 0.25s ease; }
.dest-card:nth-child(2) { background: linear-gradient(180deg, transparent 25%, rgba(6, 45, 72, 0.74)), linear-gradient(145deg, #d1edff, #4fa7dc 56%, #2d7faa); }
.dest-card:nth-child(3) { background: linear-gradient(180deg, transparent 25%, rgba(6, 45, 72, 0.74)), linear-gradient(145deg, #b5ebe4, #39bba9 56%, #187a75); }
.dest-card::before { content: "图片占位"; position: absolute; top: 20px; right: 20px; padding: 5px 9px; border-radius: 999px; background: rgba(255, 255, 255, 0.18); font-size: 11px; }
.dest-card::after { content: "→"; position: absolute; right: 24px; bottom: 28px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: #fff; }
.dest-card:hover { transform: translateY(-5px); }
.dest-card h3 { position: relative; z-index: 1; margin: 0; font-size: 30px; }
.dest-card p { position: relative; z-index: 1; max-width: 80%; margin: 4px 0 0; }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.step { position: relative; min-height: 220px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.step::before { counter-increment: step; content: "0" counter(step); display: block; color: var(--aqua); font-size: 44px; font-weight: 950; line-height: 1; }
.step h3 { color: var(--navy); }
.service-flow { counter-reset: service-step; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; margin-right: 104px; }
.flow-step { position: relative; min-width: 0; min-height: 216px; padding: 78px 18px 22px; border: 1px solid rgba(78, 195, 213, 0.28); border-radius: 22px; background: rgba(255, 255, 255, 0.94); box-shadow: var(--shadow-sm); }
.flow-step:nth-child(even) { background: linear-gradient(180deg, #effbfd, #fff); }
.flow-step::before { counter-increment: service-step; content: counter(service-step, decimal-leading-zero); position: absolute; left: 18px; top: 18px; z-index: 1; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--aqua), var(--aqua-strong)); box-shadow: 0 8px 18px rgba(20, 173, 200, 0.22); font-size: 16px; font-weight: 900; }
.flow-step:not(:last-child)::after { content: "→"; position: absolute; right: -19px; top: 25px; z-index: 3; width: 24px; color: var(--aqua-strong); font-size: 25px; font-weight: 900; line-height: 1; text-align: center; }
.flow-step h3 { margin: 0 0 10px; color: var(--navy); font-size: 19px; }
.flow-step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.step p { color: var(--muted); }

/* Inner heroes and content */
.page-hero { position: relative; overflow: hidden; margin: 22px auto 0; padding: 72px 0 62px; width: min(var(--max), calc(100% - 40px)); border-radius: var(--radius-xl); background: linear-gradient(90deg, rgba(235, 251, 253, 0.98), rgba(235, 251, 253, 0.74) 58%, rgba(78, 195, 213, 0.35)), linear-gradient(135deg, #d8f6fa, #7bd2df); box-shadow: var(--shadow-md); }
.page-hero::after { display: none; }
.page-hero .container { width: min(1080px, calc(100% - 80px)); }
.page-hero h1 { max-width: 920px; font-size: clamp(38px, 5vw, 62px); }
.page-hero p { max-width: 780px; color: #3f647d; font-size: 17px; }
.breadcrumbs { margin-bottom: 20px; color: #55748a; font-size: 13px; }
.breadcrumbs a:hover { color: var(--aqua-strong); }
.visual-page-hero { min-height: 420px; display: flex; align-items: center; background-position: center; background-size: cover; background-repeat: no-repeat; }
.visual-page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3, 32, 53, 0.83), rgba(3, 32, 53, 0.54) 58%, rgba(3, 32, 53, 0.12)); }
.visual-page-hero .container { position: relative; z-index: 1; }
.visual-page-hero h1 { color: #fff; text-shadow: 0 3px 18px rgba(3, 29, 48, 0.3); }
.visual-page-hero p,
.visual-page-hero .breadcrumbs { color: rgba(255, 255, 255, 0.92); text-shadow: 0 2px 12px rgba(3, 29, 48, 0.24); }
.visual-page-hero .breadcrumbs a { color: #fff; }
.visual-page-hero .eyebrow { color: #8eeaf4; }
.safety-page-hero { background-image: url("../images/content/pages/safety-hero-pc.webp"); }
.malaysia-custom-hero { background-image: url("../images/content/pages/malaysia-custom-hero-pc.webp"); }
.thailand-custom-hero { background-image: url("../images/content/pages/thailand-custom-hero-pc.webp"); }
.blog-landing-hero { background-image: url("../images/content/blog/blog-default-cover.webp"); }
.destination-page-hero { min-height: 420px; display: flex; align-items: center; background-size: cover; background-repeat: no-repeat; }
.destination-page-hero::after { display: none; }
.destination-page-hero .container { position: relative; z-index: 1; }
.destination-page-hero h1 { max-width: 790px; color: #fff; text-shadow: 0 3px 18px rgba(3, 29, 48, 0.28); }
.destination-page-hero p { max-width: 700px; color: rgba(255, 255, 255, 0.94); text-shadow: 0 2px 12px rgba(3, 29, 48, 0.24); }
.destination-page-hero .eyebrow { color: #8eeaf4; }
.destination-page-hero .breadcrumbs { color: rgba(255, 255, 255, 0.78); }
.destination-page-hero .breadcrumbs a { color: #fff; }
.hero-consult-qr-trigger { position: relative; overflow: visible; font: inherit; }
.hero-consult-qr { position: absolute; left: 50%; bottom: calc(100% + 14px); z-index: 24; display: grid; justify-items: center; gap: 8px; width: 186px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; color: var(--navy); background: #fff; box-shadow: 0 18px 48px rgba(3, 29, 48, 0.28); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, 8px); transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease; }
.hero-consult-qr::after { content: ""; position: absolute; left: 50%; bottom: -7px; width: 13px; height: 13px; transform: translateX(-50%) rotate(45deg); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.hero-consult-qr img { display: block; width: 160px; height: 160px; border-radius: 10px; background: #fff; object-fit: contain; }
.hero-consult-qr strong { font-size: 13px; line-height: 1.4; }
.hero-consult-qr-trigger:hover .hero-consult-qr,
.hero-consult-qr-trigger:focus-visible .hero-consult-qr,
.hero-consult-qr-trigger.qr-open .hero-consult-qr { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav-consult-qr { right: 0; left: auto; top: calc(100% + 12px); bottom: auto; transform: translateY(-8px); }
.nav-consult-qr::after { right: 34px; left: auto; top: -7px; bottom: auto; transform: rotate(45deg); border-top: 1px solid var(--line); border-right: 0; border-bottom: 0; border-left: 1px solid var(--line); }
.consult-nav:hover .nav-consult-qr,
.consult-nav:focus-visible .nav-consult-qr,
.consult-nav.qr-open .nav-consult-qr { transform: translateY(0); }
.destination-page-hero.semporna-hero { background-image: linear-gradient(90deg, rgba(3, 32, 53, 0.82), rgba(3, 32, 53, 0.48) 58%, rgba(3, 32, 53, 0.12)), url("../images/home-hero.jpg"); background-position: center 58%; }
.destination-page-hero.kota-kinabalu-hero { background-image: linear-gradient(90deg, rgba(3, 32, 53, 0.82), rgba(3, 32, 53, 0.46) 58%, rgba(3, 32, 53, 0.12)), url("../images/destination-kota-kinabalu.jpg"); background-position: center; }
.destination-page-hero.phuket-hero { background-image: linear-gradient(90deg, rgba(3, 32, 53, 0.82), rgba(3, 32, 53, 0.46) 58%, rgba(3, 32, 53, 0.12)), url("../images/destination-phuket.jpg"); background-position: center; }
.layout { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 38px; padding-top: 36px; padding-bottom: 70px; }
.toc { position: sticky; top: 110px; align-self: start; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.92); box-shadow: var(--shadow-sm); }
.toc strong { display: block; margin-bottom: 8px; color: var(--navy); }
.toc a { display: block; padding: 7px 0; color: var(--muted); font-size: 14px; }
.toc a:hover { color: var(--aqua-strong); }
.content-section { padding: 48px 0; border-bottom: 1px solid var(--line); }
.content-section:first-child { padding-top: 6px; }
.content-section:last-child { border-bottom: 0; }
.content-section h3 { margin-top: 28px; color: var(--navy); font-size: 22px; }
.notice { padding: 17px 19px; border-left: 4px solid var(--coral); border-radius: 0 13px 13px 0; color: #604e43; background: linear-gradient(90deg, #fff2e4, #fff9f3); }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.choice { padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg, #fff, #f1fbfd); box-shadow: var(--shadow-sm); }
.choice h3 { margin: 0 0 7px; }
.choice p { margin: 0; color: var(--muted); }
.route-highlight { display: inline; padding: 1px 5px; border-radius: 6px; color: var(--navy); background: rgba(78, 195, 213, 0.2); box-decoration-break: clone; -webkit-box-decoration-break: clone; font-weight: 850; }
.service-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; padding: 0; list-style: none; }
.service-list li { position: relative; min-height: 58px; display: flex; align-items: center; padding: 14px 16px 14px 46px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); }
.service-list li::before { content: "✓"; position: absolute; left: 16px; top: 50%; width: 20px; height: 20px; display: grid; place-items: center; transform: translateY(-50%); border-radius: 50%; color: #fff; background: var(--aqua); font-size: 12px; font-weight: 900; }

/* About page */
.about-hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(3, 32, 53, 0.84), rgba(3, 32, 53, 0.56) 58%, rgba(3, 32, 53, 0.16)), url("../images/content/pages/about-hero-pc.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.about-hero .container { position: relative; z-index: 1; }
.about-hero h1 { color: #fff; text-shadow: 0 3px 18px rgba(3, 29, 48, 0.3); }
.about-hero p,
.about-hero .breadcrumbs { color: rgba(255, 255, 255, 0.92); text-shadow: 0 2px 12px rgba(3, 29, 48, 0.24); }
.about-hero .breadcrumbs a { color: #fff; }
.about-hero .eyebrow { color: #8eeaf4; }
.about-hero p + p { margin-top: 12px; }
.about-tags { max-width: 920px; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.about-tags .pill { border-color: rgba(255, 255, 255, 0.92); background: rgba(255, 255, 255, 0.76); }
.facts-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.fact-card { padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.fact-card > span,
.channel-kicker { color: var(--aqua-strong); font-size: 12px; font-weight: 900; letter-spacing: 0.08em; }
.fact-card h3 { margin: 6px 0 0; color: var(--navy); font-size: 18px; line-height: 1.45; }
.fact-card p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.fact-wide { grid-column: span 2; }
.belief-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.belief-card { min-height: 220px; padding: 25px; border-radius: var(--radius-lg); background: linear-gradient(155deg, #fff, #eefbfd); box-shadow: var(--shadow-sm); }
.belief-card > span { color: var(--coral); font-size: 13px; font-weight: 950; letter-spacing: 0.12em; }
.belief-card h3 { margin: 28px 0 8px; color: var(--navy); font-size: 20px; }
.belief-card p { margin: 0; color: var(--muted); }
.about-team-feature { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr); min-height: 410px; overflow: hidden; border-radius: var(--radius-xl); color: #fff; background: var(--navy); box-shadow: var(--shadow-md); }
.about-team-feature > img { width: 100%; height: 100%; min-height: 410px; object-fit: cover; }
.about-team-feature > div { display: flex; flex-direction: column; justify-content: center; padding: 42px; }
.about-team-feature h3 { margin: 12px 0; font-size: 28px; }
.about-team-feature p { margin: 0; color: rgba(255, 255, 255, 0.78); line-height: 1.85; }
.about-assets-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 18px; }
.about-assets-grid figure { position: relative; min-height: 300px; margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: var(--navy); box-shadow: var(--shadow-sm); }
.about-assets-grid img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; transition: transform 0.35s ease; }
.about-assets-grid figure:hover img { transform: scale(1.035); }
.about-assets-grid figcaption { position: absolute; inset: auto 0 0; padding: 52px 24px 22px; color: #fff; background: linear-gradient(transparent, rgba(3, 32, 53, 0.88)); }
.about-assets-grid h3 { margin: 0 0 5px; font-size: 22px; }
.about-assets-grid p { margin: 0; color: rgba(255, 255, 255, 0.78); font-size: 14px; }
.about-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.about-steps article { position: relative; min-height: 210px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.about-steps article > span { display: block; color: var(--aqua); font-size: 38px; font-weight: 950; line-height: 1; }
.about-steps h3 { margin: 20px 0 7px; color: var(--navy); }
.about-steps p { margin: 0; color: var(--muted); }
.channels-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.channel-card { position: relative; min-height: 272px; display: block; overflow: hidden; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); color: inherit; background: linear-gradient(155deg, #fff 35%, #eaf9fc); box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.channel-card:hover,
.channel-card:focus-visible { transform: translateY(-3px); box-shadow: var(--shadow-md); outline: none; }
.channel-logo { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; overflow: hidden; border-radius: 10px; }
.channel-logo img { display: block; width: 36px; height: 36px; object-fit: contain; }
.logo-ctrip img { object-fit: cover; object-position: left center; }
.contact-icon { color: var(--aqua-strong); background: var(--aqua-soft); }
.contact-icon svg { width: 36px; height: 36px; padding: 6px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.channel-card h3 { margin: 10px 0 8px; color: var(--navy); font-size: 20px; line-height: 1.4; overflow-wrap: anywhere; }
.channel-card p { margin: 0; color: var(--muted); font-size: 14px; }
.channel-action { position: absolute; left: 24px; bottom: 20px; padding: 0; border: 0; color: var(--aqua-strong); background: transparent; font: inherit; font-size: 13px; font-weight: 850; cursor: pointer; }
.qr-card { overflow: visible; cursor: pointer; }
.qr-card.qr-open { z-index: 120; transform: none !important; }
.qr-popover { position: absolute; z-index: 160; left: 50%; bottom: 52px; width: 186px; display: block; padding: 12px; border: 1px solid var(--line); border-radius: 18px; color: var(--navy); background: #fff; box-shadow: 0 18px 48px rgba(13, 40, 69, 0.22); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, 8px); transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease; }
.qr-popover::after { content: ""; position: absolute; left: 50%; bottom: -7px; width: 13px; height: 13px; transform: translateX(-50%) rotate(45deg); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.qr-panel { display: grid; justify-items: center; gap: 8px; }
.qr-panel > strong { font-size: 13px; line-height: 1.4; }
.qr-preview { display: block; width: 160px; height: 160px; border-radius: 10px; background: #fff; object-fit: contain; }
.qr-card:hover .qr-popover,
.qr-card:focus-visible .qr-popover,
.qr-card:focus-within .qr-popover,
.qr-card.qr-open .qr-popover { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.qr-card.qr-open .channel-action { color: var(--navy); }
.company-address { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 14px; margin-top: 18px; padding: 18px 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.company-address span { color: var(--aqua-strong); font-size: 12px; font-weight: 900; letter-spacing: 0.08em; }
.company-address strong { color: var(--navy); }
.company-address p { margin: 0; color: var(--muted); }
.credentials-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 24px; }
.credential-card { min-height: 84px; display: flex; align-items: center; gap: 13px; padding: 15px 17px; border: 1px solid rgba(78, 195, 213, 0.34); border-radius: 18px; color: var(--navy-2); background: linear-gradient(145deg, #fff 34%, #eefafd); box-shadow: var(--shadow-sm); font-size: 13px; font-weight: 800; line-height: 1.55; }
.credential-icon { width: 38px; height: 38px; display: grid; flex: 0 0 38px; place-items: center; border-radius: 12px; color: var(--aqua-strong); background: rgba(78, 195, 213, 0.14); }
.credential-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.honor-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.honor-year { min-height: 270px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.honor-year > span { color: var(--aqua-strong); font-size: 34px; font-weight: 950; line-height: 1; }
.honor-year h3 { margin: 10px 0 14px; color: var(--navy); }
.honor-year ul { margin: 0; padding-left: 20px; color: var(--muted); }
.honor-year li + li { margin-top: 7px; }

/* Tables */
.route-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.route-table { width: 100%; min-width: 1200px; border-collapse: collapse; font-size: 13px; line-height: 1.6; }
.route-table th { padding: 15px 14px; color: var(--navy); background: #dff7fa; text-align: left; }
.route-table td { padding: 15px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.route-table tbody tr:hover { background: #f6fcfd; }
.route-table tr:last-child td { border-bottom: 0; }
.route-table th.route-image-heading { width: 116px; min-width: 116px; padding-right: 10px; padding-left: 12px; }
.route-table td.route-image-cell { width: 116px; min-width: 116px; padding: 12px 10px 12px 12px; }
.route-table td:nth-child(2) { min-width: 150px; color: var(--navy); font-weight: 850; }
.route-image { display: block; width: 94px; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid rgba(78, 195, 213, 0.24); border-radius: 12px; background: #e8fafc; }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.faq summary { position: relative; padding: 19px 52px 19px 21px; cursor: pointer; color: var(--navy); font-weight: 820; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--aqua-strong); font-size: 24px; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { background: #effbfd; }
.faq details > p { min-height: 68px; display: flex; flex-direction: column; align-items: stretch; justify-content: center; margin: 0; padding: 17px 21px; color: var(--muted); line-height: 1.8; }
.faq-answer { min-height: 58px; display: flex; flex-direction: column; justify-content: center; padding: 14px 21px; color: var(--muted); }
.faq-answer p { margin: 0 0 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { margin: 0 0 12px; padding-left: 22px; }
.faq-answer li + li { margin-top: 4px; }

/* Blog */
.blog-list { display: grid; gap: 16px; }
.post { display: grid; grid-template-columns: 130px 1fr auto; gap: 22px; align-items: center; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.post time { color: var(--aqua-strong); font-weight: 850; }
.post h2, .post h3 { margin: 0 0 5px; color: var(--navy); }
.post p { margin: 0; color: var(--muted); }

/* Travel guide articles */
.article-hero { width: min(1200px, calc(100% - 44px)); margin: 24px auto 0; padding: 64px 0 56px; border-radius: 30px; background: linear-gradient(130deg, #eafafd, #fff 55%, #fff4e8); box-shadow: var(--shadow-sm); }
.article-hero .container { width: min(920px, calc(100% - 56px)); }
.article-hero h1 { max-width: 860px; margin: 12px 0 18px; color: var(--navy); font-size: clamp(38px, 5vw, 62px); line-height: 1.12; }
.article-hero-image { position: relative; min-height: 490px; display: flex; align-items: flex-end; overflow: hidden; background-position: center; background-size: cover; background-repeat: no-repeat; }
.article-hero-image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3, 32, 53, 0.88), rgba(3, 32, 53, 0.58) 60%, rgba(3, 32, 53, 0.18)), linear-gradient(0deg, rgba(3, 32, 53, 0.28), transparent 60%); }
.article-hero-image .container { position: relative; z-index: 1; }
.article-hero-image h1 { color: #fff; text-shadow: 0 3px 18px rgba(3, 29, 48, 0.36); }
.article-hero-image .article-description,
.article-hero-image .breadcrumbs { color: rgba(255, 255, 255, 0.9); text-shadow: 0 2px 12px rgba(3, 29, 48, 0.26); }
.article-hero-image .breadcrumbs a { color: #fff; }
.article-hero-image .eyebrow { color: #8eeaf4; }
.article-hero-semporna { background-image: url("../images/content/blog/blog-cover-semporna.webp"); }
.article-hero-phuket { background-image: url("../images/content/blog/blog-cover-phuket.webp"); }
.article-hero-kota-kinabalu { background-image: url("../images/content/blog/blog-cover-kota-kinabalu.webp"); }
.article-description { max-width: 820px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.85; }
.article-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.article-meta span, .article-meta time { padding: 7px 11px; border-radius: 999px; color: var(--navy-2); background: rgba(255, 255, 255, 0.9); font-size: 12px; font-weight: 750; }
.travel-article { box-sizing: border-box; width: min(980px, calc(100% - 44px)); margin-inline: auto; padding: 64px clamp(44px, 5vw, 68px) 84px; }
.article-lead { margin: 0 0 38px; padding: 24px 26px; border-left: 4px solid var(--aqua); border-radius: 0 18px 18px 0; color: var(--navy-2); background: #effbfd; font-size: 17px; line-height: 1.9; }
.article-body h2 { margin: 58px 0 18px; color: var(--navy); font-size: 32px; line-height: 1.3; }
.article-body h3 { margin: 32px 0 12px; color: var(--navy); font-size: 22px; line-height: 1.4; }
.article-body p { margin: 0 0 17px; color: #476779; line-height: 1.95; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 25px; color: #476779; line-height: 1.9; }
.article-body li + li { margin-top: 5px; }
.article-body strong { color: var(--navy); }
.article-table-wrap { overflow-x: auto; margin: 24px 0 32px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
.article-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 14px; }
.article-table th { padding: 14px 16px; color: var(--navy); background: #dff7fa; text-align: left; }
.article-table td { padding: 14px 16px; border-top: 1px solid var(--line); color: #476779; vertical-align: top; }
.article-faq { margin-top: 62px; padding-top: 8px; }
.article-related { margin-top: 48px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, #fff, #f1fbfd); }
.article-related h2 { margin-top: 0; font-size: 25px; }
.article-related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.article-related-links a { padding: 9px 14px; border: 1px solid rgba(78, 195, 213, 0.42); border-radius: 999px; color: var(--navy-2); background: #fff; font-weight: 750; }

/* Australia destination */
.australia-hero { background-image: linear-gradient(90deg, rgba(9, 35, 57, 0.86), rgba(9, 35, 57, 0.46) 58%, rgba(9, 35, 57, 0.14)), url("../images/content/pages/australia-hero.webp"); background-position: center 54%; background-size: cover; background-repeat: no-repeat; }
.australia-hero .eyebrow, .australia-hero h1, .australia-hero p, .australia-hero .breadcrumbs, .australia-hero .breadcrumbs a { color: #fff; }
.australia-hero p { max-width: 850px; }
.australia-intro { padding: 32px; border: 1px solid rgba(78, 195, 213, 0.3); border-radius: 24px; color: #476779; background: linear-gradient(145deg, #fff, #eefafd); box-shadow: var(--shadow-sm); font-size: 16px; line-height: 1.95; }
.australia-regions { display: grid; gap: 22px; }
.australia-region { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.australia-region:nth-child(even) { background: linear-gradient(145deg, #fff, #f2fbfd); }
.australia-region > h2 { margin: 0 0 10px; color: var(--navy); font-size: 30px; }
.australia-region > p { margin: 0 0 24px; color: var(--muted); line-height: 1.85; }
.australia-place-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.australia-place { padding: 20px; border: 1px solid rgba(78, 195, 213, 0.28); border-radius: 17px; background: rgba(255, 255, 255, 0.9); }
.australia-place h3 { margin: 0 0 10px; color: var(--navy); font-size: 18px; }
.australia-place h4 { margin: 16px 0 7px; color: var(--navy-2); font-size: 15px; }
.australia-place ul { margin: 0; padding-left: 20px; color: #567487; line-height: 1.8; }
.australia-place li + li { margin-top: 3px; }

/* Search and consultant UI */
.site-modal { position: fixed; z-index: 200; inset: 0; display: none; align-items: flex-start; justify-content: center; padding: 10vh 20px 30px; background: rgba(4, 25, 44, 0.48); backdrop-filter: blur(10px); }
.site-modal.open { display: flex; }
.modal-card { width: min(680px, 100%); max-height: 80vh; overflow: auto; padding: 28px; border: 1px solid rgba(255, 255, 255, 0.75); border-radius: 24px; background: #fff; box-shadow: 0 30px 90px rgba(4, 25, 44, 0.28); }
.search-card { box-sizing: border-box; display: flex; flex-direction: column; overflow: hidden !important; }
.modal-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.modal-head h2 { margin: 0; color: var(--navy); font-size: 27px; }
.modal-close { margin-left: auto; width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--canvas); cursor: pointer; font-size: 20px; }
.site-search-input { width: 100%; height: 54px; padding: 0 18px; border: 1px solid #bddce4; border-radius: 15px; outline: none; color: var(--navy); background: #f7fcfd; font-size: 17px; }
.site-search-input:focus { border-color: var(--aqua-strong); box-shadow: 0 0 0 4px rgba(78, 195, 213, 0.15); }
.search-results { width: 100%; min-height: 0; max-height: min(52vh, 500px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: start; gap: 12px; margin-top: 17px; padding: 14px; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; scrollbar-gutter: stable; border: 1px solid #cadfe5; border-radius: 18px; background: #e8f2f4; background-clip: padding-box; }
.search-results::-webkit-scrollbar { width: 9px; }
.search-results::-webkit-scrollbar-track { margin: 8px 0; background: transparent; }
.search-results::-webkit-scrollbar-thumb { border: 2px solid #edf5f7; border-radius: 999px; background: #9dcfd9; }
.search-result { position: relative; min-height: 126px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto 1fr; align-content: start; column-gap: 12px; padding: 18px 36px 17px 17px; border: 1px solid rgba(78, 195, 213, 0.28); border-radius: 16px; background: linear-gradient(145deg, #fff 35%, #f4fbfc); box-shadow: 0 8px 22px rgba(13, 40, 69, 0.07); }
.search-result::before { content: "⌖"; grid-row: 1 / span 3; align-self: center; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: var(--aqua-strong); background: var(--aqua-soft); font-weight: 900; }
.search-result::after { content: "→"; position: absolute; right: 14px; top: 14px; color: rgba(13, 40, 69, 0.38); font-size: 15px; font-weight: 900; }
.search-result:nth-child(3n + 2) { background: linear-gradient(145deg, #fff 35%, #eef8ff); }
.search-result:nth-child(3n) { background: linear-gradient(145deg, #fff 35%, #f2fbf7); }
.search-result:hover,
.search-result:focus-visible { border-color: var(--aqua); background: #f8feff; box-shadow: 0 8px 22px rgba(13, 40, 69, 0.09); outline: none; }
.search-result-type { display: block; margin-bottom: 2px; color: var(--aqua-strong); font-size: 11px; font-weight: 900; letter-spacing: 0.08em; }
.search-result strong { display: block; color: var(--navy); }
.search-result span { align-self: start; color: var(--muted); font-size: 13px; line-height: 1.55; }
.search-empty { padding: 24px 18px; border-radius: 12px; color: var(--muted); background: #fff; text-align: center; }
.consult-card { width: min(560px, 100%); }
.consult-card > p { color: var(--muted); }
.consult-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0; }
.consult-option { padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--canvas); text-align: center; }
.consult-option strong { display: block; color: var(--navy); }
.consult-option span { color: var(--muted); font-size: 12px; }
.contact-rail { position: fixed; z-index: 92; right: 18px; top: 50%; width: 90px; overflow: visible; transform: translateY(-50%); border: 1px solid rgba(13, 40, 69, 0.1); border-radius: 22px; background: rgba(255, 255, 255, 0.97); box-shadow: 0 16px 42px rgba(13, 40, 69, 0.16); backdrop-filter: blur(14px); }
.contact-rail-item { position: relative; width: 100%; min-height: 86px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; padding: 10px 6px; border: 0; color: var(--navy); background: transparent; cursor: pointer; font: inherit; font-size: 12px; font-weight: 800; }
.contact-rail-item + .contact-rail-item { border-top: 1px solid rgba(13, 40, 69, 0.08); }
.contact-rail-item:first-child { border-radius: 22px 22px 0 0; }
.contact-rail-item:last-child { border-radius: 0 0 22px 22px; }
.contact-rail-item:hover,
.contact-rail-item:focus-visible { color: var(--aqua-strong); background: #effbfd; outline: none; }
.contact-rail-icon { width: 34px; height: 34px; display: grid; place-items: center; color: var(--aqua-strong); }
.contact-rail-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-rail-icon img { display: block; width: 28px; height: 28px; object-fit: contain; }
.contact-rail-icon.wechat-icon { color: #07c160; }
.contact-rail-icon.wechat-icon svg { width: 31px; height: 31px; fill: currentColor; stroke: none; }
.contact-rail-icon.wechat-icon .wechat-dot { fill: #fff; }
.contact-rail-item:nth-child(3) .contact-rail-icon { color: #111; }
.contact-rail-item:nth-child(4) .contact-rail-icon { color: #ff2442; }
.contact-rail-qr,
.floating-consult-qr { position: absolute; display: grid; justify-items: center; gap: 8px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; color: var(--navy); background: #fff; box-shadow: 0 18px 48px rgba(13, 40, 69, 0.22); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease; }
.contact-rail-qr { right: calc(100% + 14px); top: 50%; width: 186px; transform: translate(8px, -50%); }
.contact-rail-qr::after { content: ""; position: absolute; right: -7px; top: 50%; width: 13px; height: 13px; transform: translateY(-50%) rotate(45deg); border-right: 1px solid var(--line); border-top: 1px solid var(--line); background: #fff; }
.contact-rail-qr img,
.floating-consult-qr img { display: block; width: 160px; height: 160px; border-radius: 10px; background: #fff; object-fit: contain; }
.contact-rail-qr strong,
.floating-consult-qr strong { font-size: 13px; line-height: 1.4; }
.contact-rail-item:hover .contact-rail-qr,
.contact-rail-item:focus-visible .contact-rail-qr,
.contact-rail-item:focus-within .contact-rail-qr { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(0, -50%); }
.floating-consult { position: fixed; z-index: 90; right: 24px; bottom: 24px; min-height: 62px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; overflow: visible; padding: 5px 21px 5px 6px; border: 0; border-radius: 999px; color: #fff; background: linear-gradient(135deg, var(--coral), #ff876b); box-shadow: 0 14px 34px rgba(255, 107, 104, 0.28); cursor: pointer; font-weight: 850; }
.floating-consult .consult-button-avatar { flex-basis: 48px; width: 48px; height: 48px; border-width: 3px; }
.floating-consult .consult-button-avatar::after { right: -3px; bottom: 1px; width: 12px; height: 12px; }
.floating-consult-qr { right: calc(100% + 14px); bottom: 0; width: 186px; transform: translateX(8px); }
.floating-consult-qr::after { content: ""; position: absolute; right: -7px; bottom: 18px; width: 13px; height: 13px; transform: rotate(45deg); border-right: 1px solid var(--line); border-top: 1px solid var(--line); background: #fff; }
.floating-consult:hover .floating-consult-qr,
.floating-consult:focus-visible .floating-consult-qr,
.floating-consult:focus-within .floating-consult-qr { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }

/* Footer */
.site-footer { padding: 64px 0 24px; color: #cfdee8; background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 38px; }
.site-footer .brand { color: #fff; font-size: 20px; }
.site-footer .footer-brand { display: flex; width: 166px; height: 58px; margin: 0 0 18px; padding: 5px 7px; border-radius: 12px; background: #fff; }
.site-footer h3 { color: #fff; }
.site-footer a { display: block; margin: 7px 0; color: #b9cfdb; }
.site-footer a:hover { color: var(--aqua); }
.copyright { margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12); color: #89a5b7; font-size: 13px; }
.mobile-only, .mobile-label { display: none; }

@media (max-width: 1080px) {
  .nav { gap: 14px; font-size: 14px; }
  .nav-actions { padding-left: 10px; }
  .nav-icon span { display: none; }
  .consult-nav { gap: 7px; padding: 4px 12px 4px 5px; }
  .consult-nav .consult-button-avatar { flex-basis: 32px; width: 32px; height: 32px; }
  .hero-copy { width: 60%; padding-left: 45px; }
  .trip-search { left: 45px; width: min(760px, calc(100% - 90px)); }
}

@media (max-width: 900px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .nav-wrap { min-height: 70px; }
  .brand-image { width: 132px; height: 42px; gap: 6px; }
  .brand-image::before { width: 42px; height: 33px; background-size: 80px 80px; background-position: -19px -11px; }
  .brand-image::after { width: 82px; height: 31px; background-size: 109px 108px; background-position: -13px -62px; }
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 70px; max-height: calc(100vh - 70px); overflow: auto; padding: 18px 22px 24px; flex-direction: column; align-items: stretch; gap: 4px; background: rgba(255, 255, 255, 0.98); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
  .nav.open { display: flex; }
  .nav > a, .dest-toggle { padding: 11px 5px; }
  .nav > a::after, .dest-toggle::before { display: none; }
  .dest-toggle { display: block; width: 100%; }
  .dropdown-menu { position: static; width: auto; padding: 4px 10px 9px; transform: none; border: 0; border-radius: 12px; box-shadow: none; background: var(--aqua-soft); }
  .dropdown-menu::before { display: none; }
  .nav-actions { margin: 10px 0 0; padding: 15px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .nav-icon span { display: inline; }
  .nav-icon, .consult-nav { flex: 1; justify-content: center; }
  .hero { margin-bottom: 76px; }
  .hero-grid { min-height: 390px; align-items: start; overflow: visible; box-shadow: var(--shadow-md); }
  .hero-copy { width: 100%; padding: 54px 25px 140px; }
  .hero h1 { max-width: 560px; font-size: clamp(36px, 9vw, 52px); }
  .hero p { max-width: 520px; }
  .placeholder { overflow: hidden; }
  .trip-search {
    left: 14px;
    right: 14px;
    bottom: -62px;
    width: auto;
    min-height: 124px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 12px;
  }
  .trip-field { grid-template-columns: 1fr; grid-template-rows: 25px auto; place-items: center; padding: 0 4px; text-align: center; }
  .trip-field .trip-icon { grid-row: auto; font-size: 17px; }
  .trip-field strong { align-self: center; font-size: 11px; }
  .trip-field small { display: none; }
  .trip-field::after { top: 5px !important; bottom: 5px !important; }
  .hero-search { grid-column: 1 / -1; width: 100%; min-height: 40px; margin-top: 8px; }
  .trust-row { gap: 6px; }
  .home-destination-grid { gap: 12px; }
  .home-dest-card { min-height: 170px; padding: 18px; }
  .safety-banner { grid-template-columns: 1fr; gap: 14px; }
  .safety-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facts-grid,
  .belief-grid,
  .about-steps,
  .channels-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-team-feature { grid-template-columns: 1fr; }
  .about-team-feature > img { min-height: 320px; max-height: 430px; }
  .about-assets-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-assets-grid figure:last-child { grid-column: 1 / -1; }
  .honor-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: 1fr; }
  .service-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-right: 0; }
  .flow-step { min-height: 184px; }
  .flow-step:not(:last-child)::after { display: none; }
  .layout { grid-template-columns: 1fr; padding-top: 24px; }
  .toc { position: static; }
  .page-hero { width: calc(100% - 28px); margin-top: 14px; }
  .page-hero .container { width: calc(100% - 44px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .australia-place-grid { grid-template-columns: 1fr; }
  .contact-rail,
  .floating-consult-qr { display: none; }
  .route-table-wrap { overflow: visible; border: 0; background: transparent; box-shadow: none; }
  .route-table { min-width: 0; }
  .route-table thead { display: none; }
  .route-table, .route-table tbody, .route-table tr, .route-table td { display: block; width: 100%; }
  .route-table tr { margin-bottom: 16px; padding: 11px 17px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
  .route-table td { display: grid; grid-template-columns: 104px 1fr; gap: 10px; padding: 10px 0; border-bottom: 1px dashed var(--line); }
  .route-table td::before { content: attr(data-label); color: #40677d; font-weight: 850; }
  .route-table td.route-image-cell { display: block; width: 100%; min-width: 0; padding: 0 0 14px; border-bottom: 1px solid var(--line); }
  .route-table td.route-image-cell::before { display: none; }
  .route-image { width: 100%; height: 180px; aspect-ratio: auto; border-radius: 14px; }
  .route-table td:last-child { border-bottom: 0; }
  .mobile-only { display: block; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  .section { padding: 56px 0; }
  .home-compact-section { padding-block: 44px; }
  .hero-grid { min-height: 330px; }
  .hero-copy { padding: 42px 20px 126px; }
  .hero h1 { max-width: 290px; font-size: 34px; }
  .page-hero h1 { font-size: 36px; }
  .article-hero { width: calc(100% - 28px); padding: 46px 0 40px; border-radius: 22px; }
  .article-hero-image { min-height: 430px; }
  .article-hero .container { width: calc(100% - 32px); }
  .article-hero h1 { font-size: 34px; }
  .article-description { font-size: 15px; }
  .travel-article { width: calc(100% - 20px); padding: 44px 20px 64px; }
  .article-lead { padding: 20px; font-size: 15px; }
  .article-body h2 { margin-top: 44px; font-size: 28px; }
  .article-body h3 { font-size: 20px; }
  .australia-intro, .australia-region { padding: 22px; }
  .australia-region > h2 { font-size: 27px; }
  .hero p { font-size: 14px; line-height: 1.7; }
  .page-hero p { font-size: 15px; }
  .hero .actions .btn { min-height: 42px; padding-inline: 17px; }
  .trust-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
  .trust-row::-webkit-scrollbar { display: none; }
  .pill { flex: 0 0 auto; font-size: 11px; }
  .home-destinations { padding-top: 22px; }
  .home-section-head { align-items: start; }
  .home-section-head h2 { font-size: 24px; }
  .home-section-head p { max-width: 245px; font-size: 12px; }
  .home-section-head > a { padding-top: 5px; font-size: 11px; }
  .home-destination-grid { grid-template-columns: 1fr; }
  .home-dest-card { min-height: 160px; }
  .safety-banner { padding: 20px; background-size: auto, cover; }
  .safety-features { grid-template-columns: 1fr 1fr; gap: 16px 10px; }
  .safety-feature { grid-template-columns: 32px 1fr; gap: 7px; }
  .safety-feature > span { width: 30px; height: 30px; font-size: 12px; }
  .facts-grid,
  .belief-grid,
  .about-steps,
  .channels-grid { grid-template-columns: 1fr; }
  .about-hero::after { display: none; }
  .about-team-feature > img { min-height: 250px; }
  .about-team-feature > div { padding: 28px 22px; }
  .about-assets-grid { grid-template-columns: 1fr; }
  .about-assets-grid figure:last-child { grid-column: auto; }
  .fact-wide { grid-column: span 1; }
  .belief-card,
  .about-steps article { min-height: auto; }
  .channel-card { min-height: 238px; }
  .qr-popover { padding: 12px; }
  .company-address { grid-template-columns: 1fr; gap: 5px; }
  .credentials-list { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .choice-grid, .service-list { grid-template-columns: 1fr; }
  .service-flow { grid-template-columns: 1fr; gap: 14px; }
  .flow-step { min-height: auto; padding: 22px 20px 22px 76px; }
  .flow-step::before { left: 18px; top: 22px; }
  .flow-step:not(:last-child)::after { content: "↓"; display: block; left: 29px; right: auto; top: calc(100% + 1px); width: 20px; font-size: 20px; }
  .dest-card { min-height: 190px; }
  .page-hero { padding: 48px 0 42px; border-radius: 22px; }
  .page-hero .container { width: calc(100% - 32px); }
  .layout { gap: 16px; padding-bottom: 46px; }
  .content-section { padding: 38px 0; }
  .content-section h2 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .post { grid-template-columns: 1fr; gap: 8px; }
  .consult-options { grid-template-columns: 1fr; }
  .modal-card { padding: 21px; border-radius: 20px; }
  .search-results { grid-template-columns: 1fr; padding: 10px; }
  .search-result { min-height: 112px; }
  .floating-consult { right: 14px; bottom: 14px; min-height: 54px; gap: 8px; padding: 4px 15px 4px 5px; font-size: 14px; }
  .floating-consult .consult-button-avatar { flex-basis: 42px; width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
