@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

:root {
  --yellow-color1: #fdcc02;
  --blue1: #00026e;
}

/* Navbar */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.nav-bar.active {
  background-color: white;
  box-shadow: 0 1px 3px rgba(51, 65, 80, 0.08);
}

.nav-bar-in {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 0;
}

.logo img {
  width: 120px;
}

.nav-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-chat-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 5px;
}

.nav-chat-btn img {
  width: 25px;
}

.nav-chat-btn span {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue1);
}

.nav-sign-in-btn {
  background-color: var(--blue1);
  color: white;
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.menu-btn {
  background-color: var(--blue1);
  color: white;
  padding: 5px 10px;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 10px;
}

@media (max-width: 575px) {
  .nav-bar-in {
    padding: 10px 0;
  }

  .nav-chat-btn span {
    display: none;
  }

  .logo img {
    width: 100px;
  }

  .nav-bar-right {
    gap: 10px;
  }
}

/* Hero */
.hero {
  padding: 200px 0 50px 0;
  background-image: url("https://ik.imagekit.io/w13m3d3rhif/web/homepage/homepage-background.jpg?tr=f-auto,pr-true");
  background-size: cover;
  background-position: center;
}

.search-wrapper {
  background-color: white;
  padding: 60px 30px;
  border-radius: 20px;
  position: relative;
}

.search-grid {
  display: grid;
  /*grid-template-columns:
    calc(34% - 11.25px)
    calc(22% - 11.25px)
    calc(22% - 11.25px)
    calc(22% - 11.25px);*/
    
  grid-template-columns: repeat(4, 1fr); 
  gap: 15px;
}

.search-item {
  border: 1px solid #dbdde0;
  border-radius: 10px;
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
}

.search-item.active {
  background-color: #99c2ff52;
}

.search-item h6 {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--blue1);
  margin: 0;
}

.search-item h5 {
  font-size: 16px;
  font-weight: 400;
  margin: 8px 0 0 0;
  color: var(--blue1);
}

.search-item h5 b {
  font-size: 20px;
  font-weight: 600;
}

.search-item p {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.9;
  margin: 0;
}

.search-type {
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.search-type h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue1);
}

.search-type label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 300;
  opacity: 0.8;
}

.search-type label input {
  height: 16px;
  width: 16px;
  border-radius: 5px;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  accent-color: var(--blue1);
}

.search-type label span {
  margin-top: 2px;
}

.search-btn {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--yellow-color1);
  color: var(--blue1);
  padding: 14px 50px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: none;
}

.location-list-wrapper,
.room-manage-wrapper {
  position: absolute;
  top: 102%;
  background-color: white;
  box-shadow:
    0 8px 12px rgba(51, 65, 80, 0.06),
    0 14px 44px rgba(51, 65, 80, 0.11);
  border-radius: 5px;
  width: 500px;
  z-index: 3;
}

.location-list-wrapper {
  left: 0;
}

.room-manage-wrapper {
  right: 0;
}

.location-list-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 8px 20px;
}

.location-list-search input {
  flex: 1;
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 16px;
  font-weight: 300;
}

.location-wrapper {
  border-top: 1px solid #dadada;
  padding-top: 5px;
  position: relative;
}

.top-location-era {
  padding-inline: 20px;
}

.top-location-item {
  margin: 10px 0;
}

.top-location-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--blue1);
  text-align:left;
}

.top-location-lists > a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin: 10px 0;
}

.top-location-lists > a img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 5px;
}

.top-location-lists > a h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #22292f;
}
.top-location-lists > a p {
  font-size: 14px;
  font-weight: 300;
  margin: 5px 0 0 0;
  color: #22292f;
}

.search-location-era {
  max-height: 300px;
  overflow-y: auto;
}

.search-location-era a {
  margin: 5px 0;
  text-decoration: none;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;

  &:hover {
    background-color: #bcc9dc66;
  }
}

.search-location-era a h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--blue1);
}

.search-location-era a p {
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  color: #22292f;
}

.search-location-era a h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #056998;
}

.previous-search {
  background-color: #00026e1a;
  padding: 20px;
  border-radius: 10px;
  margin-top: 50px;
}

.previous-search .title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.previous-search .title h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.previous-search .title button {
  background-color: var(--blue1);
  color: white;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  padding: 5px 10px;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;

  &:hover {
    box-shadow: 0 8px 25px -8px #00026e;
  }
}

.prev-search-card {
  margin: 10px 0;
  display: block;
  background-color: white;
  border-radius: 10px;
  text-decoration: none;
  padding: 10px 20px;
}

.prev-search-card h1 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--blue1);
}

.prev-search-card div {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.prev-search-card div p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: #22292f;
}

.prev-search-card div p b {
  font-weight: 600;
  font-size: 16px;
}

.prev-search-card div i {
  color: var(--blue1);
}

.prev-search-card p {
  margin: 5px 0 0 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #22292f;
  font-size: 14px;
  font-weight: 300;
}

.room-manage-wrapper .rooms .room {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 5px;
  padding: 12px;
  border-bottom: 1px solid #dadada;
}

.room-manage-wrapper .rooms .room h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--blue1);
}

.room-manage-wrapper .rooms .room p {
  font-size: 14px;
  font-weight: 300;
  margin: 0;
}

.room-manage-wrapper .rooms .room button {
  color: var(--blue1);
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  background-color: transparent;
  font-size: 12px;
}


@media(max-width: 575px)
{
  .top-location-item h4
  {
      font-size: 16px;
  } 
  
  .top-location-era {
    padding-inline: 15px;
  }
}


@media (max-width: 991px) {
  .search-wrapper {
    padding: 50px 20px;
  }

  .search-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    gap: 10px;
  }

  .search-item:first-child {
    flex-basis: 100%;
  }

  .search-item:nth-child(2) {
    flex-basis: calc(50% - 15px);
  }

  .search-item:nth-child(3) {
    flex-basis: 50%;
  }

  .search-item:last-child {
    flex-basis: 100%;
  }
  
  .location-list-wrapper,
  .room-manage-wrapper
  {
   width: 100%;
  }
  
  
}

@media (min-width: 992px) and (max-width: 1199px) {
  .search-grid {
    grid-template-columns:
      calc(32% - 11.25px) calc(22% - 11.25px) calc(22% - 11.25px)
      calc(24% - 11.25px);
  }
  
  .location-list-wrapper,
  .room-manage-wrapper {
    width: 450px;
  }
}

/* video promo card  */

.same-color-bg {
  background-color: #ebf0f4;
}

.video-promo-card-wrapper {
  padding-top: 50px;
  padding-bottom: 50px;
}

.video-promo-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: white;
  border-radius: 10px;
  padding: 8px;
  text-decoration: none;
  color: #22292f;
}

.video-promo-card img {
  width: 120px !important;
  border-radius: 4px;
}

.video-promo-card .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.video-promo-card h1 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.video-promo-card button {
  width: fit-content;
  background-color: var(--yellow-color1);
  font-size: 12px;
  padding: 5px 10px;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 4px;
}

.custom-arrow .owl-carousel .owl-nav button.owl-next,
.custom-arrow .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  background-color: white;
  border-radius: 50%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  color: var(--blue1);
  font-size: 20px;
}

.custom-arrow .owl-carousel .owl-nav button.owl-prev {
  left: -15px;
}

.custom-arrow .owl-carousel .owl-nav button.owl-next {
  right: -15px;
}

@media (max-width: 575px) {
  .video-promo-card h1 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .video-promo-card-wrapper {
    padding-bottom: 35px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .video-promo-card h1 {
    font-size: 20px;
  }
}

/*  Video Promo Banner  */
.video-promo-banner {
  padding-bottom: 50px;
}

.video-promo-banner img {
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .video-promo-banner {
    padding-bottom: 35px;
  }
}

/* Hot Deals */
.hot-deals {
  padding-bottom: 50px;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--blue1);
  margin: 0 0 10px 0;
}

.hot-deals .owl-carousel .owl-stage-outer {
  padding-left: 15px;
}

.hot-deals-card {
  margin: 20px 0;
  position: relative;
  background-color: white;
  box-shadow: 0 10px 10px 3px rgba(0, 0, 0, 0.04);
  border-radius: 5px;
  padding: 20px;
}

.hot-deals-card .top {
  display: flex;
  gap: 10px;
}

.hot-deals-card .image img {
  height: 150px;
  min-width: 150px !important;
  width: 100% !important;
  object-fit: cover;
  border-radius: 10px;
  margin-top: -40px;
  margin-left: -30px;
}

.hot-deals-card .content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue1);
  margin: 0;
}

.hot-deals-card .content p {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 0;
}

.hot-deals-card .code {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  background-color: #ecf3fe;
  padding: 5px;
  border-radius: 5px;
}

.hot-deals-card .code i {
  font-size: 20px;
  color: #1c3c6b;
}

.hot-deals-card .code p {
  margin: 0;
  font-size: 14px;
  color: var(--blue1);
}

.hot-deals-card > a {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background-color: var(--yellow-color1);
  color: var(--blue1);
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 575px) {
  .hot-deals .owl-carousel .owl-stage-outer {
    padding-left: 0px;
  }

  .hot-deals-card .top {
    flex-direction: column;
    gap: 20px;
  }

  .hot-deals-card .image img {
    height:auto;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
  
  
}

@media (max-width: 767px) {
  .hot-deals {
    padding-bottom: 35px;
  }
}

/* Special Offers */

.hot-deals.special-offers .owl-carousel .owl-stage-outer {
  padding-left: 0px;
}

.special-offer-card {
  margin: 20px 0;
  position: relative;
  background-color: white;
  box-shadow: 0 10px 10px 3px rgba(0, 0, 0, 0.04);
  border-radius: 5px;
  padding: 20px 20px 50px 20px;
}

.special-offer-card .top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.special-offer-card .image img {
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.special-offer-card .content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue1);
  margin: 0;
}

.special-offer-card > a {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background-color: var(--yellow-color1);
  color: var(--blue1);
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

/* banner promo */

.banner-promo {
  padding-bottom: 50px;
}

.banner-promo-card {
  margin: 10px 0;
  position: relative;
}

.banner-promo-card img {
  width: 100%;
  border-radius: 10px;
}

.banner-promo-card > a {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: var(--blue1);
}

@media (max-width: 767px) {
  .banner-promo {
    padding-bottom: 35px;
  }
}

/* Popular Hotels  */
.popular-hotels {
  padding-bottom: 50px;
}

.popular-hotel-card {
  margin: 10px 0;
  position: relative;
  text-decoration: none;
}

.popular-hotel-card .hotel-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
}

.popular-hotel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition-duration: 0.5s;
}

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

.popular-hotel-card .hotel-img .info {
  position: absolute;
  bottom: 0px;
  left: 0px;
  color: white;
  padding: 0 30px 10px 10px;
  width: 100%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
}

.popular-hotel-card .hotel-img .info h1 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.popular-hotel-card .hotel-img .info p {
  font-size: 14px;
  margin: 0;
}

@media (max-width: 767px) {
  .popular-hotels {
    padding-bottom: 35px;
  }
}

/* Footer */
.footer {
  background-color: var(--blue1);
  padding: 20px 0;
}

.footer-item {
  margin: 10px 0;
}

.footer-item h2 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
  color: white;
}

.menu-ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-ul li {
  margin: 5px 0;
}

.menu-ul li a {
  font-size: 14px;
  font-weight: 300;
  color: white;
  text-decoration: none;
}

.payment-method {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.payment-method > div {
  background-color: white;
  padding: 5px;
  border-radius: 4px;
}

.payment-method > div img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-item > p {
  font-size: 14px;
  font-weight: 300;
  color: white;
}

.office-location {
  margin-top: 20px;
  color: white;
}

.office-location h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.office-location a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;

  &:hover {
    text-decoration: underline;
  }
}

.contact-ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-ul li {
  margin: 5px 0;
}

.contact-ul li a {
  font-size: 14px;
  font-weight: 300;
  color: white;
  text-decoration: none;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons > a {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #fff3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 20px;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.533);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-bottom img {
  width: 100px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: white;
}

.footer-bottom p a
{
    color:var(--theme-color);
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 991px) {
  .footer-item {
    margin-bottom: 30px;
  }

  .footer-bottom {
    margin-top: 20px;
  }
}
