/* Contact Form Styles */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--bg-dark-secondary);
  border-radius: 12px;
  border: 1px solid rgba(200, 121, 65, 0.2);
  box-shadow: var(--shadow-lg);
}

.contact-form h2 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-label .required {
  color: var(--gold);
  margin-left: 0.25rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(42, 42, 42, 0.8);
  border: 1px solid rgba(200, 121, 65, 0.2);
  border-radius: 6px;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 121, 65, 0.1);
  background: rgba(42, 42, 42, 1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-lighter);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-primary);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.form-submit:active {
  transform: translateY(0);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .contact-form {
    padding: 1.5rem;
    margin: 1rem;
  }

  .contact-form h2 {
    font-size: 1.5rem;
  }
}
