
/* --- Hotel Detail Custom Styles --- */
.hotel-detail-main {
    background: #fff;
    color: #2E3690;
  }
  
  /* .hotel-detail-container { max-width: 1200px; margin: 0 auto; } */
  .breadcrumb {
    font-size: 13px;
  }
  
  .hotel-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2E3690;
  }
  
  .hotel-rating-stars {
    font-size: 1.1rem;
  }
  
  .hotel-rating-label {
    color: #888;
    font-size: 1rem;
    font-weight: 400;
  }
  
  .hotel-address {
    font-size: 14px;
    color: #888;
  }
  
  .gallery-container {
    height: 500px;
    /* overflow: hidden; */
    border-radius: 12px;
  }
  
  .gallery-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }
  
  .view-all-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #2E3690;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
  }
  
  @media (max-width: 767px) {
    .gallery-container {
      height: auto;
    }
  
    .gallery-img {
      height: auto;
    }
  }
  
  .btn-view-all-photos {
    font-size: 13px;
    padding: 4px 16px;
    border-radius: 8px;
  }
  
  .hotel-overview-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #2E3690;
  }
  
  /* .review-summary-box {
    background: #F5F6FA;
    border: 1.5px solid #e4e4e4;
  } */
  
  .review-score {
    color: #FF8682;
  }
  
  .review-tag-box {
    background: #F5F6FA;
    border: 1.5px solid #e4e4e4;
    font-size: 15px;
    color: #2E3690;
  }
  
  .similar-venues-slider-wrapper {
    position: relative;
  }
  
  .similar-venues-slider {
    scroll-behavior: smooth;
  }
  
  .similar-venues-slider-btn {
    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;
  }
  
  .similar-venues-slider-btn.prev {
    left: -20px;
  }
  
  .similar-venues-slider-btn.next {
    right: -20px;
  }
  
  .similar-venues-slider-btn:hover {
    background: #2E3690;
    color: #fff;
  }
  
  .venue-card:hover {
    /* border: 1.5px solid #FF8682; */
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
  }
  .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;
  }
  
  .venue-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2E3690;
  }
  
  .venue-location,
  .venue-capacity {
    font-size: 13px;
    color: #888;
  }
  
  .review-item {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 12px;
  }
  
  .review-item:last-child {
    border-bottom: none;
  }
  
  .hotel-detail-main .fa-solid {
    color: #2E3690;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
  }
  
  .hotel-detail-main .d-flex.align-items-center {
    gap: 8px;
  }
  
  @media (max-width: 991.98px) {
    .hotel-detail-container {
      padding: 0 12px;
    }
  
    .similar-venues-slider-btn.prev {
      left: 0;
    }
  
    .similar-venues-slider-btn.next {
      right: 0;
    }
  }
  
  @media (max-width: 767.98px) {
    .hotel-gallery-row img {
      min-height: 80px;
      max-height: 120px;
    }
  
    .venue-card {
      min-width: 180px;
      max-width: 180px;
    }
  }
  
  /* --- Button & Text Color Enhancements --- */
  .btn-primary {
    background-color: #2E3690;
    border-color: #2E3690;
    color: #fff;
    font-weight: 600;
    transition: background 0.2s, color 0.2s, border 0.2s;
  }
  
  .btn-primary:hover,
  .btn-primary:focus {
    background-color: #29294c;
    border-color: #29294c;
    color: #fff;
  }
  
  .btn-outline-secondary {
    color: #2E3690;
    border-color: #2E3690;
    background: #fff;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, border 0.2s;
  }
  
  .btn-outline-secondary:hover,
  .btn-outline-secondary:focus {
    background: #fff;
    color: #2E3690;
    border-color: #fff;
  }
  
  .btn-outline-primary {
    color: #FF8682;
    border-color: #FF8682;
    background: #fff;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, border 0.2s;
  }
  
  .btn-outline-primary:hover,
  .btn-outline-primary:focus {
    background: #29294c;
    color: #fff;
    border-color: #29294c;
  }
  
  .btn-dark {
    background: #2E3690;
    color: #fff;
    border: none;
  }
  
  .btn-dark:hover,
  .btn-dark:focus {
    background: #29294c;
    color: #fff;
  }
  
  .badge.bg-light.text-dark {
    background: #F5F6FA !important;
    color: #2E3690 !important;
    font-weight: 600;
  }
  
  .badge.bg-secondary {
    background: #2E3690 !important;
    color: #fff !important;
    font-weight: 500;
  }
  
  .badge.bg-warning,
  .text-warning {
    color: #FF8682 !important;
  }
  
  .review-score,
  .StarColor,
  .orangeTypeColor {
    color: #FF8682 !important;
  }
  
  
  .review-tag-box {
    background: #F5F6FA;
    border: 1.5px solid #FF8682;
    color: #2E3690;
    font-weight: 500;
  }
  
  .venue-card .card-title {
    color: #2E3690;
  }
  
  .venue-location,
  .venue-capacity {
    color: #888;
  }
  
  .breadcrumb-item.active,
  .breadcrumb-item a {
    color: #2E3690;
  }
  
  .breadcrumb-item a:hover {
    color: #29294c;
    text-decoration: underline;
  }
  
  .btn-view-all-photos {
    background: #2E3690;
    color: #fff;
    border: none;
  }
  
  .btn-view-all-photos:hover,
  .btn-view-all-photos:focus {
    background: #29294c;
    color: #fff;
  }
  
  .map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 30%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
  }
  
  .map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .MapMargin{
    margin-bottom: 65px;
  }
  
  @media (max-width: 767.98px) {
    .map-responsive {
      padding-bottom: 60%;
    }
    .MapMargin{
      margin-bottom: 32px;
    }
    .AmenitiesMargin , .ReviewsMargin, .SimilarVenuesMargin{
      margin-bottom: 32px;
    }
  }
  
  .container-fluid.main-content-listing {
    /* max-width: 1240px; */
    padding-left: 100px;
    padding-right: 100px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 38px;
  }
  
  @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;
    }
  }
  
  /* --- Review Summary & Tags Section --- */
  .review-summary-tags-row {
    display: flex;
    gap: 16px;
    align-items: stretch;
    margin-bottom: 65px;
    flex-wrap: wrap;
  }
  .review-summary-box,
  .review-tag-box {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    border-radius: 12px;
    box-sizing: border-box;
  }
  .review-summary-box {
    background: #373A9B;
    color: #fff;
    font-weight: 700;
    font-size: 2rem;
    box-shadow: none;
    border: none;
    padding: 16px;
  }
  .review-summary-box .review-score {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
  }
  .review-summary-box .review-label {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
  }
  .review-summary-box .review-count {
    font-size: 0.95rem;
    font-weight: 400;
    color: #fff;
  }
  .review-tag-box {
    background: #fff;
    border: 1.5px solid #373A9B;
    font-size: 1rem;
    color: #2E3690;
    box-shadow: none;
    margin: 0;
    padding: 16px;
    gap: 8px;
  }
  .review-tag-icon {
    width: 32px;
    height: 32px;
    display: block;
    margin-bottom: 8px;
  }
  .review-tag-label {
    font-size: 1rem;
    color: #2E3690;
    font-weight: 500;
    text-align: center;
  }
  @media (max-width: 991.98px) {
    .review-summary-tags-row {
      flex-direction: row;
      gap: 12px;
      align-items: stretch;
    }
    .review-summary-box, .review-tag-box {
      /* max-width: 100%; */
      /* min-width: 0; */
      /* width: 50%; */
      /* height: 90px; */
      font-size: 1.2rem;
      padding: 16px 16px;
    }
  }
  
  .AmenitiesMargin, .ReviewsMargin, .SimilarVenuesMargin{
    margin: 65px 0px;
  }
  
  .custom-slider-track {
    scroll-behavior: smooth;
    padding-bottom: 8px;
    overflow-x: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .custom-slider-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  .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;
  }
  .custom-slider-arrow.left {
    left: -20px;
  }
  .custom-slider-arrow.right {
    right: -20px;
  }
  .custom-slider-arrow:hover {
    background: #2E3690 !important;
  }
  .custom-slider-arrow:hover i{
    color: #fff !important;
  }
  @media (max-width: 991.98px) {
    .custom-slider-arrow.left {
      left: 0;
    }
    .custom-slider-arrow.right {
      right: 0;
    }
  }
  @media (max-width: 767.98px) {
    .custom-slider-arrow {
      display: none;
    }
  }
  
  .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: #2E3690;
    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: #2E3690;
    color: #2E3690;
  }
  .btn-heart-listing.active .fa-heart {
    color: #2E3690 !important;
  }
  
  .btn-review {
    background: #2E3690 !important;
    color: #fff !important;
    border-radius: 5px !important;
    font-weight: 500 !important;
    padding: 0.5rem 1.5rem !important;
    border: none !important;
    box-shadow: none !important;
    transition: background 0.2s, color 0.2s;
  }
  .btn-review:hover, .btn-review:focus {
    background: #2E3690 !important;
    color: #fff !important;
  }
  
  /* Custom Gallery Modal Styles */
  .custom-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.614);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
  }
  .custom-modal-content {
    position: relative;
    background: transparent;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.25);
    max-width: 90vw;
    max-height: 90vh;
    width: 700px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .custom-modal-slider {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    /* border-radius: 12px; */
    border-radius: 12px 12px 0px 0px;
    overflow: hidden;
  }
  #customGalleryImage {
    width: 100%;
    height: 60vh;
    max-width: 100vw;
    max-height: 60vh;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 48px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.18);
    background: #222;
    display: block;
  }
  .custom-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
  }
  .custom-gallery-arrow.left { left: 8px; }
  .custom-gallery-arrow.right { right: 8px; }
  .custom-gallery-arrow:hover { background: #373A9B; color: #fff; }
  .custom-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    z-index: 3;
    cursor: pointer;
    transition: color 0.2s;
  }
  .custom-modal-close:hover { color: #f3eeff; }
  .custom-modal-caption {
    color: #fff;
    background: rgb(0, 0, 0);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 16px 10px 16px;
    border-radius: 0 0 12px 12px;
    text-align: center;
    width: 100%;
    word-break: break-word;
    white-space: normal;
    margin-top: 0;
  }
  @media (max-width: 767.98px) {
    .custom-modal-content {
      width: 98vw;
      max-width: 98vw;
    }
    .custom-modal-slider {
      height: 40vh;
      min-height: 120px;
    }
    #customGalleryImage {
      height: 40vh;
      max-height: 40vh;
      margin: 0 32px;
    }
    .custom-modal-caption {
      font-size: 0.95rem;
      padding: 8px 4px 6px 4px;
    }
    .custom-modal-close {
      top: 6px;
      right: 8px;
      font-size: 1.5rem;
      z-index: 10;
    }
  }
  .venue-capacity_similar{
    font-weight: 600 !important;
  }