/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FAFBFC;
}

/* Header Styles */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  padding: 0;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
  border-bottom: 1px solid #e9ecef;
  background: #fff;
  border-radius: 0 0 0 0;
}

.first_nav.navbar-nav {
  gap: 20px;
}

.navbar-nav .nav-link {
  position: relative;
  color: #222;
  /* or your default color */
  transition: color 0.2s;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
  width: 0;
  height: 2px;
  /* thickness of the underline */
  background: #373A9B;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #373A9B;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.brand-name {
  font-size: 28px;
  font-weight: bold;
  color: #2e3690;
  text-decoration: none;
}

.search-box {
  position: relative;
  margin-right: 20px;
}

.search-box input {
  width: 230px;
  padding: 8px 35px 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  font-size: 14px;
  padding-left: 35px;
}

.search-box i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.user-icon {
  padding: 8px;
  background: #f3f4f6;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.pexels.com/photos/261102/pexels-photo-261102.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260');
  background-size: cover;
  background-position: center;
  min-height: 514px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 0 80px 0;
  height: 514px;
  margin-top: 56px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.hero-text-container {
  max-width: 600px;
}

.hero-title {
  color: white;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 0.99px;
}

.hero-subtitle {
  color: #e5e7eb;
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 400;
  opacity: 0.9;
}

/* Search Section */
.search-section {
  background: #f1f5f9;
  padding: 60px 0;
}

.search-form {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 1100px;
}

.search-header h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  font-size: 14px;
}

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  z-index: 5;
}

.input-icon-right {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  z-index: 5;
}

.form-control {
  padding: 12px 15px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
}

.form-control:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-select {
  padding: 12px 15px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
}

.search-btn {
  background: #2e3690;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  height: 100%;
  white-space: nowrap;
}

.search-btn:hover {
  background: #3b4bc7;
}

/* Section Titles */
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
}

/* Featured Venues */
.featured-venues {
  padding-top: 100px;
  padding-bottom: 80px;
  background: #f1f5f9;
}

.venue-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.venue-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.venue-card:hover .venue-image img {
  transform: scale(1.05);
}

.heart-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.heart-icon:hover {
  background: white;
  color: #ef4444;
}

.venue-info {
  padding: 20px;
}

.venue-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
}

.venue-location {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 15px;
}

.btn-outline-primary {
  border-color: #2e3690;
  color: #2e3690;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
}

.btn-outline-primary:hover {
  background: #2e3690;
  border-color: #2e3690;
}

/* Popular Filters */
.popular-filters {
  background: #f1f5f9;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.filter-btn {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover {
  background: #2e3690;
  color: white;
  border-color: #2e3690;
  transform: translateY(-2px);
}

/* Browse by Category */
.browse-category {
  background: #f1f5f9;
}

.category-card {
  position: relative;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 20px 20px;
  color: white;
}

.category-overlay h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

/* Why Choose Section */
.why-choose {
  background: #f1f5f9;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 8px;
  border: 2px solid #2E3690;
  box-shadow: none;
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-2px) !important;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #2e3690;
  font-size: 28px;
}

.feature-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1f2937;
}

.feature-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* Footer */
.footer {
  /* margin-top: 60px; */
  background: #f1f5f9;
}

.location-card {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.location-card:hover img {
  transform: scale(1.05);
}

.location-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  color: white;
}

.location-overlay h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  text-align: center;
  letter-spacing: 1px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 38px;
  }

  .search-form {
    padding: 25px 20px;
  }

  .hero-section {
    min-height: 45vh;
    padding: 35px 0 70px 0;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 32px;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .search-form {
    margin: 0 15px;
    padding: 25px 20px;
  }

  .search-btn {
    width: 100%;
    margin-top: 15px;
    padding: 15px 25px;
  }

  .hero-section {
    min-height: 40vh;
    padding: 30px 0 60px 0;
  }

  .search-section {
    padding: 50px 50px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 35vh;
    padding: 25px 0 50px 0;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 15px;
  }

  .section-title {
    font-size: 26px;
  }

  .search-form-container {
    bottom: -45px;
    padding: 0 15px;
  }

  .search-form {
    padding: 20px 15px;
  }

  .featured-venues {
    padding-top: 80px;
  }

  .filters-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
  }

  .filter-btn {
    padding: 10px 15px;
    font-size: 13px;
  }

  .category-card {
    height: 200px;
  }

  .location-card {
    height: 250px;
  }

  .location-overlay h3 {
    font-size: 22px;
    letter-spacing: 0.5px;
  }

  .location-overlay {
    padding: 15px;
  }

  .location-overlay {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hero-section {
    min-height: 38vh;
    padding: 20px 0 40px 0;
  }

  .search-form {
    padding: 18px 15px;
    margin: 0 15px;
  }

  .search-section {
    padding: 30px;
  }

  .search-header h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .venue-info {
    padding: 15px;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =-=-=-=-=-=-=-=-= */

/* Search Filters Section Styles */
.search-filters-sections {
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  background: #fff;
  margin: -100px auto 0px auto;
  padding: 24px;
  position: relative;
}

.search-filters-sections .row {
  width: 100%;
  margin: 0;
  align-items: end !important;
}

.filter-input-group {
  overflow: hidden;
  height: 44px;
}

.filter-input-group .input-group-text {
  background: #F5F6FA;
  border: 1.5px solid #e4e4e4;
  border-right: none;
  color: #000;
  font-size: 1.1rem;
  border-radius: 5px 0 0 5px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
}

.filter-input-group .form-control,
.filter-input-group .form-select {
  border: 1.5px solid #e4e4e4;
  border-left: none;
  border-radius: 0 5px 5px 0;
  background: #fafbfc;
  font-size: 1rem;
  padding: 10px 16px;
  height: 44px;
}

.custom-date-input {
  border-radius: 12px;
  border: 1.5px solid #e4e4e4;
  background: #fafbfc;
  font-size: 15px;
  padding: 12px 18px;
  height: 44px;
}

.custom-occupancy-select {
  min-width: 80px;
}

@media (max-width: 991.98px) {
  .search-filters-sections {
    padding: 12px 4px 8px 4px;
    max-width: 100vw;
  }

  .filter-input-group .form-control,
  .filter-input-group .form-select {
    font-size: 0.95rem;
  }
}

@media (max-width: 767.98px) {
  .search-filters-sections {
    padding: 12px;
    min-width: 0;
    width: 100%;
  }

  .filter-input-group .form-control,
  .filter-input-group .form-select {
    font-size: 0.92rem;
  }
}

/* -=-=-=-=-=-=-=-=- */

/* =-=-=-=-=-=-=-=-= */

.Featured .custom-slider-track {
  scroll-behavior: smooth;
  padding-bottom: 8px;
  overflow-x: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.Featured .custom-slider-track::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.Featured .custom-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #fff;
  border: 1.5px solid #e4e4e4;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #2E3690;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
  transition: background 0.2s, color 0.2s;
}

.Featured .custom-slider-arrow.left {
  left: -20px;
}

.Featured .custom-slider-arrow.right {
  right: -20px;
}

.Featured .custom-slider-arrow:hover {
  background: #2E3690 !important;
}

.Featured .custom-slider-arrow:hover i {
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .Featured .custom-slider-arrow.left {
    left: 0;
  }

  .Featured .custom-slider-arrow.right {
    right: 0;
  }
}

@media (max-width: 767.98px) {
  .Featured .custom-slider-arrow {
    display: none;
  }
}

.Featured .venue-card {
  border: 1.5px solid #e4e4e4;
  border-radius: 12px;
  background: #fff;
  min-width: 260px;
  /* max-width: 260px; */
  cursor: pointer;
  transition: all 0.3s ease;
  /* box-shadow:  none !important; */
}

.Featured .venue-card:hover {
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
}

.Featured .venue-card .card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2E3690;
}

.Featured .venue-location,
.Featured .venue-capacity {
  font-size: 13px;
  color: #888;
}

/* Featured Venues Card Screenshot Style */
.venue-card {
  border: 1.5px solid #e4e4e4;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  transition: box-shadow 0.2s;
  overflow: hidden;
  position: relative;
}

.venue-card:hover {
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12);
}

.venue-card .card-img-top {
  border-radius: 12px 12px 0 0;
  object-fit: cover;
  height: 180px;
  width: 100%;
}

.btn-heart {
  background: #ffffff62;
  color: #222;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  transition: background 0.2s, color 0.2s, border 0.2s;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-heart:hover,
.btn-heart.active {
  background: #f5f5f5;
  color: #2E3690;
  border-color: #2E3690;
}

.venue-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

.venue-meta {
  font-size: 15px;
  color: #888;
  margin-bottom: 1rem;
}

.venue-card .btn-outline-secondary {
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0;
  margin-top: 0;
}

/* =-=-=-=-=-=-=-= */

@media (max-width: 767.98px) {
  .custom-slider-track {
    padding-left: 12px;
    padding-right: 12px;
  }

  .featured-venues-section .row,
  .featured-venues-section .custom-slider-track {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 575.98px) {
  .custom-slider-track {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.container-fluid.main-content-listing {
  /* max-width: 1240px; */
  padding-left: 100px;
  padding-right: 100px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1199.98px) {
  .container-fluid.main-content-listing {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 767.98px) {
  .container-fluid.main-content-listing {
    padding-left: 12px;
    padding-right: 12px;
  }
}


.navbar-brand img {
  height: 38px;
}

.search-header-input {
  border-radius: 12px;
  border: 1.5px solid #e4e4e4;
  background: #fafbfc;
  font-size: 15px;
  padding: 10px 20px;
  min-width: 220px;
  margin-right: 8px;
}

.user-icon-header {
  font-size: 22px;
  color: #373A9B;
  margin-left: 8px;
}

/* Space above search section */
.search-filters-section {
  border-bottom: 1px solid #e9ecef;
  margin-top: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
}

.filter-input-group .form-control {
  border: 1.5px solid #e4e4e4;
  border-left: none;
  border-radius: 0 5px 5px 0;
  background: #fafbfc;
  font-size: 15px;
  padding: 12px 18px;
}

.filter-input-group {
  overflow: hidden;
}

/* Sidebar Filters */
.filter-card {
  border: 1.5px solid #e4e4e4;
  border-radius: 12px;
  background: transparent;
  /* box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04); */
  padding: 32px 24px 24px 24px;
  position: static;
  top: auto;
  z-index: auto;
}

.filter-header {
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  user-select: none;
  padding: 8px 0;
}

.filter-section {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.filter-section:last-child {
  border-bottom: none;
}

.form-range {
  accent-color: #373A9B !important;
}

.price-range-wrapper {
  max-width: 400px;
  position: relative;
  width: 100%;
}

.range-slider {
  position: relative;
  height: 36px;
}

.range-slider input[type=range] {
  position: absolute;
  width: 100%;
  pointer-events: none;
  appearance: none;
  background: transparent;
  z-index: 3;
  height: 36px;
  margin: 0;
}

/* Gray background line */
.range-slider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 6px;
  width: 100%;
  background: #ddd;
  border-radius: 3px;
  transform: translateY(-50%);
  z-index: 1;
}

/* Blue fill line between thumbs */
.slider-track {
  position: absolute;
  top: 50%;
  height: 6px;
  background-color: #373A9B;
  border-radius: 3px;
  transform: translateY(-50%);
  z-index: 2;
}

/* Thumb styles */
input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  appearance: none;
  height: 20px;
  width: 20px;
  background: #373A9B;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 4;
  margin-top: -7px;
}

input[type=range]::-moz-range-thumb {
  pointer-events: all;
  height: 20px;
  width: 20px;
  background: #373A9B;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 4;
}

.btn-group .btn {
  border-radius: 12px !important;
  font-size: 15px;
  font-weight: 500;
  min-width: 38px;
  margin-right: 6px;
  background: #fff;
  color: #373A9B;
  border: 1.5px solid #e4e4e4;
  transition: background 0.2s, color 0.2s;
}

.btn-group .btn.active,
.btn-group .btn:active {
  background: #373A9B;
  color: #fff;
  border-color: #373A9B;
}

.form-check-input:checked {
  background-color: #373A9B;
  border-color: #373A9B;
}

.amenities-more-link {
  color: #FF8682;
  font-size: 15px;
  margin-top: 4px;
  display: inline-block;
  text-decoration: none;
}

.amenities-more-link:hover {
  text-decoration: underline;
}

/* Main Content */
.main-content-listing {
  min-height: 70vh;
  margin-top: 32px;
}

/* Tabs */
.hotel-tabs-listing .nav-link {
  font-weight: 700;
  font-size: 16px;
  color: #373A9B;
  border: none;
  border-bottom: 2px solid transparent;
  background: white;
  padding: 16px 32px;
  border-radius: 0;
  margin-right: 8px;
  transition: background 0.2s, color 0.2s;
}

.hotel-tabs-listing .nav-link.active {
  color: #373A9B;
  border-bottom: 3px solid #373A9B;
  background: #fff;
  /* box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04); */
}

.tab-count {
  font-size: 13px;
  color: #888;
  margin-left: 4px;
}

.hotel-tabs-listing .nav-item {
  width: 33.3333%;
  flex-basis: 33.3333%;
  text-align: center;
  background-color: white;
}

@media (max-width: 767.98px) {
  .hotel-tabs-listing .nav-item {
    width: 100%;
    flex-basis: auto;
    text-align: left;
  }

  .hotel-tabs-listing .nav-item .nav-link {
    width: 100%;
    text-align: center;
  }
}

/* Sort Dropdown */
.sort-dropdown-listing .btn {
  border-radius: 12px;
  background: #F7F7FB;
  border: 1.5px solid #e4e4e4;
  font-size: 15px;
  font-weight: 500;
  color: #373A9B;
  padding: 10px 24px;
}

.sort-dropdown-listing .dropdown-menu {
  min-width: 180px;
  font-size: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
}

/* Hotel Cards */
/* Card UI and Price Positioning */
.hotel-cards-listing .hotel-card-listing {
  border: 1.5px solid #e4e4e4;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
  background: #fff;
  margin-bottom: 24px;
  overflow: hidden;
  min-height: 220px;
  padding: 0;
  transition: box-shadow 0.2s;
  position: relative;
}

.hotel-card-listing:hover {
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12);
}

.hotel-image-container {
  min-width: 260px;
  max-width: 260px;
  height: 100%;
  overflow: hidden;
  border-radius: 12px 0 0 12px;
  position: relative;
  background: #F7F7FB;
  /* margin: 18px 0 18px 18px; */
}

.hotel-image-listing {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
}

.images-badge-listing {
  top: 14px;
  right: 14px;
  background: #373A9B;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  padding: 5px 16px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
}

.card-body {
  padding: 32px 32px 32px 24px;
  border-radius: 0 12px 12px 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hotel-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.hotel-title-listing {
  font-size: 22px;
  font-weight: 700;
  color: #373A9B;
  margin-bottom: 0;
}

.hotel-price-block {
  text-align: right;
  min-width: 120px;
}

.price-range-label {
  font-size: 13px;
  color: #888;
  display: block;
}

.hotel-price-value {
  font-size: 26px;
  font-weight: 800;
  color: #FF8682 !important;
  display: block;
  margin-top: 2px;
}

.hotel-price-tax {
  font-size: 13px;
  color: #888;
  margin-left: 4px;
  display: block;
}

.hotel-location-listing {
  font-size: 15px;
  color: #888;
  margin-bottom: 8px;
}

.hotel-meta-listing {
  font-size: 15px;
  color: #444;
  margin-bottom: 8px;
}

.hotel-rating-listing {
  font-size: 15px;
  font-weight: 500;
}

.hotel-amenities-listing {
  font-size: 15px;
  color: #373A9B;
}

.hotel-reviews-listing {
  font-size: 15px;
  color: #888;
  margin-bottom: 8px;
}

.hotel-reviews-listing .fa-star {
  color: #FF8682 !important;
}

.hotel-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.btn-heart-listing {
  background: #fff;
  border: 1.5px solid #E4E4E4;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #373A9B;
  transition: background 0.2s, color 0.2s, border 0.2s;
  margin: 0;
  box-shadow: none;
}

.btn-heart-listing.active,
.btn-heart-listing:active,
.btn-heart-listing:hover {
  background: #F5F6FA;
  border-color: #373A9B;
  color: #373A9B;
}

.btn-heart-listing.active .fa-heart {
  color: #373A9B !important;
}

.btn-view-place-listing {
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  background: #373A9B;
  color: #fff;
  border: none;
  width: 100%;
  height: 48px;
  transition: background 0.2s, color 0.2s;
  box-shadow: none;
  display: block;
  margin: 0;
}

.btn-view-place-listing:hover,
.btn-view-place-listing:focus {
  background: #FF8682;
  color: #fff;
}

/* Show More Button */
.btn-show-more-listing {
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  background: #1A2E1A;
  color: #fff;
  border: none;
  margin-top: 24px;
  width: 100%;
  height: 48px;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
  display: block;
}

.btn-show-more-listing:hover {
  background: #373A9B;
  color: #fff;
}

/* Footer */
.footer-listing {
  font-size: 15px;
  color: #888;
  border-top: 1px solid #e4e4e4;
  border-radius: 12px 12px 0 0;
  margin-top: 48px;
}

.footer-left-listing {
  font-size: 15px;
}


.footer-links-listing a {
  position: relative;
  color: #222;
  /* or your default color */
  transition: color 0.2s;
  text-decoration: none;
}

.footer-links-listing a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
  width: 0;
  height: 2px;
  /* thickness of the underline */
  background: #373A9B;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links-listing a:hover,
.footer-links-listing a.active {
  color: #373A9B;
}

.footer-links-listing a:hover::after,
.footer-links-listing a.active::after {
  width: 100%;
}

.footer-social-listing a {
  color: #373A9B;
  font-size: 22px;
  margin: 0 6px;
  transition: color 0.2s;
}

.footer-social-listing a:hover {
  color: #FF8682;
}

.StarColor {
  color: #FF8682 !important;
}

.showing-count {
  color: #373A9B;
  font-size: 16px;
  font-weight: 500;
}

.showing-count .highlight-count {
  color: #FF8682;
  font-weight: 600;
}

.custom-date-input {
  border-radius: 12px;
  border: 1.5px solid #e4e4e4;
  background: #fafbfc;
  font-size: 15px;
  padding: 12px 18px;
  height: 48px;
}

.custom-date-input::-webkit-input-placeholder {
  color: #888;
}

.custom-date-input::-moz-placeholder {
  color: #888;
}

.custom-date-input:-ms-input-placeholder {
  color: #888;
}

.custom-date-input::placeholder {
  color: #888;
}

.custom-date-input::-webkit-calendar-picker-indicator {
  filter: invert(30%) sepia(20%) saturate(500%) hue-rotate(210deg);
  opacity: 0.7;
  cursor: pointer;
}

.custom-occupancy-select {
  border-radius: 12px;
  border: 1.5px solid #e4e4e4;
  background: #fafbfc;
  font-size: 15px;
  padding: 12px 18px;
  height: 48px;
  color: #000;
}

.custom-occupancy-select:focus {
  border-color: #000;
  box-shadow: none;
}

.range-slider-container {
  position: relative;
  width: 100%;
  padding: 16px 0 8px 0;
}

.dual-range {
  pointer-events: auto;
  position: absolute;
  width: 100%;
  height: 3px;
  background: none;
  z-index: 2;
}

.dual-range:first-of-type {
  z-index: 3;
}

.range-values {
  margin-top: 24px;
  font-size: 15px;
  color: #373A9B;
  text-align: center;
}

@media (max-width: 480px) {
  .hotel-image-container {
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto;
    border-radius: 0 !important;
    margin: 0;
  }

  .hotel-image-listing {
    width: 100% !important;
    height: 200px !important;
    border-radius: 0 !important;
    object-fit: cover;
  }

  .hotel-title-row {
    flex-direction: column;
  }
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  background: #2d318f;
  border-radius: 50%;
  color: #fff !important;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  text-decoration: none;
}

.footer-social-icon:hover {
  background: #23255e;
  color: #fff;
}

.footer-flag-img {
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid #eee;
}

.footer-listing .container {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.fa-solid {
  font-weight: 900 !important;
}

/* Mobile Nav Sidebar Overlay */
.mobile-nav-sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1040;
  transition: opacity 0.3s;
  opacity: 0;
}

.mobile-nav-sidebar-overlay.active {
  display: block;
  opacity: 1;
}

/* Mobile Nav Sidebar */
.mobile-nav-sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 260px;
  height: 100vh;
  background: #fff;
  z-index: 1050;
  box-shadow: 2px 0 16px rgba(0, 0, 0, 0.12);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 16px 16px 0;
  overflow-y: auto;
  padding-bottom: 32px;
}

.mobile-nav-sidebar.active {
  left: 0;
}

/* Open/Close Buttons */
.mobile-nav-sidebar-open-btn {
  color: #222;
  background: none;
  border: none;
  outline: none;
  font-size: 1.5rem;
  margin-right: 8px;
}

.mobile-nav-sidebar-close-btn {
  color: #222;
  background: none;
  border: none;
  outline: none;
  font-size: 1.7rem;
}

/* Only show on small screens */
@media (min-width: 992px) {

  .mobile-nav-sidebar,
  .mobile-nav-sidebar-overlay,
  .mobile-nav-sidebar-open-btn {
    display: none !important;
  }
}

/* Attractive nav links */
.mobile-nav-sidebar-link {
  font-size: 1.1rem;
  color: #222;
  padding: 10px 8px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}

.mobile-nav-sidebar-link:hover,
.mobile-nav-sidebar-link:focus {
  background: #e6f0fa;
  color: #373A9B;
}

.mobile-nav-sidebar-nav ul {
  padding-left: 0;
}

/* Sidebar search and user icon row */
.mobile-nav-sidebar-search-user {
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 8px 10px;
}

.mobile-nav-sidebar-search-input {
  flex: 1 1 0%;
  min-width: 0;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  padding: 6px 10px;
  background: #fff;
}

.mobile-nav-sidebar-user-icon {
  color: #222;
  font-size: 1.3rem;
  background: #fff;
  border-radius: 50%;
  padding: 6px 8px 6px 8px;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  margin-left: 6px;
}

.mobile-nav-sidebar-user-icon:hover,
.mobile-nav-sidebar-user-icon:focus {
  background: #e6f0fa;
  color: #373A9B;
  border-color: #373A9B;
}

/* Hide header search/user icon on small screens */
@media (max-width: 991.98px) {
  .header-search-user {
    display: none !important;
  }
}

.view-venue-btn {
  width: fit-content !important;
  padding: 7px 10px !important;
  float: right;
}

.view-venue-btn:hover {
  background-color: #373A9B;
  color: white;
}

/* Search Results Dropdown Styles */
.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: 4px;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid #f1f1f1;
  cursor: pointer;
  transition: background-color 0.2s;
}

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

.search-result-item:hover,
.search-result-item.active {
  background-color: #f8f9fa;
}

.search-result-image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 12px;
  flex-shrink: 0;
}

.search-result-content {
  flex: 1;
}

.search-result-title {
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.search-loading,
.search-no-results {
  padding: 15px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.search-loading {
  color: #373A9B;
}

/* Mobile search specific styles */
.mobile-search-container {
  position: relative;
  padding: 15px 0;
}

.mobile-search-container input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
}

.mobile-search-container i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

.mobile-search-container .search-results-dropdown {
  position: absolute;
  top: calc(100% - 15px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: 4px;
}

@media screen and (max-width: 480px) {
  .review_details {
    max-width: 56% !important;
  }

}

@media screen and (max-width: 768px) {
  .review_details {
    max-width: 80% !important;
  }
}

@media screen and (max-width: 991px) {
  .review_details {
    max-width: 70% !important;
  }

}

.review_details {
  max-width: 90%;
}

/* Sidebar Styles for Mobile and Tablet */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  /* Hidden by default */
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: left 0.3s ease;
}

.sidebar.open {
  left: 0;
  /* Visible when open */
}

.sidebar .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

/* Overlay for Sidebar */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.sidebar-overlay.active {
  display: block;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: #333;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-nav {
    display: none;
  }
}

.mobile_search_ {
  width: 100%;
}

.fa-search {
  color: #2e3690;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: #222;
}

.header {
  position: fixed !important;
  top: 0 !important;
  z-index: 1000 !important;
}

.help_icon {
  position: fixed;
  right: 0px;
  bottom: 40px;
  width: 100%;
  float: left;
  text-align: right;
}
.help_icon img{
 width: 40px;
 height: 40px;
}
#helpModal .modal-content{
-ms-overflow-style: none !important;
  scrollbar-width: none !important;
  border-radius: 6px !important;
  background: #fff !important;
}
#helpModal .modal-content::-webkit-scrollbar { 
  width: 0 !important;
  display: none; 
}
#helpTab{
  margin-left: 6px;
}