.page-contact {
  overflow-x: hidden;
  background: #F5F7FA;
  color: rgba(7, 20, 41, 0.86);
}

/* ===== Hero 首屏 ===== */
.page-contact .contact-hero {
  position: relative;
  background: linear-gradient(148deg, #0A1F44 0%, #071429 100%);
  padding: 32px 0 48px;
  overflow: hidden;
}

.page-contact .contact-hero::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.page-contact .contact-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C9A227 0%, #D64545 50%, rgba(201, 162, 39, 0.2) 100%);
  opacity: 0.8;
  pointer-events: none;
}

.page-contact .contact-breadcrumb {
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
}

.page-contact .contact-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 14px;
}

.page-contact .contact-breadcrumb li + li::before {
  content: "·";
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.4);
}

.page-contact .contact-breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-contact .contact-breadcrumb a:hover,
.page-contact .contact-breadcrumb a:focus {
  color: #E3C766;
  text-decoration: underline;
}

.page-contact .contact-breadcrumb [aria-current="page"] {
  color: #E3C766;
  font-weight: 600;
}

.page-contact .contact-hero-inner {
  position: relative;
  z-index: 1;
}

.page-contact .contact-hero-title {
  margin: 16px 0 12px;
  color: #FFFFFF;
  font-size: 34px;
  line-height: 1.24;
  letter-spacing: 0.02em;
}

.page-contact .contact-hero-lead {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
}

.page-contact .contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-contact .contact-hero .btn-outline {
  border: 1px solid rgba(201, 162, 39, 0.7);
  color: #E3C766;
}

.page-contact .contact-hero .btn-outline:hover,
.page-contact .contact-hero .btn-outline:focus {
  background: rgba(201, 162, 39, 0.12);
  border-color: #C9A227;
  color: #FFFFFF;
}

.page-contact .contact-hero-media {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.page-contact .contact-hero-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== 联系方式卡片 ===== */
.page-contact .contact-info-section {
  padding: 56px 0 32px;
}

.page-contact .contact-info-section .section-heading {
  margin-bottom: 28px;
}

.page-contact .contact-card-grid {
  display: grid;
  gap: 20px;
}

.page-contact .contact-card {
  position: relative;
  padding: 28px 22px;
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-top: 3px solid #C9A227;
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-contact .contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.page-contact .contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.12);
  color: #C9A227;
  font-size: 24px;
  margin-bottom: 16px;
}

.page-contact .contact-card h3 {
  margin: 0 0 6px;
  color: #0A1F44;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}

.page-contact .contact-card-value {
  margin: 0;
  color: #0A1F44;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  word-break: break-all;
}

.page-contact .contact-card-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-contact .contact-card-value a:hover,
.page-contact .contact-card-value a:focus {
  color: #C9A227;
  text-decoration: underline;
}

.page-contact .contact-card-address {
  margin: 0;
  font-style: normal;
  color: #0A1F44;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.page-contact .contact-card-note {
  margin: 12px 0 0;
  color: rgba(7, 20, 41, 0.58);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
}

/* ===== 客服时间 & 咨询范围 ===== */
.page-contact .contact-support-row {
  padding: 20px 0 56px;
}

.page-contact .contact-support-grid {
  display: grid;
  gap: 20px;
}

.page-contact .contact-time-card {
  position: relative;
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: #0A1F44;
  overflow: hidden;
}

.page-contact .contact-time-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.page-contact .contact-time-card > * {
  position: relative;
  z-index: 1;
}

.page-contact .contact-dark-heading {
  color: #E3C766;
}

.page-contact .contact-time-range {
  margin: 16px 0 10px;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.page-contact .contact-time-detail {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
}

.page-contact .contact-scope-card {
  padding: 32px 26px;
  border: 1px solid #E8ECF2;
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  box-shadow: var(--shadow);
}

.page-contact .contact-scope-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.page-contact .contact-scope-list li {
  position: relative;
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid rgba(7, 20, 41, 0.06);
  color: rgba(7, 20, 41, 0.76);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

.page-contact .contact-scope-list li:last-child {
  border-bottom: none;
}

.page-contact .contact-scope-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C9A227;
}

/* ===== 数据服务承诺 ===== */
.page-contact .contact-promise {
  padding: 56px 0;
  background: linear-gradient(180deg, #071429 0%, #0A1F44 100%);
}

.page-contact .contact-promise-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-contact .contact-promise-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

.page-contact .contact-promise-img {
  display: block;
  width: 100%;
  height: auto;
}

.page-contact .contact-promise-content .contact-dark-heading {
  margin-bottom: 16px;
}

.page-contact .contact-promise-content p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
}

.page-contact .contact-promise-stats {
  border-left: 3px solid #C9A227;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-heading);
  font-size: 15px;
}

.page-contact .contact-promise-stats strong {
  color: #E3C766;
  font-weight: 700;
}

.page-contact .contact-promise .btn-outline {
  border: 1px solid rgba(201, 162, 39, 0.7);
  color: #E3C766;
}

.page-contact .contact-promise .btn-outline:hover,
.page-contact .contact-promise .btn-outline:focus {
  background: rgba(201, 162, 39, 0.12);
  color: #FFFFFF;
}

/* ===== 信任声明 ===== */
.page-contact .contact-trust {
  padding: 24px 0;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  background: rgba(10, 31, 68, 0.04);
}

.page-contact .contact-trust p {
  margin: 0;
  color: rgba(7, 20, 41, 0.52);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

/* ===== 更多帮助 ===== */
.page-contact .contact-more {
  padding: 56px 0 64px;
}

.page-contact .contact-more .section-heading {
  margin-bottom: 28px;
}

.page-contact .contact-more-grid {
  display: grid;
  gap: 20px;
}

.page-contact .contact-more-card {
  display: block;
  padding: 28px 26px;
  border: 1px solid #E8ECF2;
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(7, 20, 41, 0.04);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-contact .contact-more-card:hover,
.page-contact .contact-more-card:focus {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 162, 39, 0.3);
}

.page-contact .contact-more-card h3 {
  margin: 0 0 8px;
  color: #0A1F44;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}

.page-contact .contact-more-card p {
  margin: 0 0 16px;
  color: rgba(7, 20, 41, 0.66);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
}

.page-contact .contact-more-tag {
  color: #C9A227;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
}

/* ===== 响应式：平板与桌面 ===== */
@media (min-width: 768px) {
  .page-contact .contact-hero {
    padding: 40px 0 56px;
  }

  .page-contact .contact-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }

  .page-contact .contact-hero-media {
    margin-top: 0;
  }

  .page-contact .contact-hero-title {
    font-size: 44px;
  }

  .page-contact .contact-hero-lead {
    font-size: 17px;
  }

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

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

  .page-contact .contact-promise {
    padding: 64px 0;
  }

  .page-contact .contact-promise-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
  }

  .page-contact .contact-promise-media {
    margin-bottom: 0;
  }

  .page-contact .contact-more {
    padding: 64px 0 72px;
  }

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