@import url('https://fonts.googleapis.com/css2?family=Dan+Sans:wght@700;800&display=swap');

#cbf-booking-form {
  display: flex;
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto;
  font-family: 'Dan Sans', sans-serif;
  color: #062046;
  padding: 30px;
}

#cbf-booking-form .cbf-left,
#cbf-booking-form .cbf-right {
  padding: 24px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

#cbf-booking-form .cbf-left {
  flex: 2;
  border: 1px solid #e0e0e0;
}

#cbf-booking-form .cbf-right {
  flex: 1;
  position: sticky;
  top: 20px;
  background: #f5fdfb;
  border: 2px solid #0B7159;
}

#cbf-booking-form label {
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
  color: #062046;
}

#cbf-booking-form input,
#cbf-booking-form select,
#cbf-booking-form textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #cdd7df;
  font-size: 15px;
  font-weight: 500;
  box-sizing: border-box;
  margin-top: 5px;
}

#cbf-booking-form fieldset {
  border: 1px solid #cdd7df;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
}

#cbf-booking-form fieldset legend {
  font-weight: 800;
  font-size: 16px;
  padding: 0 10px;
  color: #0B7159;
}

#cbf-booking-form input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

#cbf-booking-form button {
  padding: 12px 24px;
  background-color: #0B7159;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

#cbf-booking-form button:hover {
  background-color: #062046;
}

#cbf-booking-form .cbf-step.hidden {
  display: none !important;
}

#sqft-slider {
  width: 100%;
  margin-bottom: 10px;
  accent-color: #0B7159;
}

#sqft-value,
#sqft-selected {
  font-weight: 800;
  color: #0B7159;
  font-size: 16px;
}

#price-breakdown {
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  font-size: 15px;
  line-height: 1.6;
}

#price-breakdown h4 {
  font-size: 18px;
  font-weight: 800;
  margin-top: 0;
  color: #0B7159;
  margin-bottom: 16px;
}

#price-breakdown p {
  margin: 6px 0;
  font-weight: 600;
  color: #062046;
}

#total-price {
  font-size: 22px;
  color: #0B7159;
  font-weight: 800;
  margin-top: 10px;
  display: block;
}

#cbf-message {
  margin-top: 15px;
  font-weight: 700;
  font-size: 14px;
}

hr {
  border: 0;
  height: 1px;
  background: #ccc;
  margin: 16px 0;
}

/* Responsive */
@media (max-width: 768px) {
  #cbf-booking-form {
    flex-direction: column;
    padding: 10px;
  }

  #cbf-booking-form .cbf-left,
  #cbf-booking-form .cbf-right {
    width: 100%;
  }

  #cbf-booking-form button {
    width: 100%;
  }
}
/* Optional Add-ons Section */
.addon {
  display: flex;
  flex-direction: column; /* Force vertical alignment */
  gap: 15px;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f9f9f9;
}

/* Individual Add-on Box Style */
.addon label {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background-color: #fff;
  border: 1px solid #cbd5e0;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%; /* Full width */
}

/* Checkbox Margin */
.addon input[type="checkbox"] {
  margin-right: 12px;
  transform: scale(1.2);
}

/* Hover and Active Effects */
.addon label:hover {
  background-color: #f0fefb;
  border-color: #0b7159;
}

/* Remove media queries that apply horizontal layout */

