/* ========================================
   联系我们页面 - Figma node 1:2053
   ======================================== */

.contact-section {
  padding: 48px 0 80px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-heading {
  font-size: 24px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon {
  width: 24px;
  height: 24px;
}

.contact-item-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 8px;
}

.contact-item-text p {
  font-size: 16px;
  line-height: 1.5;
  color: #4a5565;
  margin: 0;
}

.contact-form-col .contact-form-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-page .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-page .form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #364153;
}

.contact-form-page .required {
  color: #fb2c36;
}

.contact-form-page input,
.contact-form-page textarea {
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #d1d5dc;
  border-radius: 10px;
  font-family: inherit;
}

.contact-form-page input::placeholder,
.contact-form-page textarea::placeholder {
  color: rgba(10,10,10,0.5);
}

.contact-form-page textarea {
  resize: vertical;
  min-height: 170px;
}

.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}

.contact-submit-btn:hover {
  opacity: 0.9;
}

.contact-submit-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
