.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background: #111;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #caa25f;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #caa25f;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-family: 'Alegreya SC', serif;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #dcb676;
  box-shadow: 0 0 6px rgba(202,162,95,0.6);
}

.contact-form .theme-button {
  background: #caa25f;
  color: #000;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.contact-form .theme-button:hover {
  background: #dcb676;
}
