/* =====================================================
   contact.css — 联系我们页样式
   星时寻迹 | 深圳市玉山源科技有限公司
   公共样式（page-banner、breadcrumb）在 public.css
===================================================== */

/* =====================================================
   联系主体布局
===================================================== */
.contact-section {
  background-color: #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
}

/* =====================================================
   左侧：联系信息卡片
===================================================== */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-item {
  background-color: #f5f7fc;
  border: 1px solid #e8ecf5;
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-info-item:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background-color: #eef4ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-content {
  flex: 1;
  min-width: 0;
}

.contact-info-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #9498a6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-info-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: #1d1d1f;
  line-height: 1.55;
  word-break: break-all;
}

.contact-info-value a {
  color: #0066cc;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.contact-info-value a:hover {
  opacity: 0.72;
}

.contact-info-note {
  display: block;
  font-size: 0.75rem;
  color: #9498a6;
  margin-top: 5px;
  line-height: 1.5;
  font-weight: 400;
}

/* =====================================================
   右侧：合作流程卡片
===================================================== */
.coop-card {
  background-color: #ffffff;
  border: 1.5px solid #e8ecf5;
  border-radius: 16px;
  padding: 44px 48px;
}

.coop-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.coop-desc {
  font-size: 0.88rem;
  color: #6e6e73;
  margin-bottom: 32px;
}

.coop-steps {
  list-style: none;
  margin-bottom: 36px;
}

.coop-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f3f8;
}

.coop-step:last-child {
  border-bottom: none;
}

.coop-step-num {
  width: 40px;
  height: 40px;
  background-color: #eef4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 700;
  color: #0066cc;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.coop-step-body {
  flex: 1;
}

.coop-step-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 6px;
}

.coop-step-desc {
  font-size: 0.84rem;
  color: #6e6e73;
  line-height: 1.72;
}

/* =====================================================
   响应式
===================================================== */
@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .coop-card {
    padding: 32px 36px;
  }
}

@media (max-width: 768px) {
  .contact-info-list {
    grid-template-columns: 1fr;
  }

  .coop-card {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .coop-title {
    font-size: 1.15rem;
  }
}
