.enquire-container {
  max-width: 800px;
  margin: 80px auto;
}

.enquire-header {
  text-align: center;
  margin-bottom: 60px;
}

.enquire-header h1 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #ffffff;
}

.enquire-intro {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 20px;
  font-family: "Oswald", sans-serif;
}

.email-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}

.email-link:hover {
  text-decoration: underline;
}

.thank-you {
  font-size: 1rem;
  color: #e0e0e0;
  margin-top: 20px;
}

.enquire-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: 1rem;
  font-family: "Oswald", sans-serif;
  transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
  font-family: "Oswald", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffffff;
}

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

.form-submit {
  text-align: center;
  margin: 40px 0 30px;
}

.submit-btn {
  background: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
  padding: 18px 60px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: none;
}

.submit-btn:hover {
  background: #000000;
  color: #ffffff;
  border-color: #ffffff;
}

.submit-btn:disabled {
  background: #444;
  border-color: #666;
  color: #888;
  cursor: not-allowed;
}

.privacy-notice {
  text-align: center;
  font-size: 0.75rem;
  color: #aaa;
  line-height: 1.6;
  margin-top: 20px;
}

.form-message {
  text-align: center;
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
  display: none;
}

.form-message.success {
  display: block;
  background: #1a5928;
  color: #d4edda;
  border: 1px solid #28a745;
}

.form-message.error {
  display: block;
  background: #8a1f2a;
  color: #f8d7da;
  border: 1px solid #dc3545;
}

@media (max-width: 768px) {
  .enquire-container {
    margin: 40px auto;
    padding: 20px;
  }

  .enquire-header h1 {
    font-size: 2rem;
  }

  .enquire-intro {
    font-size: 0.9rem;
  }

  .submit-btn {
    padding: 15px 40px;
  }
}
