/* 全局样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Mobile header/menu */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  cursor: pointer;
  position: relative;
  padding: 0;
}

.menu-toggle:focus-visible {
  outline: 3px solid rgba(29, 99, 255, 0.55);
  outline-offset: 2px;
}

.menu-toggle-bar {
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

.menu-toggle-bar:nth-child(1) {
  top: 13px;
}

.menu-toggle-bar:nth-child(2) {
  top: 19px;
}

.menu-toggle-bar:nth-child(3) {
  top: 25px;
}

.menu-toggle.active .menu-toggle-bar:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

.menu-toggle.active .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-toggle-bar:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

.desktop-only {
  display: flex;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 320px);
  height: 100vh;
  background: #fff;
  z-index: 1000;
  padding: 76px 18px 18px;
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.18);
  transform: translateX(110%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-list a {
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  color: #1a1a1a;
  font-weight: 600;
}

.mobile-menu-list a:hover {
  background: #f3f6ff;
  color: #1d63ff;
}

/* Mobile menu 当前页高亮（避免与语言切换 .active 冲突） */
.mobile-menu-list a.active {
  background: #f3f6ff;
  color: #1d63ff;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  display: block;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #4a4a4a;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #1d63ff;
}

.main-nav a.active {
  color: #1d63ff;
  font-weight: 700;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-selector {
  display: inline-flex;
  width: fit-content;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}

.lang-btn {
  background: #fff;
  border: none;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-btn.active {
  background-color: #1d63ff;
  color: #fff;
}

/* 修复移动端菜单中语言切换按钮 active 状态的文字颜色（避免被菜单 .active 样式覆盖） */
.mobile-menu .language-selector .lang-btn.active {
  color: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
}

/* Hero Showcase */
.hero-showcase {
  position: absolute;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  padding: 0 20px;
}

.showcase-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.muted {
  color: #7a7a7a;
}

.showcase-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.showcase-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
}

.showcase-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.stat {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.stat i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0f6ff;
  color: #1d63ff;
}

.stat strong {
  display: block;
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.stat span {
  display: block;
  font-size: 12px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 120px;
  color: #fff;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Section Titles (kept for homepage layout where used) */
.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #1a1a1a;
}

.section {
  padding: 80px 0;
}

/* Trust Section */
.trust-section {
  padding: 300px 0 80px 0;
  background-color: #fff;
}

.trust-section .section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 60px;
}

.trust-cards {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 40px;
}

.trust-card {
  flex: 1;
  text-align: center;
  position: relative;
}

.trust-icon-wrapper {
  margin-bottom: 24px;
  position: relative;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust-icon-bg {
  width: 80px;
  height: 80px;
  background-color: #f0f6ff;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background-color: #1d63ff;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.trust-card:not(:last-child) .trust-icon-wrapper::after {
  content: "";
  position: absolute;
  left: calc(50% + 40px);
  top: 50%;
  width: calc(100% + 80px);
  height: 20px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none'/%3e%3cpath d='M0 10 C 33%25 0, 66%25 20, 100%25 10' stroke='%23d0e1ff' stroke-width='2' stroke-dasharray='4 4' fill='none'/%3e%3c/svg%3e");
}

.trust-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.trust-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* Trending Destinations */
.trending-section {
  padding: 80px 0;
  background-color: #fafafa;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.destination-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
  transform: translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}

.destination-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-image {
  transform: scale(1.06);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0) 100%
  );
}

.heart-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  transition: all 0.3s;
}

.heart-btn:hover {
  background: #fff;
  color: #ff4757;
}

.destination-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 18px 16px;
  color: #fff;
}

.destination-info h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.destination-info .price {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.destination-info .highlight {
  color: #f6c343;
}

.destination-info .description {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  max-width: 24ch;
}

/* Deals Section */
.deals-section {
  padding: 80px 0;
  background-color: #fff;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.deals-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.deal-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.deal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.deal-image {
  position: relative;
  aspect-ratio: 1.42;
}

.deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deal-info {
  padding: 12px 16px 16px;
}

.deal-info h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.deal-info .location {
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}

.deal-tag {
  display: inline-block;
  padding: 5px 12px;
  background-color: #16a085;
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* Travel More Section */
.travel-more-section {
  padding: 80px 0;
  background-color: #fafafa;
}

.travel-more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.travel-more-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 12px;
  border: 1.5px solid rgba(29, 99, 255, 0.55);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.travel-more-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.travel-more-card p {
  font-size: 14px;
  color: #666;
}

/* Sights Section */
.sights-section {
  padding: 80px 0;
  background-color: #fff;
}

.sights-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  grid-auto-rows: minmax(200px, auto);
}

/* 第一行：2个卡片，每个占3列 */
.sight-card:nth-child(1) {
  grid-column: span 3;
  grid-row: span 1;
  aspect-ratio: 2.5 / 1;
}

.sight-card:nth-child(2) {
  grid-column: span 3;
  grid-row: span 1;
  aspect-ratio: 2.5 / 1;
}

/* 第二行：3个卡片，每个占2列 */
.sight-card:nth-child(3) {
  grid-column: span 2;
  grid-row: span 1;
  aspect-ratio: 1.6 / 1;
}

.sight-card:nth-child(4) {
  grid-column: span 2;
  grid-row: span 1;
  aspect-ratio: 1.6 / 1;
}

.sight-card:nth-child(5) {
  grid-column: span 2;
  grid-row: span 1;
  aspect-ratio: 1.6 / 1;
}

.sight-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  min-height: 200px;
}

.sight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.sight-card:hover img {
  transform: scale(1.1);
}

.sight-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.sight-info span {
  font-size: 18px;
  font-weight: 600;
}

.sight-info i {
  font-size: 16px;
}

/* Activity Section */
.barcelona-section {
  padding: 80px 0;
  background-color: #fafafa;
}

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

.activity-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.activity-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background-color: #fff;
}

.testimonials-panel {
  position: relative;
  border-radius: 22px;
  background: #f5f6f7;
  padding: 34px 28px 44px;
  min-height: 420px;
  overflow: hidden;
}

.testimonials-kicker {
  text-align: center;
  font-size: 16px;
  color: #7a7a7a;
  font-weight: 600;
  margin-bottom: 22px;
}

/* floating avatars */
.testimonials-avatars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.t-avatar {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  background-size: cover;
  background-position: center;
}

/* central avatar */
.t-avatar--4 {
  width: 86px;
  height: 86px;
  left: 50%;
  top: 86px;
  transform: translateX(-50%);
  border-width: 4px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.16);
  background-image: url("../images/index/24.jpg");
}

/* surrounding avatars */
.t-avatar--1 {
  left: 12%;
  top: 86px;
  background-image: url("../images/index/21.jpg");
}

.t-avatar--2 {
  right: 12%;
  top: 110px;
  background-image: url("../images/index/22.jpg");
}

.t-avatar--3 {
  left: 4%;
  top: 210px;
  background-image: url("../images/index/23.jpg");
}

.t-avatar--5 {
  right: 4%;
  top: 252px;
  background-image: url("../images/index/25.jpg");
}

.t-avatar--6 {
  left: 18%;
  bottom: 58px;
  background-image: url("../images/index/26.jpg");
}

.t-avatar--7 {
  right: 22%;
  bottom: 72px;
  background-image: url("../images/index/27.jpg");
}

/* center block */
.testimonials-body {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 88px 56px 18px;
}

.testimonials-quote {
  font-size: 26px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 0;
}

.quote-mark {
  position: absolute;
  top: 78px;
  font-size: 84px;
  line-height: 1;
  color: rgba(29, 99, 255, 0.18);
  font-weight: 800;
  user-select: none;
}

.quote-mark--left {
  left: 0;
}

.quote-mark--right {
  right: 0;
}

.testimonials-person {
  text-align: center;
  margin-top: 10px;
}

.person-name {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.person-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #9a9a9a;
}

.person-meta .flag {
  font-size: 18px;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 54px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 34px;
}

.f-col h5 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.quick-links,
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-links a {
  font-size: 14px;
  color: #a9a9a9;
  transition: color 0.2s ease;
}

.quick-links a:hover {
  color: #1d63ff;
}

.contact-info {
  font-size: 14px;
  color: #a9a9a9;
}

.contact-info a {
  color: inherit;
}

.contact-info i {
  width: 18px;
  text-align: center;
  margin-right: 8px;
  color: #1d63ff;
}

.quick-message-form {
  display: grid;
  gap: 12px;
}

.quick-message-form .form-group input,
.quick-message-form .form-group textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 10px 12px;
  outline: none;
}

.quick-message-form .form-group input::placeholder,
.quick-message-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.phone-error-message {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #ff6b6b;
  min-height: 16px;
}

.quick-message-form .form-group input.error {
  border-color: rgba(255, 107, 107, 0.9);
}

.btn.submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  background: #1d63ff;
  color: #fff;
  box-shadow: 0 10px 20px rgba(29, 99, 255, 0.25);
}

.btn.submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  color: #9a9a9a;
  font-size: 13px;
  line-height: 1.6;
}

/* Success modal */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 18px;
}

.success-content {
  width: min(520px, 92vw);
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
}

.success-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 160, 133, 0.12);
  color: #16a085;
  font-weight: 900;
  font-size: 22px;
}

.success-btn {
  margin-top: 14px;
  height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  border: none;
  background: #1d63ff;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 1500;
}

.back-to-top.show {
  display: inline-flex;
}

.back-to-top:hover {
  background: #fff;
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(29, 99, 255, 0.55);
  outline-offset: 2px;
}

/* --------------------------------------------------
  Sub Pages (New)
-------------------------------------------------- */
.page-header {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.page-header p {
  font-size: 16px;
  opacity: 0.92;
  max-width: 720px;
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

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

/* Gallery: guide (keep original aspect ratio) */
.guide-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Gallery: travel (fixed height with wrapper box) */
.travel-gallery {
  gap: 18px;
}

.travel-gallery .img-box {
  border-radius: 12px;
  overflow: hidden;
  height: 240px;
  background: #e9ecf3;
}

.travel-gallery .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video gallery: match Hangzhou style (card + wrapper) */
.video-gallery {
  gap: 22px;
}

.video-box {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.video-box:hover {
  transform: translateY(-5px);
}

.video-box video {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  display: block;
  background: #000;
  object-fit: contain;
}

/* About page (richer) */
.about-section {
  padding: 60px 0;
  background: #fff;
}

.about-content-page {
  max-width: 980px;
  margin: 0 auto;
}

.about-text .section-title {
  font-size: 30px;
  margin: 0 0 18px;
  text-align: left;
}

.about-description p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin: 0 0 14px;
}

.company-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 26px;
  margin-bottom: 30px;
}

.company-features .feature-item {
  padding: 18px;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.company-features .feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.company-features .feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf1ff;
  color: #1d63ff;
  font-size: 18px;
  margin-bottom: 10px;
}

.company-features h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #1a1a1a;
}

.company-features p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.license-section {
  margin-top: 10px;
}

.license-section h3 {
  font-size: 18px;
  margin: 0 0 12px;
  color: #1a1a1a;
}

.license-container {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.license-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .company-features {
    grid-template-columns: 1fr;
  }
}

/* Contact / About simple blocks */
.contact-block,
.about-block {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

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

.contact-card {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: #f7f8fb;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf1ff;
  color: #1d63ff;
}

.contact-card strong {
  display: block;
  font-size: 13px;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.contact-card p {
  font-size: 13px;
  color: #666;
}

.lead {
  font-size: 15px;
  color: #555;
  margin-bottom: 14px;
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #f7f8fb;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-item .year {
  min-width: 62px;
  text-align: center;
  font-weight: 900;
  color: #1d63ff;
}

.timeline-item p {
  font-size: 13px;
  color: #666;
}

/* International tel input width like reference */
.iti {
  display: block;
  width: 100% !important;
}

.iti input[type="tel"],
.iti input[type="text"] {
  width: 100% !important;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
  }

  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .deals-scroll {
    grid-template-columns: repeat(2, 1fr);
  }

  .travel-more-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activity-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav > ul {
    display: none;
  }

  /* Travel gallery: better mobile size */
  .travel-gallery .img-box {
    height: 170px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .language-selector.desktop-only {
    display: none;
  }

  .hero-showcase {
    margin: 40px auto 0;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
  }

  .hero {
    height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0;
  }

  .hero-content {
    padding-top: 0;
    margin: 0 auto;
  }

  .showcase-card {
    padding: 18px;
  }

  .showcase-stats {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .trust-cards {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .trust-card:not(:last-child) .trust-icon-wrapper::after {
    display: none;
  }

  .destination-grid,
  .deals-scroll,
  .travel-more-grid,
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .sights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sights-grid .sight-card {
    grid-column: auto; /* Reset grid span for all cards on mobile */
    aspect-ratio: 16 / 9; /* Ensure consistent aspect ratio on mobile */
  }

  .sight-info {
    padding: 14px;
  }

  .sight-info span {
    font-size: 16px;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .page-header h1 {
    font-size: 30px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.activity-card:hover img {
  transform: scale(1.05);
}

 / *   �m��2��~��Y�~�M_W��fQ��ta�%R��V2]��Y3c  a c t i v e   �5�� zO�k�V�t�h�n�X  * / 
 . m o b i l e - m e n u   . l a n g - b t n . a c t i v e   { 
     c o l o r :   # f f f ; 
 } 
 
 
 