/* Booking Form Styles - Booking.com inspired */
/* Main layout */
.booking-page-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  min-height: 100vh;
  align-items: start;
  position: relative;
}

/* Booking.com header style */
.booking-header {
  background-color: #003580;
  color: white;
  padding: 15px 0;
  margin-bottom: 20px;
}

.booking-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.booking-logo {
  font-size: 24px;
  font-weight: 700;
}

.booking-header-actions {
  display: flex;
  gap: 10px;
}

.booking-header-btn {
  background-color: white;
  color: #003580;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* Booking steps */
.booking-steps {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
  max-width: 1200px;
  margin: 30px auto 30px;
  padding: 0;
  width: calc(100% - 30px);
  max-width: 1070px;
}

@media (max-width: 991px) {
  .booking-steps {
    justify-content: center;
    width: 100%;
    padding: 0 25px;
  }
}
.booking-step {
  display: flex;
  align-items: center;
  margin-right: 20px;
  position: relative;
}

.booking-step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #0071c2;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 10px;
}

.booking-step-text {
  font-weight: 500;
  color: #2c2c2c;
  font-size: 16px;
}

.booking-step:not(:last-child):after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  width: 10px;
  height: 2px;
  background-color: #ddd;
}

.booking-step.active .booking-step-number {
  background-color: #0071c2;
}

.booking-step.completed .booking-step-number {
  background-color: #0071c2;
}

/* Form container */
.booking-form-container {
  background-color: #fff;
  border-radius: 4px;
  width: 100%;
  padding: 25px;
  position: relative;
  border: 1px solid #bdbdbd;
}

/* Booking sidebar */
.booking-sidebar {
  position: fixed;
  top: 15px;
  right: calc((100% - 1200px) / 2 + 15px);
  width: 350px;
  height: auto;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  border-radius: 4px;
  padding: 20px;
  border: 1px solid #bdbdbd;
  z-index: 1000;
}

.booking-sidebar-title {
  background-color: #003580;
  color: white;
  margin: -20px -20px 20px;
  padding: 15px 20px;
  border-radius: 4px 4px 0 0;
  font-size: 18px;
  font-weight: 700;
}

.booking-sidebar h3 {
  margin: 0 0 20px 0;
  font-size: 20px;
  color: #003580;
  font-weight: 700;
}

.booking-summary-sticky {
  margin-bottom: 0;
}

.booking-summary-sticky .apartment-info {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e7e7e7;
}

.booking-summary-sticky .apartment-name {
  font-size: 18px;
  margin-bottom: 10px;
  color: #003580;
  font-weight: 600;
}

.booking-summary-sticky .apartment-price {
  color: #0071c2;
  margin-bottom: 5px;
  font-weight: 500;
}

.booking-summary-sticky .booking-details {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e7e7e7;
}

.booking-summary-sticky .booking-details p {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.booking-summary-sticky .booking-details p .bold,
.booking-summary-sticky .booking-details p strong {
  text-align: right;
  margin-left: auto;
  padding-right: 5px;
}

.booking-summary-sticky .total-price {
  font-size: 18px;
  color: #003580;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}

.booking-summary-sticky .included-services {
  padding: 15px;
  border-radius: 4px;
  margin-top: 15px;
}

.booking-summary-sticky .included-services h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #003580;
}

.booking-summary-sticky .included-services ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.booking-summary-sticky .included-services ul li i {
  color: #0071c2;
  margin-right: 8px;
}

@media (max-width: 1240px) {
  .booking-sidebar {
    right: 15px;
  }
}
@media (max-width: 991px) {
  .booking-page-layout {
    grid-template-columns: 1fr;
  }
  .booking-sidebar {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    max-height: none;
    overflow-y: visible;
    margin-top: 30px;
  }
}
/* Form header */
.booking-form-header {
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.booking-form-header h3 {
  margin: 0;
  font-size: 20px;
  color: #000000;
  text-align: left;
  font-weight: 700;
}

.booking-form-header p {
  text-align: center;
  margin-top: 10px;
  color: #6b6b6b;
}

.booking-form-header p a {
  color: #0071c2;
  text-decoration: none;
  font-weight: 500;
}

.booking-form-header p a:hover {
  text-decoration: underline;
}

/* Form section styles */
#bookingForms {
  position: relative;
}

.booking-form-section {
  display: none;
}

.booking-form-section.active {
  display: block;
}

/* Form fields */
.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

.form-group label .required {
  color: #e21111;
  margin-left: 2px;
}

.form-hint {
  font-size: 12px;
  color: #6b6b6b;
  margin-top: 5px;
}

.form-section-title {
  font-size: 18px;
  color: #000000;
  margin: 25px 0 15px;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 1px solid #e7e7e7;
}

/* Input with icon styling */
.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #4a4a4a;
  font-size: 16px;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
  padding-left: 40px;
}

/* Make specific input fields shorter */
#st-email,
#st-phone,
#st-city {
  max-width: 300px;
}

.input-with-icon textarea {
  padding-top: 12px;
}

.form-group.has-error input,
.form-group.has-error select {
  border-color: #e21111;
  background-color: #fff2f2;
}

.form-group .error-message {
  color: #e21111;
  font-size: 12px;
  margin-top: 5px;
  font-weight: 500;
}

.form-group.has-error label {
  color: #e21111;
}

.form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #989898;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.2s ease;
  height: auto;
  color: #000000 !important;
}

.form-control:focus {
  border-color: #0071c2;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 113, 194, 0.2);
}

.form-control::placeholder {
  color: #bdbdbd;
}

/* Date inputs */
input[type=date] {
  position: relative;
  padding-right: 30px;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

/* Form row */
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

/* Form actions */
.form-actions {
  display: flex;
  gap: 15px;
  margin: 30px 0 20px;
}

.btn-submit {
  background-color: #0071c2;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
  flex: 1;
  text-align: center;
}

@media (max-width: 768px) {
  .btn-submit {
    margin-top: 20px;
  }
}
.btn-submit:hover {
  background-color: #00487a;
}

.btn-secondary {
  background-color: #f5f5f5;
  color: #333;
  border: 1px solid #bdbdbd;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-secondary:hover {
  background-color: #e9e9e9;
}

@media (max-width: 768px) {
  #shortTermBookingForm {
    display: flex;
    flex-direction: column;
  }
}
/* Calendly section */
.calendly-section {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  background-color: #ebf3ff;
}

.calendly-section h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #003580;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.calendly-section h4:before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  color: #0071c2;
}

.calendly-section p {
  margin-bottom: 15px;
  color: #6b6b6b;
}

.calendly-section button {
  background-color: #0071c2;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.calendly-section button:hover {
  background-color: #00487a;
}

.calendly-inline-widget {
  min-width: 320px;
  height: 580px;
}

/* Success message */
.booking-success {
  text-align: center;
  padding: 40px 20px;
}

.booking-success i {
  font-size: 60px;
  color: #4CAF50;
  margin-bottom: 20px;
}

.booking-success h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.booking-success p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 20px;
}

.booking-success .btn {
  margin-top: 20px;
}

/* Loading overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.loading-overlay.active {
  visibility: visible;
  opacity: 1;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #0071c2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=booking-form.css.map */
