/* ============================================================
   诚意国际旅行社 GEO 官网 — 完整样式系统
   品牌色: 橙 #f97316 / 深蓝 #1a1a2e / 暖金 #f59e0b
   设计定位: 专业可信 · 温暖亲切 · 现代简洁
   ============================================================ */

/* ── CSS 变量 ────────────────────────────────────── */
:root {
  --color-primary: #f97316;
  --color-primary-dark: #ea580c;
  --color-primary-light: #fdba74;
  --color-primary-50: #fff7ed;
  --color-primary-100: #ffedd5;
  --color-accent: #f59e0b;
  --color-bg: #ffffff;
  --color-bg-gray: #f9fafb;
  --color-bg-warm: #fef7f0;
  --color-text: #1a1a2e;
  --color-text-secondary: #374151;
  --color-text-light: #6b7280;
  --color-text-muted: #9ca3af;
  --color-border: #e5e7eb;
  --color-border-light: #f3f4f6;
  --color-success: #10b981;
  --color-star: #f59e0b;
  --color-red: #ef4444;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
  --max-width: 1200px;
  --header-height: 68px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 基础重置 ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  color: var(--color-text);
  line-height: 1.7;
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* ── 工具类 ──────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.mt-0 { margin-top: 0; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }

/* ── 按钮系统 ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all var(--transition); border: none;
  white-space: nowrap; line-height: 1.4;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff; box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249,115,22,0.4);
}
.btn-outline {
  background: transparent; color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary-50); }
.btn-white {
  background: #fff; color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 16px 40px; font-size: 17px; }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 8px; }
.btn-block { width: 100%; }

/* ── 导航栏 ──────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
  height: var(--header-height);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; height: 100%; gap: 0;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; margin-right: 28px; }
.logo-img { width: 40px; height: 40px; border-radius: 8px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title { font-size: 16px; font-weight: 700; color: var(--color-text); white-space: nowrap; }
.logo-slogan { font-size: 12px; color: var(--color-text-light); white-space: nowrap; }

.main-nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-link {
  padding: 8px 12px; font-size: 15px; font-weight: 500;
  color: var(--color-text-secondary); border-radius: 8px;
  transition: all var(--transition); position: relative;
  text-decoration: none; white-space: nowrap;
}
.nav-link:hover { color: var(--color-primary); background: var(--color-primary-50); }
.nav-link.active { color: var(--color-primary); font-weight: 600; }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 2.5px; background: var(--color-primary); border-radius: 2px;
}

.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: default; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius); box-shadow: var(--shadow-xl);
  min-width: 180px; padding: 6px 0; z-index: 200;
  animation: fadeInDown 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px; font-size: 13.5px; transition: all 0.15s; text-decoration: none;
}
.nav-dropdown-item:hover { background: var(--color-primary-50); }
.nav-dropdown-item strong { font-size: 14px; color: var(--color-text); }
.nav-dropdown-item small { color: var(--color-text-light); font-size: 12px; margin-left: 8px; }

/* 右侧操作区：搜索 + 电话 */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; }
.header-phone-btn {
  display: flex; align-items: center; gap: 5px; padding: 8px 16px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff; border-radius: 50px; font-size: 14px; font-weight: 600;
  white-space: nowrap; transition: all var(--transition); text-decoration: none;
  box-shadow: 0 2px 8px rgba(249,115,22,0.2); flex-shrink: 0;
}
.header-phone-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(249,115,22,0.35); color: #fff; }
.header-phone-btn svg { flex-shrink: 0; width: 16px; height: 16px; }

/* 搜索框 */
.header-search {
  display: flex; align-items: center; gap: 0; flex-shrink: 0;
  border: 2px solid var(--color-border); border-radius: 50px;
  overflow: hidden; background: var(--color-bg-gray);
  transition: border-color var(--transition);
}
.header-search:focus-within { border-color: var(--color-primary); background: #fff; }
.header-search input {
  width: 150px; padding: 7px 12px; border: none; background: transparent;
  font-size: 14px; color: var(--color-text); outline: none;
}
.header-search input::placeholder { color: var(--color-text-light); font-size: 13px; }
.header-search button {
  padding: 6px 12px; border: none; background: transparent;
  cursor: pointer; font-size: 16px; line-height: 1;
}

/* 搜索结果 */
.search-results { display: flex; flex-direction: column; gap: 16px; }
.search-result-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border: 1px solid var(--color-border); border-radius: 12px;
  background: #fff; transition: all var(--transition);
}
.search-result-item:hover { border-color: var(--color-primary); box-shadow: var(--card-shadow); }
.search-result-type {
  flex-shrink: 0; padding: 4px 12px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
}
.search-result-type.route { background: #fef3c7; color: #92400e; }
.search-result-type.guide { background: #dbeafe; color: #1e40af; }
.search-result-type.article { background: #d1fae5; color: #065f46; }
.search-result-item h3 { font-size: 18px; margin: 0 0 4px; color: var(--color-primary-dark); }
.search-result-meta { font-size: 13px; color: var(--color-text-light); margin: 0 0 4px; }
.search-result-excerpt { font-size: 14px; color: var(--color-text-secondary); margin: 0; }

.mobile-menu-btn {
  display: none; width: 40px; height: 40px; align-items: center; justify-content: center;
  font-size: 22px; background: var(--color-bg-gray); border: 1px solid var(--color-border);
  border-radius: 8px; color: var(--color-text); flex-shrink: 0;
}

/* 移动端全屏菜单 */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px; flex-direction: column; gap: 8px;
  animation: fadeIn 0.25s ease;
}
.mobile-nav-overlay.active { display: flex; }
.mobile-nav-close {
  align-self: flex-end; width: 40px; height: 40px; display: flex;
  align-items: center; justify-content: center; font-size: 24px;
  background: var(--color-bg-gray); border: 1px solid var(--color-border);
  border-radius: 8px; margin-bottom: 16px;
}
.mobile-nav-item {
  display: block; padding: 14px 16px; font-size: 17px; font-weight: 500;
  border-radius: var(--radius); transition: background 0.15s;
}
.mobile-nav-item:hover, .mobile-nav-item.active { background: var(--color-primary-50); color: var(--color-primary); }
.mobile-nav-phone {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: auto; padding: 14px; background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff; border-radius: var(--radius); font-size: 16px; font-weight: 600;
}

/* ── Hero 区块 ───────────────────────────────────── */
.hero {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 520px; padding: 80px 24px; text-align: center; color: #fff;
  overflow: hidden; isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 2s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.55) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-breadcrumb {
  font-size: 14px; opacity: 0.85; margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.hero-breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: underline; text-underline-offset: 3px; }
.hero-breadcrumb a:hover { color: #fff; }
.hero-title {
  font-size: clamp(32px, 5.5vw, 48px); font-weight: 800;
  line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px); opacity: 0.92;
  margin-bottom: 32px; line-height: 1.6; text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}
.hero-cta { margin-bottom: 24px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-trust {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
  font-size: 14px; opacity: 0.85;
}
.hero-trust span {
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  padding: 6px 14px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.2);
}
.hero-home { min-height: 600px; }
.hero-city { min-height: 420px; }

/* ── 首页轮播 ────────────────────────────────────── */
.hero-slider { position: relative; height: 600px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding: 80px 24px 120px;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide .hero-overlay { z-index: 1; }
.hero-slide .hero-content { position: relative; z-index: 2; max-width: 720px; }
/* 轮播内 trust badges */
.hero-slide-trust {
  position: relative; z-index: 2; margin-top: 28px;
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
  font-size: 14px;
}
.hero-slide-trust span {
  background: rgba(255,255,255,0.18); backdrop-filter: blur(4px);
  padding: 6px 16px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.25);
  white-space: nowrap;
}
.hero-indicators {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer; padding: 0; transition: all 0.3s;
}
.hero-dot.active { background: #fff; border-color: #fff; transform: scale(1.3); }
.hero-dot:hover { background: rgba(255,255,255,0.8); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 28px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.hero-slider:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); border-color: #fff; }
@media (max-width: 768px) {
  .hero-slider { height: 480px; }
  .hero-slide { padding: 60px 20px 140px; }
  .hero-indicators { bottom: 24px; }
  .hero-arrow { display: none; }
  .hero-slide-trust { gap: 8px; margin-top: 20px; }
  .hero-slide-trust span { font-size: 12px; padding: 5px 10px; }
}

/* 各城市专属 Hero 渐变 */
.hero-beijing {
  background: linear-gradient(160deg, #7f1d1d 0%, #991b1b 25%, #dc2626 50%, #c2410c 75%, #9a3412 100%);
}
.hero-sichuan {
  background: linear-gradient(160deg, #064e3b 0%, #065f46 25%, #047857 50%, #15803d 75%, #166534 100%);
}
.hero-xian {
  background: linear-gradient(160deg, #78350f 0%, #92400e 25%, #b45309 50%, #d97706 75%, #a16207 100%);
}
.hero-hangzhou {
  background: linear-gradient(160deg, #1e3a5f 0%, #1e40af 25%, #0369a1 50%, #0e7490 75%, #0f766e 100%);
}
.hero-zhangjiajie {
  background: linear-gradient(160deg, #0f3b2c 0%, #14532d 25%, #166534 50%, #1d6b47 75%, #0f4c33 100%);
}

/* ── 通用区块 ────────────────────────────────────── */
.section { padding: 80px 0; position: relative; }
.section-gray { background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%); }
.section-warm { background: linear-gradient(180deg, #fff7ed 0%, #fff1f2 50%, #fff7ed 100%); }
.section-dark { background: var(--color-text); color: #fff; }
.section-cool { background: linear-gradient(180deg, #f0f9ff 0%, #f0fdf4 100%); }
.section-title {
  font-size: clamp(24px, 3.5vw, 32px); font-weight: 800;
  text-align: center; margin-bottom: 12px; letter-spacing: -0.3px;
  position: relative; padding-bottom: 20px;
}
.section-title::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary), var(--color-primary-dark));
}
.section-desc {
  text-align: center; color: var(--color-text-light); margin-bottom: 48px;
  font-size: 16px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.section-header .section-title { margin-bottom: 0; text-align: left; padding-bottom: 16px; }
.section-header .section-title::after { left: 0; transform: none; }
.section-more {
  color: var(--color-primary); font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px; transition: gap var(--transition);
  padding: 8px 16px; border-radius: 50px; background: var(--color-primary-50);
}
.section-more:hover { gap: 8px; background: var(--color-primary-100); }

/* ── 筛选标签栏 ──────────────────────────────────── */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 40px; padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border-light);
}
.filter-pill {
  display: inline-block; padding: 10px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 500; color: var(--color-text-secondary);
  background: var(--color-bg-gray); border: 1.5px solid transparent;
  transition: all var(--transition); text-decoration: none;
}
.filter-pill:hover { background: var(--color-primary-50); color: var(--color-primary); border-color: var(--color-primary-light); }
.filter-pill.active {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff; font-weight: 600; border-color: transparent;
  box-shadow: 0 2px 12px rgba(249,115,22,0.3);
}

/* 区块装饰分隔 */
.section-divider {
  position: absolute; top: -1px; left: 0; right: 0; height: 40px;
  background: linear-gradient(to bottom right, transparent 49%, #fff 50%);
  pointer-events: none; z-index: 1;
}

/* ── 城市卡片 (首页) ─────────────────────────────── */
.city-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.city-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  background: #fff; display: flex; flex-direction: column;
  position: relative;
}
.city-card::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 -80px 60px -20px rgba(0,0,0,0.35);
  transition: box-shadow 0.35s ease;
}
.city-card:hover::before {
  box-shadow: inset 0 -100px 80px -20px rgba(0,0,0,0.5);
}
.city-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-xl);
}
.city-card-img {
  height: 220px; background-size: cover; background-position: center;
  position: relative; transition: transform 0.5s ease;
}
.city-card:hover .city-card-img { transform: scale(1.06); }
.city-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}
.city-card-content { position: absolute; bottom: 20px; left: 20px; right: 20px; color: #fff; z-index: 3; }
.city-card-content h3 { font-size: 26px; font-weight: 700; margin-bottom: 6px; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.city-card-content p { font-size: 13px; opacity: 0.9; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.city-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; background: #fff; font-size: 14px; position: relative; z-index: 2;
}
.city-card-label { color: var(--color-primary); font-weight: 600; }
.city-card-phone { color: var(--color-text-light); font-size: 13px; }

/* ── 线路卡片 ─────────────────────────────────────── */
.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.route-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--transition);
  background: #fff; display: flex; flex-direction: column;
  border: 1px solid var(--color-border-light);
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--color-primary-light); }
.route-card-img {
  height: 200px; background-size: cover; background-position: center;
  position: relative; transition: transform 0.5s ease;
}
.route-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 40%);
  opacity: 0; transition: opacity 0.3s;
}
.route-card:hover .route-card-img::after { opacity: 1; }
.route-card:hover .route-card-img { transform: scale(1.04); }
.route-card-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--color-primary); color: #fff; padding: 5px 12px;
  border-radius: 6px; font-size: 12px; font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.route-card-tag.pure { background: var(--color-success); }
.route-card-tag.custom { background: #8b5cf6; }
.route-card-tag.luxury { background: #d97706; }
.route-card-tag.family { background: #ec4899; }
.route-card-tag.private { background: #6366f1; }
.route-card-tag.small_group { background: #0891b2; }
.route-card-tag.free { background: #6366f1; }
.route-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.route-card-city { font-size: 12px; color: var(--color-primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.route-card-body h4 { margin: 6px 0 10px; font-size: 17px; font-weight: 600; line-height: 1.4; flex: 1; }
.route-card-desc { font-size: 14px; color: var(--color-text-light); line-height: 1.5; margin-bottom: 12px; }
.route-card-meta {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; font-size: 13px;
  color: var(--color-text-light); padding-top: 12px; border-top: 1px solid var(--color-border-light);
}
.route-card-price {
  color: var(--color-primary); font-weight: 700; font-size: 20px; margin-left: auto;
  background: linear-gradient(135deg, var(--color-primary-50), #fff7ed);
  padding: 4px 12px; border-radius: 20px;
}

/* ── 导游卡片 ─────────────────────────────────────── */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.guide-card {
  border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow); transition: all var(--transition); background: #fff;
  position: relative; overflow: hidden;
  border: 1px solid var(--color-border-light);
}
.guide-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary), var(--color-primary-dark));
  opacity: 0; transition: opacity var(--transition);
}
.guide-card:hover::before { opacity: 1; }
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--color-primary-light); }
.guide-avatar {
  width: 100px; height: 100px; border-radius: 50%; background-size: cover;
  background-position: center; margin: 0 auto 16px; position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.guide-badge {
  position: absolute; top: -4px; right: -4px;
  background: linear-gradient(135deg, var(--color-accent), #d97706);
  color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 12px; box-shadow: 0 2px 8px rgba(245,158,11,0.4);
}
.guide-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.guide-level { font-size: 13px; color: var(--color-text-light); margin-bottom: 6px; }
.guide-tags { font-size: 12px; color: var(--color-primary); margin-bottom: 4px; }
.guide-stats { font-size: 12px; color: var(--color-text-light); }
.guide-city { font-size: 13px; color: var(--color-primary); font-weight: 600; margin-top: 4px; }

/* ── 文章卡片 ─────────────────────────────────────── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.article-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--transition); background: #fff;
  border: 1px solid var(--color-border-light);
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--color-primary-light); }
.article-card-img {
  height: 200px; background-size: cover; background-position: center;
  transition: transform 0.5s ease; position: relative;
}
.article-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25) 0%, transparent 35%);
  opacity: 0; transition: opacity 0.3s;
}
.article-card:hover .article-card-img::after { opacity: 1; }
.article-card:hover .article-card-img { transform: scale(1.04); }
.article-card-body { padding: 20px; }
.article-card-city, .article-card-cat {
  font-size: 12px; color: var(--color-primary); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.article-card-body h4 {
  margin: 6px 0 10px; font-size: 17px; font-weight: 600; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card-body p {
  font-size: 14px; color: var(--color-text-light); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 12px;
}
.article-card-body time { font-size: 12px; color: var(--color-text-muted); }

/* ── 文章详情 ─────────────────────────────────────── */
.geo-article { padding: 40px 0 80px; }
.article-header { margin-bottom: 40px; }
.breadcrumb {
  font-size: 13.5px; color: var(--color-text-light); margin-bottom: 20px;
  display: flex; flex-wrap: wrap; gap: 4px; align-items: center;
}
.breadcrumb a { color: var(--color-primary); }
.breadcrumb a:hover { text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb span { color: var(--color-text-muted); }
.article-title {
  font-size: clamp(26px, 4vw, 38px); font-weight: 800;
  line-height: 1.3; margin-bottom: 20px; letter-spacing: -0.3px;
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px; color: var(--color-text-light);
  padding-bottom: 20px; border-bottom: 1px solid var(--color-border);
}
.article-meta span { display: inline-flex; align-items: center; gap: 4px; }
.article-cover {
  margin-bottom: 40px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.article-cover img { width: 100%; aspect-ratio: 2.2/1; object-fit: cover; }
.article-body {
  font-size: 16.5px; line-height: 1.9; color: var(--color-text-secondary);
}
.article-body h2 {
  font-size: 26px; font-weight: 700; margin: 48px 0 20px;
  padding-top: 24px; border-top: 1px solid var(--color-border);
  color: var(--color-text);
}
.article-body h3 {
  font-size: 21px; font-weight: 600; margin: 36px 0 14px; color: var(--color-text);
}
.article-body h4 { font-size: 18px; font-weight: 600; margin: 24px 0 10px; }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin-bottom: 18px; padding-left: 24px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 4px solid var(--color-primary); background: var(--color-primary-50);
  padding: 16px 20px; margin: 20px 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--color-text-secondary);
}
.article-body table {
  width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 15px;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.article-body td, .article-body th {
  border: 1px solid var(--color-border); padding: 12px 16px; text-align: left;
}
.article-body th { background: var(--color-primary-50); font-weight: 600; color: var(--color-text); }
.article-body tr:nth-child(even) td { background: var(--color-bg-gray); }
.article-body img { border-radius: var(--radius); margin: 20px 0; }
.article-body strong { color: var(--color-text); }
.article-body a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--color-primary-dark); }

/* TL;DR 摘要卡片 */
.tldr-card {
  background: linear-gradient(135deg, var(--color-primary-50), #fff7ed);
  border: 1.5px solid var(--color-primary-light); border-radius: var(--radius-lg);
  padding: 24px 28px; margin: 24px 0;
}
.tldr-card h3 {
  font-size: 15px; color: var(--color-primary-dark); margin: 0 0 16px;
  display: flex; align-items: center; gap: 6px;
}
.tldr-card dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; }
.tldr-card dt { font-weight: 600; font-size: 14px; white-space: nowrap; }
.tldr-card dd { font-size: 14px; color: var(--color-text-secondary); margin: 0; }

/* FAQ 区块 */
.article-faq { margin: 24px 0; }
.article-faq dt {
  font-weight: 600; font-size: 17px; padding: 14px 0 6px;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text);
}
.article-faq dd {
  font-size: 15px; color: var(--color-text-secondary);
  padding: 8px 0 16px; line-height: 1.7;
}

/* EEAT 作者块 */
.article-author-block {
  background: linear-gradient(135deg, #f8fafc, var(--color-primary-50));
  border: 1.5px solid var(--color-primary-light); border-radius: var(--radius-lg);
  padding: 24px 28px; margin-top: 48px;
}
.author-block-header { margin-bottom: 12px; }
.author-block-header strong { font-size: 16px; }
.article-author-block p { margin-bottom: 8px; font-size: 15px; }
.disclosure, .data-sources { font-size: 13.5px; color: var(--color-text-light); margin-top: 6px; }

/* 文章 CTA */
.article-cta-box {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff; border-radius: var(--radius-lg);
  padding: 32px; text-align: center; margin-top: 40px;
}
.article-cta-box h3 { font-size: 22px; margin-bottom: 8px; color: #fff; }
.article-cta-box p { margin-bottom: 20px; opacity: 0.9; font-size: 15px; }
.article-cta-box .btn { background: #fff; color: var(--color-primary-dark); }
.article-cta-box .btn:hover { transform: scale(1.03); }

/* ── 相关推荐卡片 ──────────────────────────────────── */
.related-routes { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--color-border); }
.related-routes h3, .route-detail-section h2[id="相关攻略"] { font-size: 20px; margin-bottom: 16px; }
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px; margin-top: 12px;
}
.related-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  text-decoration: none; display: flex; flex-direction: column;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.related-card-img {
  width: 100%; height: 140px; background-size: cover;
  background-position: center; background-color: var(--color-primary-50);
}
.related-card-body { padding: 12px 16px; }
.related-card-body h4 {
  font-size: 15px; font-weight: 600; color: var(--color-text);
  margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.related-card-body p { font-size: 13px; color: var(--color-text-light); margin: 0; }
.related-card-body span { font-size: 13px; color: var(--color-primary); font-weight: 500; }

.article-updated {
  text-align: center; font-size: 13px; color: var(--color-text-light);
  margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--color-border);
}

/* ── 线路详情 ─────────────────────────────────────── */
.route-detail { padding: 40px 0 60px; }
.route-detail h1 { font-size: clamp(26px, 4vw, 36px); font-weight: 800; margin-bottom: 16px; }
.route-detail-meta {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  margin-bottom: 28px; font-size: 15px; padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.route-price {
  font-size: 32px; font-weight: 800; color: var(--color-primary);
}
.route-cover { margin-bottom: 36px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.route-detail-section { margin-bottom: 36px; }
.route-detail-section h2 {
  font-size: 22px; font-weight: 700; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 2px solid var(--color-primary-100);
}
.route-detail-section ul { list-style: disc; padding-left: 20px; }
.route-detail-section li { margin-bottom: 6px; font-size: 15px; line-height: 1.7; }

.itinerary-day {
  background: var(--color-primary-50); border-radius: var(--radius); padding: 18px 22px;
  margin-bottom: 14px; border-left: 4px solid var(--color-primary);
  transition: all var(--transition);
}
.itinerary-day:hover { background: #fff7ed; box-shadow: var(--shadow-md); }
.itinerary-day h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--color-primary-dark); }
.itinerary-day p { font-size: 14.5px; line-height: 1.7; color: var(--color-text-secondary); }
.itinerary-meta {
  display: flex; gap: 20px; font-size: 13px; color: var(--color-text-light);
  margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--color-primary-light);
}
.route-cta { text-align: center; padding: 48px 0; }
.route-cta .btn { font-size: 18px; padding: 18px 48px; }

/* Include / Exclude 列表 */
.route-include { margin-bottom: 24px; }
.route-include h3 { font-size: 17px; font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.route-include li { margin-bottom: 6px; font-size: 14.5px; display: flex; align-items: flex-start; gap: 8px; }
.route-include li::before { content: '✅'; flex-shrink: 0; margin-top: 2px; }
.route-exclude li::before { content: '❌'; flex-shrink: 0; margin-top: 2px; }

/* ── 导游详情 ─────────────────────────────────────── */
.guide-detail { padding: 40px 0 60px; }
.guide-detail-header {
  display: grid; grid-template-columns: 200px 1fr; gap: 36px;
  margin-bottom: 48px; align-items: start;
}
.guide-detail-avatar {
  width: 200px; height: 200px; border-radius: var(--radius-lg);
  background-size: cover; background-position: center; position: relative;
  box-shadow: var(--shadow-lg);
}
.guide-badge-lg {
  position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-accent), #d97706);
  color: #fff; padding: 6px 20px; border-radius: 20px; font-size: 14px;
  font-weight: 700; white-space: nowrap; box-shadow: 0 4px 14px rgba(245,158,11,0.4);
}
.guide-detail-info h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.guide-detail-level {
  font-size: 16px; color: var(--color-text-light); margin-bottom: 12px;
}
.guide-detail-numbers {
  display: flex; flex-wrap: wrap; gap: 24px; margin: 20px 0;
  padding: 20px; background: var(--color-bg-gray); border-radius: var(--radius);
}
.guide-detail-numbers div { text-align: center; min-width: 80px; }
.guide-detail-numbers strong { display: block; font-size: 24px; color: var(--color-primary); }
.guide-detail-numbers span { font-size: 12px; color: var(--color-text-light); }
.guide-detail-section { margin-bottom: 36px; }
.guide-detail-section h2 {
  font-size: 21px; font-weight: 700; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 2px solid var(--color-primary-100);
}
.guide-detail-text { font-size: 15px; line-height: 1.9; color: var(--color-text-secondary); white-space: pre-line; }

/* ── FAQ 列表 ─────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 40px auto 0; }
.faq-item {
  border: 1px solid var(--color-border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; transition: all var(--transition);
  background: #fff;
}
.faq-item:hover { border-color: var(--color-primary-light); }
.faq-item.open { border-color: var(--color-primary); box-shadow: var(--shadow-md); }
.faq-item dt {
  font-weight: 600; font-size: 16px; padding: 18px 20px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none; transition: color var(--transition);
}
.faq-item dt:hover { color: var(--color-primary); }
.faq-item dt::after {
  content: '+'; font-size: 22px; font-weight: 300; color: var(--color-text-light);
  transition: transform 0.3s ease; width: 24px; text-align: center;
}
.faq-item.open dt::after { transform: rotate(45deg); color: var(--color-primary); }
.faq-item dd {
  font-size: 15px; color: var(--color-text-secondary); line-height: 1.8;
  padding: 0 20px; max-height: 0; overflow: hidden;
  transition: all 0.35s ease;
}
.faq-item.open dd { padding: 0 20px 18px; max-height: 500px; }

/* ── 评价卡片 ─────────────────────────────────────── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  background: #fff; border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow); transition: all var(--transition);
  border: 1px solid var(--color-border-light);
  position: relative;
}
.review-card::before {
  content: '"'; position: absolute; top: 8px; right: 16px;
  font-size: 48px; color: var(--color-primary-100); font-family: Georgia, serif;
  line-height: 1; pointer-events: none;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--color-primary-light); }
.review-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.review-name { font-weight: 600; font-size: 15px; }
.review-stars { color: var(--color-star); font-size: 14px; letter-spacing: 2px; }
.review-content { font-size: 14.5px; line-height: 1.7; color: var(--color-text-secondary); }
.review-route { display: inline-block; margin-top: 12px; font-size: 12px; color: var(--color-text-light); background: var(--color-bg-gray); padding: 4px 10px; border-radius: 4px; }
.review-reply {
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--color-border-light);
  font-size: 13.5px; color: var(--color-text-secondary);
}
.review-reply strong { color: var(--color-primary); }

/* ── 信任区块 ─────────────────────────────────────── */
.trust-section { background: linear-gradient(to bottom, var(--color-bg-gray), #fff); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.trust-item {
  text-align: center; padding: 40px 24px;
  transition: all var(--transition);
  border-radius: var(--radius-lg);
}
.trust-item:hover { transform: translateY(-4px); background: #fff; box-shadow: var(--shadow-md); }
.trust-icon {
  width: 80px; height: 80px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--color-primary-50), #fff7ed);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; position: relative;
  box-shadow: 0 4px 20px rgba(249,115,22,0.12);
}
.trust-icon::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px dashed var(--color-primary-light); opacity: 0.4;
}
.trust-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--color-text); }
.trust-item p { font-size: 14.5px; color: var(--color-text-light); line-height: 1.7; }

/* ── 分社简介 ─────────────────────────────────────── */
.city-intro-grid {
  display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: center;
}
.city-intro-text h2 { font-size: 28px; font-weight: 700; margin-bottom: 18px; }
.city-intro-text > p { font-size: 16px; line-height: 1.9; color: var(--color-text-secondary); margin-bottom: 20px; }
.city-intro-highlights { display: flex; flex-direction: column; gap: 10px; }
.city-intro-highlights li { font-size: 15px; display: flex; align-items: center; gap: 8px; }
.city-intro-stats { display: flex; flex-direction: column; gap: 16px; }
.stat-card {
  background: linear-gradient(135deg, var(--color-primary-50), #fff7ed);
  border-radius: var(--radius-lg); padding: 28px 24px; text-align: center;
  border: 1px solid var(--color-primary-100);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.stat-card::after {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--color-primary-100); opacity: 0.5;
  transition: transform 0.4s ease;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-card:hover::after { transform: scale(1.5); }
.stat-number { font-size: 38px; font-weight: 800; color: var(--color-primary); line-height: 1.1; position: relative; z-index: 1; }
.stat-label { font-size: 14px; color: var(--color-text-light); margin-top: 6px; position: relative; z-index: 1; }

/* ── 联系卡片 ─────────────────────────────────────── */
.contact-card-section {
  padding: 80px 0;
  background: linear-gradient(170deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  color: #fff;
}
.contact-card { max-width: 720px; margin: 0 auto; text-align: center; }
.contact-card h2 { font-size: 30px; font-weight: 700; margin-bottom: 32px; }
.contact-card-grid {
  display: grid; grid-template-columns: 1fr auto; gap: 48px;
  align-items: center; text-align: left;
}
.contact-phone-label { font-size: 14px; opacity: 0.7; display: block; margin-bottom: 4px; }
.contact-phone-number { font-size: 36px; font-weight: 800; color: var(--color-primary-light); transition: color var(--transition); }
.contact-phone-number:hover { color: #fff; }
.contact-address, .contact-hours {
  font-size: 14.5px; opacity: 0.8; margin-top: 10px; display: flex; align-items: center; gap: 8px;
}
.contact-card-qr {
  text-align: center; background: #fff; padding: 16px; border-radius: var(--radius);
}
.contact-card-qr img { width: 130px; height: 130px; }
.contact-card-qr p { color: var(--color-text); font-size: 12px; margin-top: 8px; }

/* ── 关于/联系 页面 ───────────────────────────────── */
.static-page { padding: 60px 0 80px; }
.static-page h1 {
  font-size: clamp(28px, 4vw, 38px); font-weight: 800; margin-bottom: 32px;
  text-align: center;
}
.static-page h2 {
  font-size: 22px; font-weight: 700; margin: 40px 0 16px; color: var(--color-text);
}
.static-page p { font-size: 16px; line-height: 1.9; color: var(--color-text-secondary); margin-bottom: 16px; }
.static-page ul { list-style: disc; padding-left: 24px; margin-bottom: 24px; }
.static-page li { font-size: 15px; line-height: 1.8; margin-bottom: 8px; color: var(--color-text-secondary); }
.static-page .highlight-box {
  background: var(--color-primary-50); border: 1px solid var(--color-primary-100);
  border-radius: var(--radius-lg); padding: 28px 32px; margin: 32px 0;
}
.static-page .highlight-box h3 { color: var(--color-primary-dark); margin-bottom: 12px; }
.static-page .highlight-box p { font-size: 17px; font-weight: 500; }

.contact-city-list { display: grid; gap: 16px; margin-top: 32px; }
.contact-city-item {
  display: flex; align-items: center; gap: 12px; padding: 20px 24px;
  background: var(--color-bg-gray); border-radius: var(--radius);
  font-size: 16px; transition: all var(--transition);
  border: 1px solid var(--color-border-light);
}
.contact-city-item:hover { background: var(--color-primary-50); border-color: var(--color-primary-light); }
.contact-city-item strong { min-width: 100px; }

/* ── 留资表单 ─────────────────────────────────────── */
.lead-form {
  background: #fff; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-lg); max-width: 480px; margin: 24px auto;
}
.lead-form h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; text-align: center; }
.lead-form .form-desc { text-align: center; font-size: 14px; color: var(--color-text-light); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px;
  color: var(--color-text);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm); font-size: 15px; transition: all var(--transition);
  background: var(--color-bg-gray); color: var(--color-text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--color-primary); background: #fff;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-success {
  display: none; text-align: center; padding: 24px;
  background: #ecfdf5; border: 1px solid #6ee7b7; border-radius: var(--radius);
  color: #065f46; font-size: 15px;
}
.form-success.show { display: block; }

/* ── 页脚 ────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, #1a1a2e 0%, #111827 100%);
  color: #fff; padding: 60px 0 28px;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 2fr; gap: 48px; margin-bottom: 40px; }
.footer-brand h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.footer-brand p { color: #9ca3af; font-size: 14px; line-height: 1.7; margin-bottom: 6px; }
.footer-slogan { color: var(--color-primary-light) !important; font-weight: 500; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  font-size: 15px; font-weight: 600; margin-bottom: 16px;
  color: var(--color-primary-light); position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 24px; height: 2px; background: var(--color-primary); border-radius: 1px;
}
.footer-col a {
  display: block; color: #9ca3af; font-size: 14px; margin-bottom: 10px;
  transition: all var(--transition);
}
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  text-align: center;
}
.footer-bottom p { color: #6b7280; font-size: 13px; margin-bottom: 6px; line-height: 1.7; }

/* ── 404 / 500 错误页 ─────────────────────────────── */
.error-page {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
}
.error-page h1 { font-size: 80px; font-weight: 800; color: var(--color-primary); line-height: 1; }
.error-page h2 { font-size: 24px; margin: 16px 0; }
.error-page p { color: var(--color-text-light); margin-bottom: 32px; }

/* ── 分页 ─────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
  padding: 10px 16px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
  border: 1px solid var(--color-border); transition: all var(--transition);
}
.pagination a:hover { background: var(--color-primary-50); border-color: var(--color-primary-light); }
.pagination .current { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* ── 动画 ─────────────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* 交错延迟 — 列表项依次出现 */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* ── 横向滑动容器 ────────────────────────────────── */
.scroll-row {
  position: relative;
  margin: 0 -24px;
  padding: 0 24px;
}
.scroll-row-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;          /* Firefox */
  padding: 8px 4px 16px;
  cursor: grab;
  user-select: none;
}
.scroll-row-track:active { cursor: grabbing; }
.scroll-row-track::-webkit-scrollbar { display: none; }
.scroll-row-track > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

/* 各类型卡片在横向滑动中的宽度 */
.scroll-row-track .city-card    { width: 230px; }
.scroll-row-track .route-card   { width: 340px; }
.scroll-row-track .guide-card   { width: 200px; }
.scroll-row-track .article-card { width: 340px; }
.scroll-row-track .review-card  { width: 320px; }

/* 滑动箭头 — 仅桌面端 hover 显示 */
.scroll-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 300;
  color: var(--color-text-secondary);
  transition: all var(--transition);
  opacity: 0;
}
.scroll-row:hover .scroll-arrow,
.scroll-row:focus-within .scroll-arrow { opacity: 1; }
.scroll-arrow:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.scroll-arrow:active { transform: translateY(-50%) scale(0.92); }
.scroll-arrow.prev { left: 8px; }
.scroll-arrow.next { right: 8px; }

/* ── 占位图 (无实际图片时自动降级) ────────────── */
/* 卡片封面占位 — 显示为渐变+图标 */
.card-placeholder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}
.card-placeholder::after {
  content: '🖼';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; opacity: 0.5;
}
/* 各城市专属渐变 (用于卡片占位) — 多色渐变模拟真实风景 */
.card-placeholder.beijing {
  background: linear-gradient(160deg, #7f1d1d 0%, #b91c1c 30%, #dc2626 60%, #991b1b 100%);
}
.card-placeholder.sichuan {
  background: linear-gradient(160deg, #065f46 0%, #047857 25%, #059669 50%, #10b981 75%, #065f46 100%);
}
.card-placeholder.xian {
  background: linear-gradient(160deg, #78350f 0%, #92400e 30%, #b45309 55%, #d97706 80%, #78350f 100%);
}
.card-placeholder.hangzhou {
  background: linear-gradient(160deg, #1e3a5f 0%, #1e40af 25%, #0369a1 50%, #0e7490 75%, #0f766e 100%);
}
.card-placeholder.zhangjiajie {
  background: linear-gradient(160deg, #14532d 0%, #15803d 25%, #16a34a 50%, #22c55e 75%, #14532d 100%);
}

/* 导游头像占位 — 彩色圆形+首字母 */
.guide-avatar-placeholder {
  width: 100px; height: 100px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 800; color: #fff;
  margin: 0 auto 16px; position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

/* ── 响应式 ───────────────────────────────────────── */
@media (max-width: 1100px) {
  /* 中等屏幕：隐藏搜索框，保留电话 */
  .header-search { display: none; }
  .header-inner { padding: 0 16px; }
  .logo { margin-right: 16px; }
}

@media (max-width: 1024px) {
  .city-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .guide-detail-header { grid-template-columns: 160px 1fr; gap: 24px; }
  .guide-detail-avatar { width: 160px; height: 160px; }
}

@media (max-width: 900px) {
  /* 平板：隐藏搜索+电话，缩小导航 */
  .header-actions { display: none; }
  .main-nav { gap: 0; }
  .nav-link { padding: 8px 6px; font-size: 13px; }
  .logo-slogan { display: none; }
  .logo-title { font-size: 13px; }
  .logo { margin-right: 12px; }
}

@media (max-width: 768px) {
  :root { --header-height: 60px; }
  .main-nav, .header-actions { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-inner { gap: 0; padding: 0 14px; }
  .logo { margin-right: 0; }

  .hero { min-height: 380px; padding: 60px 20px; }
  .hero-home { min-height: 460px; }
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 15px; }
  .hero-trust { gap: 8px; }
  .hero-trust span { font-size: 12px; padding: 5px 10px; }

  .section { padding: 48px 0; }
  .section-title { font-size: 24px; }
  .section-header { flex-direction: column; align-items: flex-start; }

  .city-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
  .city-card-img { height: 160px; }
  .city-card-content h3 { font-size: 20px; }

  .route-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }

  .guide-detail-header { grid-template-columns: 1fr; text-align: center; }
  .guide-detail-avatar { margin: 0 auto; width: 160px; height: 160px; }
  .guide-detail-numbers { justify-content: center; }

  .geo-article { padding: 24px 0 48px; }
  .article-body { font-size: 15px; }
  .article-body h2 { font-size: 22px; }

  .contact-card-grid { grid-template-columns: 1fr; text-align: center; }
  .contact-card-qr { margin: 0 auto; }
  .contact-phone-number { font-size: 28px; }

  .footer-links { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { grid-template-columns: 1fr; }

  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .review-grid { grid-template-columns: 1fr; }
  .city-intro-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 120px; }
  .stat-number { font-size: 28px; }

  /* 移动端横向滑动 — 卡片占 80vw，露出下一个 */
  .scroll-row { margin: 0 -16px; padding: 0 16px; }
  .scroll-row-track { gap: 14px; padding-bottom: 12px; }
  .scroll-row-track .city-card    { width: 72vw; }
  .scroll-row-track .route-card   { width: 82vw; }
  .scroll-row-track .guide-card   { width: 58vw; }
  .scroll-row-track .article-card { width: 82vw; }
  .scroll-row-track .review-card  { width: 78vw; }
  .scroll-arrow { display: none; }  /* 手机端手指滑动，不显示箭头 */
}

@media (max-width: 480px) {
  .container, .container-narrow { padding: 0 16px; }
  .hero-title { font-size: 24px; }
  .logo-title { font-size: 15px; }
  .logo-slogan { display: none; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-card { padding: 20px 12px; }

  .article-title { font-size: 22px; }
  .route-price { font-size: 26px; }
}
