/* 车务 SEO 页 — 参照 Klook 信息架构的轻量样式（不依赖 Klook 资源） */
:root {
  --seo-primary: #ff5722;
  --seo-primary-dark: #e64a19;
  --seo-text: #212121;
  --seo-muted: #757575;
  --seo-border: #eee;
  --seo-bg: #f7f7f7;
  --seo-max: 1180px;
  --seo-header-h: 72px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Microsoft YaHei", sans-serif;
  color: var(--seo-text);
  background: #fff;
  line-height: 1.6;
}

a { color: var(--seo-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.seo-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--seo-header-h);
  background: #fff;
  border-bottom: 1px solid var(--seo-border);
  z-index: 1000;
}
.seo-header__inner {
  max-width: var(--seo-max);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.seo-logo {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.seo-logo img {
  display: block;
  height: 54px;
  width: auto;
  object-fit: contain;
}
.seo-header__nav { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.seo-header__nav a { color: var(--seo-text); font-size: 17px; }
.seo-header__nav a:hover { color: var(--seo-primary); text-decoration: none; }
.seo-header__nav > a + a {
  position: relative;
  padding-left: 18px;
}
.seo-header__nav > a + a::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 50%;
  width: 1px;
  height: 14px;
  background: var(--seo-border);
  transform: translateY(-50%);
}
.seo-lang-dropdown {
  position: relative;
  font-size: 16px;
}
.seo-lang-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid var(--seo-border);
  border-radius: 999px;
  background: #fff;
  color: var(--seo-text);
  cursor: pointer;
  line-height: 1;
}
.seo-lang-button > span,
.seo-lang-button strong {
  line-height: 1;
}
.seo-lang-button strong {
  color: var(--seo-primary);
  font-size: 16px;
}
.seo-lang-caret {
  display: inline-block;
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--seo-muted);
}
.seo-lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 132px;
  padding: 8px;
  border: 1px solid var(--seo-border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  display: none;
  z-index: 1001;
}
.seo-lang-dropdown:hover .seo-lang-menu,
.seo-lang-dropdown:focus-within .seo-lang-menu {
  display: grid;
  gap: 4px;
}
.seo-lang-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--seo-text);
}
.seo-lang-menu a:hover,
.seo-lang-menu a.is-active {
  background: #fff3e0;
  color: var(--seo-primary);
  text-decoration: none;
}

.seo-page { padding-top: var(--seo-header-h); }
.seo-container { max-width: var(--seo-max); margin: 0 auto; padding: 0 20px; }

.seo-campaign-hero {
  padding: 28px 0 4px;
  background: linear-gradient(180deg, #fff 0%, #fff7f2 100%);
  --seo-hero-card-min-height: 280px;
  --seo-hero-image-width: calc(54% + 40px);
  --seo-hero-content-max-width: min(480px, calc(44% + 40px));
  --seo-hero-content-padding: 34px 32px 34px 38px;
  /* 集合页左文与右图之间的安全间距、左文向右延展量 */
  --seo-hero-content-image-gap: 40px;
  --seo-hero-content-extend: 90px;
}
.seo-campaign-card {
  position: relative;
  overflow: hidden;
  min-height: var(--seo-hero-card-min-height);
  border-radius: 22px;
  background: #111;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.seo-campaign-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--seo-hero-image-width);
  background: url("../../imgs/banner-welcome.jpg") center center / cover no-repeat;
  z-index: 0;
}
.seo-campaign-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.58) 34%, rgba(0,0,0,.22) 42%, rgba(0,0,0,.04) 50%, transparent 54%);
  z-index: 1;
  pointer-events: none;
}
.seo-campaign-content {
  position: relative;
  z-index: 2;
  max-width: var(--seo-hero-content-max-width);
  padding: var(--seo-hero-content-padding);
  color: #fff;
}
.seo-campaign-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 2px;
  padding: 4px 12px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
  color: #1a1208;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 2px 8px rgba(255, 179, 0, .35);
}
.seo-campaign-content h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.18;
  letter-spacing: -.02em;
}
.seo-campaign-content p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  white-space: pre-line;
  line-height: 1.6;
}
.seo-campaign-content strong {
  display: inline-block;
  margin-bottom: 18px;
  color: #ffd54f;
  font-size: 2rem;
  line-height: 1;
}
.seo-campaign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.seo-campaign-primary,
.seo-campaign-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
}
.seo-campaign-primary {
  background: var(--seo-primary);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(255, 87, 34, .32);
}
.seo-campaign-secondary {
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.16);
  color: #fff !important;
}
.seo-campaign-primary:hover {
  background: var(--seo-primary-dark);
}
.seo-campaign-secondary:hover {
  background: rgba(255,255,255,.26);
}

/* 集合页 Hero（布局对齐首页优惠 Banner，右侧图片可配置） */
.seo-collection-hero-card {
  position: relative;
  overflow: hidden;
  min-height: var(--seo-hero-card-min-height);
  border-radius: 22px;
  background: #111;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.seo-collection-hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--seo-hero-image-width);
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.seo-collection-hero-card::before {
  content: none;
}
.seo-collection-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.6) 30%, rgba(0,0,0,.22) 36%, rgba(0,0,0,.04) 42%, transparent 46%);
  z-index: 1;
  pointer-events: none;
}
.seo-collection-hero-content {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  max-width: min(490px, calc(46% - var(--seo-hero-content-image-gap) + var(--seo-hero-content-extend)));
  padding: var(--seo-hero-content-padding);
  padding-right: var(--seo-hero-content-image-gap);
  color: #fff;
}
.seo-collection-hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.seo-collection-hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.seo-collection-hero-points li {
  margin: 0;
}
.seo-collection-hero-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 6px;
  padding: 4px 12px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
  color: #1a1208;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 2px 8px rgba(255, 179, 0, .35);
}
.seo-collection-hero-text {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.6;
}
.seo-portal-charters .seo-collection-hero,
.seo-portal-routes .seo-collection-hero {
  padding: 24px 0 24px;
  --seo-hero-card-min-height: 385px;
}
.seo-collection-list-head {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 12px;
}
.seo-collection-list-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--seo-primary) 0%, #ffc200 28%, rgba(255, 87, 34, .16) 70%, rgba(255, 87, 34, 0) 100%);
}
.seo-collection-list-lead {
  margin: 0;
  max-width: 820px;
  color: var(--seo-text);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.7;
}

.seo-breadcrumb {
  padding: 28px 0 12px;
  font-size: 16px;
  color: var(--seo-muted);
}
.seo-breadcrumb a { color: var(--seo-muted); }
.seo-breadcrumb span.sep { margin: 0 6px; }

.seo-sticky-tabs {
  position: sticky;
  top: var(--seo-header-h);
  background: #fff;
  border-bottom: 1px solid var(--seo-border);
  z-index: 100;
}
.seo-sticky-tabs__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
}
.seo-sticky-tabs a {
  padding: 14px 18px;
  font-size: 18px;
  color: var(--seo-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.seo-sticky-tabs a:hover,
.seo-sticky-tabs a.is-active {
  color: var(--seo-primary);
  border-bottom-color: var(--seo-primary);
  text-decoration: none;
}

.seo-hero {
  position: relative;
  padding: 28px 0 20px;
}
.seo-hero::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 32px;
  width: 6px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--seo-primary), #ffc200);
}
.seo-hero h1 {
  font-size: 2rem;
  margin: 0 0 10px;
  line-height: 1.3;
  letter-spacing: -.02em;
}
.seo-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.seo-tag {
  font-size: 12px;
  padding: 5px 11px;
  background: #fff;
  border: 1px solid #ffe1cf;
  border-radius: 999px;
  color: var(--seo-primary);
  font-weight: 600;
}
.seo-section-lead {
  font-size: 14px;
  color: var(--seo-muted);
  margin-bottom: 16px;
}

.seo-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  height: 700px;
}
.seo-gallery__main {
  height: 100%;
  overflow: hidden;
  background: #111;
}
.seo-gallery__main.seo-image-frame,
.seo-gallery__thumb.seo-image-frame {
  display: block;
}
.seo-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}
.seo-gallery__thumb {
  flex: 0 0 calc((100% - 8px) / 2);
  min-height: 0;
  overflow: hidden;
  background: #111;
}
.seo-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
}
.seo-image-frame {
  position: relative;
  overflow: hidden;
}
.seo-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--seo-image-url);
  background-position: center;
  background-size: cover;
  filter: blur(18px);
  transform: scale(1.08);
  opacity: .35;
}
.seo-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .06);
  pointer-events: none;
}
.seo-image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.seo-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
  padding-top: 28px;
  padding-bottom: 48px;
}
.seo-layout > main {
  min-width: 0;
}
.seo-sidebar {
  position: sticky;
  top: calc(var(--seo-header-h) + 72px);
  align-self: start;
}
@media (max-width: 900px) {
  .seo-layout { grid-template-columns: 1fr; }
  .seo-sidebar {
    position: static;
  }
  .seo-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }
  .seo-gallery__main {
    height: 260px;
  }
  .seo-gallery__thumbs { flex-direction: row; height: 80px; }
  .seo-gallery__thumb { flex: 1 1 0; }
}

.seo-section {
  margin-bottom: 40px;
  scroll-margin-top: calc(var(--seo-header-h) + 92px);
}
.seo-section h2 {
  font-size: 1.25rem;
  margin: 0 0 18px;
  padding-bottom: 12px;
  position: relative;
  border-bottom: none;
}
.seo-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--seo-primary) 0%, #ffc200 28%, rgba(255, 87, 34, .16) 70%, rgba(255, 87, 34, 0) 100%);
}
.seo-section p:not(.seo-platform-links) { margin: 0 0 12px; color: #424242; }

.seo-highlights { list-style: none; padding: 0; margin: 0; }
.seo-highlights li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px dashed var(--seo-border);
}
.seo-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--seo-primary);
  font-weight: bold;
}

.seo-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}
.seo-notice-box {
  padding: 12px 14px;
  border: 1px solid #ffe1cf;
  border-radius: 8px;
  background: #fffaf7;
  color: var(--seo-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.seo-notice-box p {
  margin: 0 0 8px;
}
.seo-notice-box p:last-child {
  margin-bottom: 0;
}
.seo-notice-box ul,
.seo-notice-box ol {
  margin: 0 0 8px;
  padding-left: 1.25em;
}
.seo-notice-box ul:last-child,
.seo-notice-box ol:last-child {
  margin-bottom: 0;
}
.seo-vehicle-card {
  overflow: hidden;
  border: 1px solid var(--seo-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.04);
}
.seo-vehicle-visual {
  height: 150px;
  overflow: hidden;
  background: #f8f8f8;
}
.seo-vehicle-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.seo-vehicle-content {
  padding: 16px;
}
.seo-vehicle-content h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.seo-vehicle-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.seo-vehicle-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff3e0;
  color: var(--seo-primary);
  font-size: 12px;
  font-weight: 600;
}
.seo-vehicle-content p {
  margin: 0;
  color: var(--seo-muted);
  font-size: 13px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .seo-vehicle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .seo-vehicle-grid {
    grid-template-columns: 1fr;
  }
}

.seo-feature-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.seo-feature-grid li {
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--seo-border);
  border-radius: 8px;
  background: #fff;
  position: relative;
  min-height: 54px;
}
.seo-feature-grid li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--seo-primary);
  box-shadow: 0 0 0 5px #fff3e0;
}
@media (max-width: 700px) {
  .seo-feature-grid { grid-template-columns: 1fr; }
}

.seo-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.seo-info-card {
  position: relative;
  padding: 18px;
  border: 1px solid var(--seo-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0,0,0,.04);
}
.seo-info-card h3 {
  margin: 14px 0 8px;
  font-size: 1.02rem;
  line-height: 1.45;
}
.seo-info-card p {
  margin: 0;
  color: var(--seo-muted);
  font-size: 14px;
  line-height: 1.65;
}
.seo-info-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  max-width: 100%;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid #ffc9a8;
  background: linear-gradient(135deg, #fff3e8 0%, #ffe8d6 100%);
  color: #e65100;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  box-shadow: 0 2px 10px rgba(255, 87, 34, 0.14);
}
.seo-promotion-card {
  border-color: #ffd6c2;
  background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
}
.seo-promotion-card .seo-info-tag {
  border-color: transparent;
  background: var(--seo-primary);
  color: #fff;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.28);
}
.seo-policy-table-wrap {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #ffe1cf;
  border-radius: 14px;
  background: #fffaf7;
}
.seo-policy-table-wrap h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}
.seo-policy-table {
  display: grid;
  overflow: hidden;
  border: 1px solid #f2e2da;
  border-radius: 10px;
  background: #fff;
}
.seo-policy-row {
  display: grid;
  grid-template-columns: 1.3fr .55fr 1.45fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid #f3ece8;
  font-size: 14px;
}
.seo-policy-row:last-child {
  border-bottom: none;
}
.seo-policy-row strong {
  color: var(--seo-primary);
}
.seo-policy-row--head {
  background: #fff3e0;
  color: #6d4c41;
  font-weight: 700;
}
@media (max-width: 700px) {
  .seo-info-grid {
    grid-template-columns: 1fr;
  }
  .seo-policy-row,
  .seo-policy-row--head {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .seo-policy-row--head {
    display: none;
  }
}

.seo-itinerary-day {
  margin-bottom: 16px;
  border: 1px solid var(--seo-border);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.seo-itinerary-day summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  background: linear-gradient(90deg, #fff7f2 0%, #fff 72%);
}
.seo-itinerary-day summary::-webkit-details-marker {
  display: none;
}
.seo-itinerary-day .day-title {
  font-size: 1.05rem;
  font-weight: 700;
}
.seo-itinerary-day .day-toggle::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff3e0;
  color: var(--seo-primary);
  font-weight: 700;
}
.seo-itinerary-day[open] .day-toggle::before {
  content: "-";
}
.seo-timeline { list-style: none; padding: 0; margin: 0; }
.seo-timeline li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--seo-border);
}
.seo-timeline li:last-child {
  border-bottom: none;
}
.seo-timeline .time {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 148px;
  font-weight: 600;
  color: var(--seo-primary);
  font-size: 14px;
}
.seo-timeline .time-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 28px;
  border-radius: 999px;
  background: #fff3e0;
  color: var(--seo-primary);
  z-index: 2;
}
.time-connector {
  position: relative;
  flex: 1;
  width: 2px;
  margin-top: 8px;
  border-left: 2px dashed #ffc8a8;
}
.time-connector img {
  display: none !important;
}
.seo-timeline .place { font-weight: 600; margin-bottom: 4px; }
.seo-timeline .desc { font-size: 14px; color: var(--seo-muted); }
.seo-stop-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: stretch;
}
.seo-stop-image {
  height: 148px;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}
.seo-stop-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.seo-stop-content {
  padding: 4px 0;
}
@media (max-width: 700px) {
  .seo-timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .seo-timeline .time {
    align-items: flex-start;
    min-height: auto;
  }
  .time-connector {
    display: none;
  }
  .seo-stop-card {
    grid-template-columns: 1fr;
  }
  .seo-stop-image {
    height: 190px;
  }
}

.seo-list-two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 16px; }
@media (max-width: 600px) { .seo-list-two { grid-template-columns: 1fr; } }
.seo-list-two ul { margin: 0; padding-left: 1.2em; font-size: 14px; }
.seo-list-two h3 { font-size: 1rem; margin: 0 0 8px; }

.seo-booking-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.seo-booking-steps li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 118px;
  padding: 18px 14px;
  border: 1px solid var(--seo-border);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff 0%, #fff7f2 100%);
  box-shadow: 0 3px 14px rgba(0,0,0,.04);
}
.seo-booking-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 31px;
  right: -18px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #ffc8a8, rgba(255, 200, 168, 0));
  z-index: 1;
}
.seo-booking-steps .step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--seo-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.seo-booking-steps .step-text {
  color: #424242;
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .seo-booking-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .seo-booking-steps li:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 520px) {
  .seo-booking-steps {
    grid-template-columns: 1fr;
  }
}

.seo-note-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.seo-note-list li {
  position: relative;
  padding: 12px 14px 12px 40px;
  border: 1px solid #ffe1cf;
  border-radius: 8px;
  background: #fffaf7;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.6;
}
.seo-note-list li::before {
  content: "!";
  position: absolute;
  left: 14px;
  top: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff3e0;
  color: var(--seo-primary);
  font-size: 12px;
  font-weight: 700;
}

.seo-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.seo-section-head > div:first-child {
  flex: 1 1 auto;
  min-width: 0;
}
.seo-section-head h2 {
  margin-bottom: 8px;
}
.seo-section-head .seo-section-lead {
  margin-bottom: 0;
}
.seo-related-controls {
  display: flex;
  gap: 8px;
  padding-top: 4px;
}
.seo-related-nav {
  width: 38px;
  height: 38px;
  border: 1px solid #ffd6c2;
  border-radius: 50%;
  background: #fff7f2;
  color: var(--seo-primary);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.seo-related-nav:hover {
  border-color: var(--seo-primary);
  background: #fff3e0;
}
.seo-related-carousel {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2px 2px 12px;
}
.seo-related-carousel::-webkit-scrollbar {
  height: 6px;
}
.seo-related-carousel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #ffd6c2;
}
.seo-related-card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 260px;
  display: block;
  overflow: hidden;
  border: 1px solid var(--seo-border);
  border-radius: 16px;
  background: #fff;
  color: var(--seo-text);
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
  scroll-snap-align: start;
  text-decoration: none !important;
}
.seo-related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.seo-related-card--disabled {
  cursor: default;
  opacity: 0.92;
}
.seo-related-card--disabled:hover {
  transform: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}
.seo-related-image {
  position: relative;
  display: block;
  height: 150px;
  overflow: hidden;
  background: #f2f2f2;
}
.seo-related-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seo-related-tags {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: calc(100% - 24px);
}
.seo-related-tag {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--seo-primary);
  font-size: 12px;
  font-weight: 700;
}
.seo-related-tag--hot {
  color: #ea580c;
  background: rgba(255, 247, 237, .95);
  border: 1px solid #fed7aa;
}
.seo-related-tag__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.seo-related-content {
  display: grid;
  gap: 4px;
  padding: 14px;
}
.seo-related-content strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--seo-text);
  font-size: 16px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.seo-related-content em {
  color: var(--seo-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
.seo-related-card__hit,
.seo-related-card__title {
  display: block;
  color: inherit;
  text-decoration: none !important;
}
.seo-related-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.seo-related-foot em {
  flex: 1;
  min-width: 0;
  color: var(--seo-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
.seo-related-foot .seo-btn-primary.seo-related-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}
.seo-campaign-actions .seo-btn-primary,
.seo-campaign-actions .seo-btn-secondary,
.seo-promo-strip__actions .seo-btn-primary,
.seo-promo-strip__actions .seo-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 38px;
  margin: 0;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.2;
}
@media (max-width: 700px) {
  .seo-section-head {
    align-items: flex-end;
  }
  .seo-related-controls {
    flex: 0 0 auto;
  }
  .seo-related-nav {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }
  .seo-related-carousel {
    gap: 12px;
    margin-right: -20px;
    padding-right: 20px;
  }
  .seo-related-card {
    flex-basis: 82%;
    min-width: 238px;
  }
  .seo-related-image {
    height: 136px;
  }
}

.seo-faq-list {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}
.seo-faq-list details {
  border: 1px solid var(--seo-border);
  border-radius: 8px;
  background: #fff;
  padding: 14px 16px;
}
.seo-faq-list summary {
  cursor: pointer;
  font-weight: 600;
}
.seo-faq-list p {
  margin: 10px 0 0;
  color: var(--seo-muted);
  font-size: 14px;
}

.seo-card-book {
  border: 1px solid var(--seo-border);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  background: #fff;
}
.seo-card-book .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--seo-primary);
  margin-bottom: 4px;
}
.seo-card-book .price-note { font-size: 12px; color: var(--seo-muted); margin-bottom: 16px; }
.seo-btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: var(--seo-primary);
  color: #fff !important;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none !important;
}
.seo-btn-primary:hover { background: var(--seo-primary-dark); }
.seo-btn-secondary {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid #ffd6c2;
  border-radius: 6px;
  background: #fff7f2;
  color: var(--seo-primary) !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
}
.seo-btn-secondary:hover {
  border-color: var(--seo-primary);
  background: #fff3e0;
}
.seo-card-book .hint { font-size: 12px; color: var(--seo-muted); margin-top: 12px; text-align: center; }

@media (max-width: 900px) {
  .seo-page {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }
  .seo-sidebar {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .94);
    border-top: 1px solid var(--seo-border);
    box-shadow: 0 -8px 24px rgba(0,0,0,.08);
    backdrop-filter: blur(10px);
  }
  .seo-card-book {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 104px 92px;
    align-items: center;
    gap: 8px;
    max-width: 520px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,.10);
  }
  .seo-card-book .price {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.2;
  }
  .seo-card-book .price-note,
  .seo-card-book .hint {
    display: none;
  }
  .seo-card-book .seo-btn-primary,
  .seo-card-book .seo-btn-secondary {
    margin: 0;
    padding: 10px 6px;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1.2;
  }
}

.seo-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px 72px;
  background: rgba(0, 0, 0, .86);
  z-index: 2000;
}
.seo-lightbox.is-open {
  display: flex;
}
.seo-lightbox-open {
  overflow: hidden;
}
.seo-lightbox__frame {
  position: relative;
  max-width: min(1080px, 100%);
  max-height: 100%;
}
.seo-lightbox__frame img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 128px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.seo-lightbox__caption {
  margin-top: 12px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  text-align: center;
}
.seo-lightbox__close,
.seo-lightbox__nav {
  position: absolute;
  border: none;
  color: #fff;
  background: rgba(255,255,255,.14);
  cursor: pointer;
  z-index: 1;
}
.seo-lightbox__close {
  top: 20px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}
.seo-lightbox__nav {
  top: 50%;
  width: 48px;
  height: 72px;
  border-radius: 999px;
  font-size: 46px;
  transform: translateY(-50%);
}
.seo-lightbox__prev {
  left: 24px;
}
.seo-lightbox__next {
  right: 24px;
}
.seo-lightbox__close:hover,
.seo-lightbox__nav:hover {
  background: rgba(255,255,255,.24);
}

.seo-contact-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, .42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1900;
  transition: opacity .24s ease, visibility 0s linear .24s;
}
.seo-contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.seo-contact-open {
  overflow: hidden;
}
.seo-contact-panel {
  position: relative;
  width: min(760px, 100%);
  padding: 28px 28px 22px;
  border-radius: 24px 24px 12px 12px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
  transform: translateY(32px);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}
.seo-contact-modal.is-open .seo-contact-panel {
  transform: translateY(0);
}
.seo-contact-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #f5f5f5;
  color: #666;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.seo-contact-head {
  text-align: center;
  margin-bottom: 22px;
  padding-right: 28px;
  padding-left: 28px;
}
.seo-contact-head h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}
.seo-contact-head p {
  margin: 0;
  color: var(--seo-muted);
  font-size: 14px;
}
.seo-contact-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  margin-bottom: 18px;
}
.seo-contact-list {
  display: grid;
  gap: 10px;
}
.seo-contact-row {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--seo-border);
  border-radius: 12px;
  background: #fff;
}
.seo-contact-row .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}
.seo-contact-row img {
  width: 26px;
  height: 26px;
}
.seo-contact-row strong,
.seo-contact-row span {
  display: block;
}
.seo-contact-row strong {
  font-size: 14px;
  line-height: 1.3;
}
.seo-contact-row div > span {
  color: var(--seo-muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}
.seo-contact-row a,
.seo-contact-row button {
  min-width: 56px;
  padding: 7px 10px;
  border: 1px solid #ffd6c2;
  border-radius: 999px;
  background: #fff7f2;
  color: var(--seo-primary);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  text-decoration: none !important;
}
.seo-contact-row a:hover,
.seo-contact-row button:hover {
  border-color: var(--seo-primary);
  background: #fff3e0;
}
.seo-contact-side {
  padding: 14px;
  border: 1px dashed #ffd6c2;
  border-radius: 14px;
  background: #fffaf7;
  text-align: center;
}
.seo-contact-qr {
  display: grid;
  place-items: center;
  gap: 8px;
  width: 150px;
  height: 150px;
  margin: 0 auto 10px;
  border: 1px solid #dff5e8;
  border-radius: 12px;
  background: #fff;
}
.seo-contact-qr img {
  width: 58px;
  height: 58px;
  filter: invert(51%) sepia(91%) saturate(354%) hue-rotate(101deg) brightness(95%) contrast(95%);
}
.seo-contact-qr span {
  color: #07c160;
  font-size: 13px;
  font-weight: 700;
}
.seo-contact-side p {
  margin: 0;
  color: var(--seo-muted);
  font-size: 12px;
  line-height: 1.6;
}
.seo-contact-item {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  color: #444;
  font: inherit;
  cursor: pointer;
  text-decoration: none !important;
}
.seo-contact-item .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}
.seo-contact-item img {
  width: 32px;
  height: 32px;
}
.seo-contact-item span:last-child {
  font-size: 13px;
  font-weight: 600;
}
.seo-contact-row.whatsapp img,
.seo-contact-item.whatsapp img {
  filter: invert(61%) sepia(87%) saturate(382%) hue-rotate(94deg) brightness(96%) contrast(92%);
}
.seo-contact-row.line img,
.seo-contact-item.line img {
  filter: invert(53%) sepia(85%) saturate(442%) hue-rotate(98deg) brightness(96%) contrast(93%);
}
.seo-contact-row.wechat img,
.seo-contact-item.wechat img {
  filter: invert(51%) sepia(91%) saturate(354%) hue-rotate(101deg) brightness(95%) contrast(95%);
}
.seo-contact-row.gmail img,
.seo-contact-item.gmail img {
  filter: invert(36%) sepia(74%) saturate(2256%) hue-rotate(343deg) brightness(96%) contrast(93%);
}
.seo-contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  background: #f8f9fa;
  color: #888;
  font-size: 13px;
}
.seo-wechat-note {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid #dff5e8;
  border-radius: 10px;
  background: #f5fff9;
  color: #3f6f52;
  font-size: 13px;
  line-height: 1.6;
}
.seo-wechat-note.is-open {
  display: block;
}
.seo-wechat-note strong {
  margin-right: 6px;
  color: #07c160;
}
@media (max-width: 700px) {
  :root {
    --seo-header-h: 64px;
  }
  .seo-page {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }
  .seo-campaign-hero {
    padding: 16px 0 0;
    --seo-hero-card-min-height: 360px;
    --seo-hero-content-image-gap: 22px;
  }
  .seo-campaign-card {
    min-height: var(--seo-hero-card-min-height);
    border-radius: 18px;
  }
  .seo-campaign-card::before {
    top: auto;
    left: 0;
    width: 100%;
    height: 48%;
    background-position: center bottom;
  }
  .seo-campaign-card::after {
    background: linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.48) 58%, rgba(0,0,0,.18) 100%);
  }
  .seo-campaign-content {
    max-width: none;
    padding: 26px 22px;
  }
  .seo-campaign-content p {
    font-size: 14px;
  }
  .seo-campaign-content strong {
    font-size: 1.65rem;
  }
  .seo-campaign-actions {
    gap: 10px;
  }
  .seo-campaign-actions .seo-btn-primary,
  .seo-campaign-actions .seo-btn-secondary {
    min-width: 118px;
    min-height: 40px;
    padding: 9px 14px;
    font-size: 14px;
  }
  .seo-collection-hero-card {
    display: block;
    min-height: var(--seo-hero-card-min-height);
    border-radius: 18px;
  }
  .seo-portal-charters .seo-collection-hero,
  .seo-portal-routes .seo-collection-hero {
    --seo-hero-card-min-height: 385px;
  }
  .seo-collection-hero-photo {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 48%;
    min-height: 0;
    object-fit: cover;
    object-position: center center;
  }
  .seo-collection-hero-content {
    max-width: none;
    padding: 26px 22px;
    padding-right: 22px;
  }
  .seo-collection-hero-card::after {
    background: linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.48) 58%, rgba(0,0,0,.18) 100%);
  }
  .seo-collection-hero-content h1 {
    font-size: 1.55rem;
  }
  .seo-collection-hero-text {
    font-size: 13px;
  }
  .seo-header__inner {
    padding: 0 12px;
    gap: 8px;
  }
  .seo-logo {
    flex: 0 1 128px;
    min-width: 0;
  }
  .seo-logo img {
    max-width: 128px;
    height: 44px;
  }
  .seo-header__nav {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .seo-header__nav a {
    font-size: 15px;
    white-space: nowrap;
  }
  .seo-header__nav > a + a {
    padding-left: 10px;
  }
  .seo-header__nav > a + a::before {
    left: -1px;
    height: 12px;
  }
  .seo-lang-button {
    height: 30px;
    padding: 0 8px;
    gap: 4px;
  }
  .seo-lang-button > span:first-child {
    display: none;
  }
  .seo-lang-button strong {
    font-size: 15px;
  }
  .seo-sticky-tabs__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow-x: visible;
    padding: 0 12px;
  }
  .seo-sticky-tabs a {
    min-width: 0;
    padding: 10px 2px;
    font-size: 15px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .seo-hero {
    padding-top: 22px;
  }
  .seo-hero::before {
    left: -10px;
    top: 26px;
    height: 42px;
    width: 4px;
  }
  .seo-hero h1 {
    font-size: clamp(1.35rem, 6vw, 1.65rem);
    line-height: 1.28;
  }
  .seo-sidebar {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .94);
    border-top: 1px solid var(--seo-border);
    box-shadow: 0 -8px 24px rgba(0,0,0,.08);
    backdrop-filter: blur(10px);
  }
  .seo-card-book {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 104px 92px;
    align-items: center;
    gap: 8px;
    max-width: 520px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,.10);
  }
  .seo-card-book .price {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.2;
  }
  .seo-card-book .price-note,
  .seo-card-book .hint {
    display: none;
  }
  .seo-card-book .seo-btn-primary,
  .seo-card-book .seo-btn-secondary {
    margin: 0;
    padding: 10px 6px;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1.2;
  }
  .seo-lightbox {
    padding: 56px 16px 40px;
  }
  .seo-lightbox__nav {
    width: 40px;
    height: 56px;
    font-size: 36px;
  }
  .seo-lightbox__prev {
    left: 10px;
  }
  .seo-lightbox__next {
    right: 10px;
  }
  .seo-contact-modal {
    padding: 0;
  }
  .seo-contact-panel {
    border-radius: 24px 24px 0 0;
  }
  .seo-contact-body {
    grid-template-columns: 1fr;
  }
  .seo-contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .seo-contact-row {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 126px;
    padding: 16px 10px;
  }
  .seo-contact-row .icon-box {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }
  .seo-contact-row img {
    width: 32px;
    height: 32px;
  }
  .seo-contact-row div {
    text-align: center;
  }
  .seo-contact-row div > span,
  .seo-contact-row button {
    display: none;
  }
  .seo-contact-row a {
    position: absolute;
    inset: 0;
    min-width: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: transparent;
    font-size: 0;
  }
  .seo-contact-side {
    display: none;
  }
}

.seo-about-intro {
  margin: 0 0 28px;
  padding-left: 1.2em;
  line-height: 1.8;
  color: var(--seo-text);
}

.seo-about-intro li + li {
  margin-top: 8px;
}

.seo-about-subtitle {
  margin: 0 0 16px;
  font-size: 1.25rem;
}

.seo-trust-line {
  margin: 0;
  padding: 14px 18px;
  background: #fff8f5;
  border: 1px solid #ffe0d4;
  border-radius: 10px;
  font-size: 15px;
  color: var(--seo-text);
  text-align: center;
  letter-spacing: 0.02em;
}

.seo-notice-box--sub {
  margin-top: 20px;
}

.seo-policy-section .seo-platform-links + .seo-notice-box--sub {
  margin-top: 36px;
}

.seo-platform-links {
  margin: 16px 0 0;
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

/* 与 seo-notice-box（margin-bottom:16px）+ 链接的上间距一致 */
.seo-notice-box + .seo-platform-links,
.seo-notice-box--sub + .seo-platform-links,
.charter-vehicle-list + .seo-platform-links,
.seo-faq-list + .seo-platform-links,
.seo-list-two + .seo-platform-links {
  margin-top: 16px;
}

.seo-platform-more-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--seo-primary);
}

.seo-platform-more-link::after {
  content: "→";
  margin-left: 6px;
}

.seo-platform-page .seo-platform-body {
  font-size: 15px;
  line-height: 1.75;
}

.seo-platform-page .seo-platform-body h3,
.seo-platform-page .seo-platform-body h4 {
  margin-top: 1.4em;
  margin-bottom: 0.6em;
}

.seo-platform-page .seo-platform-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.seo-platform-page .seo-platform-body th,
.seo-platform-page .seo-platform-body td {
  border: 1px solid var(--seo-border);
  padding: 10px 12px;
  vertical-align: top;
}

.seo-footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 12px;
}

.seo-footer-nav a {
  color: var(--seo-text);
  font-weight: 500;
}

.seo-footer {
  background: var(--seo-bg);
  border-top: 1px solid var(--seo-border);
  padding: 32px 20px;
  margin-top: 24px;
  font-size: 16px;
  color: var(--seo-muted);
  text-align: center;
}

.seo-badge-sample {
  display: inline-block;
  background: #fff3e0;
  color: #e65100;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

/* 门户首页 / 固定行程一览 */
.seo-home-hero--hidden {
  display: none;
}

.seo-portal-home .seo-campaign-hero {
  padding: 24px 0 24px;
  margin-bottom: 50px;
  --seo-hero-card-min-height: 300px;
}

.seo-portal-home .seo-section-head--portal {
  display: block;
  margin-bottom: 16px;
}

.seo-portal-home .seo-section-head--portal h2 {
  margin: 0 0 18px;
  padding-bottom: 12px;
}

.seo-portal-home .seo-section-head--portal .seo-section-lead {
  margin: 0 0 4px;
  max-width: 720px;
  color: var(--seo-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  text-align: left;
}

.seo-home-hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #fff 55%, #f8faf7 100%);
  border-bottom: 1px solid var(--seo-border);
  padding: 48px 0 40px;
  margin-bottom: 8px;
}

.seo-home-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0 0 16px;
  line-height: 1.25;
}

.seo-home-hero__lead {
  font-size: 1.05rem;
  color: var(--seo-text);
  max-width: 720px;
  margin: 0 0 12px;
  line-height: 1.65;
}

.seo-home-hero__trust {
  font-size: 0.92rem;
  color: var(--seo-muted);
  margin: 0 0 24px;
}

.seo-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.seo-home-hero__actions .seo-btn-primary,
.seo-home-hero__actions .seo-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.seo-route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.seo-route-grid .seo-related-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.seo-route-grid .seo-related-image {
  height: auto;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}

.seo-route-grid .seo-related-image img {
  object-fit: contain;
  object-position: center;
}

.seo-route-grid .seo-related-content {
  flex: 0 0 auto;
  gap: 4px;
  padding: 12px 14px;
}

.seo-portal-more {
  margin-top: 40px;
  padding-top: 8px;
  text-align: center;
}

.seo-promo-strip {
  margin: 24px 0 8px;
}
.seo-promo-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  padding: 16px 20px;
  border: 1px solid #ffe0b2;
  border-radius: 14px;
  background: linear-gradient(90deg, #fff8f1 0%, #fff 100%);
}
.seo-promo-strip__kicker {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff3e0;
  color: var(--seo-primary);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.seo-promo-strip__text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  flex: 1 1 220px;
  min-width: 0;
}
.seo-promo-strip__text strong {
  font-size: 1rem;
  color: var(--seo-text);
}
.seo-promo-strip__tag {
  color: #e65100;
  font-size: 1.05rem;
  font-weight: 700;
}
.seo-promo-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
}
.seo-promo-strip__primary,
.seo-promo-strip__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
}
.seo-promo-strip__primary {
  background: var(--seo-primary);
  color: #fff !important;
}
.seo-promo-strip__secondary {
  border: 1px solid #ddd;
  color: var(--seo-text) !important;
  background: #fff;
}
.seo-promo-hint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 12px 0 16px;
}
.seo-promo-hint strong {
  color: #e65100;
}

.seo-empty-state {
  color: var(--seo-muted);
  padding: 32px 0;
  text-align: center;
}

.seo-portal-routes .seo-breadcrumb {
  margin-top: 8px;
}
.charter-hero-summary {
  margin: 10px 0 0;
  color: var(--seo-muted);
  font-size: 1.05rem;
}
.charter-overview-lead {
  margin-bottom: 12px;
}
.charter-book-card .seo-btn-primary {
  display: block;
  text-align: center;
}
@media (min-width: 901px) {
  .charter-book-card .seo-btn-primary {
    margin-bottom: 10px;
  }
}
@media (max-width: 900px) {
  .charter-book-card .seo-btn-primary,
  .charter-book-card .seo-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin: 0;
    box-sizing: border-box;
  }
}
.charter-vehicle-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--seo-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 16px;
}
.charter-vehicle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--seo-border);
  cursor: pointer;
  margin: 0;
}
.charter-vehicle-row:last-child {
  border-bottom: none;
}
.charter-vehicle-row.is-selected {
  background: rgba(232, 93, 4, 0.06);
}
.charter-vehicle-row input[type="radio"] {
  flex-shrink: 0;
  margin: 0;
  accent-color: var(--seo-primary);
}
.charter-vehicle-row__content {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 6px;
}
.charter-vehicle-row__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.charter-vehicle-row__title {
  font-size: 1rem;
  color: #222;
}
.charter-vehicle-row__meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}
.charter-vehicle-row__meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff3e0;
  color: var(--seo-primary);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.charter-vehicle-row__desc {
  color: var(--seo-muted);
  font-size: 13px;
  line-height: 1.6;
}
.charter-vehicle-row__price {
  flex-shrink: 0;
  align-self: center;
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--seo-primary);
  white-space: nowrap;
  text-align: right;
}
.charter-booking-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .charter-booking-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .charter-booking-steps {
    grid-template-columns: 1fr;
  }
}
