/* ===============================
   FORM WRAPPER
================================ */
.bookingSummary{

position:sticky;
top:20px;

}

.formWrapper {
  background: white;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ===============================
   FORM GROUPS
================================ */
.formGroup {
  display: flex;
  flex-direction: column;
}

.formGroup label {
  font-size: 13px;
  margin-bottom: 4px;
  color: #444;
}

.formGroup input,
.formGroup textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fafafa;
  transition: all 0.2s ease;
}

.formGroup input:focus,
.formGroup textarea:focus {
  border-color: #c97b63;
  background: white;
  box-shadow: 0 0 0 3px rgba(201,123,99,0.15);
  outline: none;
}

/* ===============================
   BOOK SESSION BUTTON
================================ */
#bookSessionBtn {
  margin-top: 8px;
  background: #355e4d;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

#bookSessionBtn:hover {
  background: #2d332f;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* ===============================
   FORM TITLES
================================ */
.formTitle {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #39443d;
}

/* ===============================
   BOOKING SUMMARY
================================ */
.bookingSummary {
  background: #9c96e954;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.summaryTitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #39443d;
}

.summaryGrid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summaryBox {
  background: white;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summaryLabel {
  font-size: 13px;
  color: #777;
}

.summaryValue {
  font-size: 14px;
  font-weight: 600;
  color: #39443d;
  transition: all 0.2s ease;
}

/* ===============================
   BOOKING IMAGE
================================ */
.summaryImageBox {
  margin-top: 12px;
  border-radius: 10px;
  overflow: hidden;
}

#summaryImage {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 10px;
  display: none;
}
input.error,
textarea.error {
  border: 1.5px solid #c62828;
  background-color: #fff5f5;
}

input.error:focus,
textarea.error:focus {
  outline: none;
  border-color: #b71c1c;
  box-shadow: 0 0 0 2px rgba(198, 40, 40, 0.1);
}