/* CONTACT FORM STYLING */

#contact {
  background: #f9f9f9;
  padding: 60px 20px;
}

#contact h2 {
  font-size: 32px;
  margin-bottom: 10px;
  text-align: center;
}

#contact p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px auto;
  color: #555;
}

/* Nice Form Container */
.nice-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Form Fields */
.nice-form .form-group {
  margin-bottom: 20px;
}

.nice-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.nice-form input,
.nice-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border 0.2s ease-in-out;
}

.nice-form input:focus,
.nice-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

/* Textarea */
.nice-form textarea {
  height: 150px;
  resize: vertical;
}

/* Submit Button */
.send-btn {
  width: 100%;
  background: #007bff;
  color: white;
  padding: 14px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.send-btn:hover {
  background: #005fcc;
}

/* Status Message */
.form-status {
  margin-top: 15px;
  font-size: 15px;
  text-align: center;
  color: #333;
}
