/* ===== page-contact 专属样式 ===== */
.page-contact {
  --ct-bg-dark: #0F1F3D;
  --ct-bg-card: #002A66;
  --ct-accent-line: #00FF88;
  --ct-orange: #FF6600;
  --ct-blue-light: #2D6FD6;
  --ct-text-light: #E8F0FF;
  --ct-shadow: 0 12px 40px rgba(0, 68, 204, 0.25);
  --ct-radius: 12px;
  --ct-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
  width: 100%;
}

/* ===== 首屏左右分屏 ===== */
.page-contact .contact-hero.split-layout {
  display: flex;
  flex-direction: column;
  min-height: 70vh;
  background: var(--ct-bg-dark);
  position: relative;
  overflow: hidden;
}

.page-contact .contact-hero .split-panel {
  flex: 1 1 auto;
  position: relative;
}

/* 左屏：视觉面板 */
.page-contact .contact-visual-panel {
  background: linear-gradient(145deg, #001D4A 0%, #003080 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.page-contact .contact-visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-contact .contact-skyline {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  position: absolute;
  inset: 0;
  opacity: 0.55;
}

.page-contact .contact-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,68,204,0.40) 0%, rgba(0,34,102,0.70) 100%);
  z-index: 1;
}

.page-contact .contact-visual-label {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 4px;
  transform: rotate(-3deg);
  opacity: 0.85;
}

.page-contact .contact-visual-label .label-line {
  display: block;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--color-white, #FFFFFF);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  letter-spacing: 6px;
  writing-mode: vertical-lr;
  line-height: 1.1;
}

/* 右屏：信息面板 */
.page-contact .contact-info-panel {
  background: var(--color-white, #FFFFFF);
  padding: 32px 24px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-contact .contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.page-contact .contact-breadcrumb a {
  color: var(--color-primary, #0044CC);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--ct-transition);
}

.page-contact .contact-breadcrumb a:hover {
  color: var(--color-secondary, #FF6600);
}

.page-contact .contact-breadcrumb .breadcrumb-sep {
  color: #999;
  user-select: none;
}

.page-contact .contact-headline {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.1;
  color: var(--color-neutral-dark, #1A1A1A);
  margin: 0 0 10px;
  position: relative;
  display: inline-block;
}

.page-contact .contact-headline::after {
  content: "";
  display: block;
  width: 64px;
  height: 6px;
  background: var(--color-secondary, #FF6600);
  margin-top: 8px;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.page-contact .contact-subhead {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 20px;
  max-width: 500px;
}

/* 图标行 */
.page-contact .contact-icons-row {
  margin-bottom: 20px;
}

.page-contact .contact-icons-img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
  max-width: 100%;
}

/* 联系卡片 */
.page-contact .contact-card {
  background: var(--gradient-primary, linear-gradient(135deg, #0044CC, #002266));
  border-radius: var(--ct-radius);
  padding: 24px 28px;
  color: var(--color-white, #FFFFFF);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  box-shadow: var(--ct-shadow);
  margin-bottom: 16px;
  max-width: 520px;
}

.page-contact .contact-card-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
}

.page-contact .contact-card-label {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.75;
}

.page-contact .contact-card-value {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--color-white, #FFFFFF);
  text-decoration: none;
  word-break: break-all;
  transition: color var(--ct-transition);
}

.page-contact .contact-card-value:hover {
  color: var(--color-accent, #00FF88);
}

.page-contact .contact-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0;
}

.page-contact .contact-note {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #888;
  background: var(--color-neutral-light, #F2F2F2);
  border-left: 4px solid var(--color-secondary, #FF6600);
  padding: 12px 16px;
  border-radius: 4px;
  max-width: 520px;
  margin-top: 4px;
}

/* ===== 服务时间与说明 ===== */
.page-contact .contact-service-section {
  background: var(--color-neutral-light, #F2F2F2);
  padding: 56px 0;
  position: relative;
}

.page-contact .contact-service-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--color-primary, #0044CC), var(--color-accent, #00FF88), var(--color-secondary, #FF6600));
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0 100%);
}

.page-contact .service-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.page-contact .service-text-block {
  flex: 1 1 auto;
  max-width: 600px;
}

.page-contact .service-heading {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.2;
  color: var(--color-neutral-dark, #1A1A1A);
  margin: 0 0 14px;
  position: relative;
  display: inline-block;
}

.page-contact .service-heading::after {
  content: "";
  display: block;
  width: 48px;
  height: 5px;
  background: var(--color-accent, #00FF88);
  margin-top: 6px;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.page-contact .service-desc {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin: 0 0 24px;
}

/* 进度条组 */
.page-contact .service-progress-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-contact .service-progress-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-contact .service-progress-label {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #333;
  min-width: 80px;
}

.page-contact .service-progress-row .progress-bar {
  flex: 1;
  height: 10px;
  background: #DDE3EC;
  border-radius: 6px;
  overflow: hidden;
  min-width: 80px;
}

.page-contact .service-progress-row .progress-fill {
  height: 100%;
  background: var(--color-accent, #00FF88);
  border-radius: 6px;
  transition: width 0.6s ease;
}

.page-contact .service-progress-pct {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--color-primary, #0044CC);
  min-width: 40px;
  text-align: right;
}

.page-contact .service-footnote {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #999;
  margin-top: 12px;
  border-top: 1px dashed #CCC;
  padding-top: 10px;
}

/* 右侧时钟 */
.page-contact .service-visual-block {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.page-contact .service-clock {
  width: 120px;
  height: 120px;
  color: var(--color-primary, #0044CC);
}

.page-contact .service-clock-svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ===== 常见问题索引 ===== */
.page-contact .contact-faq-section {
  background: var(--color-white, #FFFFFF);
  padding: 56px 0;
}

.page-contact .faq-heading {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.2;
  color: var(--color-neutral-dark, #1A1A1A);
  margin: 0 0 8px;
  position: relative;
  display: inline-block;
}

.page-contact .faq-heading::after {
  content: "";
  display: block;
  width: 48px;
  height: 5px;
  background: var(--color-secondary, #FF6600);
  margin-top: 6px;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.page-contact .faq-desc {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #666;
  margin: 0 0 28px;
  max-width: 500px;
}

.page-contact .faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.page-contact .faq-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--color-neutral-light, #F2F2F2);
  border-radius: var(--ct-radius);
  text-decoration: none;
  transition: background var(--ct-transition), transform var(--ct-transition);
  border-left: 4px solid var(--color-primary, #0044CC);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
}

.page-contact .faq-card:hover {
  background: #E4ECFF;
  transform: translateX(6px) scale(1.01);
  border-left-color: var(--color-secondary, #FF6600);
}

.page-contact .faq-card-icon {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: var(--color-primary, #0044CC);
  background: rgba(0,68,204,0.08);
  padding: 6px 10px;
  border-radius: 6px;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.page-contact .faq-card-title {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--color-neutral-dark, #1A1A1A);
  flex: 1 1 auto;
}

.page-contact .faq-card-arrow {
  font-size: 18px;
  color: var(--color-primary, #0044CC);
  flex-shrink: 0;
  transition: transform var(--ct-transition);
}

.page-contact .faq-card:hover .faq-card-arrow {
  transform: translateX(4px);
  color: var(--color-secondary, #FF6600);
}

.page-contact .faq-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.page-contact .faq-cta-text {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #555;
}

.page-contact .faq-cta .btn {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background var(--ct-transition), transform var(--ct-transition);
  text-decoration: none;
  display: inline-block;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
}

.page-contact .faq-cta .btn-secondary {
  background: var(--gradient-secondary, radial-gradient(ellipse at center, #FF6600, #FF3300));
  color: var(--color-white, #FFFFFF);
}

.page-contact .faq-cta .btn-secondary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255,102,0,0.35);
}

/* ===== 信任声明 ===== */
.page-contact .contact-trust-section {
  background: var(--color-neutral-dark, #1A1A1A);
  padding: 32px 0;
}

.page-contact .trust-block {
  text-align: center;
}

.page-contact .trust-text {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  color: #AAA;
  max-width: 700px;
  margin: 0 auto;
  border-top: 1px solid rgba(0,255,136,0.25);
  padding-top: 20px;
}

/* ===== 响应式 ===== */
/* 平板及以上 */
@media (min-width: 768px) {
  .page-contact .contact-hero.split-layout {
    flex-direction: row;
    min-height: 80vh;
  }

  .page-contact .contact-hero .split-panel {
    flex: 1 1 50%;
  }

  .page-contact .contact-visual-panel {
    min-height: auto;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  }

  .page-contact .contact-visual-label .label-line {
    font-size: 40px;
    letter-spacing: 8px;
  }

  .page-contact .contact-info-panel {
    padding: 48px 40px 48px 32px;
  }

  .page-contact .contact-headline {
    font-size: 48px;
  }

  .page-contact .contact-card {
    padding: 28px 32px;
  }

  .page-contact .service-inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .page-contact .service-heading {
    font-size: 34px;
  }

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

  .page-contact .faq-card {
    padding: 20px 24px;
  }
}

/* 桌面大屏 */
@media (min-width: 1024px) {
  .page-contact .contact-hero.split-layout {
    min-height: 90vh;
  }

  .page-contact .contact-visual-label .label-line {
    font-size: 52px;
    letter-spacing: 12px;
  }

  .page-contact .contact-headline {
    font-size: 56px;
  }

  .page-contact .contact-subhead {
    font-size: 16px;
  }

  .page-contact .contact-card-value {
    font-size: 19px;
  }

  .page-contact .service-heading {
    font-size: 38px;
  }

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

  .page-contact .faq-heading {
    font-size: 34px;
  }
}

/* 移动端微调 */
@media (max-width: 767px) {
  .page-contact .contact-visual-label .label-line {
    font-size: 22px;
    letter-spacing: 4px;
  }

  .page-contact .contact-headline {
    font-size: 32px;
  }

  .page-contact .contact-card {
    padding: 18px 20px;
  }

  .page-contact .contact-card-value {
    font-size: 15px;
  }

  .page-contact .service-progress-label {
    min-width: 64px;
    font-size: 13px;
  }

  .page-contact .service-clock {
    width: 100px;
    height: 100px;
  }

  .page-contact .faq-card-title {
    font-size: 14px;
  }
}
