* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6,
.title,
.apartment-address,
.modal-header h3,
.detail-section h4,
.search-title,
.tab-btn,
.book-btn,
.confirm-btn,
.cancel-btn {
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
}
.booking-widget {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.1);
  overflow: hidden;
}
.search-panel {
  background: #fff;
  padding: 24px;
  border-bottom: 1px solid #e9ecef;
}
.search-form {
  display: flex;
  gap: 16px;
  align-items: end;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.form-group {
  flex: 1;
  min-width: 200px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
  font-weight: 600;
  color: #555;
  font-size: 14px;
}
.date-input,
.guests-select,
.city-select {
  position: relative;
}
.date-input input,
.guests-select select,
.city-select select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  background: #fff;
}
.date-input input:focus,
.guests-select select:focus,
.city-select select:focus {
  outline: none;
  border-color: #007aff;
}
.date-input i,
.guests-select i,
.city-select i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  pointer-events: none;
}
.guests-select select,
.city-select select {
  appearance: none;
  cursor: pointer;
}
.checkbox-group {
  display: flex;
  align-items: center;
  padding-top: 28px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
}
.checkbox-label span {
  font-size: 14px;
  color: #555;
}
.search-btn {
  background: #007aff;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-width: 120px;
}
.search-btn:hover {
  background: #0056b3;
}
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e9ecef;
}
.tab-btn {
  background: none;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
  font-weight: 600;
  color: #6c757d;
  cursor: pointer;
  border-bottom: 3px solid #fff0;
  transition: all 0.3s ease;
}
.tab-btn.active {
  color: #007aff;
  border-bottom-color: #007aff;
}
.tab-btn:hover {
  color: #007aff;
}
.results-container {
  min-height: 400px;
  position: relative;
}
.apartments-list {
  padding: 20px;
}
.apartment-card {
  display: flex;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}
.apartment-card:hover {
  box-shadow: 0 8px 25px rgb(0 0 0 / 0.1);
}
.apartment-image {
  width: 300px;
  height: 200px;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}
.apartment-image .slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.slides {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.slide.active {
  opacity: 1;
}
.apartment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(0 0 0 / 0.35);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.slider-prev {
  left: 8px;
}
.slider-next {
  right: 8px;
}
.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #6c757d;
  font-size: 48px;
}
.image-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.5);
}
.dot.active {
  background: #fff;
}
.apartment-info {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.apartment-address {
  font-weight: 600;
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
}
.apartment-full-address {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.apartment-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6c757d;
  font-size: 14px;
}
.spec-item i {
  color: #007aff;
}
.apartment-amenities {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.details-link {
  color: #007aff;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.details-link:hover {
  color: #0056b3;
}
.apartment-booking {
  width: 200px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-left: 1px solid #e9ecef;
}
.apartment-price {
  font-size: 24px;
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
.price-period {
  color: #6c757d;
  font-size: 12px;
  margin-bottom: 16px;
}
.book-btn {
  background: #007aff;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}
.book-btn:hover {
  background: #0056b3;
}
.map-view {
  padding: 20px;
}
.map-placeholder {
  height: 400px;
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6c757d;
}
.map-placeholder i {
  font-size: 48px;
  margin-bottom: 16px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0.5);
  backdrop-filter: blur(4px);
}
.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #fff;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.2);
}
.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h3 {
  margin: 0;
  color: #333;
}
.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #6c757d;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.close-btn:hover {
  background: #f8f9fa;
}
.modal-body {
  padding: 24px;
}
.modal-footer {
  padding: 20px 24px;
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row .form-group {
  flex: 1;
}
.modal-body .form-group {
  margin-bottom: 16px;
}
.modal-body .form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #555;
}
.modal-body input,
.modal-body textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}
.modal-body input:focus,
.modal-body textarea:focus {
  outline: none;
  border-color: #007aff;
}
.cancel-btn {
  background: #6c757d;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.cancel-btn:hover {
  background: #545b62;
}
.confirm-btn {
  background: #28a745;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.confirm-btn:hover {
  background: #1e7e34;
}
.apartment-details {
  max-height: 400px;
  overflow-y: auto;
}
.modal-slider {
  position: relative;
  width: 100%;
  height: 300px;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
}
.modal-slides {
  width: 100%;
  height: 100%;
  position: relative;
}
.modal-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-slide.active {
  opacity: 1;
}
.modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.modal-image:hover {
  transform: scale(1.02);
}
.modal-slider-prev,
.modal-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(0 0 0 / 0.5);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.3s ease;
}
.modal-slider-prev:hover,
.modal-slider-next:hover {
  background: rgb(0 0 0 / 0.7);
}
.modal-slider-prev {
  left: 10px;
}
.modal-slider-next {
  right: 10px;
}
.modal-image-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.modal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}
.modal-dot.active {
  background: #fff;
}
.fullscreen-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgb(0 0 0 / 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullscreen-content {
  position: relative;
  width: 90vw;
  height: 90vh;
  max-width: 1200px;
  max-height: 800px;
}
.fullscreen-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 10001;
}
.fullscreen-prev,
.fullscreen-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(255 255 255 / 0.2);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background 0.3s ease;
  z-index: 10001;
}
.fullscreen-prev:hover,
.fullscreen-next:hover {
  background: rgb(255 255 255 / 0.3);
}
.fullscreen-prev {
  left: -70px;
}
.fullscreen-next {
  right: -70px;
}
.fullscreen-slides {
  width: 100%;
  height: 100%;
  position: relative;
}
.fullscreen-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullscreen-slide.active {
  opacity: 1;
}
.fullscreen-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.fullscreen-dots {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.fullscreen-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}
.fullscreen-dot.active {
  background: #fff;
}
.detail-section {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}
.detail-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.detail-section h4 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 16px;
  font-weight: 600;
}
.detail-section p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}
.detail-section p.empty-state {
  color: #999;
  font-style: italic;
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px dashed #dee2e6;
}
.detail-section .apartment-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.detail-section .spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 6px;
  font-size: 14px;
}
.detail-section .spec-item i {
  color: #007aff;
  width: 16px;
  text-align: center;
}
@media (max-width: 768px) {
  .search-form {
    flex-direction: column;
    gap: 12px;
  }
  .form-group {
    min-width: 100%;
  }
  .apartment-card {
    flex-direction: column;
  }
  .apartment-image {
    width: 100%;
    height: 200px;
  }
  .apartment-booking {
    width: 100%;
    border-left: none;
    border-top: 1px solid #e9ecef;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .apartment-price {
    font-size: 20px;
  }
  .book-btn {
    width: auto;
    padding: 10px 16px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .modal-content {
    width: 95%;
    margin: 20px;
  }
}
@media (max-width: 480px) {
  .search-panel {
    padding: 16px;
  }
  .apartments-list {
    padding: 16px;
  }
  .apartment-info {
    padding: 16px;
  }
  .apartment-specs {
    gap: 12px;
  }
  .tabs {
    justify-content: center;
  }
  .tab-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.form-group {
  position: relative;
}
.error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
  display: none;
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
}
.error-message.show {
  display: block;
}
.form-group.error input,
.form-group.error textarea {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgb(220 53 69 / 0.25);
}
.form-group.error input:focus,
.form-group.error textarea:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgb(220 53 69 / 0.25);
}
.booking-modal-content {
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}
.booking-details,
.guest-info,
.cost-calculation {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e9ecef;
}
.booking-details:last-child,
.guest-info:last-child,
.cost-calculation:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.booking-details h4,
.guest-info h4,
.cost-calculation h4 {
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #333;
  margin-bottom: 16px;
}
.booking-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.booking-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}
.booking-info-item i {
  color: #6c757d;
  font-size: 16px;
  width: 20px;
  text-align: center;
}
.booking-info-item .info-content {
  flex: 1;
}
.booking-info-item .info-content label {
  display: block;
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 4px;
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
}
.booking-info-item .info-content span {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
}
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}
.input-with-icon i {
  position: absolute;
  left: 12px;
  color: #6c757d;
  font-size: 14px;
  z-index: 1;
}
.input-with-icon input {
  padding-left: 40px;
}
.cost-breakdown {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #e9ecef;
}
.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
}
.cost-item span:first-child {
  color: #333;
}
.cost-item span:last-child {
  color: #333;
  font-weight: 500;
}
.cost-label {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cost-label i {
  color: #6c757d;
  font-size: 12px;
  cursor: help;
}
.cost-separator {
  height: 1px;
  background: #e9ecef;
  margin: 12px 0;
}
.cost-total {
  font-weight: 600;
  font-size: 16px;
  padding: 12px 0;
  border-top: 1px solid #e9ecef;
  margin-top: 8px;
}
.cost-total span:last-child {
  font-size: 18px;
  color: #007aff;
}
.booking-terms {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e9ecef;
}
.booking-terms p {
  font-size: 12px;
  color: #6c757d;
  line-height: 1.4;
  margin: 0;
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
}
.booking-terms a {
  color: #007aff;
  text-decoration: underline;
  cursor: pointer;
}
.booking-terms a:hover {
  color: #0056b3;
}
.searching-state {
  text-align: center;
  padding: 80px 20px;
  color: #666;
  max-width: 400px;
  margin: 0 auto;
}
.searching-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007aff 0%, #0056b3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: pulse 2s infinite;
}
.searching-icon i {
  font-size: 32px;
  color: #fff;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgb(0 122 255 / 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px #fff0;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 #fff0;
  }
}
.searching-state h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #333;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.searching-state p {
  font-size: 16px;
  color: #666;
}
.no-results {
  text-align: center;
  padding: 80px 20px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.no-results-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 32px rgb(0 0 0 / 0.1);
}
.no-results-icon i {
  font-size: 48px;
  color: #adb5bd;
}
.no-results h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #333;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.no-results > p {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}
.no-results-suggestions {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  text-align: left;
  border-left: 4px solid #007aff;
}
.no-results-suggestions p {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
  text-align: center;
}
.no-results-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.no-results-suggestions li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 24px;
}
.no-results-suggestions li:before {
  content: "•";
  color: #007aff;
  font-weight: 700;
  position: absolute;
  left: 0;
  font-size: 18px;
}
.retry-search-btn {
  background: linear-gradient(135deg, #007aff 0%, #0056b3 100%);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgb(0 122 255 / 0.3);
}
.retry-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgb(0 122 255 / 0.4);
}
.retry-search-btn:active {
  transform: translateY(0);
}
.retry-search-btn i {
  font-size: 18px;
}
.notification-modal-content {
  max-width: 400px;
  width: 90%;
  text-align: center;
  padding: 20px;
}
.notification-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.notification-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}
.notification-icon.success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #fff;
}
.notification-icon.error {
  background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
  color: #fff;
}
.notification-icon.info {
  background: linear-gradient(135deg, #007aff 0%, #0056b3 100%);
  color: #fff;
}
.notification-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}
.notification-body {
  margin-bottom: 24px;
}
.notification-body p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.notification-footer {
  display: flex;
  justify-content: center;
}
.notification-btn {
  background: linear-gradient(135deg, #007aff 0%, #0056b3 100%);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}
.notification-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgb(102 126 234 / 0.4);
}
.notification-btn:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .booking-info-grid {
    grid-template-columns: 1fr;
  }
  .booking-modal-content {
    width: 95%;
    margin: 20px auto;
  }
  .form-row {
    flex-direction: column;
  }
  .no-results {
    padding: 60px 20px;
  }
  .no-results-icon {
    width: 100px;
    height: 100px;
  }
  .no-results-icon i {
    font-size: 40px;
  }
  .no-results h3 {
    font-size: 24px;
  }
  .no-results > p {
    font-size: 16px;
  }
  .no-results-suggestions {
    padding: 20px;
  }
  .searching-state {
    padding: 60px 20px;
  }
  .searching-icon {
    width: 60px;
    height: 60px;
  }
  .searching-icon i {
    font-size: 24px;
  }
  .searching-state h3 {
    font-size: 20px;
  }
  .searching-state p {
    font-size: 14px;
  }
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: #666;
}

.empty-state-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-state-icon i {
  font-size: 32px;
  color: #999;
}

.empty-state h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #333;
}

.empty-state p {
  font-size: 16px;
  color: #666;
}

.recommendations-section {
  margin-bottom: 40px;
}

.recommendations-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.recommendations-slider {
  position: relative;
  overflow: hidden;
}

.recommendations-track {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
  will-change: transform;
}

.recommendation-card {
  flex: 0 0 calc(25% - 12px);
  min-width: 280px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.recommendation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.recommendation-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.recommendation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommendation-info {
  padding: 16px;
}

.recommendation-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recommendation-address {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.recommendation-address i {
  font-size: 12px;
  color: #999;
}

.recommendation-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #666;
}

.recommendation-specs span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.recommendation-specs i {
  font-size: 12px;
  color: #999;
}

.recommendation-price {
  font-size: 18px;
  font-weight: 600;
  color: #007aff;
}

.recommendations-prev,
.recommendations-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.recommendations-prev:hover,
.recommendations-next:hover {
  background: #007aff;
  border-color: #007aff;
  color: #fff;
}

.recommendations-prev {
  left: 0;
}

.recommendations-next {
  right: 0;
}

.recommendations-prev i,
.recommendations-next i {
  font-size: 14px;
  color: #333;
  transition: color 0.2s ease;
}

.recommendations-prev:hover i,
.recommendations-next:hover i {
  color: #fff;
}

@media (max-width: 768px) {
  .recommendation-info {
    background: #eaeaea;
  }

  .recommendations-track {
    justify-content: flex-start;
  }

  .recommendation-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .recommendations-prev,
  .recommendations-next {
    width: 32px;
    height: 32px;
  }

  .recommendations-prev {
    left: 10px;
  }

  .recommendations-next {
    right: 10px;
  }

  .recommendations-prev i,
  .recommendations-next i {
    font-size: 12px;
  }
}
