/* Contact Form Styling */
#custom-contact-form-wrapper {
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Roboto, sans-serif;
}

#custom-contact-form-wrapper h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  color: #2a2a2a;
}

#custom-contact-form-wrapper input[type="text"],
#custom-contact-form-wrapper input[type="email"],
#custom-contact-form-wrapper textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  transition: all 0.2s ease;
  font-size: 14px;
}

#custom-contact-form-wrapper input:focus,
#custom-contact-form-wrapper textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.15);
  outline: none;
}

#custom-contact-form-wrapper textarea {
  min-height: 120px;
  resize: vertical;
}

#custom-contact-form-wrapper input[type="submit"] {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  width: 100%;
  transition: background 0.3s ease;
}

#custom-contact-form-wrapper input[type="submit"]:hover {
  background: linear-gradient(135deg, #0056b3, #003d80);
}
