.inquiry-hero {
  position: relative;
  background: url('../images/Q.png') center center / cover no-repeat;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.inquiry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.inquiry-content {
  position: relative;
  z-index: 2;
}

.inquiry-content .eyebrow {
  font-family: 'GmarketSansMedium';
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}

.inquiry-content h1 {
  font-family: 'GmarketSansBold';
  font-size: 2.4rem;
  margin: 14px 0 10px;
}

.inquiry-content p {
  font-family: 'GmarketSansMedium';
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.inquiry-form-section {
  background: linear-gradient(to bottom, #fffaf5 0%, #fff7ef 100%);
  padding: 100px 20px;
}

.inquiry-card {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
  display: block;
  font-family: 'GmarketSansMedium';
  color: #4e3c2a;
  font-size: 1rem;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5d6bb;
  border-radius: 8px;
  font-family: 'GmarketSansMedium';
  font-size: 1rem;
  color: #333;
  background: #fffdf9;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #b68d57;
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #b68d57;
  color: #fff;
  font-family: 'GmarketSansBold';
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #a47d4b;
}

@media (max-width: 768px) {
  .inquiry-card {
    padding: 36px 24px;
  }

  .inquiry-content h1 {
    font-size: 1.9rem;
  }
}
