@charset "UTF-8";
/* line 1, app/assets/stylesheets/booking/errors.scss */
.booking-errors {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  animation: slideDown 0.3s ease-out;
}

/* line 10, app/assets/stylesheets/booking/errors.scss */
.booking-errors-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #dc2626;
  font-weight: 600;
  font-size: 14px;
}

/* line 19, app/assets/stylesheets/booking/errors.scss */
.booking-errors-header i {
  font-size: 18px;
}

/* line 23, app/assets/stylesheets/booking/errors.scss */
.booking-errors-header span {
  flex: 1;
}

/* line 28, app/assets/stylesheets/booking/errors.scss */
.booking-errors-close {
  background: none;
  border: none;
  color: #dc2626;
  cursor: pointer;
  padding: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
}

/* line 42, app/assets/stylesheets/booking/errors.scss */
.booking-errors-close:hover {
  background: #fee2e2;
}

/* line 46, app/assets/stylesheets/booking/errors.scss */
.booking-errors-close i {
  font-size: 16px;
}

/* line 51, app/assets/stylesheets/booking/errors.scss */
.booking-errors-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 56, app/assets/stylesheets/booking/errors.scss */
.booking-errors-list li {
  color: #991b1b;
  font-size: 13px;
  padding: 6px 0;
  padding-left: 26px;
  position: relative;
}

/* line 63, app/assets/stylesheets/booking/errors.scss */
.booking-errors-list li:before {
  content: '•';
  position: absolute;
  left: 12px;
  font-weight: bold;
}

/* line 70, app/assets/stylesheets/booking/errors.scss */
.booking-errors-list li:first-child {
  padding-top: 0;
}

/* line 74, app/assets/stylesheets/booking/errors.scss */
.booking-errors-list li:last-child {
  padding-bottom: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  /* line 92, app/assets/stylesheets/booking/errors.scss */
  .booking-errors {
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 16px;
  }
  /* line 98, app/assets/stylesheets/booking/errors.scss */
  .booking-errors-header {
    font-size: 13px;
  }
  /* line 101, app/assets/stylesheets/booking/errors.scss */
  .booking-errors-header i {
    font-size: 16px;
  }
  /* line 106, app/assets/stylesheets/booking/errors.scss */
  .booking-errors-list li {
    font-size: 12px;
  }
}

/* line 1, app/assets/stylesheets/booking/stepper.scss */
.step-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
  padding: 5px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  position: relative;
}

/* line 14, app/assets/stylesheets/booking/stepper.scss */
.step-back-btn {
  position: absolute;
  left: 20px;
  background: #f3f4f6;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

/* line 31, app/assets/stylesheets/booking/stepper.scss */
.step-back-btn:hover {
  background: #39C7C2;
  color: white;
  transform: translateX(-2px);
  box-shadow: 0 2px 8px rgba(57, 199, 194, 0.3);
}

/* line 38, app/assets/stylesheets/booking/stepper.scss */
.step-back-btn:active {
  transform: translateX(0) scale(0.95);
}

/* line 43, app/assets/stylesheets/booking/stepper.scss */
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  opacity: 0.4;
  transition: opacity 0.3s;
}

/* line 51, app/assets/stylesheets/booking/stepper.scss */
.step-item.active {
  opacity: 1;
}

/* line 55, app/assets/stylesheets/booking/stepper.scss */
.step-item span {
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;
}

/* line 62, app/assets/stylesheets/booking/stepper.scss */
.step-icon {
  width: 25px;
  height: 25px;
  background: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 15px;
}

/* line 73, app/assets/stylesheets/booking/stepper.scss */
.step-item.active .step-icon {
  background: #39C7C2;
  color: white;
}

/* line 79, app/assets/stylesheets/booking/stepper.scss */
.step-line {
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  max-width: 80px;
}

/* line 86, app/assets/stylesheets/booking/stepper.scss */
.step-choice-content {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 30px;
  align-items: start;
}

/* line 93, app/assets/stylesheets/booking/stepper.scss */
.step-completed .step-icon {
  background: #39C7C2;
  color: white;
}

/* line 98, app/assets/stylesheets/booking/stepper.scss */
.step-completed span {
  color: #39c7c2;
  font-weight: 600;
}

/* line 103, app/assets/stylesheets/booking/stepper.scss */
.step-line.step-completed {
  background: #39C7C2;
  opacity: 0.4;
}

/* line 108, app/assets/stylesheets/booking/stepper.scss */
.step-clickable {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  transition: all 0.2s ease;
}

/* line 115, app/assets/stylesheets/booking/stepper.scss */
.step-clickable:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* line 119, app/assets/stylesheets/booking/stepper.scss */
.step-clickable:hover .step-icon {
  box-shadow: 0 4px 8px rgba(57, 199, 194, 0.3);
}

/* line 123, app/assets/stylesheets/booking/stepper.scss */
.step-clickable:hover span {
  color: #2ba19d;
}

/* line 128, app/assets/stylesheets/booking/stepper.scss */
.step-clickable:active {
  transform: translateY(0);
}

/* line 1, app/assets/stylesheets/booking/step_sidebar.scss */
.trip-summary-sidebar {
  position: sticky;
  top: 20px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* line 10, app/assets/stylesheets/booking/step_sidebar.scss */
.trip-summary-sidebar .section-title {
  text-align: center;
}

@media screen and (max-width: 768px) {
  /* line 1, app/assets/stylesheets/booking/step_sidebar.scss */
  .trip-summary-sidebar {
    display: none;
  }
}

/* line 19, app/assets/stylesheets/booking/step_sidebar.scss */
.section-title {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 28, app/assets/stylesheets/booking/step_sidebar.scss */
.trip-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 2px;
}

/* line 34, app/assets/stylesheets/booking/step_sidebar.scss */
.trip-tab {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid #e5e7eb;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 47, app/assets/stylesheets/booking/step_sidebar.scss */
.trip-tab:hover {
  color: #6b7280;
  border-bottom-color: #9ca3af;
  outline: none !important;
}

/* line 53, app/assets/stylesheets/booking/step_sidebar.scss */
.trip-tab:focus {
  outline: none !important;
}

/* line 57, app/assets/stylesheets/booking/step_sidebar.scss */
.trip-tab.active {
  background: transparent;
  border-bottom-color: #39C7C2;
  color: #1f2937;
  font-weight: 600;
  outline: none !important;
}

/* line 66, app/assets/stylesheets/booking/step_sidebar.scss */
.trip-card {
  background: #f9fafb;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  margin-bottom: 20px;
}

/* line 74, app/assets/stylesheets/booking/step_sidebar.scss */
.trip-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

/* line 82, app/assets/stylesheets/booking/step_sidebar.scss */
.trip-date i {
  color: #39C7C2;
}

/* line 85, app/assets/stylesheets/booking/step_sidebar.scss */
.trip-date i.fa-check {
  color: #FFF;
}

/* line 90, app/assets/stylesheets/booking/step_sidebar.scss */
.trip-location {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}

/* line 96, app/assets/stylesheets/booking/step_sidebar.scss */
.trip-location:not(:last-of-type)::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 24px;
  width: 2px;
  height: calc(100% + 8px);
  background: #39C7C2;
}

/* line 107, app/assets/stylesheets/booking/step_sidebar.scss */
.location-marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

/* line 114, app/assets/stylesheets/booking/step_sidebar.scss */
.location-marker.departure {
  background: #39C7C2;
}

/* line 118, app/assets/stylesheets/booking/step_sidebar.scss */
.location-marker.arrival {
  background: #39C7C2;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #39C7C2;
}

/* line 125, app/assets/stylesheets/booking/step_sidebar.scss */
.location-info {
  flex: 1;
}

/* line 128, app/assets/stylesheets/booking/step_sidebar.scss */
.location-info strong {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

/* line 135, app/assets/stylesheets/booking/step_sidebar.scss */
.location-info p {
  font-size: 14px;
  color: #1f2937;
  margin: 0;
  max-width: 270px;
}

/* line 143, app/assets/stylesheets/booking/step_sidebar.scss */
.trip-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1f2937;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

/* line 152, app/assets/stylesheets/booking/step_sidebar.scss */
.trip-duration i {
  color: #39C7C2;
}

/* line 157, app/assets/stylesheets/booking/step_sidebar.scss */
.trip-options {
  background: white;
  padding: 16px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

/* line 165, app/assets/stylesheets/booking/step_sidebar.scss */
.option-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

/* line 171, app/assets/stylesheets/booking/step_sidebar.scss */
.option-item:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 8px;
  padding-bottom: 12px;
}

/* line 178, app/assets/stylesheets/booking/step_sidebar.scss */
.option-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #6b7280;
}

/* line 185, app/assets/stylesheets/booking/step_sidebar.scss */
.option-info i {
  color: #39C7C2;
  font-size: 16px;
}

/* line 191, app/assets/stylesheets/booking/step_sidebar.scss */
.option-price {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

/* line 197, app/assets/stylesheets/booking/step_sidebar.scss */
.trip-total {
  background: white;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
  border: 2px solid #e5e7eb;
}

/* line 209, app/assets/stylesheets/booking/step_sidebar.scss */
.total-label strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* line 218, app/assets/stylesheets/booking/step_sidebar.scss */
.total-label span {
  font-size: 11px;
  color: #6b7280;
}

/* line 224, app/assets/stylesheets/booking/step_sidebar.scss */
.total-price {
  font-size: 42px;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  color: #111827;
  line-height: 1;
}

/* line 232, app/assets/stylesheets/booking/step_sidebar.scss */
.btn-submit-sidebar {
  width: 100%;
  padding: 18px 24px;
  background: #FF5722;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}

/* line 253, app/assets/stylesheets/booking/step_sidebar.scss */
.btn-submit-sidebar:hover:not(:disabled) {
  background: #FF5722;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(25, 116, 204, 0.4);
}

/* line 259, app/assets/stylesheets/booking/step_sidebar.scss */
.btn-submit-sidebar:active {
  transform: scale(0.98);
}

/* line 263, app/assets/stylesheets/booking/step_sidebar.scss */
.btn-submit-sidebar:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* line 268, app/assets/stylesheets/booking/step_sidebar.scss */
.btn-submit-sidebar i {
  font-size: 18px;
}

/* line 273, app/assets/stylesheets/booking/step_sidebar.scss */
.trip-reassurance {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
}

/* line 284, app/assets/stylesheets/booking/step_sidebar.scss */
.reassurance-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: #374151;
}

/* line 292, app/assets/stylesheets/booking/step_sidebar.scss */
.reassurance-item i {
  color: #39C7C2;
  font-size: 18px;
  margin-top: 0px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* line 301, app/assets/stylesheets/booking/step_sidebar.scss */
.reassurance-item span {
  flex: 1;
  font-weight: 500;
}

/* line 307, app/assets/stylesheets/booking/step_sidebar.scss */
.trustpilot-widget {
  text-align: center;
  padding: 2px 0;
  margin-bottom: 20px;
}

/* line 312, app/assets/stylesheets/booking/step_sidebar.scss */
.trustpilot-widget a {
  display: inline-block;
  margin-bottom: 8px;
}

/* line 317, app/assets/stylesheets/booking/step_sidebar.scss */
.trustpilot-widget .reassurance-text {
  font-size: 13px;
  color: #6b7280;
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  /* line 307, app/assets/stylesheets/booking/step_sidebar.scss */
  .trustpilot-widget {
    display: none;
  }
}

/* line 330, app/assets/stylesheets/booking/step_sidebar.scss */
.sidebar-security-badge {
  text-align: center;
  padding: 16px 0 8px;
  border-top: 1px solid #e5e7eb;
  margin-top: 20px;
}

/* line 336, app/assets/stylesheets/booking/step_sidebar.scss */
.sidebar-security-badge i {
  color: #9ca3af;
  font-size: 11px;
  margin-right: 6px;
}

/* line 342, app/assets/stylesheets/booking/step_sidebar.scss */
.sidebar-security-badge span {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
  /* line 330, app/assets/stylesheets/booking/step_sidebar.scss */
  .sidebar-security-badge {
    display: none;
  }
}

/* line 354, app/assets/stylesheets/booking/step_sidebar.scss */
.reviews-carousel {
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  /* line 354, app/assets/stylesheets/booking/step_sidebar.scss */
  .reviews-carousel {
    display: none;
  }
}

/* line 364, app/assets/stylesheets/booking/step_sidebar.scss */
.review-slide {
  display: none;
  animation: slideUpReview 0.5s ease-in-out;
}

/* line 368, app/assets/stylesheets/booking/step_sidebar.scss */
.review-slide.active {
  display: block;
}

/* line 373, app/assets/stylesheets/booking/step_sidebar.scss */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* line 380, app/assets/stylesheets/booking/step_sidebar.scss */
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* line 387, app/assets/stylesheets/booking/step_sidebar.scss */
.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* line 394, app/assets/stylesheets/booking/step_sidebar.scss */
.review-stars {
  display: flex;
  gap: 2px;
  color: #39C7C2;
  font-size: 18px;
}

/* line 401, app/assets/stylesheets/booking/step_sidebar.scss */
.review-title {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

/* line 408, app/assets/stylesheets/booking/step_sidebar.scss */
.review-text {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* line 415, app/assets/stylesheets/booking/step_sidebar.scss */
.review-author {
  margin-top: 0px !important;
  font-size: 17px;
  font-weight: 700;
  color: #1f2937 !important;
  margin-bottom: 4px;
}

/* line 423, app/assets/stylesheets/booking/step_sidebar.scss */
.review-verified {
  font-size: 14px;
  font-weight: 700;
  color: #10b981;
}

@keyframes slideUpReview {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 5, app/assets/stylesheets/booking/booking.scss */
.navbar-default {
  height: 50px !important;
}

/* line 9, app/assets/stylesheets/booking/booking.scss */
.cta-orange {
  background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%) !important;
}

/* line 13, app/assets/stylesheets/booking/booking.scss */
#booking-app {
  text-align: center;
  margin: 0 auto;
  width: 430px;
}

@media screen and (max-width: 450px) {
  /* line 13, app/assets/stylesheets/booking/booking.scss */
  #booking-app {
    text-align: left;
    margin: 0;
    width: 100%;
  }
}

/* line 25, app/assets/stylesheets/booking/booking.scss */
#book.hero {
  padding-top: 15px !important;
  background: linear-gradient(135deg, #eaf9f9 0%, #ffffff 100%) !important;
}

/* line 30, app/assets/stylesheets/booking/booking.scss */
.booking-form-title {
  font-size: 1.7rem !important;
}

/* line 34, app/assets/stylesheets/booking/booking.scss */
.booking-form-card {
  text-align: left;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 32px;
  width: 100%;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  /* line 34, app/assets/stylesheets/booking/booking.scss */
  .booking-form-card {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: none;
  }
}

/* line 51, app/assets/stylesheets/booking/booking.scss */
.booking-form-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

/* line 58, app/assets/stylesheets/booking/booking.scss */
.booking-form-icon {
  width: 40px;
  height: 40px;
  background: #39C7C2;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

/* line 70, app/assets/stylesheets/booking/booking.scss */
.booking-form-header h3 {
  font-size: 1.4rem;
  margin: 0;
}

/* line 75, app/assets/stylesheets/booking/booking.scss */
.booking-input-group {
  margin-bottom: 16px;
}

/* line 79, app/assets/stylesheets/booking/booking.scss */
.booking-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: #334155;
  background: #ffffff;
  transition: border-color 0.2s;
}

/* line 90, app/assets/stylesheets/booking/booking.scss */
.booking-input:focus {
  outline: none;
  border-color: #39C7C2;
}

/* line 95, app/assets/stylesheets/booking/booking.scss */
.booking-input::placeholder {
  color: #94a3b8;
}

/* line 100, app/assets/stylesheets/booking/booking.scss */
.booking-input-wrapper {
  position: relative;
}

/* line 103, app/assets/stylesheets/booking/booking.scss */
.booking-input-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
}

/* line 113, app/assets/stylesheets/booking/booking.scss */
.booking-dates .booking-input-wrapper {
  margin: 10px 0;
}

/* line 117, app/assets/stylesheets/booking/booking.scss */
.booking-trip-type {
  margin-bottom: 16px;
}

/* line 121, app/assets/stylesheets/booking/booking.scss */
.booking-trip-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

/* line 130, app/assets/stylesheets/booking/booking.scss */
.booking-trip-options {
  display: flex;
  gap: 8px;
}

/* line 135, app/assets/stylesheets/booking/booking.scss */
.booking-trip-btn {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

/* line 151, app/assets/stylesheets/booking/booking.scss */
.booking-trip-btn.active {
  border-color: #39C7C2;
  background: #eafbfb;
  color: #39C7C2;
}

/* line 157, app/assets/stylesheets/booking/booking.scss */
.booking-trip-btn:hover:not(.active) {
  border-color: #cbd5e1;
}

/* line 162, app/assets/stylesheets/booking/booking.scss */
.booking-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%) !important;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}

/* line 175, app/assets/stylesheets/booking/booking.scss */
.booking-submit:hover:not(:disabled) {
  background: linear-gradient(135deg, #E64A19 0%, #D84315 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(25, 116, 204, 0.4) !important;
}

/* line 181, app/assets/stylesheets/booking/booking.scss */
.booking-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* line 186, app/assets/stylesheets/booking/booking.scss */
.booking-submit i {
  margin-right: 8px;
}

/* line 191, app/assets/stylesheets/booking/booking.scss */
.hero-features.small {
  display: none;
}

@media screen and (max-width: 768px) {
  /* line 197, app/assets/stylesheets/booking/booking.scss */
  .hero-features.large {
    display: none;
  }
  /* line 200, app/assets/stylesheets/booking/booking.scss */
  .hero-features.small {
    display: block;
    margin-top: 20px;
  }
  /* line 204, app/assets/stylesheets/booking/booking.scss */
  .hero-features.small .h-feature {
    float: left;
    padding: 5px;
  }
}

/* line 212, app/assets/stylesheets/booking/booking.scss */
.sticky-booking-header {
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
  transform: translateY(-150%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* line 225, app/assets/stylesheets/booking/booking.scss */
.sticky-booking-header.visible {
  transform: translateY(0);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  /* line 212, app/assets/stylesheets/booking/booking.scss */
  .sticky-booking-header {
    top: 5rem;
  }
}

/* line 235, app/assets/stylesheets/booking/booking.scss */
.sticky-booking-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 243, app/assets/stylesheets/booking/booking.scss */
.sticky-booking-field {
  flex: 1;
  position: relative;
  min-width: 0;
}

/* line 248, app/assets/stylesheets/booking/booking.scss */
.sticky-booking-field i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #39C7C2;
  font-size: 14px;
  z-index: 1;
}

/* line 258, app/assets/stylesheets/booking/booking.scss */
.sticky-booking-field.sticky-date-field {
  flex: 0 0 200px;
}

/* line 263, app/assets/stylesheets/booking/booking.scss */
.sticky-input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  color: #334155;
  background: #f8fafc;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 278, app/assets/stylesheets/booking/booking.scss */
.sticky-input:hover {
  border-color: #39C7C2;
  background: #ffffff;
}

/* line 283, app/assets/stylesheets/booking/booking.scss */
.sticky-input:focus {
  outline: none;
  border-color: #39C7C2;
  background: #ffffff;
}

/* line 289, app/assets/stylesheets/booking/booking.scss */
.sticky-input::placeholder {
  color: #94a3b8;
}

/* line 294, app/assets/stylesheets/booking/booking.scss */
.sticky-submit-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 309, app/assets/stylesheets/booking/booking.scss */
.sticky-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #E64A19 0%, #D84315 100%);
  transform: scale(1.05);
}

/* line 314, app/assets/stylesheets/booking/booking.scss */
.sticky-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media screen and (max-width: 992px) {
  /* line 322, app/assets/stylesheets/booking/booking.scss */
  .sticky-booking-container {
    flex-wrap: wrap;
  }
  /* line 326, app/assets/stylesheets/booking/booking.scss */
  .sticky-booking-field {
    flex: 1 1 calc(50% - 6px);
  }
  /* line 329, app/assets/stylesheets/booking/booking.scss */
  .sticky-booking-field.sticky-date-field {
    flex: 1 1 calc(50% - 6px);
  }
  /* line 334, app/assets/stylesheets/booking/booking.scss */
  .sticky-submit-btn {
    flex: 0 0 100%;
    width: 100%;
    height: 40px;
  }
}

@media screen and (max-width: 576px) {
  /* line 342, app/assets/stylesheets/booking/booking.scss */
  .sticky-booking-header {
    padding: 10px 12px;
  }
  /* line 346, app/assets/stylesheets/booking/booking.scss */
  .sticky-booking-container {
    gap: 8px;
  }
  /* line 350, app/assets/stylesheets/booking/booking.scss */
  .sticky-booking-field {
    flex: 1 1 100%;
  }
  /* line 353, app/assets/stylesheets/booking/booking.scss */
  .sticky-booking-field.sticky-date-field {
    flex: 1 1 100%;
  }
  /* line 358, app/assets/stylesheets/booking/booking.scss */
  .sticky-input {
    padding: 8px 10px 8px 32px;
    font-size: 0.8rem;
  }
  /* line 363, app/assets/stylesheets/booking/booking.scss */
  .sticky-booking-field i {
    left: 10px;
    font-size: 12px;
  }
}
