/* Section Background */
#features.contact {
  background: #f8f9fa;
  padding: 60px 20px;
}

/* Section Title */
.section-title h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

/* Form Container */
#features form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-width: 1100px;
  margin: auto;
}

/* Labels */
#features label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
  display: block;
}

/* Input Fields */
#features input[type="text"],
#features input[type="number"],
#features input[type="date"],
#features input[type="file"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: 0.3s ease;
  font-size: 15px;
}

/* Input Focus */
#features input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
  outline: none;
}

/* File Upload */
#features input[type="file"] {
  padding: 10px;
  background: #f8f9fa;
}

/* Image Preview */
#imagePreview {
  display: none;
  margin-top: 15px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #ddd;
}

/* Button */
#features button {
  background: #0d6efd;
  color: #fff;
  padding: 12px 40px;
  border-radius: 50px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

#features button:hover {
  background: #084298;
  transform: translateY(-2px);
}

/* Center Button */
.text-center {
  margin-top: 30px;
}

/* Messages */
.loading,
.error-message,
.sent-message {
  display: none;
  text-align: center;
  font-weight: 500;
  margin-top: 15px;
}

.sent-message {
  color: #198754;
}

.error-message {
  color: #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
  #features form {
    padding: 25px;
  }
}
