/* ========================================
   联系页面 —— 信息卡片
   ======================================== */
.info-card {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  border-top: 4px solid var(--accent);
  text-align: center;
  box-shadow: var(--shadow);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.info-card p {
  margin-bottom: 0.25rem;
}

/* 联系表单 */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 0.4rem;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 255, 0, 0.1);
}

/* 门店位置 */
.locations-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.location-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.location-card p {
  margin-bottom: 0.5rem;
  color: #666;
}

/* 常见问题卡片 */
.faq-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.faq-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.faq-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.bg-primary .section-title {
  color: white;
}
