/* ======================================
   Frontend Style: Paramotor Booking Form
   ====================================== */

.paramotor-booking-form {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  padding: 30px 35px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.paramotor-booking-form h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #0d47a1;
  font-size: 1.5em;
}

.paramotor-booking-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.paramotor-booking-form input,
.paramotor-booking-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 18px;
  transition: all 0.3s;
}

.paramotor-booking-form input:focus,
.paramotor-booking-form select:focus {
  border-color: #2196f3;
  outline: none;
  box-shadow: 0 0 5px rgba(33,150,243,0.3);
}

.paramotor-booking-form button {
  background: #2196f3;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.paramotor-booking-form button:hover {
  background: #1976d2;
}

.paramotor-options {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 18px;
}

.paramotor-option {
  width: 30%;
  border: 1px solid #ccc;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  transition: all 0.3s;
  background: #fafafa;
}

.paramotor-option:hover {
  border-color: #2196f3;
  background: #f0f8ff;
}

.paramotor-option input {
  margin-bottom: 8px;
}

.paramotor-option img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 8px;
}

.success-message,
.error-message {
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  text-align: center;
}

.success-message {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.error-message {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.paramotor-option.selected {
  border: 2px solid #2196f3;
  background: #e3f2fd;
  box-shadow: 0 2px 6px rgba(33,150,243,0.3);
}
