.contact-hero {
  text-align: center;
  padding: 100px 20px 60px;
  background: #f9fafc;
}
.contact-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111;
}
.contact-hero p {
  color: #555;
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.6;
}

.contact-main {
  margin-top: 40px;
  margin-bottom: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
}
.contact-form-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.contact-form-card h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.form-group {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}
label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  transition: border 0.2s;
}
input:focus, select:focus, textarea:focus {
  border-color: #2563eb;
  outline: none;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.btn-primary.full-width {
  width: 100%;
  margin-top: 18px;
  padding: 12px;
  border-radius: 8px;
}
.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #555;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info-card {
  background: #f9fafc;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e5e7eb;
}
.info-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.info-card p {
  color: #555;
  line-height: 1.6;
}
.info-card a {
  color: #2563eb;
  text-decoration: none;
}

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