/* ========== 设计令牌（Tokens） ========== */
:root {
  --color-primary: #f98516;
  --color-primary-nav: #f78600;
  --color-primary-hot: #ff8a00;
  --color-primary-hover: #fb9d42;
  --color-primary-light: #ffb03f;
  --color-rank-end: #f9aa5e;
  --color-tag-border: #ffca97;
  --color-merit-bg: #ffeed763;
  --color-header-top: #f2f2f2;
  --color-footer: #293439;
  --color-text: #222;
  --color-muted: #888;
  --color-muted-2: #999;
  --color-border: #eee9e5;
  --color-white: #fff;
  --color-bg-alt: #f5f5f5;
  --radius-card: 9px;
  --radius-btn: 6px;
  --radius-pill: 18px;
  --shadow-card: 0 2px 3px -1px #d2d2d2;
  --shadow-hover: #ccc 0 0 10px;
  --shadow-lift: 0 10px 20px rgba(0,0,0,.1);
  --font-main: "Helvetica Neue", "AlibabaPuHuiTi", "PingFang SC", "Microsoft YaHei", Helvetica, Arial, sans-serif;
}

/* ========== 重置（Reset） ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.43;
  color: var(--color-text);
  background: var(--color-white);
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ========== 布局 / 容器 ========== */
.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media (min-width: 768px)  { .container { width: 750px; } }
@media (min-width: 992px)  { .container { width: 970px; } }
@media (min-width: 1200px) { .container { width: 1170px; } }
@media (min-width: 1600px) { .container { width: 1400px; } }

/* ========== 工具类（Utilities） ========== */
.text-center { text-align: center; }
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== Header 顶栏 / 中栏 ========== */
.header { position: relative; z-index: 1000; background: #fff; }

.header-top {
  background: var(--color-header-top);
  color: var(--color-muted);
  font-size: 12px;
  padding: 9px 0 8px;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.header-top .badge-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), var(--color-rank-end));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

.header-center {
  padding: 18px 0;
  background: #fff;
}
.header-center .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  flex-shrink: 0;
  line-height: 1.2;
}
.logo-name {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primary-hot);
}
.logo-en {
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.search-box {
  flex: 1;
  max-width: 420px;
  display: flex;
  border: 1px solid #d2d2d2;
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 9px 16px;
  font-size: 14px;
}
.search-box button {
  border: none;
  padding: 9px 24px;
  background: linear-gradient(to right, #ff8a00, #ffb03f);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}
.search-hot {
  margin-top: 6px;
  font-size: 12px;
  color: var(--color-muted);
}
.search-hot a {
  color: #b4582d;
  margin-right: 6px;
}
.search-hot a:hover { text-decoration: underline; }
.search-wrap {
  flex: 1;
  max-width: 420px;
  margin: 0;
}
.search-box-wrap {
  position: relative;
  width: 100%;
}
.search-wrap .search-box {
  max-width: none;
  width: 100%;
}
.search-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 1200;
  background: #fff;
  border: 1px solid #e5e0da;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
  overflow: hidden;
  max-height: 320px;
  overflow-y: auto;
}
.search-suggest[hidden] { display: none !important; }
.search-suggest-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}
.search-suggest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--color-text);
}
.search-suggest-item:hover,
.search-suggest-item.is-active {
  background: #fff7ed;
}
.search-suggest-type {
  flex-shrink: 0;
  font-size: 11px;
  color: #8a5a2b;
  background: #fff4e8;
  border: 1px solid var(--color-tag-border);
  border-radius: 4px;
  padding: 1px 6px;
}
.search-suggest-title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #1a4b8c;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.contact-img-box {
  position: relative;
  cursor: pointer;
  min-width: 44px;
}
.contact-img-box .icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 auto 2px;
  font-size: 18px;
  color: #fff;
}
.contact-img-box .icon-circle.wx { background: #09bb07; }
.contact-img-box .icon-circle.wa { background: #25d366; }
.contact-img-box .icon-circle.phone { background: var(--color-primary-hot); }
.contact-img-box > span {
  font-size: 11px;
  color: var(--color-muted);
  display: block;
}
.top-qr {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  padding: 10px;
  z-index: 200;
  width: 126px;
}
.top-qr::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  margin-left: -6px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
}
.top-qr img {
  width: 106px;
  height: 106px;
  background: #f5f5f5;
  border-radius: 4px;
}
.top-qr p {
  font-size: 11px;
  color: var(--color-muted);
  margin-top: 6px;
  word-break: break-all;
}
.contact-img-box:hover .top-qr { display: block; }

.phone-block {
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-block .tel {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary-hot);
  font-family: "Microsoft YaHei", Avenir, Helvetica, Arial, sans-serif;
}
.phone-block .time {
  font-size: 11px;
  color: var(--color-muted);
}
.header-btn {
  display: inline-block;
  border: 1px solid var(--color-primary-nav);
  color: var(--color-primary-nav);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all .25s;
  min-height: 44px;
  line-height: 26px;
}
.header-btn:hover {
  background: var(--color-primary-nav);
  color: #fff;
}

/* ========== 导航（Nav） ========== */
.header-bottom {
  background: var(--color-primary-nav);
  height: 60px;
}
.header-ul {
  display: flex;
  align-items: center;
  height: 60px;
}
.header-ul > li {
  position: relative;
  height: 60px;
}
.header-ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 0 18px;
  height: 60px;
  white-space: nowrap;
}
.header-ul > li > a .caret {
  font-size: 10px;
  opacity: .85;
  transition: transform .2s;
}
.header-ul > li:hover > a,
.header-ul > li > a.active {
  background: #ff7a13;
}
.header-ul > li:hover > a .caret { transform: rotate(180deg); }

.pull-down {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  border-top: 1px solid #e8e8e8;
  padding: 16px 8px;
  min-width: 220px;
  z-index: 100;
}
.pull-down.wide { min-width: 520px; }
.pull-down.grid-2 {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0 8px;
}
.drop-down:hover > .pull-down,
.drop-down.open > .pull-down {
  display: block;
}
.drop-down:hover > .pull-down.grid-2,
.drop-down.open > .pull-down.grid-2 {
  display: grid;
}
.pull-down a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: #222;
  min-height: 44px;
  line-height: 24px;
}
.pull-down a:hover {
  color: #ff8a00;
  text-decoration: underline;
}
.pull-down .font-color {
  color: #ff8a00;
  font-style: italic;
  margin-left: 4px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--color-primary-hot);
  font-size: 24px;
  cursor: pointer;
}

/* ========== Hero / Swiper ========== */
.mySwiper {
  width: 100%;
  height: 480px;
}
.mySwiper .swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
}
.mySwiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.45), rgba(0,0,0,.15));
}
.slide-caption {
  position: absolute;
  z-index: 2;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 560px;
}
.slide-caption h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.slide-caption p {
  font-size: 16px;
  opacity: .95;
  margin-bottom: 20px;
  line-height: 1.7;
}
.slide-caption .btn-slide {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 600;
  transition: background .25s;
}
.slide-caption .btn-slide:hover { background: var(--color-primary-hover); }
.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev { color: #fff; }
.mySwiper .swiper-pagination-bullet {
  width: 22px;
  height: 8px;
  border-radius: 20px;
  background: #000;
  opacity: .5;
}
.mySwiper .swiper-pagination-bullet-active {
  background: #fff;
  width: 32px;
  opacity: .9;
}

/* ========== Merit 卖点条 ========== */
.merit {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 30px 15px 20px;
  background-color: var(--color-merit-bg);
  gap: 1%;
  flex-wrap: wrap;
}
.meritlist {
  width: 32%;
  min-width: 240px;
  display: flex;
  gap: 12px;
  padding: 8px 10px;
}
.merit-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f98516, #f9aa5e);
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}
.merit-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 4px;
}
.merit-desc {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ========== 通用区块（Sections） ========== */
.section { padding: 40px 0 20px; }
.section-alt { background: var(--color-bg-alt); }
.h2box { padding-top: 10px; padding-bottom: 10px; }
.h2box h1,
.h2box h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}
.h2box p {
  font-size: 15px;
  color: var(--color-muted);
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* ========== About 关于我们 ========== */
.about-grid {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.about-text { flex: 1; font-size: 16px; line-height: 1.9; color: #555; }
.about-text .hl { color: var(--color-primary); font-weight: 700; }
.about-media {
  width: 48%;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.about-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
}

/* ========== 产品卡片（Cards / Products） ========== */
.product-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.product-card {
  position: relative;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  background: #fff;
  overflow: hidden;
  transition: box-shadow .3s;
}
.product-card:hover { box-shadow: var(--shadow-hover); }
.product-card:active { opacity: .85; }
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.product-rank {
  position: absolute;
  top: 0; left: 0;
  background: linear-gradient(45deg, #f98516, #f9aa5e);
  color: #fff;
  font-weight: 700;
  padding: 5px 12px;
  border-bottom-right-radius: 6px;
  border-top-left-radius: 5px;
  text-shadow: 0 1px 2px #e18d0e;
  font-size: 13px;
}
.product-cont { padding: 16px 16px 12px; }
.product-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  min-height: 56px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-title:hover { text-decoration: underline; }
.product-jingdian {
  margin: 8px 0 10px;
  height: 22px;
  overflow: hidden;
}
.product-jingdian span {
  display: inline-block;
  margin-right: 4px;
  border-radius: 5px;
  border: 1px dashed var(--color-tag-border);
  color: var(--color-primary);
  line-height: 16px;
  padding: 2px 6px;
  font-size: 12px;
}
.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 4px;
}
.price { color: var(--color-primary); }
.price span { font-size: 20px; font-weight: 700; padding-right: 2px; }
.sold { font-size: 12px; color: var(--color-muted-2); margin-top: 6px; }
.booking_btn {
  border-radius: var(--radius-btn);
  background: var(--color-primary);
  color: #fff;
  padding: 6px 12px;
  font-size: 14px;
  border: 1px solid var(--color-primary);
  transition: all .25s;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.booking_btn:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: #fff;
  transform: scale(1.04);
}

.more-button {
  margin: 10px 0 50px;
}
.more-button a {
  display: inline-block;
  height: 38px;
  line-height: 35px;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-btn);
  padding: 0 18px;
  font-size: 16px;
  transition: all .3s;
}
.more-button a:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ========== 目的地（Destinations） ========== */
.circle-entries {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 36px;
}
.circle-entry {
  width: 110px;
  transition: transform .25s;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 6px;
}
.circle-entry img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 8px;
  border: 3px solid var(--color-primary);
}
.circle-entry span {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}
.circle-entry:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
}

.dest-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25%;
  margin-bottom: 40px;
}
.card {
  width: 19%;
  position: relative;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .2s ease-in-out, box-shadow .2s;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
.vague {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(0,0,0,.25);
}
.vague .vg1 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.dest-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.dest-col {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.dest-col:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
}
.dest-col img { width: 100%; height: 150px; object-fit: cover; }
.dest-col-body { padding: 16px; }
.dest-col h3 { font-size: 17px; margin-bottom: 10px; }
.dest-col p { font-size: 13px; color: var(--color-muted); line-height: 1.7; margin-bottom: 10px; }
.dest-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.dest-tags a {
  background: #f5f5f5;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  color: #555;
  border: 1px dashed var(--color-tag-border);
}
.dest-tags a:hover { color: var(--color-primary); }

/* ========== 攻略（Guides） ========== */
.guides-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.guide-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  min-height: 44px;
  gap: 10px;
  transition: color .25s;
}
.guide-list li a .arrow {
  opacity: 0;
  transform: translateX(-6px);
  color: var(--color-primary);
  transition: all .25s;
}
.guide-list li a:hover { color: var(--color-primary); text-decoration: underline; }
.guide-list li a:hover .arrow { opacity: 1; transform: translateX(0); }
.guides-side h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0 12px;
}
.guides-side h4:first-child { margin-top: 0; }
.spot-list { display: flex; flex-wrap: wrap; gap: 8px; }
.spot-list a {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.spot-list a:hover { color: var(--color-primary); border-color: var(--color-primary); }

/* ========== 团队（Team） ========== */
.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 40px;
}
.team-member { width: 110px; }
.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #ddd;
  padding: 2px;
  margin: 0 auto 8px;
  transition: transform .3s, box-shadow .3s;
}
.team-member strong { font-size: 14px; display: block; }
.team-member img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(249,133,22,.45);
}

/* ========== Footer ========== */
.footer {
  background: var(--color-footer);
  color: #faf9f8;
  padding: 50px 0 10px;
}
.footer-box {
  display: flex;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #595f61;
  margin-bottom: 20px;
}
.footer-left { width: 32%; }
.footer-left h3 { font-size: 22px; margin-bottom: 12px; }
.footer-left > p { font-size: 13px; line-height: 1.8; color: #ccc; margin-bottom: 6px; }
.footer-qr-code {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  margin-top: 16px;
  align-items: flex-start;
}
.footer-qr-code > div {
  text-align: center;
  flex: 0 1 auto;
  min-width: 0;
}
.footer-qr-code img {
  display: block;
  width: 130px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
  border-radius: 4px;
}
.footer-qr-code p {
  margin-top: 8px;
  font-size: 13px;
  color: #ccc;
  line-height: 1.4;
}
.footer-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.footer-list h4 { font-size: 15px; margin-bottom: 12px; }
.footer-list a {
  display: inline-block;
  font-size: 13px;
  color: #ccc;
  margin: 0 8px 8px 0;
}
.footer-list a:hover { color: var(--color-primary); }
.footer-end {
  font-size: 12px;
  color: #999;
  padding-bottom: 16px;
  line-height: 1.8;
}

/* ========== 移动端底部咨询栏（Mobile Consult Bar） ========== */
.m-consult-bar {
  display: none;
}
.m-consult-icons {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.m-consult-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
  padding: 2px 0;
  color: #333;
  font-size: 11px;
  line-height: 1.2;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.m-consult-item svg {
  width: 28px;
  height: 28px;
  fill: #f9a04a;
}
.m-consult-item span {
  white-space: nowrap;
  transform: scale(0.95);
}
.m-consult-qr {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
  text-align: center;
  z-index: 1001;
}
.m-consult-qr::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top-color: #fff;
}
.m-consult-qr img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.m-consult-qr p {
  margin-top: 6px;
  font-size: 12px;
  color: #333;
  word-break: break-all;
}
.m-consult-item--wx.open .m-consult-qr {
  display: block;
}
.m-consult-item.is-hidden,
.m-consult-item[hidden] {
  display: none !important;
}
.m-consult-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 44px;
  padding: 0 22px;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(249, 133, 22, 0.35);
}

/* ========== 浮动按钮（Float Buttons） ========== */
.float-btns {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.btn-custom {
  background: var(--color-primary);
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(249,133,22,.4);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.btn-custom:hover { background: var(--color-primary-hover); }
.btn-wa {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
}
.btn-wa svg { width: 26px; height: 26px; fill: currentColor; }
#return-top {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  color: var(--color-primary);
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ========== 语言切换（Language Switcher） ========== */
.lang-switch {
  display: inline-flex;
  border: 1px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f5;
}
.lang-switch button {
  padding: 6px 12px;
  min-height: 36px;
  border: none;
  background: transparent;
  color: #999;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.lang-switch button.active {
  background: #c9a84c;
  color: #fff;
}
.lang-switch button:hover:not(.active) {
  color: #c9a84c;
}

/* ========== 响应式（Responsive） ========== */
@media (max-width: 1199px) {
  .product-box { grid-template-columns: repeat(2, 1fr); }
  .card { width: 32%; }
  .dest-cols { grid-template-columns: repeat(2, 1fr); }
  .phone-block { display: none; }
  .search-wrap { max-width: 280px; }
  .mySwiper { height: 380px; }
  .slide-caption h2 { font-size: 32px; }
}

@media (max-width: 999px) {
  .header-ul > li.hide-md { display: none; }
  .about-grid { flex-direction: column; }
  .about-media { width: 100%; }
  .footer-box { flex-direction: column; }
  .footer-left { width: 100%; }
  .footer-qr-code img {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 767px) {
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .header-center .container { flex-wrap: wrap; }
  .search-wrap {
    display: block;
    order: 3;
    flex: 1 1 100%;
    max-width: none;
    width: 100%;
    margin-top: 10px;
  }
  .search-hot { display: none; }
  .search-box { max-width: none; }
  .header-btn { display: none; }
  .header-contact .contact-img-box,
  .header-contact .phone-block { display: none; }
  .lang-switch { order: -1; }
  .header-bottom { height: auto; }
  .header-ul {
    display: none;
    flex-direction: column;
    height: auto;
    background: var(--color-primary-nav);
  }
  .header-ul.open { display: flex; }
  .header-ul > li { width: 100%; height: auto; }
  .header-ul > li > a {
    height: 48px;
    padding: 0 16px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  .pull-down, .pull-down.grid-2 {
    position: static;
    display: none !important;
    box-shadow: none;
    border-radius: 0;
    background: #fff7ed;
    min-width: 100%;
    padding: 0;
  }
  .drop-down.open > .pull-down {
    display: block !important;
  }
  .drop-down.open > .pull-down.grid-2 {
    display: grid !important;
  }
  .pull-down a { padding-left: 28px; color: #333; }

  .mySwiper { height: 280px; }
  .slide-caption { left: 5%; right: 5%; max-width: none; }
  .slide-caption h2 { font-size: 26px; }
  .slide-caption p { font-size: 13px; }
  .mySwiper .swiper-button-next,
  .mySwiper .swiper-button-prev { display: none; }

  .meritlist { width: 100%; }
  .h2box h1,
  .h2box h2 { font-size: 22px; text-align: left; }
  .h2box p { text-align: left; margin-left: 0; }
  .product-box, .dest-cols, .guides-grid { grid-template-columns: 1fr; }
  .card { width: 48%; }
  .circle-entry { width: 72px; }
  .circle-entry img { width: 56px; height: 56px; }
  .team-member { width: calc(33.33% - 20px); }
  .team-member img { width: 72px; height: 72px; }
  .footer-right { grid-template-columns: 1fr; }

  .float-btns {
    right: 12px;
    bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }
  .float-btns .btn-custom,
  .float-btns .btn-wa { display: none; }
  .btn-custom {
    width: 40px; height: 40px; padding: 0; border-radius: 50%;
    font-size: 0; justify-content: center;
  }
  .btn-custom::before { content: "订"; font-size: 14px; font-weight: 700; }
  html[lang="en"] .btn-custom::before { content: "C"; }
  .btn-wa { width: 40px; height: 40px; }

  .m-consult-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .06);
    padding: 8px 10px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    min-height: 58px;
  }
  .m-consult-icons {
    display: flex;
    flex: 1;
    justify-content: space-around;
    align-items: center;
    min-width: 0;
  }
  .m-consult-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 44px;
    min-height: 44px;
    padding: 2px 4px;
    color: #222;
    font-size: 11px;
    line-height: 1.2;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
  }
  .m-consult-item svg {
    width: 26px;
    height: 26px;
    fill: #f9a04a;
    flex-shrink: 0;
  }
  .m-consult-qr {
    display: none;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .18);
    padding: 10px;
    z-index: 1100;
    width: 126px;
    text-align: center;
  }
  .m-consult-qr::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    margin-left: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
  }
  .m-consult-qr img {
    width: 106px;
    height: 106px;
    background: #f5f5f5;
    border-radius: 4px;
  }
  .m-consult-qr p {
    font-size: 11px;
    color: var(--color-muted);
    margin-top: 6px;
    word-break: break-all;
  }
  .m-consult-item--wx.open .m-consult-qr { display: block; }
  .m-consult-cta {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #fff;
    border-radius: 999px;
    padding: 0 22px;
    height: 44px;
    min-width: 118px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(249, 133, 22, .35);
  }
  .m-consult-cta:active { background: var(--color-primary-hover); }

  body { padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px)); }
}
