html[dir="rtl"] .form-control {
  text-align: right;
}

html[dir="rtl"] .toggle-password {
  cursor: pointer;
  direction: ltr !important;
}

html[dir="rtl"] .position-absolute {
  direction: ltr !important;
}

/* Section layout */
.login-section {
  display: flex;
  height: 100vh;
  flex-wrap: wrap;
}

.no-caret::after {
  display: none !important;
}

/* ========== LOCATION DROPDOWN ========== */
.location-dropdown {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 99999;
  max-height: 220px;
  overflow-y: auto;
}

.location-dropdown.show {
  display: block;
}

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

.location-dropdown li {
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
}

.location-dropdown li:hover {
  background: #f3f3f3;
}

/* map view */

.map-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.map-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  /* center perfectly */
  z-index: 10;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.left-section {
  flex: 1;
  min-width: 300px;
  position: relative;
}
.left-section img{
border-radius: 20px;
 width: 100%; 
 height: 100vh; 
 object-fit: cover; 
 display: block;
  margin: 0 auto;
}

/* Overlay only on image */
.left-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(29, 29, 29, 0.45); /* shadow strength */
    z-index: 1;border-radius: 20px;

}

/* Text stays pure white */
.text-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  text-align: center;    left: 50%;
  transform: translateX(-50%);
  z-index: 2; /* above overlay */
  color: #fff;
}
.right-section {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding-top: 7rem;
}

.form-wrapper {
  width: 75%;
  max-width: 400px;
  align-self: flex-start;

}

.toggle-password {
  cursor: pointer;
}

.btn-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1rem 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--secondary);
}

.divider:not(:empty)::before {
  margin-right: .75em;
}

.divider:not(:empty)::after {
  margin-left: .75em;
}

.btn-icon img {
  width: 20px;
  height: 20px;
}


/* OTP Form Styling */

.otp-box {
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #ccc;
  outline: none;
  transition: all 0.3s ease;
}

.otp-box:focus {
  border-color: var(--primary, #0b2c47);
  box-shadow: 0 0 5px rgba(11, 44, 71, 0.3);
}

.btn-primary {
  background-color: #0b2c47;
  border: none;
}

.btn-primary:hover {
  background-color: #103a5e;
}

/* hide caret remove dropdown arrow */
.no-caret::after {
  display: none !important;
  content: none !important;
}

/* hotel detail view css start */
.review-card {
  border-radius: 16px;
  height: 260px;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

/* Carousel FULL height inside card */
#reviewCarousel,
#reviewCarousel .carousel-inner,
#reviewCarousel .carousel-item {
  height: 100%;
}

.review-content {
  height: calc(100% - 40px);
  overflow: hidden;
}

.review-card .carousel-indicators {
  position: absolute;
  bottom: 10px !important;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.review-card .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c7c7c7;
  margin: 0 3px;
}

.review-card .carousel-indicators .active {
  background-color: #0c4b80;
  width: 10px;
  height: 10px;
}

/* user image */
.review-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.desktop-gallery {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

/* TOP WRAPPER (LEFT + RIGHT) */
.gallery-wrapper {
  display: flex;
  gap: 14px;
  height: 450px;
}

/* LEFT MAIN IMAGE */
.left-big {
  width: 75%;
  height: 100%;
}

.left-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* RIGHT IMAGES (STACK) */
.right-small {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.right-small img {
  width: 100%;
  height: calc((450px - 28px) / 3);
  /* equal height */
  object-fit: cover;
  border-radius: 14px;
}

/* BOTTOM ROW (4 IMAGES) */
.bottom-row {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.bottom-row div {
  flex: 1;
  position: relative;
}

.bottom-row img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
}

.more-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5px 12px;
  border-radius: 12px;
  font-weight: 600;
}

/* MOBILE */
.mobile-slider {
  display: none;
}

a {
  text-decoration: none;
}

/* show on map btn */
.show-map-btn {
  color: #2c86cf;
}

/* table css */
.booking-table {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.85rem;
}

/* Header */
.booking-table thead {
  background-color: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.booking-table th {
  padding: 14px;
  border: none;
}

.booking-table td {
  padding: 15px 14px;
  vertical-align: top;
  border-bottom: 1px solid #e5e5e5;
  border: 1px solid #dcdcdc;
}

.booking-table tbody tr:last-child td {
  border-bottom: none;
}

.booking-table ul {
  padding-left: 0 !important;
  list-style: none;
  margin-bottom: 0;
}

.booking-table img {
  margin-right: 6px;
}

.booking-table tbody tr:hover {
  background: #f9f9ff;
  transition: 0.2s ease-in-out;
}

.features-list {
  min-width: 100%;
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 8px;/
}

.bookin-card {
  font-size: 0.85rem;
  border-radius: 12px !important;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07) !important;
}

.bookin-card i {
  color: var(--primary);
  margin-right: 6px;
}

.bottom-reviewSwiper,
.bottom-reviewSwiper .swiper-wrapper,
.bottom-reviewSwiper .swiper-slide {
  height: auto !important;
}

.bottom-reviewSwiper .swiper-slide {
  width: 370px !important;
}

.bottom-review-card {
  border-radius: 14px;
  border: 1px solid #e6e6e6;
  padding: 20px;
  background: #fff;
  height: auto;
}

/* profile image */
.bottom-review-card .bottom-review-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}


.text-muted-small {
  font-size: 13px;
  color: #7f8c8d;
}

.bottom-review-description {
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 42px;
}

.bottom-review-description a {
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--primary);
  background-color: #fff;
  padding-left: 6px;
  font-weight: 500;
}

.bottom-review-description.expanded {
  -webkit-line-clamp: 20;
}
/* When expanded → READ LESS NORMAL TEXT POSITION */
.bottom-review-description.expanded a {
  position: static;
  padding-left: 0;
}
/* tour css start*/
.left-img-wrapper {
  flex: 1;
  background-image: url('/assets/images/tour-operator/handpick.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.info-item img {
  width: 15px;
  height: 15px;
}

.inluded-items li {
  font-size: 0.9rem;
}

/* my account flow css start */
.my-account-side.active,
.my-account-top.my-account-side.active {
  background-color: #143347;
  color: white;
}

.my-account-side:hover {
  background-color: #143347;
  color: white;
}

.myaccount-nav.active img,
.myaccount-nav:focus img {
  filter: brightness(0) invert(1) !important;
  transition: filter 0.2s ease;
}

.faq-contact-underline.active {
  border-bottom: 4px solid var(--bs-primary) !important;
  border-radius: 0;
}

.my-account-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: white;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  transform: rotate(45deg);
  z-index: 10;
}

.step-circle {
  width: 28px;
  height: 28px;
  border: 2px solid transparent;
}

.step-line {
  height: 2px;
  background-color: #dee2e6;
  border-radius: 1px;
  transition: background-color 0.3s ease;
}

.booking-page {
  display: none;
}

.booking-page.active {
  display: block !important;
}

.step-line.active {
  background: #143347;
}

/* my account flow css end */

  .card-img-fixed {
      height: 200px;
      object-fit: cover;
      width: 100%;
  }
      .categories {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .categories::-webkit-scrollbar {
        display: none;
    }
    /* Full width input wrapper */
.iti {
    width: 100%;
    background-color:white !important;
}

/* Dropdown width = input width */
.iti__country-list {
    width: 250px !important;
    min-width: 250px !important;
    max-height: 260px;
    overflow-y: auto;

}

/* Hide country names in dropdown */
.iti__country-name {
    display: none !important;
}

/* Responsive for screens <= 991px */
@media (max-width: 991px) {
  .left-section {
    display: none;
  }

  .right-section {
    width: 100%;
  }

  .desktop-gallery {
    display: none;
  }

  .mobile-slider {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }

  .mobile-slider .swiper {
    height: 250px;
    width: 100%;
    border-radius: 14px;
  }

  .mobile-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
  }

  .bottom-reviewSwiper .swiper-slide {
    width: 290px !important;
  }

  .my-account-dropdown-menu::before {
    left: auto !important;
    right: 16px !important;
    transform: rotate(45deg) !important;
  }

  .payment-icons-group img {
    width: 32px !important;
    height: auto;
  }

  .payment-icons-group {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 3px !important;
    flex-wrap: nowrap !important;
  }

  .map-large {
    display: none !important;
  }

  #bookingCard {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    margin: 0;
    z-index: 2000;
}
}

@media (max-width: 768px) {
  .step-book {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .step-label {
    font-size: 10px;
  }

  .step-circle {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }

  .step-line {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .my-account-sidebar {
    flex: 0 0 240px !important;
    max-width: 240px !important;
    font-size: 14.5px !important;
  }
}

@media (min-width: 451px) and (max-width: 768px) {
  .booking-img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
  }
}

@media (max-width: 450px) {
  .booking-img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
  }
}

@media (max-width: 364px) {
  .rating-row {
    flex-wrap: wrap !important;
    row-gap: 4px !important;
    font-size: 0.8rem !important;
  }

  .rating-row i {
    font-size: 0.9rem !important;
  }
}
        @media (min-width: 991px) {
            #bookingCard {
                position: fixed;
                top: 100px;
                width: 250px;
            }
        }