.contact-section {
  padding: 3rem 1rem;
  background: #0b0b0b;
  color: #f4f4f4;
  max-width: 800px;
  margin: 0 auto;
}

.contact-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #d4af37; /* gold accent */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #f4f4f4;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
  outline: none;
}

.contact-form button {
  background: linear-gradient(90deg, #d4af37, #8b6c2c);
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: bold;
  color: #0b0b0b;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s, transform 0.2s;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #e0c167, #9f803f);
  transform: translateY(-2px);
}
