/* ============================================
   好老师康养企业官网 — 全局样式
   ============================================ */

/* Google Fonts */
/* CSS Variables */
:root {
  --cream: #FAF5F2;
  --warm-grey: #78716C;
  --golden: #D97706;
  --dark-slate: #0F172A;
  --white: #FFFFFF;
  --light-text: #64748B;
  --golden-light: rgba(217, 119, 6, 0.08);
  --max-width: 1280px;
  --design-width: 1440px;
  --scale: 1;
}

/* ============================================
   品牌选中色
   ============================================ */
::selection {
  background: rgba(217, 119, 6, 0.18);
  color: var(--dark-slate);
}

::-moz-selection {
  background: rgba(217, 119, 6, 0.18);
  color: var(--dark-slate);
}

/* ============================================
   自定义滚动条
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: rgba(217, 119, 6, 0.25);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(217, 119, 6, 0.4);
}

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(217, 119, 6, 0.35) var(--cream);
}

/* ============================================
   全局动画
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* CSS 降级：5秒后强制显示 */
  animation: revealFallback 0.01s 5s forwards;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 页面载入淡入 — 由 preloader 接管 */
body {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* JS 加载后由 preloader 控制；纯 CSS 降级：4秒后强制显示 */
@keyframes bodyReveal {
  to { opacity: 1; }
}
body {
  animation: bodyReveal 0.01s 4s forwards;
}

/* ============================================
   页面加载过渡（Preloader）
   ============================================ */
.page-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              visibility 0.6s;
}

.page-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-ring {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(217, 119, 6, 0.15);
  border-top-color: var(--golden);
  border-radius: 50%;
  animation: preloaderSpin 1s linear infinite;
  margin-bottom: 24px;
}

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

.preloader-logo {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--dark-slate);
  letter-spacing: 4px;
  opacity: 0;
  transform: translateY(12px);
  animation: preloaderFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards,
             preloaderPulse 2s ease-in-out 1s infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes preloaderFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   噪点纹理叠加
   ============================================ */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================
   Hero 逐行渐显
   ============================================ */
.hero-line {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-line.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   卡片交错渐显
   ============================================ */
.reveal-stagger .reveal-child {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* CSS 降级：5秒后强制显示，防止 JS 未执行导致永久隐形 */
  animation: revealFallback 0.01s 5s forwards;
}

.reveal-stagger.visible .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

@keyframes revealFallback {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--warm-grey);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

/* Utility */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}

.text-center {
  text-align: center;
}

/* Typography */
.font-serif {
  font-family: 'Noto Serif SC', serif;
}

.font-sans {
  font-family: 'Noto Sans SC', sans-serif;
}

/* ============================================
   滚动进度指示条
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--golden), #f59e0b);
  z-index: 200;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================
   Header
   ============================================ */
.header {
  height: 80px;
  background-color: rgba(250, 245, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.35s ease;
}

.header.scrolled {
  height: 56px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* ============================================
   移动端顶部横向导航
   ============================================ */
.mobile-top-nav {
  display: none;
  position: sticky;
  top: 60px;
  left: 0;
  right: 0;
  height: 48px;
  background: rgba(250, 245, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 99;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.mobile-top-nav::-webkit-scrollbar {
  display: none;
}

.mobile-top-nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 12px;
  gap: 4px;
  white-space: nowrap;
}

.mobile-top-nav-link {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-grey);
  text-decoration: none;
  border-radius: 16px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mobile-top-nav-link:active {
  background: rgba(217, 119, 6, 0.12);
}

.mobile-top-nav-link.active {
  color: var(--golden);
  background: var(--golden-light);
  font-weight: 600;
}

.header.scrolled .logo {
  font-size: 22px;
}

.header.scrolled .nav-link {
  font-size: 14px;
}

.logo {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 26px;
  background: linear-gradient(135deg, var(--dark-slate) 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  letter-spacing: 2px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo:hover {
  opacity: 0.75;
  transform: scale(1.02);
}

.nav {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-left: auto;
}

.nav-link {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--warm-grey);
  white-space: nowrap;
  position: relative;
  letter-spacing: 1px;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--golden);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-link:hover {
  color: var(--dark-slate);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--golden);
  font-weight: 500;
}

.nav-link.active::after {
  width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--warm-grey);
  transition: all 0.3s ease;
}

/* ============================================
   Hero — Standard Dark
   ============================================ */
.hero {
  background: linear-gradient(135deg, #57534e 0%, #44403c 50%, #292524 100%);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(217, 119, 6, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-title {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
  position: relative;
}

.hero-subtitle {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 32px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  letter-spacing: 0.5px;
}

/* ============================================
   Hero — Home Special (Left-Right Layout)
   ============================================ */
.hero-home {
  background-color: var(--cream);
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 80px;
}

.hero-home-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-home-left {
  flex: 0 0 55%;
}

.hero-home-right {
  flex: 0 0 40%;
}

.hero-home-title {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 52px;
  background: linear-gradient(135deg, var(--dark-slate) 0%, #1e293b 40%, var(--golden) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 72px;
  margin-bottom: 24px;
}

.hero-home-subtitle {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--light-text);
  line-height: 32px;
  margin-bottom: 32px;
}

.hero-home-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hero-home-img:hover {
  transform: scale(1.03);
}

/* Hero 图片光晕 */
.hero-home-right {
  position: relative;
}

.hero-home-right::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
  border-radius: 24px;
  background: radial-gradient(ellipse at center, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: heroGlowPulse 4s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* CTA Button */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--golden) 0%, #c2710c 100%);
  color: var(--white);
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 14px 36px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35);
}

.btn-primary:hover::after {
  left: 100%;
}

/* ============================================
   Section Common
   ============================================ */
.section {
  padding: 80px;
}

.section-bg-white {
  background-color: var(--white);
}

.section-bg-cream {
  background-color: var(--cream);
}

.section-title {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--dark-slate);
  margin-bottom: 16px;
  position: relative;
}

.text-center .section-title::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--golden), #f59e0b);
  border-radius: 2px;
  margin: 0 auto 16px;
}

.section-title::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--golden), #f59e0b);
  border-radius: 2px;
  margin: 0 0 16px;
}

.section-subtitle {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--light-text);
  line-height: 28px;
  max-width: 720px;
  margin: 0 auto 48px;
}

/* ============================================
   Timeline
   ============================================ */
.timeline {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--golden), transparent);
  opacity: 0.3;
}

.timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding-top: 48px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background-color: var(--golden);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--golden);
  animation: timelinePulse 2.5s ease-in-out infinite;
}

@keyframes timelinePulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--golden); }
  50% { box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.3); }
}

.timeline-year {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--golden);
  margin-bottom: 8px;
}

.timeline-heading {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--dark-slate);
  margin-bottom: 8px;
}

.timeline-desc {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--light-text);
  line-height: 22px;
}

/* ============================================
   Service Cards (Home)
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: left;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--golden), #f59e0b);
  border-radius: 0 2px 2px 0;
  transition: height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.service-card:hover::before {
  height: 100%;
}

.service-card:nth-child(5) {
  grid-column: 1 / -1;
  max-width: 438px;
  margin: 0 auto;
}

.service-tag {
  display: inline-block;
  background-color: rgba(217, 119, 6, 0.08);
  color: var(--golden);
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 500;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
  border: 1px solid rgba(217, 119, 6, 0.15);
  letter-spacing: 0.5px;
}

.service-card-title {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--dark-slate);
  margin-bottom: 8px;
}

.service-card-desc {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--light-text);
  line-height: 22px;
}

/* ============================================
   Trust Numbers
   ============================================ */
.trust-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  max-width: 900px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.trust-number {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--golden);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.trust-label {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--light-text);
}

/* ============================================
   图片微灰→悬停彩色
   ============================================ */
.service-detail-img img,
.brand-story-img img {
  filter: saturate(0.7);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-detail-img:hover img,
.brand-story-img:hover img {
  filter: saturate(1);
}

/* ============================================
   Service Detail Sections (services.html)
   ============================================ */
.service-detail {
  padding: 80px;
}

.service-detail-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-detail:nth-child(even) .service-detail-inner {
  flex-direction: row-reverse;
}

.service-detail-img {
  flex: 0 0 48%;
}

.service-detail-img img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.service-detail-img:hover img {
  transform: scale(1.04);
}

.service-detail-text {
  flex: 1;
}

/* ============================================
   Brand Story (about.html)
   ============================================ */
.brand-story-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.brand-story-img {
  flex: 0 0 48%;
}

.brand-story-img img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.brand-story-img:hover img {
  transform: scale(1.04);
}

.brand-story-text {
  flex: 1;
}

.brand-story-title {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--dark-slate);
  margin-bottom: 16px;
}

.brand-story-desc {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--light-text);
  line-height: 28px;
}

/* ============================================
   Philosophy Cards
   ============================================ */
.philo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.philo-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.philo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--golden), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.philo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.philo-card:hover::before {
  opacity: 1;
}

.philo-card-title {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--dark-slate);
  margin-bottom: 12px;
}

/* ============================================
   Testimonial Scroll (家属心声横向滑动)
   ============================================ */
.testimonial-scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonial-scroll-wrapper::before,
.testimonial-scroll-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.testimonial-scroll-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.testimonial-scroll-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.testimonial-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-scroll::-webkit-scrollbar {
  display: none;
}

/* 左右滚动箭头 */
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--golden);
  border: none;
  box-shadow: 0 6px 24px rgba(217, 119, 6, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #fff;
  transition: all 0.3s ease;
  outline: none;
}

.scroll-arrow:hover {
  background: var(--golden);
  box-shadow: 0 8px 32px rgba(217, 119, 6, 0.6);
  transform: translateY(-50%) scale(1.12);
  color: #fff;
}

.scroll-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.scroll-arrow-left {
  left: 4px;
}

.scroll-arrow-right {
  right: 4px;
}

.scroll-arrow svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {
  .scroll-arrow {
    width: 56px;
    height: 56px;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.55);
  }
  .scroll-arrow svg {
    width: 26px;
    height: 26px;
  }
  .scroll-arrow-left {
    left: 2px;
  }
  .scroll-arrow-right {
    right: 2px;
  }
}

.testimonial-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background-color: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--dark-slate);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--golden-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--golden);
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-slate);
  margin: 0;
}

.testimonial-date {
  font-size: 12px;
  color: var(--warm-grey);
  margin: 0;
}

@media (max-width: 640px) {
  .testimonial-card {
    flex: 0 0 300px;
    padding: 22px;
  }

  .testimonial-scroll-wrapper::before,
  .testimonial-scroll-wrapper::after {
    width: 30px;
  }
}

.philo-card-desc {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--light-text);
  line-height: 22px;
}

/* ============================================
   Contact Cards
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--golden), #f59e0b);
  border-radius: 0 2px 2px 0;
  transition: height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.contact-card:hover::before {
  height: 100%;
}

.contact-card-image-only {
  padding: 12px;
}

.contact-card-image-only .contact-icon {
  margin: 0 auto;
}

.contact-icon {
  width: 210px;
  height: auto;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 210px;
  height: auto;
  border-radius: 8px;
}

.contact-icon-svg {
  width: 64px;
  height: 64px;
  background-color: var(--golden-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background-color 0.35s ease;
}

.contact-card:hover .contact-icon-svg {
  transform: scale(1.08);
  background-color: rgba(217, 119, 6, 0.14);
}

.contact-card-title {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--dark-slate);
  margin-bottom: 8px;
}

.contact-card-desc {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--light-text);
  line-height: 22px;
}

/* ============================================
   Coming Soon
   ============================================ */
.coming-soon {
  background-color: var(--cream);
  min-height: 413px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px;
}

.coming-soon-icon {
  width: 96px;
  height: 96px;
  background-color: var(--golden-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.coming-soon-icon svg {
  width: 48px;
  height: 48px;
  color: var(--golden);
}

.coming-soon-text {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--dark-slate);
}

/* ============================================
   电话链接
   ============================================ */
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--golden);
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.phone-link:hover {
  opacity: 0.8;
}

.phone-link svg {
  flex-shrink: 0;
}

/* 联系页电话卡片 */
.contact-card-phone {
  cursor: pointer;
}

.contact-card-phone:hover .contact-icon-svg {
  background-color: rgba(217, 119, 6, 0.14);
}

/* ============================================
   涟漪效果
   ============================================ */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleEffect 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ============================================
   SVG 描边绘制动画
   ============================================ */
.draw-icon svg {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.draw-icon.visible svg,
.draw-icon:hover svg {
  stroke-dashoffset: 0;
}

/* Coming soon 图标绘制动画 */
.coming-soon-icon svg {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: drawIcon 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

@keyframes drawIcon {
  to {
    stroke-dashoffset: 0;
  }
}

/* ============================================
   浮动咨询按钮（含表单面板）
   ============================================ */
.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 120px;
  z-index: 110;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.floating-cta-trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--golden);
  border: none;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.45);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  position: relative;
}

.floating-cta-trigger::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--golden);
  animation: ctaPulse 2.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.6); opacity: 0; }
}

.floating-cta-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(217, 119, 6, 0.55);
}

.floating-cta-trigger:hover::after {
  animation: none;
}

.floating-cta-trigger svg {
  width: 22px;
  height: 22px;
  margin-bottom: 2px;
}

.floating-cta-trigger span {
  font-size: 11px;
  font-weight: 600;
}

.floating-cta-panel {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 280px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  padding: 20px;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-cta-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-cta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.floating-cta-header span {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-slate);
}

.floating-cta-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  color: var(--warm-grey);
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.floating-cta-close:hover {
  background: var(--warm-grey);
  color: #fff;
}

.floating-cta-field {
  margin-bottom: 10px;
}

.floating-cta-field input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  font-size: 14px;
  color: var(--dark-slate);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

.floating-cta-field input:focus {
  border-color: var(--golden);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.floating-cta-field input::placeholder {
  color: #94A3B8;
}

.floating-cta-submit {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: var(--golden);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 4px;
}

.floating-cta-submit:hover {
  background: #C46A05;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
}

/* ============================================
   首页内联快速预约表单
   ============================================ */
.inline-form-card {
  max-width: 640px;
  margin: 32px auto 0;
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.inline-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inline-form-field {
  flex: 1;
}

.inline-form-field input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  font-size: 15px;
  color: var(--dark-slate);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

.inline-form-field input:focus {
  border-color: var(--golden);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.inline-form-field input::placeholder {
  color: #94A3B8;
}

.inline-form-submit {
  padding: 13px 28px;
  border-radius: 10px;
  background: var(--golden);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.inline-form-submit:hover {
  background: #C46A05;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
}

.inline-form-submit:disabled {
  background: #D4D4D4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ============================================
   图片懒加载渐显
   ============================================ */
img[data-src] {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

img.lazy-loaded {
  opacity: 1;
}

/* ============================================
   移动端底部Tab导航
   ============================================ */
.mobile-tab-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: rgba(250, 245, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 100;
  justify-content: space-around;
  align-items: center;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 18px;
  color: var(--warm-grey);
  text-decoration: none;
  padding: 12px 16px;
  transition: color 0.2s ease;
}

.mobile-tab-item svg {
  width: 48px;
  height: 48px;
  transition: transform 0.2s ease;
}

.mobile-tab-item.active {
  color: var(--golden);
}

.mobile-tab-item.active svg {
  transform: scale(1.1);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background-color: var(--dark-slate);
  padding: 60px 80px 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--golden), transparent);
  opacity: 0.6;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.footer-desc {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 24px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease, padding-left 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-nav a::before {
  content: '—';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--golden);
}

.footer-nav a:hover {
  color: var(--golden);
  padding-left: 20px;
}

.footer-nav a:hover::before {
  opacity: 1;
}

.footer-copyright {
  text-align: center;
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-beian {
  text-align: center;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  padding-top: 10px;
  line-height: 1.6;
}

.footer-beian a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-beian a:hover {
  color: rgba(255, 255, 255, 0.65);
}

.beian-divider {
  margin: 0 8px;
  opacity: 0.4;
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--golden), #c2710c);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.4);
}

/* ============================================
   Responsive — Tablet (768px - 1023px)
   ============================================ */
@media (max-width: 1023px) {
  .container,
  .header,
  .hero,
  .section,
  .service-detail,
  .footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-home {
    padding: 60px 40px;
  }

  .hero-home-inner {
    flex-direction: column;
    gap: 40px;
  }

  .hero-home-left,
  .hero-home-right {
    flex: 1;
    width: 100%;
  }

  .hero-home-title {
    font-size: 40px;
    line-height: 56px;
  }

  .hero-title {
    font-size: 40px;
  }

  .service-detail-inner {
    flex-direction: column !important;
    gap: 40px;
  }

  .service-detail-img,
  .service-detail-text {
    flex: 1;
    width: 100%;
  }

  .brand-story-inner {
    flex-direction: column;
    gap: 40px;
  }

  .brand-story-img,
  .brand-story-text {
    flex: 1;
    width: 100%;
  }

  .timeline {
    flex-wrap: wrap;
    gap: 24px;
  }

  .timeline-item {
    flex: 0 0 calc(50% - 12px);
  }

  .trust-grid {
    gap: 40px;
  }

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

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

  .custom-plan-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 40px;
  }

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


/* ============================================
   菜单遮罩
   ============================================ */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   Skip Link
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--golden);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 0 0 8px 8px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  transition: top 0.3s ease;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   图片揭示遮罩
   ============================================ */
.service-detail-img,
.brand-story-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.service-detail-img::after,
.brand-story-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--golden), #f59e0b);
  transform: translateX(-101%);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  border-radius: 12px;
}

.service-detail-img.revealed::after,
.brand-story-img.revealed::after {
  transform: translateX(101%);
}

/* ============================================
   卡片图标呼吸动画
   ============================================ */
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.philo-card-title {
  animation: iconFloat 4s ease-in-out infinite;
}

.philo-card:nth-child(2) .philo-card-title {
  animation-delay: 0.5s;
}

.philo-card:nth-child(3) .philo-card-title {
  animation-delay: 1s;
}

.contact-icon-svg {
  animation: iconFloat 3s ease-in-out infinite;
}

.contact-card:nth-child(2) .contact-icon-svg {
  animation-delay: 0.3s;
}

.contact-card:nth-child(3) .contact-icon-svg {
  animation-delay: 0.6s;
}

.contact-card:nth-child(4) .contact-icon-svg {
  animation-delay: 0.9s;
}

.contact-card:hover .contact-icon-svg {
  animation-play-state: paused;
}

/* ============================================
   服务标签弹性弹入
   ============================================ */
.service-tag {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-stagger.visible .service-card .service-tag,
.reveal.visible .service-tag {
  opacity: 1;
  transform: scale(1);
}

.reveal-stagger.visible .service-card:nth-child(1) .service-tag { transition-delay: 0s; }
.reveal-stagger.visible .service-card:nth-child(2) .service-tag { transition-delay: 0.08s; }
.reveal-stagger.visible .service-card:nth-child(3) .service-tag { transition-delay: 0.16s; }
.reveal-stagger.visible .service-card:nth-child(4) .service-tag { transition-delay: 0.24s; }
.reveal-stagger.visible .service-card:nth-child(5) .service-tag { transition-delay: 0.32s; }

/* ============================================
   无障碍焦点样式
   ============================================ */
a:focus-visible,
button:focus-visible,
.nav-link:focus-visible,
.footer-nav a:focus-visible,
.mobile-tab-item:focus-visible {
  outline: 2px solid var(--golden);
  outline-offset: 2px;
  border-radius: 4px;
}

.btn-primary:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.3);
}

/* ============================================
   Responsive — Mobile H5 (< 768px)
   ============================================ */
@media (max-width: 767px) {
  html, body {
    overflow-x: hidden;
  }

  .mobile-tab-bar {
    display: flex;
  }

  body {
    padding-bottom: 140px;
  }

  .back-to-top {
    bottom: 140px;
  }

  .floating-cta {
    bottom: 220px;
    right: 12px;
  }

  .floating-cta-trigger {
    width: 64px;
    height: 64px;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5);
  }

  .floating-cta-trigger svg {
    width: 26px;
    height: 26px;
    margin-bottom: 3px;
  }

  .floating-cta-trigger span {
    font-size: 12px;
  }

  .floating-cta-panel {
    width: 260px;
    padding: 16px;
  }

  .inline-form-card {
    padding: 20px 16px;
    margin: 24px 8px 0;
  }

  .inline-form {
    flex-direction: column;
  }

  .inline-form-field input {
    font-size: 16px; /* 防止 iOS 缩放 */
  }

  .inline-form-submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }

  .header {
    padding: 0 20px;
    height: 60px;
  }

  .logo {
    font-size: 22px;
  }

  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    width: auto;
    padding: 0;
    gap: 2px;
    background: transparent;
    box-shadow: none;
    transform: none;
    transition: none;
    margin-left: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    padding: 6px 12px;
    border-bottom: none;
    font-size: 15px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active {
    color: var(--golden);
    background: var(--golden-light);
    border-radius: 12px;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .phone {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-top-nav {
    display: none;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 26px;
  }

  .hero-home {
    padding: 40px 20px;
    min-height: auto;
  }

  .hero-home-title {
    font-size: 32px;
    line-height: 44px;
  }

  .hero-home-subtitle {
    font-size: 16px;
    line-height: 26px;
  }

  .section,
  .service-detail {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

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

  .service-card:nth-child(5) {
    grid-column: auto;
    max-width: 100%;
  }

  .timeline {
    flex-direction: column;
    gap: 32px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    flex: 1;
    padding-top: 0;
    padding-left: 32px;
    text-align: left;
  }

  .timeline-item::before {
    left: 0;
    top: 4px;
    transform: none;
  }

  .timeline-year {
    font-size: 28px;
  }

  .trust-grid {
    flex-direction: column;
    gap: 32px;
  }

  .trust-number {
    font-size: 36px;
  }

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

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

  .contact-icon,
  .contact-icon img {
    width: 100%;
    max-width: 210px;
    height: auto;
  }

  .coming-soon {
    padding: 60px 20px;
  }

  .coming-soon-text {
    font-size: 36px;
  }

  .footer {
    padding: 40px 20px;
  }

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

  .footer-beian {
    font-size: 11px;
    padding: 8px 12px 0;
  }

  .beian-divider {
    margin: 0 4px;
  }
}


/* ============================================
   Pricing Page (price.html)
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card-highlight {
  border: 2px solid var(--golden);
  transform: scale(1.02);
}

.pricing-card-highlight:hover {
  transform: scale(1.02) translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: -32px;
  background: linear-gradient(135deg, var(--golden), #c2710c);
  color: var(--white);
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 40px;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-tag {
  display: inline-block;
  background: var(--golden-light);
  color: var(--golden);
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.pricing-name {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--dark-slate);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-currency {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--golden);
}

.pricing-number {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 42px;
  color: var(--golden);
  letter-spacing: 1px;
}

.pricing-unit {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  color: var(--warm-grey);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  color: var(--dark-slate);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li svg {
  flex-shrink: 0;
}

/* 价格信息卡片 */
.price-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.price-info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.price-info-icon {
  width: 56px;
  height: 56px;
  background: var(--golden-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.price-info-title {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark-slate);
  margin-bottom: 16px;
}

.price-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-info-list li {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  color: var(--light-text);
  padding: 6px 0;
  position: relative;
  padding-left: 16px;
}

.price-info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  background: var(--golden);
  border-radius: 50%;
  opacity: 0.5;
}

/* ============================================
   Custom Plan Cards (定制化方案)
   ============================================ */
.custom-plan-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.custom-plan-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.custom-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.custom-plan-icon {
  width: 56px;
  height: 56px;
  background: var(--golden-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.custom-plan-name {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark-slate);
  margin-bottom: 12px;
}

.custom-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 16px;
}

.custom-plan-currency {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--golden);
}

.custom-plan-number {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--golden);
  letter-spacing: 1px;
}

.custom-plan-unit {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 13px;
  color: var(--warm-grey);
}

.custom-plan-desc {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 13px;
  color: var(--light-text);
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

.custom-plan-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--warm-grey);
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
}

/* ============================================
   Location Page (location.html)
   ============================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.location-info-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.location-info-icon {
  width: 44px;
  height: 44px;
  background: var(--golden-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-info-text h4 {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--dark-slate);
  margin-bottom: 6px;
}

.location-info-text p {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
}

.location-map {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  min-height: 400px;
}

.location-map #map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* 交通指南 */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.transport-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.transport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.transport-icon {
  width: 64px;
  height: 64px;
  background: var(--golden-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.transport-title {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark-slate);
  margin-bottom: 16px;
}

.transport-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.transport-list li {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  color: var(--light-text);
  padding: 6px 0;
  position: relative;
  padding-left: 16px;
}

.transport-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  background: var(--golden);
  border-radius: 50%;
  opacity: 0.5;
}

/* 周边配套 */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.nearby-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nearby-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.nearby-icon {
  width: 56px;
  height: 56px;
  background: var(--golden-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.nearby-title {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark-slate);
  margin-bottom: 16px;
}

.nearby-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.nearby-list li {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  color: var(--light-text);
  padding: 6px 0;
  position: relative;
  padding-left: 16px;
}

.nearby-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  background: var(--golden);
  border-radius: 50%;
  opacity: 0.5;
}

/* ============================================
   Booking Form
   ============================================ */
.booking-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 40px;
}

.booking-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-slate);
  margin-bottom: 8px;
}

.form-label span {
  color: #ef4444;
  margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 15px;
  color: var(--dark-slate);
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  transition: all 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--golden);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
  background: var(--white);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2378716C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 14px 32px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--golden), #c2710c);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Toast 提示 */
.toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: var(--dark-slate);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  font-weight: 500;
  z-index: 300;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast.success {
  background: linear-gradient(135deg, #10b981, #059669);
}

.toast.error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
  /* 隐藏非内容元素 */
  .header,
  .floating-cta,
  .back-to-top,
  .mobile-tab-bar,
  .scroll-progress,
  .page-preloader,
  .menu-toggle,
  .skip-link,
  .hero-action {
    display: none !important;
  }

  /* 重置背景色为白色，节省墨水 */
  body {
    background: white !important;
    color: black !important;
  }

  /* 确保内容可见 */
  .reveal,
  .reveal-child,
  .reveal-stagger {
    opacity: 1 !important;
    transform: none !important;
  }

  /* 打印友好的链接显示 */
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 12px;
    color: #666;
  }

  /* 但tel和mailto链接不显示URL */
  a[href^="tel:"]::after,
  a[href^="mailto:"]::after {
    content: "";
  }

  /* 卡片边框 */
  .contact-card,
  .philo-card,
  .service-card {
    border: 1px solid #ddd !important;
    box-shadow: none !important;
    break-inside: avoid;
  }

  /* 避免分页截断 */
  .contact-card,
  .service-detail,
  .philo-card {
    break-inside: avoid;
  }

  /* 页脚简化 */
  .footer {
    border-top: 1px solid #ddd;
    margin-top: 40px;
    padding-top: 20px;
  }

  .footer-grid {
    display: block;
  }

  .footer-col:not(:first-child) {
    display: none;
  }

  /* 确保标题颜色 */
  .hero-title,
  .section-title,
  .philo-card-title,
  .contact-card-title {
    color: #2C3E50 !important;
  }
}


/* ============================================
   FAQ Accordion
   ============================================ */
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-accordion-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-accordion-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-slate);
  text-align: left;
  transition: background 0.2s ease;
}

.faq-accordion-header:hover {
  background: rgba(217, 119, 6, 0.03);
}

.faq-accordion-header:focus-visible {
  outline: 2px solid var(--golden);
  outline-offset: -2px;
}

.faq-accordion-icon {
  flex-shrink: 0;
  color: var(--golden);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-accordion-item.active .faq-accordion-icon {
  transform: rotate(180deg);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0 24px;
}

.faq-accordion-item.active .faq-accordion-body {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-accordion-body p {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--light-text);
  margin: 0;
}

.faq-accordion-body a {
  color: var(--golden);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 119, 6, 0.3);
  transition: border-color 0.3s ease;
}

.faq-accordion-body a:hover {
  border-bottom-color: var(--golden);
}

@media (max-width: 767px) {
  .faq-accordion-header {
    padding: 16px 20px;
    font-size: 15px;
  }
  .faq-accordion-body {
    padding: 0 20px;
  }
  .faq-accordion-item.active .faq-accordion-body {
    padding: 0 20px 16px;
  }
  .faq-accordion-body p {
    font-size: 14px;
  }
}


/* ============================================
   Comparison Table (price.html)
   ============================================ */
.comparison-section {
  padding: 0 24px;
}

.comparison-table-wrap {
  max-width: 960px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.comparison-table thead th {
  background: linear-gradient(135deg, var(--golden), #c2710c);
  color: var(--white);
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 20px;
  text-align: center;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table tbody td {
  padding: 16px 20px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 15px;
  color: var(--dark-slate);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  vertical-align: middle;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--dark-slate);
  background: var(--cream);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover td {
  background: rgba(217, 119, 6, 0.02);
}

.comparison-table tbody tr:hover td:first-child {
  background: rgba(217, 119, 6, 0.06);
}

.comparison-check {
  color: #10b981;
  font-weight: 700;
}

.comparison-cross {
  color: #ef4444;
  font-weight: 700;
}

.comparison-warn {
  color: #f59e0b;
  font-weight: 700;
}

.comparison-summary {
  max-width: 800px;
  margin: 32px auto 0;
  padding: 24px 28px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border-left: 3px solid var(--golden);
}

.comparison-summary p {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--light-text);
  margin: 0;
}

@media (max-width: 767px) {
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 12px 14px;
    font-size: 13px;
  }
  .comparison-summary {
    padding: 16px 20px;
    margin: 24px 16px 0;
  }
  .comparison-summary p {
    font-size: 14px;
  }
}


/* ============================================
   HowTo Steps (services.html)
   ============================================ */
.howto-steps {
  display: flex;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  counter-reset: step;
}

.howto-step {
  flex: 1;
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  position: relative;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.howto-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.howto-step::before {
  counter-increment: step;
  content: counter(step);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--golden), #c2710c);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 16px;
}

.howto-step-title {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark-slate);
  margin-bottom: 10px;
}

.howto-step-desc {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  color: var(--light-text);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1023px) {
  .howto-steps {
    flex-wrap: wrap;
  }
  .howto-step {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .howto-steps {
    flex-direction: column;
    padding: 0 16px;
  }
  .howto-step {
    flex: 1;
  }
}


/* ============================================
   Long-tail Article Pages
   ============================================ */
.article-page .article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-page .article-content h3 {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--dark-slate);
  margin: 40px 0 16px;
}

.article-page .article-content p {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--light-text);
  margin-bottom: 16px;
}

.article-page .article-content strong {
  color: var(--dark-slate);
}

.article-page .article-content a {
  color: var(--golden);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 119, 6, 0.3);
  transition: border-color 0.3s ease;
}

.article-page .article-content a:hover {
  border-bottom-color: var(--golden);
}

.article-page .article-content ul,
.article-page .article-content ol {
  margin: 0 0 20px 24px;
  padding: 0;
}

.article-page .article-content li {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--light-text);
  margin-bottom: 8px;
}

.article-cta {
  max-width: 800px;
  margin: 48px auto 0;
  padding: 32px;
  background: linear-gradient(135deg, #FFF7ED, #FEF3C7);
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(217, 119, 6, 0.12);
}

.article-cta h3 {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--dark-slate);
  margin-bottom: 12px;
}

.article-cta p {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 15px;
  color: var(--light-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .article-page .article-content h3 {
    font-size: 20px;
  }
  .article-page .article-content p,
  .article-page .article-content li {
    font-size: 15px;
  }
  .article-cta {
    padding: 24px 20px;
    margin: 32px 16px 0;
  }
}


/* ============================================
   FAQ 常见问题（旧版静态样式保留）
   ============================================ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border-left: 3px solid var(--golden);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.faq-question {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 12px;
  line-height: 1.5;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.faq-answer a {
  color: var(--golden);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 119, 6, 0.3);
  transition: border-color 0.3s ease;
}

.faq-answer a:hover {
  border-bottom-color: var(--golden);
}

@media (max-width: 767px) {
  .faq-item {
    padding: 20px 24px;
  }
  .faq-question {
    font-size: 15px;
  }
  .faq-answer {
    font-size: 14px;
  }
}


/* ============================================
   门店实拍 Gallery
   ============================================ */
.gallery-scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 24px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  position: relative;
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* 图片滤镜：暖色调 + 阳光感 + 轻微柔化 */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
  filter: brightness(1.08) contrast(1.04) saturate(1.08);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.02) contrast(1.02) saturate(1.02);
}

/* 暖色阳光叠加层 */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 200, 120, 0.08) 0%,
    rgba(255, 220, 180, 0.04) 40%,
    rgba(255, 160, 80, 0.06) 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::before {
  opacity: 0;
}

/* 底部渐变遮罩 + 文字描述 */
.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 48px 16px 16px;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.72) 0%,
    rgba(15, 23, 42, 0.35) 55%,
    transparent 100%
  );
  transition: padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  padding-bottom: 22px;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.55) 0%,
    rgba(15, 23, 42, 0.2) 60%,
    transparent 100%
  );
}

.gallery-caption .caption-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(217, 119, 6, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
  border: 1px solid rgba(217, 119, 6, 0.3);
  transition: background 0.3s ease;
}

.gallery-item:hover .caption-tag {
  background: rgba(217, 119, 6, 0.4);
}

.gallery-caption .caption-title {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.35;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.gallery-item:hover .caption-title {
  transform: translateY(-2px);
}

.gallery-item:hover .caption-title {
  transform: translateY(-2px);
}

/* 门店实拍左右箭头 */
.gallery-arrow-left {
  left: 8px;
}

.gallery-arrow-right {
  right: 8px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  max-width: 600px;
  line-height: 1.5;
}

.lightbox-counter {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--golden);
  border: none;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
}

.lightbox-arrow:hover {
  background: #C46A05;
  box-shadow: 0 6px 22px rgba(217, 119, 6, 0.55);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow-left {
  left: 15vw;
}

.lightbox-arrow-right {
  right: 15vw;
}

/* ============================================
   社交媒体矩阵
   ============================================ */
.social-matrix {
  padding: 0 24px;
}

.social-matrix-title {
  text-align: center;
  font-size: 15px;
  color: var(--warm-grey);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.social-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.social-card {
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.social-qr-wrap {
  width: 130px;
  height: 154px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background: #b8860b;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.social-qr-wrap.social-qr-light {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.social-qr-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.social-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  width: 100%;
  margin-top: 8px;
  gap: 2px;
}

.social-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-slate);
  margin: 0;
  line-height: 1.25;
}

.social-account {
  font-size: 11px;
  font-weight: 500;
  color: var(--warm-grey);
  margin: 0;
  line-height: 1.25;
}

.social-id {
  font-size: 11px;
  color: var(--light-text);
  margin: 0;
  line-height: 1.25;
}

.social-btn {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
  line-height: 1.25;
  margin-top: 10px;
  margin-bottom: 2px;
}

.social-btn-douyin {
  background: linear-gradient(135deg, #fe2c55 0%, #ff0050 100%);
  color: #fff;
}

.social-btn-douyin:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(254, 44, 85, 0.3);
}

.social-btn-channel {
  background: linear-gradient(135deg, #FA9D3B 0%, #F14D44 100%);
  color: #fff;
}

.social-btn-mp {
  background: linear-gradient(135deg, #07C160 0%, #05a350 100%);
  color: #fff;
}

@media (max-width: 767px) {
  .gallery-scroll {
    gap: 12px;
    padding: 8px 16px 20px;
  }
  .gallery-item {
    flex: 0 0 240px;
  }
  .gallery-caption {
    padding-top: 36px !important;
    padding-bottom: 12px !important;
  }
  .gallery-caption .caption-tag {
    font-size: 9px;
    padding: 2px 7px;
  }
  .gallery-caption .caption-title {
    font-size: 13px;
  }
  .gallery-arrow-left,
  .gallery-arrow-right {
    display: flex;
    width: 56px;
    height: 56px;
    background: var(--golden);
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.55);
    border: none;
    color: #fff;
  }
  .gallery-arrow-left {
    left: 2px;
  }
  .gallery-arrow-right {
    right: 2px;
  }
  .lightbox {
    background: rgba(0, 0, 0, 0.96);
  }
  .lightbox-content {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    padding: 0;
    display: block;
  }
  .lightbox-content img {
    width: 100vw;
    height: 100vh;
    max-height: none;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
  }
  .lightbox-content img.zoomed {
    object-fit: cover;
    transform: scale(2);
  }
  .lightbox-caption {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    margin-top: 0;
    font-size: 14px;
  }
  .lightbox-counter {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    font-size: 12px;
  }
  .lightbox-arrow {
    width: 52px;
    height: 52px;
    background: var(--golden);
    border: none;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.5);
  }
  .lightbox-arrow svg {
    width: 26px;
    height: 26px;
  }
  .lightbox-arrow-left {
    left: 8vw;
  }
  .lightbox-arrow-right {
    right: 8vw;
  }
  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
  .social-matrix-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  .social-qr-wrap {
    width: 140px;
    height: 140px;
  }

  /* Pricing page mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .pricing-card-highlight {
    transform: none;
  }
  .pricing-card-highlight:hover {
    transform: translateY(-6px);
  }
  .pricing-number {
    font-size: 36px;
  }
  .price-info-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .custom-plan-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .custom-plan-number {
    font-size: 28px;
  }

  /* Location page mobile */
  .location-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .location-map {
    min-height: 300px;
  }
  .location-map #map {
    min-height: 300px;
  }
  .transport-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .nearby-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  /* Booking form mobile */
  .booking-section {
    padding: 0 16px;
  }
  .booking-form {
    padding: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   信任保障区块
   ============================================ */
.trust-grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.trust-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--golden-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--golden);
}

.trust-title {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--dark-slate);
  margin-bottom: 10px;
}

.trust-desc {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--warm-grey);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .trust-grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .trust-grid-cards {
    grid-template-columns: 1fr;
  }
  .trust-card {
    padding: 24px 20px;
  }
}

