/* ============================================
   尊程租车 · LUXURY EDITION
   灵感: Blacklane / Sixt / Rolls-Royce
   金色 + 深色 旗舰风格
   ============================================ */

/* ==================== FONT LOADING (China-safe) ==================== */
/* Preconnect for Google Fonts - will fallback to system fonts if blocked */
/* Local Playfair Display - no Google Fonts dependency */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/wp-content/uploads/fonts/PlayfairDisplay-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/wp-content/uploads/fonts/PlayfairDisplay-latin.woff2') format('woff2');
}
/* Noto Serif SC: use system Chinese serif fonts as fallback - no external dependency */

/* ==================== MOBILE SAFETY RESET ==================== */
@viewport { width: device-width; }
html { -webkit-text-size-adjust: 100%; }

/* ==================== iOS SAFE AREA ==================== */
@supports (padding: env(safe-area-inset-bottom)) {
 .zc-footer { padding-bottom: calc(24px + env(safe-area-inset-bottom)); }
 .zc-cta { padding-bottom: calc(140px + env(safe-area-inset-bottom)); }
 .zc-hero__scroll { bottom: calc(40px + env(safe-area-inset-bottom)); }
}

/* ==================== CHINA FONT FALLBACK ==================== */
/* If Google Fonts fail to load, fall back gracefully */
.zc-hero__title, .zc-section__title, .zc-cta__title,
.site-title, .site-title a, .wp-block-site-title a,
.zc-footer__logo, .zc-step__number, .zc-car__name {
 font-family: 'Playfair Display', 'Noto Serif SC', 'STSong', 'SimSun', 'Songti SC', Georgia, 'Times New Roman', serif !important;
}

:root {
  --gold: #c9a96e;
  --gold-light: #dfc193;
  --gold-dark: #a8853e;
  --gold-rgb: 201,169,110;
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-card: #1a1a1a;
  --gray-dark: #2a2a2a;
  --gray-mid: #666;
  --gray-light: #999;
  --gray-border: rgba(255,255,255,0.08);
  --white: #f5f5f5;
  --white-pure: #fff;
  --cream: #f8f6f1;
  --serif: 'Playfair Display', 'Noto Serif SC', 'STSong', Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==================== RESET ==================== */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black) !important;
  color: var(--white) !important;
  font-family: var(--sans) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  letter-spacing: 0.01em !important;
  overflow-x: hidden !important;
}

a { color: var(--gold); text-decoration: none; transition: color 0.4s var(--transition); }
a:hover { color: var(--gold-light); }

/* ==================== HIDE WP DEFAULTS ==================== */
.site-footer, footer.wp-block-template-part,
.wp-block-template-part:last-child,
.entry-meta, .posted-on,
.wp-block-post-comments,
.wp-block-post-navigation-link,
.wp-block-post-title,
h1.wp-block-heading:first-of-type,
.entry-title { display: none !important; }

/* ==================== NAV ==================== */
.site-header, header.wp-block-template-part,
header.site-header {
  background: rgba(10,10,10,0.6) !important;
  backdrop-filter: saturate(180%) blur(24px) !important;
  -webkit-backdrop-filter: saturate(180%) blur(24px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  z-index: 9999 !important;
  height: 64px !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 40px !important;
  transition: all 0.5s var(--transition) !important;
}

.zc-nav--scrolled {
  background: rgba(10,10,10,0.92) !important;
  border-bottom-color: var(--gray-border) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3) !important;
}

.site-header a, header a, nav a {
  color: rgba(255,255,255,0.7) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  transition: all 0.3s var(--transition) !important;
}
.site-header a:hover, header a:hover { color: var(--gold) !important; opacity: 1 !important; }

.site-title, .site-title a, .wp-block-site-title a {
  color: var(--gold) !important;
  font-family: var(--serif) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  opacity: 1 !important;
  text-transform: none !important;
}

/* ==================== LAYOUT ==================== */
main { padding-top: 0 !important; margin-top: 0 !important; }
.wp-block-post-content, .entry-content,
.wp-block-post, article {
  max-width: 100% !important; margin: 0 !important; padding: 0 !important;
}
.wp-block-group { overflow: visible !important; }
.wp-block-template-part { max-width: 100% !important; }
.has-global-padding { padding-left: 0 !important; padding-right: 0 !important; }

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

/* ==================== SECTION HEADERS ==================== */
.zc-section__header {
  text-align: center;
  margin-bottom: 64px;
}
.zc-section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}
.zc-section__label::before,
.zc-section__label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.zc-section__label::before { right: calc(100% + 16px); }
.zc-section__label::after { left: calc(100% + 16px); }

.zc-section__title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 16px;
}
.zc-section__title--light { color: var(--white); }

.zc-section__desc {
  font-size: 17px;
  color: var(--gray-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.zc-section__desc--light { color: rgba(255,255,255,0.5); }
.zc-section__label--light { color: var(--gold); }

/* ==================== HERO ==================== */
.zc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.zc-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(var(--gold-rgb),0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 80% 20%, rgba(var(--gold-rgb),0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(var(--gold-rgb),0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
  z-index: 1;
}

.zc-hero__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 2;
  pointer-events: none;
}

.zc-hero__particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.zc-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  animation: heroFadeIn 1.2s var(--transition) both;
}

@keyframes heroFadeIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.zc-hero__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  border: 1px solid rgba(var(--gold-rgb),0.3);
  padding: 6px 20px;
  margin-bottom: 32px;
  text-transform: uppercase;
  animation: heroFadeIn 1.2s 0.2s var(--transition) both;
}

.zc-hero__title {
  font-family: var(--serif);
  font-size: clamp(48px, 9vw, 110px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white-pure);
  line-height: 1.05;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #fff 0%, #e8dcc8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroFadeIn 1.2s 0.4s var(--transition) both;
}

.zc-hero__subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  animation: heroFadeIn 1.2s 0.6s var(--transition) both;
}

.zc-hero__line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 36px;
  animation: heroFadeIn 1.2s 0.7s var(--transition) both;
}

.zc-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1.2s 0.8s var(--transition) both;
}

.zc-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  animation: heroFadeIn 1.2s 1.2s var(--transition) both;
}
.zc-hero__scroll span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.zc-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ==================== BUTTONS ==================== */
.zc-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.5s var(--transition);
  position: relative;
  overflow: hidden;
}
.zc-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.zc-btn:hover::before { opacity: 1; }

.zc-btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black) !important;
  border: 1px solid var(--gold);
}
.zc-btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--gold-rgb), 0.3);
}

.zc-btn--outline {
  background: transparent;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.25);
}
.zc-btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  transform: translateY(-2px);
}

.zc-btn--lg {
  padding: 18px 48px;
  font-size: 14px;
}

/* ==================== STATS BAR ==================== */
.zc-stats {
  background: var(--black-soft);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  padding: 48px 0;
}
.zc-stats__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.zc-stats__item {
  text-align: center;
  padding: 0 48px;
  min-width: 160px;
}
.zc-stats__number {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.zc-stats__suffix {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold-light);
  margin-left: 2px;
}
.zc-stats__label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.zc-stats__divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* ==================== FLEET - 2行3列网格 ==================== */
.zc-fleet {
  background: var(--cream);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.zc-fleet::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb),0.4), transparent);
}

.zc-fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.zc-car {
  background: var(--white-pure);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition);
}

.zc-car:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.zc-car__img-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  height: 220px;
}

.zc-car__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.zc-car:hover .zc-car__img-wrap img {
  transform: scale(1.05);
}

.zc-car__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zc-car__img-overlay {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
}

.zc-car__tag {
  display: inline-block;
  padding: 3px 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border-radius: 2px;
}

.zc-car__tag--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
}

.zc-car__info {
  padding: 18px 20px 22px;
}

.zc-car__name {
  font-family: 'Playfair Display', 'Noto Serif SC', 'STSong', 'SimSun', 'Songti SC', Georgia, 'Times New Roman', serif !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gray-mid);
  margin-bottom: 2px;
}

.zc-car__name-cn {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.zc-car__spec {
  font-size: 12px;
  color: var(--gray-mid);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.zc-car__book {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
}

.zc-car__book::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--transition);
}

.zc-car__book:hover::after { width: 100%; }
.zc-car__book:hover { color: var(--gold); }

.zc-car__img-wrap img[src$=".svg"] {
  object-fit: contain;
  padding: 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

/* ==================== SERVICES ==================== */
.zc-services {
  background: var(--black);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.zc-services__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(var(--gold-rgb),0.05), transparent),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(var(--gold-rgb),0.03), transparent);
  pointer-events: none;
}

.zc-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.zc-service {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--gray-border);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  transition: all 0.6s var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.zc-service.aos-animate {
  opacity: 1;
  transform: translateY(0);
}
.zc-service:hover {
  border-color: rgba(var(--gold-rgb),0.3);
  background: rgba(var(--gold-rgb),0.05);
  transform: translateY(-4px);
}

.zc-service__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--gold);
}
.zc-service__icon svg {
  width: 100%;
  height: 100%;
}
.zc-service__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.zc-service__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* ==================== PROCESS ==================== */
.zc-process {
  background: var(--cream);
  padding: 100px 0;
}
.zc-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
}
.zc-process__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16.67%;
  right: 16.67%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(var(--gold-rgb),0.2), var(--gold));
}

.zc-step {
  text-align: center;
  position: relative;
}
.zc-step__number {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  background: var(--cream);
  display: inline-block;
  padding: 0 20px;
}
.zc-step__line { display: none; }
.zc-step__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.zc-step__desc {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ==================== CTA ==================== */
.zc-cta {
  position: relative;
  padding: 140px 24px;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}
.zc-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(var(--gold-rgb),0.12), transparent),
    linear-gradient(180deg, var(--black-soft), var(--black));
}
.zc-cta__content {
  position: relative;
  z-index: 2;
}
.zc-cta__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--white-pure);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #fff, #e8dcc8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.zc-cta__line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 32px;
}
.zc-cta__phone {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--gold) !important;
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--transition);
}
.zc-cta__phone:hover {
  color: var(--gold-light) !important;
  text-shadow: 0 0 40px rgba(var(--gold-rgb),0.3);
}
.zc-cta__wechat {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  margin-bottom: 36px;
}

/* ==================== FOOTER ==================== */
.zc-footer {
  background: var(--black-soft);
  border-top: 1px solid var(--gray-border);
  padding: 48px 0 24px;
}
.zc-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-border);
  margin-bottom: 24px;
}
.zc-footer__logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.zc-footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}
.zc-footer__links {
  display: flex;
  gap: 32px;
}
.zc-footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.zc-footer__links a:hover { color: var(--gold); }

.zc-footer__bottom {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}

/* ==================== AOS ANIMATIONS ==================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }




/* ==================== LOGO ==================== */
.zc-logo {
 display: block;
 height: auto;
 max-width: 100%;
}
.zc-logo--footer {
 opacity: 0.9;
 transition: opacity 0.3s;
}
.zc-logo--footer:hover {
 opacity: 1;
}

.zc-hero__logo {
 margin-bottom: 16px;
 animation: heroFadeIn 1.2s 0.2s var(--transition) both;
}
.zc-hero__logo img {
 width: 260px;
 height: auto;
}

.zc-footer__logo-wrap {
 margin-bottom: 4px;
}
.zc-footer__logo-wrap img {
 width: 180px;
 height: auto;
}

/* Nav logo */
.site-title a, .wp-block-site-title a {
 display: inline-flex;
 align-items: center;
 gap: 0;
}
.site-title a img, .wp-block-site-title a img {
 height: 36px;
 width: auto;
 margin-right: 0;
}

/* ==================== SVG CAR IMAGES ==================== */
.zc-car__img-wrap {
 background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
 overflow: hidden;
 position: relative;
}
.zc-car__img-wrap img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.6s var(--transition), opacity 0.4s ease;
 opacity: 1;
}
.zc-car__img-wrap img[src$=".svg"] {
 object-fit: contain;
 padding: 20px;
 background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}
.zc-car:hover .zc-car__img-wrap img {
 transform: scale(1.05);
}


/* ==================== HEADER NAV LOGO ==================== */
header .wp-block-site-title a,
.site-title a {
 display: flex !important;
 align-items: center !important;
}
header .zc-nav-logo,
.site-title .zc-nav-logo {
 height: 32px;
 width: auto;
 margin-right: 8px;
}

/* ==================== ENHANCED MOBILE FIXES ==================== */
@media (max-width: 768px) {
 /* Fix hero section on mobile */
 .zc-hero { min-height: 100svh; min-height: 100vh; }
 .zc-hero__title { font-size: clamp(36px, 10vw, 56px) !important; }
 .zc-hero__subtitle { font-size: clamp(14px, 3vw, 18px) !important; }
 
 /* Logo on mobile */
 .zc-hero__logo img { width: 200px !important; }
 .zc-footer__logo-wrap img { width: 140px !important; }

 .zc-hero__badge { font-size: 8px !important; padding: 3px 10px !important; letter-spacing: 0.15em !important; }
 
 /* Fix stats on mobile */
 .zc-stats__number { font-size: 32px !important; }
 .zc-stats__label { font-size: 12px !important; }
 .zc-stats__suffix { font-size: 18px !important; }
 
 /* Fix car cards on mobile */
 .zc-car__img-wrap { height: 200px !important; }
 .zc-car__img-wrap img { object-fit: cover !important; width: 100% !important; height: 100% !important; }
 .zc-car__name { font-size: 16px !important; }
 .zc-car__spec { font-size: 12px !important; }
 
 /* Fix section headers on mobile */
 .zc-section__title { font-size: clamp(24px, 6vw, 36px) !important; }
 .zc-section__desc { font-size: 14px !important; }
 .zc-section__label { font-size: 10px !important; }
 .zc-section__header { margin-bottom: 40px !important; }
 
 /* Fix nav on mobile */
 .site-header, header.wp-block-template-part,
 header.site-header {
  height: 56px !important;
  padding: 0 16px !important;
 }
 .site-title, .site-title a, .wp-block-site-title a {
  font-size: 16px !important;
 }
 
 /* Fix services grid on mobile */
 .zc-service__title { font-size: 16px !important; }
 .zc-service__desc { font-size: 12px !important; }
 .zc-service__icon { width: 48px !important; height: 48px !important; }
 
 /* Fix area section on mobile */
 .zc-area__city { font-size: 18px !important; }
 .zc-area__desc { font-size: 11px !important; }
 .zc-area__note { font-size: 12px !important; }
 
 /* Fix process section on mobile */
 .zc-step__number { font-size: 36px !important; }
 .zc-step__title { font-size: 16px !important; }
 .zc-step__desc { font-size: 13px !important; }
 
 /* Fix CTA section on mobile */
 .zc-cta__title { font-size: clamp(24px, 6vw, 36px) !important; }
 .zc-cta__phone { font-size: clamp(22px, 5vw, 32px) !important; }
 
 /* Fix footer on mobile */
 .zc-footer { padding: 32px 0 16px !important; }
 .zc-footer__logo { font-size: 16px !important; }
 .zc-footer__bottom { font-size: 11px !important; }
 
 /* Fix padding across sections */
 .zc-fleet { padding: 60px 0 !important; }
 .zc-services { padding: 60px 0 !important; }
 .zc-area { padding: 60px 0 !important; }
 .zc-process { padding: 60px 0 !important; }
 .zc-cta { padding: 80px 20px !important; }
 .zc-container { padding: 0 16px !important; }
 
 /* Fix fleet category labels */
 .zc-fleet__cat-label { font-size: 10px !important; }
 .zc-fleet__cat-title { font-size: 18px !important; }
}

@media (max-width: 480px) {
 .zc-hero__actions { flex-direction: column; align-items: center; gap: 12px; }
 .zc-btn { width: 100%; max-width: 260px; text-align: center; }
 .zc-hero__title { font-size: clamp(28px, 9vw, 44px) !important; }
 .zc-hero__scroll { display: none; }
 .zc-car__img-wrap { height: 160px !important; }
}

/* ==================== TOUCH OPTIMIZATION ==================== */
@media (hover: none) and (pointer: coarse) {
 .zc-car__img-overlay { opacity: 1 !important; }
 .zc-car:hover .zc-car__img-overlay { opacity: 1 !important; }
 a, button, .zc-btn { -webkit-tap-highlight-color: rgba(201,169,110,0.1); }
}

/* ==================== LOADING STATE FIX ==================== */
img[loading="lazy"] {
 opacity: 0;
 transition: opacity 0.4s ease;
}
img[loading="lazy"].loaded,
img[loading="lazy"][complete],
img[src^="/wp-content"] {
 opacity: 1;
}


/* ==================== AREA SECTION (was missing!) ==================== */
.zc-area {
 background: var(--cream);
 padding: 100px 0;
 position: relative;
}
.zc-area__grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 24px;
}
.zc-area__item {
 text-align: center;
 padding: 32px 16px;
 background: var(--white-pure);
 border-radius: 4px;
 border: 1px solid rgba(0,0,0,0.05);
 transition: all 0.4s var(--transition);
}
.zc-area__item:hover {
 border-color: rgba(var(--gold-rgb),0.3);
 transform: translateY(-4px);
 box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.zc-area__city {
 display: block;
 font-family: var(--serif);
 font-size: 22px;
 font-weight: 700;
 color: var(--black);
 margin-bottom: 8px;
 letter-spacing: 0.02em;
}
.zc-area__desc {
 display: block;
 font-size: 14px;
 color: var(--gray-mid);
 letter-spacing: 0.04em;
}
.zc-area__note {
 text-align: center;
 font-size: 14px;
 color: var(--gray-mid);
 margin-top: 32px;
 letter-spacing: 0.02em;
 line-height: 1.7;
}

/* ==================== CTA ADDRESS (was missing!) ==================== */
.zc-cta__address {
 font-size: 15px;
 color: rgba(255,255,255,0.35);
 letter-spacing: 0.06em;
 margin-bottom: 28px;
}

/* ==================== FOOTER ENHANCED ==================== */
.zc-footer__brand {
 display: flex;
 flex-direction: column;
 gap: 4px;
}
.zc-footer__addr {
 font-size: 13px;
 color: rgba(255,255,255,0.25);
 letter-spacing: 0.04em;
 line-height: 1.6;
}
.zc-footer__seo {
 font-size: 1px;
 color: transparent;
 overflow: hidden;
 height: 1px;
}

/* ==================== SERVICE ICON EMOJI FIX ==================== */
.zc-service__icon {
 font-size: 32px !important;
 line-height: 1;
 display: flex;
 align-items: center;
 justify-content: center;
 width: 48px;
 height: 48px;
 margin: 0 auto 20px;
}

/* ==================== COMPREHENSIVE MOBILE GRID FIXES ==================== */
@media (max-width: 768px) {
 /* Fleet grid: 3 columns → 1 column */
 .zc-fleet__grid {
  grid-template-columns: 1fr !important;
  gap: 20px !important;
 }
 
 /* Services grid: 4 columns → 2 columns */
 .zc-services__grid {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
 }
 
 /* Area grid: 4 columns → 2 columns */
 .zc-area__grid {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
 }
 
 /* Process grid: 3 columns → 1 column */
 .zc-process__grid {
  grid-template-columns: 1fr !important;
  gap: 32px !important;
 }
 .zc-process__grid::before { display: none !important; }
 
 /* Stats grid: wrap nicely */
 .zc-stats__grid {
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  justify-content: center !important;
 }
 .zc-stats__item {
  padding: 0 24px !important;
  min-width: 120px !important;
 }
 .zc-stats__divider { display: none !important; }
 
 /* Footer top: stack vertically */
 .zc-footer__top {
  flex-direction: column !important;
  text-align: center !important;
  gap: 16px !important;
 }
 .zc-footer__links {
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
 }
 
 /* Area items on mobile */
 .zc-area__item { padding: 20px 12px !important; }
 .zc-area__city { font-size: 18px !important; }
 .zc-area__desc { font-size: 11px !important; }
 .zc-area__note { font-size: 12px !important; padding: 0 8px !important; }
 .zc-area { padding: 60px 0 !important; }
 
 /* Car cards mobile fix */
 .zc-car__img-wrap { height: 200px !important; }
 .zc-car__img-wrap img { object-fit: cover !important; width: 100% !important; height: 100% !important; }
 .zc-car__name { font-size: 16px !important; }
 .zc-car__spec { font-size: 12px !important; }
 .zc-car__info { padding: 16px 20px 20px !important; }
 
 /* CTA address mobile */
 .zc-cta__address { font-size: 13px !important; }
}

@media (max-width: 480px) {
 /* Services grid: 2 columns → 1 column on very small screens */
 .zc-services__grid {
  grid-template-columns: 1fr !important;
 }
 
 /* Area grid: 2 columns → 1 column */
 .zc-area__grid {
  grid-template-columns: 1fr !important;
 }
 
 /* Hero buttons stack */
 .zc-hero__actions { flex-direction: column; align-items: center; gap: 12px; }
 .zc-btn { width: 100%; max-width: 260px; text-align: center; }
 .zc-hero__title { font-size: clamp(28px, 9vw, 44px) !important; }
 .zc-hero__scroll { display: none; }
 .zc-car__img-wrap { height: 160px !important; }
}

/* ==================== LAZY LOADING FIX ==================== */
/* Remove the opacity-0 on lazy loaded images - this is causing mobile images to not show */
img[loading="lazy"] {
 opacity: 1 !important;
 transition: none !important;
}

/* ==================== GOOGLE FONTS CHINA FALLBACK ==================== */
/* Use font-display:swap and preconnect already handled */
/* Added system font fallbacks in font-family declarations above */

/* ==================== SUB-PAGE HERO RESPONSIVE ==================== */
.zc-hero[style*="min-height:60vh"] {
 min-height: 60vh;
}
@media (max-width: 768px) {
 .zc-hero[style*="min-height:60vh"] {
  min-height: 80vh !important;
 }
 .zc-hero__title[style*="clamp"] {
  font-size: clamp(28px, 8vw, 48px) !important;
 }
}

/* ==================== CANONICAL FIX (CSS can't fix this, but document it) ==================== */
/* Duplicate canonical tags need to be fixed in PHP/theme level */



/* ==================== CAR CARD SLIDESHOW ==================== */
.zc-car__slideshow {
\tposition: relative;
\twidth: 100%;
\theight: 100%;
\toverflow: hidden;
}
.zc-car__slideshow img {
\tposition: absolute;
\tinset: 0;
\twidth: 100%;
\theight: 100%;
\tobject-fit: cover;
\topacity: 0;
\ttransition: opacity 0.8s ease;
}
.zc-car__slideshow img.zc-car__slide--active {
\topacity: 1;
}
.zc-car__slide-dots {
\tposition: absolute;
\tbottom: 10px;
\tleft: 50%;
\ttransform: translateX(-50%);
\tdisplay: flex;
\tgap: 6px;
\tz-index: 5;
\tpadding: 4px 10px;
\tbackground: rgba(0,0,0,0.4);
\tborder-radius: 12px;
\tbackdrop-filter: blur(4px);
}
.zc-car__dot {
\twidth: 6px;
\theight: 6px;
\tborder-radius: 50%;
\tbackground: rgba(255,255,255,0.4);
\tcursor: pointer;
\ttransition: all 0.3s;
}
.zc-car__dot--active {
\tbackground: var(--gold);
\ttransform: scale(1.3);
}
.zc-car__dot:hover {
\tbackground: rgba(255,255,255,0.7);
}
.zc-car__img-wrap {
\theight: 260px !important;
\toverflow: hidden !important;
}
/* 手机端 */
@media (max-width: 768px) {
\t.zc-car__img-wrap { height: 200px !important; }
}
@media (max-width: 480px) {
\t.zc-car__img-wrap { height: 180px !important; }
}