/* ===== 联系我们页样式 - C2信息卡片 ===== */

/* 联系信息卡片 */
.contact-info-section {
  padding: 60px 0;
  background: var(--light-bg);
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(44, 31, 21, 0.08);
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(44, 31, 21, 0.15);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-bg);
  font-style: italic;
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.6;
}

/* 联系表单和地图 */
.contact-main {
  padding: 60px 0;
  background: var(--white);
}

.contact-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-bg);
  font-style: italic;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-bg);
  font-style: italic;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  font-style: italic;
  color: var(--text-main);
  background: var(--light-bg);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 31, 21, 0.08);
  height: 100%;
  min-height: 400px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.map-placeholder {
  text-align: center;
  padding: 40px;
}

.map-placeholder-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.map-placeholder h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-bg);
  font-style: italic;
  margin-bottom: 10px;
}

.map-placeholder p {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* 服务时间 */
.service-hours {
  padding: 60px 0;
  background: var(--dark-bg);
}

.service-hours .section-header h2 {
  color: var(--primary);
}

.service-hours .section-header p {
  color: var(--text-muted);
}

.hours-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hour-card {
  background: var(--dark-secondary);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.hour-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 15px;
}

.hour-card p {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
}

.hour-card .time {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  font-style: italic;
  display: block;
  margin: 10px 0;
}

/* 响应式 */
@media (max-width: 768px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-main-inner {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hours-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}
