.hero-section {
  background: url("../hotels/hero_section.avif") center/cover no-repeat;
  position: relative;
  text-align: center;
}

.hero-title {
  color: white;
  font-size: 64px;
  font-weight: 500;
  text-shadow: 0px 3px 15px rgba(0, 0, 0, 0.5);
}

/* SEARCH BOX */
.search-box {
  background: white;
  border-radius: 12px;
  margin-top: 30px;
  overflow: visible;
}

/* TABS */
.nav-tabs .nav-link {
  border: none;
  color: #217381;
  text-align: center;
  font-weight: 500;
}

.nav-tabs .nav-link.active {
  color: #0c979c;
  border-bottom: 3px solid #0c979c !important;
}

/* INPUT ICON FIXES */
.input-group-text {
  border-right: none;
  background: #fff;
}

.form-control {
  border-left: none;
}

.form-control:focus,
.nav-link:focus {
  box-shadow: none !important;
}

/* INPUT GROUP FOCUS */
.input-group:focus-within {
  border: 2px solid #7cd5e9;
  border-radius: 6px;
}
.input-group:focus-within .input-group-text {
  border-color: #7cd5e9;
}
.input-group:focus-within .form-control {
  border-color: #7cd5e9;
}

/* EXPEDIA CALENDAR */
.calendar-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  display: none;
  width: 715px;
  padding: 24px;
}
.calendar-container {
  display: flex;
  gap: 40px;
}
.calendar-month {
  flex: 1;
}
.calendar-header {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  color: #1a1a1a;
}
.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}
.calendar-weekday {
  font-size: 12px;
  color: #666;
  font-weight: 600;
  text-align: center;
  padding: 12px 0;
  text-transform: uppercase;
}
.calendar-day {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  margin: 0;
  transition: all 0.2s;
}
.calendar-day:hover:not(.disabled) {
  background: #ffeee0;
  color: #f48711;
}
.calendar-day.disabled {
  color: #ccc;
  cursor: not-allowed;
}
.calendar-day.in-range {
  background: #ffeee0;
  color: #f48711;
}
.calendar-day.start-date {
  background: #f48711 !important;
  color: white !important;
  font-weight: 600 !important;
  border-radius: 50% 0 0 50% !important;
}
.calendar-day.end-date {
  background: #f48711 !important;
  color: white !important;
  font-weight: 600 !important;
  border-radius: 0 50% 50% 0 !important;
}
.calendar-day.single-date {
  background: #f48711 !important;
  color: white !important;
  border-radius: 50% !important;
  font-weight: 600 !important;
}

/* Disabled dates from previous/next months */
.calendar-day.prev-month,
.calendar-day.next-month {
  color: #ddd;
  cursor: not-allowed;
  font-weight: 300;
}

.calendar-day.prev-month:hover,
.calendar-day.next-month:hover {
  background: transparent;
  color: #ddd;
}

.calendar-day.today:not(.start-date):not(.end-date):not(.in-range) {
  border: 2px solid #f48711;
  border-radius: 50%;
  color: #f48711;
}

/* Mobile Calendar Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
  .calendar-dropdown {
    width: 100vw;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 !important;
    overflow-y: auto;
  }

  .calendar-container {
    display: block;
    gap: 0;
  }

  .calendar-month:last-child {
    margin-bottom: 0;
  }

  .calendar-nav {
    margin-bottom: 12px;
  }

  .nav-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .calendar-weekday {
    padding: 8px 0;
    font-size: 11px;
  }

  .calendar-day {
    height: 36px;
    font-size: 13px;
    margin: 0;
  }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 52px;
  }

  .search-container {
    width: 90% !important;
  }

  .carousel-card {
    flex: 0 0 calc(50% - 0.5rem);
  }

  .recent-search-text-card {
    flex: 0 0 calc(33.333% - 0.667rem);
  }

  .calendar-dropdown {
    width: 600px;
  }

  .calendar-container {
    gap: 24px;
  }

  .calendar-month {
    min-width: 240px;
  }
}
.stay-card {
  border-radius: 18px;
  background: #fff;
}

/* Rating Badge */
.rating-badge {
  background: #0c979c;
  color: white;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 600;
}

/* Carousel arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #ffffffcc;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: #f5f5f5;
}

.left-btn {
  left: 10px;
}
.right-btn {
  right: 10px;
}

/* Heart (wishlist) */
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ffffffdd;
  border: none;
  border-radius: 50%;
  padding: 6px 9px;
}

/* Hotel image */
.hotel-image {
  background: url("../images/default.png") center/cover no-repeat;
}

/* Scroll buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.scroll-left {
  left: -20px;
}
.scroll-right {
  right: -20px;
}

/* Cards container */
.cards-container {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cards-container::-webkit-scrollbar {
  display: none;
}

/* Card item */
.card-item {
  min-width: 280px;
  flex-shrink: 0;
}

/* Carousel wrapper and track */
.carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  gap: 1rem;
}

.carousel-card {
  flex: 0 0 calc(25% - 0.75rem);
  min-width: 0;
}

@media (max-width: 1200px) {
  .carousel-card {
    flex: 0 0 calc(33.333% - 0.667rem);
  }
}

@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 calc(50% - 0.5rem);
  }
}

@media (max-width: 480px) {
  .carousel-card {
    flex: 0 0 calc(100% - 0rem);
  }
}

.suggestion-city {
  color: #0c979c;
  font-weight: 500;
}

/* Travel Categories Styles */
.stay-card {
  border: 1px solid #dee2e6;
  transition: transform 0.2s;
}

.stay-card:hover {
  transform: translateY(-2px);
}

.stay-card img {
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.badge-top {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.price {
  font-size: 18px;
  font-weight: 600;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scroll-left {
  left: -20px;
}

.scroll-right {
  right: -20px;
}

.scroll-btn:hover {
  background: #f8f9fa;
}
.hotel-image {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
}

.left-btn {
  left: 10px;
}

.right-btn {
  right: 10px;
}

.stay-card:hover .carousel-btn {
  opacity: 1;
}

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.rating-badge {
  background: #0c979c;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.price-info {
  line-height: 1.3;
}

.promo-card {
  min-height: 150px;
  position: relative;
}

.promo-content {
  position: relative;
  z-index: 2;
}

.promo-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translateX(50%);
}

/* Carousel navigation button positioning */
.position-relative .carousel-nav-btn.left {
  left: -20px;
}

.position-relative .carousel-nav-btn.right {
  right: -20px;
}
.suggestions-dropdown {
  position: absolute;
  top: 105%;
  left: 10px;
  right: 10px;
  text-align: left;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 0 0 8px 8px;
  border-top: none;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  margin-top: -1px;
}

.suggestion-category-header {
  padding: 10px 16px;
  background: #f8f9fa;
  font-size: 11px;
  font-weight: 700;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0;
  border-bottom: 1px solid #e9ecef;
}

.suggestion-category-header:first-child {
  border-top: none;
}

.suggestion-item {
  padding: 14px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  line-height: 1.4;
}

.suggestion-item:hover {
  background: #f8f9fa;
  color: #0c979c;
}

.suggestion-item .suggestion-label-main {
  font-weight: 600;
  color: #1a1a1a;
}

.suggestion-item .suggestion-label-sub {
  font-size: 12px;
  color: #6c757d;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item i {
  color: #0c979c;
  font-size: 18px;
  width: 18px;
  flex-shrink: 0;
}

.suggestion-city {
  color: #1a1a1a;
  font-weight: 500;
}
.suggestion-hotel {
  color: #1a1a1a;
  font-weight: 500;
}
.suggestion-region {
  color: #1a1a1a;
  font-weight: 500;
}
.suggestion-airport {
  color: #1a1a1a;
  font-weight: 500;
}
.suggestion-poi {
  color: #1a1a1a;
  font-weight: 500;
}

.suggestion-hotel:hover,
.suggestion-region:hover,
.suggestion-city:hover,
.suggestion-airport:hover,
.suggestion-poi:hover {
  color: #f48711;
}

.calendar-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
  padding: 20px;
}
.calendar-container {
  display: flex;
  gap: 20px;
}
.calendar-month {
  flex: 1;
}
.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.nav-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.calendar-weekday {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  padding: 8px 4px;
}
.calendar-day {
  text-align: center;
  padding: 8px 4px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}
.calendar-day:hover {
  background: #f0f8ff;
}
.calendar-day.disabled {
  color: #ccc;
  cursor: not-allowed;
}
.calendar-day.today {
  font-weight: 600;
}
.calendar-day.single-date,
.calendar-day.start-date {
  background: #2196f3;
  color: white;
}
.calendar-day.end-date {
  background: #2196f3;
  color: white;
}
.calendar-day.in-range {
  background: #ffeee0;
}
.travelers-dropdown {
  position: absolute;
  top: 103%;
  left: -45px;
  right: 8px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
}
@media (max-width: 768px) {
  .travelers-dropdown {
    left: 10px;
  }
}
.btn-counter {
  width: 32px;
  height: 32px;
  border: 1px solid #7cd5e9;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #0c979c;
  transition: all 0.2s;
}
.btn-counter:hover {
  background: #0c979c;
  color: white;
}
.btn-counter:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: #ddd;
  color: #999;
}
.btn-counter:disabled:hover {
  background: white;
  color: #999;
}
.room-section {
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.room-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.remove-room-btn {
  color: #dc3545;
  font-size: 12px;
  text-decoration: none;
}
.remove-room-btn:hover {
  color: #dc3545;
  text-decoration: underline;
}
.travelers-dropdown .btn-link {
  font-size: 14px;
  font-weight: 500;
}
.travelers-dropdown .btn-link:hover {
  text-decoration: none;
}
.travelers-dropdown h6 {
  color: #217381;
  font-size: 16px;
}
.travelers-dropdown .fw-medium {
  color: #217381;
  font-size: 15px;
}
.travelers-dropdown .text-muted {
  font-size: 13px;
  color: #666 !important;
}
.travelers-dropdown .border-top {
  border-color: #e6e6e6 !important;
}
.room-section:not(:last-child) {
  border-bottom: 1px solid #e6e6e6;
}
.travelers-dropdown .btn-primary {
  background-color: #f48711;
  border-color: #f48711;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
}
.travelers-dropdown .btn-primary:hover {
  background-color: #e07600;
  border-color: #e07600;
}
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  width: calc(100% * 6 / 4.33);
}

.carousel-card {
  flex: 0 0 calc(100% / 6);
}

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

.carousel-nav-btn:hover {
  background: #f8f9fa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-nav-btn.left {
  left: -20px;
}

.carousel-nav-btn.right {
  right: -20px;
}

.carousel-nav-btn i {
  font-size: 16px;
  color: #333;
}
.child-age-wrapper {
  position: relative;
}

.child-age-wrapper select {
  height: 44px;
  padding: 9px 12px 0px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background-color: #fff;
  appearance: none;
  cursor: pointer;
}

.child-age-wrapper label {
  position: absolute;
  top: 4px;
  left: 12px;
  font-size: 11px;
  color: #6b7280;
  pointer-events: none;
  line-height: 1;
}

.child-age-wrapper::after {
  content: "▾";
  position: absolute;
  right: 12px;
  top: 60%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #6b7280;
  pointer-events: none;
}

.child-age-wrapper select:focus {
  border-color: #f48711;
  outline: none;
}
.promo-badge {
  background-color: #f48711;
  margin-bottom: 100px;
}

/* Primary CTA Buttons */
.btn-primary,
.btn-search,
.btn-book {
  background-color: #f48711 !important;
  border-color: #f48711 !important;
  color: white !important;
}

.btn-primary:hover,
.btn-search:hover,
.btn-book:hover {
  background-color: #e07600 !important;
  border-color: #e07600 !important;
}

/* Secondary buttons */
.btn-secondary {
  background-color: #7cd5e9 !important;
  border-color: #7cd5e9 !important;
  color: #217381 !important;
}

.btn-secondary:hover {
  background-color: #6bc4d9 !important;
  border-color: #6bc4d9 !important;
}
/* .card,
.stay-card {
  background-color: #c6edf4;
} */
.search-container {
  width: 80% !important;
}

.search-container .px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.search-container .pb-4 {
  padding-bottom: 1rem !important;
}

/* Input Field Container */
.input-field-container {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  transition: all 0.2s ease;
  cursor: pointer;
  height: 56px;
}

.input-field-container:hover {
  border-color: #0c979c;
}

.input-field-container:focus-within {
  border-color: #0c979c;
  box-shadow: 0 0 0 3px rgba(12, 151, 156, 0.1);
}

.field-content {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  height: 100%;
}

.field-icon {
  color: #0c979c;
  font-size: 20px;
  margin-right: 12px;
  flex-shrink: 0;
}

.field-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.field-label {
  font-size: 11px;
  font-weight: 600;
  color: #555;
  margin: 0;
  line-height: 1.2;
  text-align: left;
  text-transform: capitalize;
  letter-spacing: normal;
}

.field-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a !important;
  padding: 0;
  margin: 0;
  width: 100%;
  line-height: 1.3;
  -webkit-text-fill-color: #1a1a1a !important;
}

#locationSearch {
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
  opacity: 1 !important;
}

.field-input::placeholder {
  color: #999;
  font-weight: 400;
}

.field-input:focus {
  outline: none;
}

/* Recent Searches Section */
.recent-search-card {
  background: white;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.recent-search-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.recent-search-image {
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.recent-search-card:hover .recent-search-image {
  transform: scale(1.05);
}

.recent-search-card .stars {
  font-size: 14px;
}

.recent-search-card h6 {
  color: #333;
  font-size: 16px;
  margin-bottom: 8px;
}

.recent-search-card .small {
  font-size: 13px;
}

.recent-search-card a {
  color: inherit;
}

.recent-search-card a:hover {
  text-decoration: none;
}
.hotel-input-field {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.guest-input-field {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

@media (max-width: 768px) {
  .hotel-input-field,
  .guest-input-field,
  .date-input-field {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .search-btn-field {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* Remove Bootstrap column padding for search form */
#hotelSearchForm .row {
  margin-left: 0;
  margin-right: 0;
}

#hotelSearchForm .row > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

/* Override for children age selects to allow gaps */
#hotelSearchForm .children-age-selects.row.g-2 > [class*="col-"] {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

#hotelSearchForm .children-age-selects.row.g-3 > [class*="col-"] {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.recent-search-text-card-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.recent-search-text-card-container::-webkit-scrollbar {
  display: none;
}

.recent-search-text-card {
  flex: 0 0 calc(20% - 8px);
}

@media (max-width: 768px) {
  .row.g-3.mb-5 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .search-container {
    width: 100% !important;
  }
  .row.g-3.mb-5::-webkit-scrollbar {
    display: none;
  }

  .row.g-3.mb-5 .col-md-2 {
    flex: 0 0 76.9%;
    min-width: 280px;
  }
}
.recent-search-text-card h6 {
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
  line-height: 1.2;
}

/* Specific fix for hotel names in recent search text cards */
.recent-search-text-card h6.fw-bold {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}

/* Force container width constraint */
.recent-search-text-card .flex-grow-1 {
  min-width: 0 !important;
  width: 100% !important;
}

@media (max-width: 768px) {
  .recent-search-text-card {
    flex: 0 0 76.9%;
  }

  .recent-search-text-card-container {
    overflow-x: auto;
    gap: 0.75rem;
    -webkit-overflow-scrolling: touch;
  }
}
.destination-review,
.desination-price,
.destination-heading {
  color: #000;
}

.features-section {
  background: #ffffff;
}

.features-wrapper {
  background: #f3f6f9;
  border-radius: 24px;
  padding: 48px 32px;
}

.feature-item {
  max-width: 300px;
  margin: 0 auto;
}

.feature-item h3 {
  font-size: 26px;
  font-weight: 500;
  color: #0a2540;
  margin-bottom: 12px;
}

.feature-item p {
  font-size: 15px;
  color: #425466;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Button */
.feature-item .btn {
  font-size: 14px;
  padding: 8px 18px;
  border-width: 1.5px;
}
.image-icon img {
  width: 48px;
  height: 48px;
}

.recent-search-text-card-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 10px;
}

.recent-search-text-card {
  flex: 0 0 24%;
  width: 24%;
  min-width: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.recent-search-card {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Cross button styling */
.recent-search-card .btn:hover,
.recent-search-text-card .btn:hover {
  background-color: #f8f9fa !important;
  transform: scale(1.1);
}

.recent-search-card .btn,
.recent-search-text-card .btn {
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recent-search-card .btn i,
.recent-search-text-card .btn i {
  color: #6c757d;
}

.recent-search-card .btn:hover i,
.recent-search-text-card .btn:hover i {
  color: #dc3545;
}

@media (max-width: 768px) {
  .recent-search-text-card {
    flex: 0 0 76.9%;
    width: 76.9%;
    min-width: 0;
  }

  .recent-search-text-card-container {
    gap: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .recent-search-text-card-container::-webkit-scrollbar {
    display: none;
  }

  /* Recommended stays mobile horizontal scroll */
  .recommended-stays-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .recommended-stays-container::-webkit-scrollbar {
    display: none;
  }

  .recommended-stay-card {
    flex: 0 0 76.9%;
    width: 76.9%;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  /* Mobile tabs horizontal scroll */
  .tabs-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .tabs-container::-webkit-scrollbar {
    display: none;
  }

  .tabs-container .nav-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    border: none !important;
  }

  .tabs-container .nav-item {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }

  .tabs-container .nav-link {
    white-space: nowrap !important;
    min-width: max-content !important;
  }
}

/* Calendar Responsive Styles - Expedia Style */
.calendar-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  display: none;
  margin-top: 8px;
}

.calendar-container {
  display: flex;
  gap: 32px;
}

.calendar-month {
  flex: 1;
  min-width: 280px;
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 8px;
}

.nav-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: #f48711;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.nav-btn:hover {
  background-color: #ffeee0;
  color: #f48711;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.calendar-weekday {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  padding: 8px 4px;
  text-transform: uppercase;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.2s ease;
  position: relative;
  min-height: 40px;
}

.calendar-day:hover:not(.disabled) {
  background-color: #ffeee0;
  color: #f48711;
  border-radius: 50%;
}

.calendar-day.in-range {
  background: #ffeee0;
  color: #f48711;
}

.calendar-day.start-date {
  background-color: #f48711 !important;
  color: white !important;
  font-weight: 600 !important;
  border-radius: 50% 0 0 50% !important;
}

.calendar-day.end-date {
  background-color: #f48711 !important;
  color: white !important;
  font-weight: 600 !important;
  border-radius: 0 50% 50% 0 !important;
}

.calendar-day.single-date {
  background-color: #f48711 !important;
  color: white !important;
  border-radius: 50% !important;
  font-weight: 600 !important;
}

.calendar-day.disabled {
  color: #ccc;
  font-weight: 500;
  cursor: not-allowed;
}

/* Mobile Calendar Styles */
@media (max-width: 768px) {
  .calendar-dropdown {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95vw;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    margin-top: 0;
    z-index: 9999;
    overflow-y: auto;
    max-height: 85vh;
  }

  .calendar-container {
    flex-direction: column;
    padding: 12px;
    gap: 5px;
    min-height: auto;
    padding-top: 35px;
    padding-bottom: 40px;
  }

  .calendar-month {
    min-width: auto;
  }

  .calendar-dropdown::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: white;
    z-index: 1;
  }

  .calendar-dropdown::after {
    content: "✕";
    position: fixed;
    top: 12px;
    right: 16px;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    z-index: 2;
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
  }

  .calendar-day {
    width: 36px;
    height: 36px;
    min-height: 36px;
    font-size: 14px;
    flex-shrink: 0;
  }

  .calendar-header {
    font-size: 16px;
  }

  .nav-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .calendar-nav {
    margin-bottom: 12px;
  }

  .calendar-grid {
    gap: 1px;
  }

  .calendar-weekday {
    padding: 6px 2px;
    font-size: 11px;
  }
}

/* Tablet Calendar Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .calendar-container {
    gap: 24px;
    padding: 20px;
  }

  .calendar-month {
    min-width: 240px;
  }

  .calendar-day {
    min-height: 42px;
  }
}

/* Large Screen Calendar Styles */
@media (min-width: 1200px) {
  .calendar-container {
    gap: 40px;
  }

  .calendar-month {
    min-width: 320px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .calendar-day {
    font-size: 16px;
  }

  .nav-btn {
    min-width: 48px;
    min-height: 48px;
  }

  .calendar-day:active {
    background-color: #cce7ff;
    transform: scale(0.95);
  }
}

.error-message {
  color: #dc3545;
  font-size: 13px;
  font-weight: 500;
  padding: 2px 12px;
  text-align: left;
  display: block;
  position: absolute;
  top: 100%;
  left: 10px;
  right: 10px;
  background: white;
  border-top: none;
  border-radius: 0 0 8px 8px;
  z-index: 1001;
  box-shadow: 0 2px 4px rgba(220, 53, 69, 0.1);
}

/* Input field error state */
.field-input.error {
  border-color: #dc3545 !important;
}

.input-field-container.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1) !important;
  border-radius: 8px 8px 0 0 !important;
  margin-top: -10px !important;
}

/* Travelers dropdown error message */
.travelers-dropdown .text-danger {
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  display: block !important;
  text-align: left !important;
  margin: 0 !important;
}

.travelers-dropdown .text-danger::before {
  font-size: 14px;
}

.hotel-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.hotel-name.expanded {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.hotel-name:hover {
  color: #000 !important;
}

/* Tooltip for full hotel name */
.hotel-name-tooltip {
  position: absolute;
  top: -40px;
  left: 0;
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  pointer-events: none;
}

.hotel-name-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 20px;
  border: 5px solid transparent;
  border-top-color: #333;
}

.hotel-name:hover .hotel-name-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hotel-name-tooltip {
    display: none;
  }
}
.promo-btn {
  border-color: #f48711 !important;
  color: #f48711 !important;
}

.promo-btn:hover {
  border-color: #f48711 !important;
  background-color: #f48711 !important;
  color: white !important;
}
.promo-heading {
  font-size: 26px;
}

.btn-search {
  background: #f48711 !important;
  border-color: #f48711 !important;
  color: white !important;
  border: none;
  padding: 10px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.btn-search:hover {
  background: #e07600 !important;
  border-color: #e07600 !important;
  color: white !important;
}
@media (min-width: 768px) {
  .property-card-col {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* flight css module */
@media (min-width: 768px) {
  .flight-input-field {
    position: relative;
    flex: 0 0 22%;
    max-width: 22%;
  }

  .flight-date-input-field {
    position: relative;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .flight-passenger-input-field {
    position: relative;
    flex: 0 0 21%;
    max-width: 21%;
  }
  .flight-search-btn {
    position: relative;
    flex: 0 0 10%;
    max-width: 10%;
  }
}
@media (max-width: 768px) {
  .flight-input-field,
  .flight-date-input-field,
  .flight-passenger-input-field,
  .flight-search-btn {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
.flight-circle-separator {
  position: absolute;
  left: 22%;
  top: 44%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.flight-circle-mobile {
  position: absolute;
  right: 20px;
  top: 103%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
