/* ================= CONTACT FORM ================= */

.container {
  width: 95%;
  max-width: 550px;
  background: #ffffff;
  margin: 120px auto;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.container h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #0d3f3f;
  font-weight: 600;
}

/* Success Message */
.success {
  background: #0dbf6f;
  padding: 12px;
  text-align: center;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 15px;
}

.hidden {
  display: none;
}

/* Form Labels */
label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #123a3a;
}

/* Inputs, Dropdown & Textarea */
input, textarea, select {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid #cfe2e2;
  background: #f8ffff;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

input:focus, textarea:focus, select:focus {
  border-color: #00a68c;
  background: #ffffff;
}

/* Textarea Size */
textarea {
  height: 120px;
  resize: none;
}

/* Submit Button */
button {
  width: 100%;
  padding: 14px;
  font-size: 17px;
  border: none;
  background: #007e66;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #005d4c;
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding: 20px;
    margin: 100px auto;
  }
}
