/* ================================================================
Contact Page
   ================================================================ */

/* ---------- Banner ---------- */
.ct-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.ct-banner__bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #0e121c;
}
.ct-banner__overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0, 0, 0, 0.52);
}
.ct-banner__content {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 0 40px;
}
.ct-banner__content h1 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 6px;
  margin: 0 0 18px;
  line-height: 1.2;
}
.ct-banner__content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 3px;
  margin: 0;
}

/* ---------- 面包屑 ---------- */
.ct-breadcrumb {
  background: #f5f5f5;
  border-bottom: 1px solid #e8e8e8;
}
.ct-breadcrumb .ct-bc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
  box-sizing: border-box;
}
.ct-breadcrumb a { color: #666; text-decoration: none; }
.ct-breadcrumb a:hover { color: #E8890C; }
.ct-breadcrumb__sep { color: #bbb; font-size: 11px; }
.ct-breadcrumb__cur { color: #E8890C; }

/* ---------- 联系主体 ---------- */
.ct-main {
  background: #fff;
  padding: 80px 0 100px;
}
.ct-main__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

/* ---------- 联系信息栏 ---------- */
.ct-info {
  flex: 0 0 360px;
}
.ct-info__eyebrow {
  font-size: 12px;
  color: #E8890C;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 14px;
  display: block;
}
.ct-info__title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
  line-height: 1.4;
}
.ct-info__bar {
  width: 44px;
  height: 3px;
  background: #E8890C;
  margin: 0 0 36px;
}
.ct-info__list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}
.ct-info__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #f0f0f0;
}
.ct-info__item:first-child {
  border-top: 1px solid #f0f0f0;
}
.ct-info__icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(232, 137, 12, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-info__icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: #E8890C;
}
.ct-info__detail {
  flex: 1;
  min-width: 0;
}
.ct-info__label {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.5px;
  margin: 0 0 5px;
}
.ct-info__value {
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1.65;
  font-weight: 500;
  word-break: break-all;
}
.ct-info__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  background: #E8890C;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 13px 32px;
  letter-spacing: 1px;
  transition: background 0.2s;
}
.ct-info__cta:hover { background: #cf7808; color: #fff; }
.ct-info__cta::after {
  content: '→';
  font-size: 15px;
  transition: transform 0.2s;
}
.ct-info__cta:hover::after { transform: translateX(4px); }

/* ---------- 地图 ---------- */
.ct-map {
  flex: 1;
  min-width: 0;
  position: sticky;
  top: 80px;
}
#ct-map-container,
.ct-map iframe {
  width: 100%;
  height: 520px;
  border-radius: 2px;
  overflow: hidden;
  background: #e8e8e8;
}

/* ================================================================
   Responsive
   ================================================================ */

@media (max-width: 1024px) {
  .ct-banner { margin-top: 70px; height: 320px; }
  .ct-banner__content h1 { font-size: 32px; }
  .ct-main__inner { gap: 40px; }
  .ct-info { flex: 0 0 300px; }
}

@media (max-width: 768px) {
  .ct-banner { margin-top: 70px; height: 220px; }
  .ct-banner__content h1 { font-size: 22px; letter-spacing: 3px; }
  .ct-banner__content p { font-size: 13px; letter-spacing: 1px; }

  .ct-main { padding: 48px 0 60px; }
  .ct-main__inner {
    flex-direction: column;
    gap: 36px;
    padding: 0 16px;
  }
  .ct-info { flex: none; width: 100%; }
  .ct-map { position: static; }
  #ct-map-container,
  .ct-map iframe { height: 280px; }
}
