/* ============================================================
   hotel-modern.css — Premium Hotel Page Redesign
   Scope: .bc_hotel_modern (search), .bc_cinema_hero (detail),
          .bc_rooms_modern (room picker), .bc_hotel_tabs (nav),
          .bc_hotel_quick-info / .bc_hotel_price-teaser (detail sidebar)
   ============================================================ */

/* 1. Design Tokens */
:root {
  --hm-primary: #3b82f6;
  --hm-primary-dark: #1d4ed8;
  --hm-text-dark: #1a2b48;
  --hm-text-mid: #5e6d77;
  --hm-text-light: #8f9fad;
  --hm-bg-surface: #f8fafc;
  --hm-bg-card: #ffffff;
  --hm-bg-panel: #f1f5f9;
  --hm-border-subtle: rgba(0,0,0,0.06);
  --hm-gold: #f59e0b;
  --hm-shadow-card: 0 2px 12px rgba(0,0,0,0.06);
  --hm-shadow-hover: 0 15px 30px rgba(0,0,0,0.10);
  --hm-radius-card: 20px;
  --hm-radius-form: 12px;
  --hm-radius-pill: 50px;
}

/* 2. Scroll Reveal Utility */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SEARCH PAGE
   ============================================================ */

/* 3. Sticky Search Bar */
.bc_hotel_modern__search-bar {
  position: sticky;
  top: var(--header-height, 75px);
  z-index: 100;
  background: #fff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 200ms ease;
}
.bc_hotel_modern__search-bar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.bc_hotel_modern__search-inner {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.bc_hotel_modern__search-inner > .item {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.bc_hotel_modern__search-inner > .item > span.d-block {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--hm-text-light);
  margin-bottom: 6px !important;
}
.bc_hotel_modern__search-inner > .item .border-bottom,
.bc_hotel_modern__search-inner > .item .border-color-1 {
  border: none !important;
  margin-bottom: 0 !important;
}
.bc_hotel_modern__search-inner > .item .form-content,
.bc_hotel_modern__search-inner > .item .input-group,
.bc_hotel_modern__search-inner > .item .mb-4 {
  margin-bottom: 0 !important;
  border: none !important;
}
.bc_hotel_modern__search-inner > .item .form-content > div,
.bc_hotel_modern__search-inner > .item .input-group {
  background: #f3f4f6;
  border-radius: 12px;
  padding: 6px 14px !important;
  display: flex;
  align-items: center;
  height: 46px;
  border: 1.5px solid transparent !important;
  transition: all 0.2s ease;
}
.bc_hotel_modern__search-inner > .item .form-content > div:focus-within,
.bc_hotel_modern__search-inner > .item .input-group:focus-within {
  background: #fff;
  border-color: var(--hm-primary) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.bc_hotel_modern__search-inner > .item i {
  color: var(--hm-primary) !important;
  font-size: 16px !important;
  margin-right: 8px !important;
}
.bc_hotel_modern__search-inner > .item input,
.bc_hotel_modern__search-inner > .item select,
.bc_hotel_modern__search-inner > .item .date-wrapper {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--hm-text-dark) !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  height: auto !important;
  width: 100% !important;
  box-shadow: none !important;
}
.bc_hotel_modern__search-inner > .item .date-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}
.bc_hotel_modern__search-inner > .item select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.bc_hotel_modern__search-inner > .item .check-in-out {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.bc_hotel_modern__search-inner .smart-search .smart-search-location {
  padding: 0 !important;
}

/* Premium Autocomplete Dropdown styling */
.bc_hotel_modern__search-inner .smart-search {
  position: relative !important;
}
.bc_hotel_modern__search-inner .smart-search .bc-autocomplete {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: 0 !important;
  right: 0 !important;
  min-width: 280px !important;
  background-color: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  z-index: 99999 !important;
  max-height: 300px !important;
  overflow-y: auto !important;
  padding: 8px 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: none;
  transition: all 0.2s ease-in-out !important;
  transform: translateY(5px);
}
.bc_hotel_modern__search-inner .smart-search .bc-autocomplete.show {
  display: block !important;
  transform: translateY(0);
}
.bc_hotel_modern__search-inner .smart-search .bc-autocomplete .item {
  padding: 12px 18px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--hm-text-dark) !important;
  cursor: pointer !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  min-width: 0 !important;
  width: 100% !important;
  text-align: left !important;
  transition: background-color 0.15s ease, color 0.15s ease !important;
}
.bc_hotel_modern__search-inner .smart-search .bc-autocomplete .item:hover {
  background-color: rgba(59, 130, 246, 0.05) !important;
  color: var(--hm-primary) !important;
}
.bc_hotel_modern__search-inner .smart-search .bc-autocomplete .item i {
  color: var(--hm-primary) !important;
  font-size: 16px !important;
  margin-right: 0 !important;
}
.bc_hotel_modern__search-inner .smart-search .bc-autocomplete.on-message .message {
  padding: 16px !important;
  font-size: 13px !important;
  color: var(--hm-text-mid) !important;
  text-align: center !important;
}
.bc_hotel_modern__search-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 200ms ease, box-shadow 200ms ease;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bc_hotel_modern__search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(59,130,246,0.35);
}

/* 4. Results Topbar */
.bc_hotel_modern__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 12px;
  flex-wrap: wrap;
}
.bc_hotel_modern__count {
  font-size: 18px;
  font-weight: 700;
  color: var(--hm-text-dark);
}
.bc_hotel_modern__topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bc_hotel_modern__filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1.5px solid var(--hm-primary);
  border-radius: var(--hm-radius-pill);
  background: transparent;
  color: var(--hm-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.bc_hotel_modern__filter-btn:hover,
.bc_hotel_modern__filter-btn.active {
  background: var(--hm-primary);
  color: #fff;
}
.bc_hotel_modern__filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: var(--hm-primary);
  font-size: 11px;
  font-weight: 700;
  transform: scale(0);
  transition: transform 200ms ease;
}
.bc_hotel_modern__filter-btn.active .bc_hotel_modern__filter-badge {
  background: rgba(255,255,255,0.25);
  color: #fff;
  transform: scale(1);
}
.bc_hotel_modern__filter-btn.has-filters .bc_hotel_modern__filter-badge {
  transform: scale(1);
}

/* 5. Content Row */
.bc_hotel_modern__content-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* 6. Filter Panel */
.bc_hotel_modern__filter-panel {
  width: 0;
  flex-shrink: 0;
  background: var(--hm-bg-panel);
  border-radius: 16px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-12px);
  transition: width 350ms cubic-bezier(0.4, 0, 0.2, 1), padding 350ms cubic-bezier(0.4, 0, 0.2, 1), opacity 350ms ease, visibility 350ms ease, transform 350ms ease;
  pointer-events: none;
  overflow: hidden;
}
.bc_hotel_modern__filter-panel.open {
  width: 280px;
  padding: 20px;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
  position: sticky !important;
  top: 140px !important;
  max-height: calc(100vh - 170px) !important;
  overflow-y: auto !important;
  align-self: flex-start !important;
}
.bc_hotel_modern__filter-panel::-webkit-scrollbar {
  width: 6px;
}
.bc_hotel_modern__filter-panel::-webkit-scrollbar-track {
  background: transparent;
}
.bc_hotel_modern__filter-panel::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.bc_hotel_modern__filter-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}
.bc_hotel_modern__filter-panel .hm-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.bc_hotel_modern__filter-panel .hm-filter-title-main {
  font-size: 15px;
  font-weight: 700;
  color: var(--hm-text-dark);
}
.bc_hotel_modern__filter-panel .hm-filter-reset {
  font-size: 13px;
  color: var(--hm-text-light);
  text-decoration: none;
  transition: color 200ms ease;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.bc_hotel_modern__filter-panel .hm-filter-reset:hover { color: var(--hm-primary); }
.bc_hotel_modern__filter-panel .hm-filter-section {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.bc_hotel_modern__filter-panel .hm-filter-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.bc_hotel_modern__filter-panel .hm-filter-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--hm-text-dark);
  margin-bottom: 12px;
  display: block;
}
.bc_hotel_modern__filter-panel .hm-price-display {
  font-size: 14px;
  font-weight: 600;
  color: var(--hm-text-mid);
  margin-bottom: 10px;
}
.bc_hotel_modern__filter-panel .hm-stars-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bc_hotel_modern__filter-panel .hm-star-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 6px 12px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--hm-radius-pill);
  font-size: 12px;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  color: var(--hm-text-mid);
  background: #fff;
  user-select: none;
}
.bc_hotel_modern__filter-panel .hm-star-pill input { display: none; }
.bc_hotel_modern__filter-panel .hm-star-pill:has(input:checked) {
  border-color: var(--hm-primary);
  background: rgba(59,130,246,0.08);
  color: var(--hm-primary);
}
.bc_hotel_modern__filter-panel .hm-star-pill .fa-star { color: var(--hm-gold); font-size: 11px; }
.bc_hotel_modern__filter-panel .hm-score-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.bc_hotel_modern__filter-panel .hm-score-pill {
  padding: 7px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--hm-radius-pill);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  background: #fff;
  color: var(--hm-text-mid);
}
.bc_hotel_modern__filter-panel .hm-score-pill.active,
.bc_hotel_modern__filter-panel .hm-score-pill:has(input:checked) {
  border-color: var(--hm-primary);
  background: var(--hm-primary);
  color: #fff;
}
.bc_hotel_modern__filter-panel .hm-score-pill input { display: none; }
.bc_hotel_modern__filter-panel .hm-amenity-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--hm-text-dark);
}
.bc_hotel_modern__filter-panel .hm-amenity-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  accent-color: var(--hm-primary);
  cursor: pointer;
  flex-shrink: 0;
}

/* 7. Card Grid */
.bc_hotel_modern__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  min-width: 0;
}

/* 8. Hotel Card */
.bc_hotel_card {
  background: var(--hm-bg-card);
  border-radius: var(--hm-radius-card);
  border: 1px solid var(--hm-border-subtle);
  box-shadow: var(--hm-shadow-card);
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.4,0,0.2,1),
              box-shadow 300ms cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}
.bc_hotel_card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hm-shadow-hover);
}
.bc_hotel_card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.bc_hotel_card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
  display: block;
}
.bc_hotel_card:hover .bc_hotel_card__image img {
  transform: scale(1.04);
}
.bc_hotel_card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 200ms ease;
  z-index: 2;
}
.bc_hotel_card__wishlist:hover { background: #fff; }
.bc_hotel_card__stars {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 2px;
  color: var(--hm-gold);
  font-size: 11px;
  background: rgba(0,0,0,0.45);
  padding: 4px 9px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  z-index: 2;
}
.bc_hotel_card__location-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 14px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.bc_hotel_card__body {
  padding: 16px;
}
.bc_hotel_card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--hm-text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
  line-height: 1.4;
  text-decoration: none;
}
.bc_hotel_card__price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.bc_hotel_card__from {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--hm-text-light);
}
.bc_hotel_card__price {
  font-size: 20px;
  font-weight: 800;
  color: var(--hm-primary);
}
.bc_hotel_card__per-night {
  font-size: 13px;
  color: var(--hm-text-mid);
  flex: 1;
}
.bc_hotel_card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--hm-bg-surface);
  color: var(--hm-primary);
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
  text-decoration: none;
  flex-shrink: 0;
}
.bc_hotel_card:hover .bc_hotel_card__cta {
  transform: translateX(4px);
  background: var(--hm-primary);
  color: #fff;
}

/* 9. Mobile filter overlay backdrop */
.bc_hotel_modern__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  backdrop-filter: blur(2px);
}
.bc_hotel_modern__backdrop.visible { display: block; }

/* ============================================================
   DETAIL PAGE — CINEMATIC HERO
   ============================================================ */

/* 10. Hero */
.bc_cinema_hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.bc_cinema_hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: hotelKenBurns 6000ms ease-out forwards;
  transition: opacity 300ms ease;
}
@keyframes hotelKenBurns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}
.bc_cinema_hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,20,40,0.78) 0%,
    rgba(10,20,40,0.25) 50%,
    transparent 100%
  );
}
.bc_cinema_hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 40px 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.bc_cinema_hero__meta { max-width: 70%; }
.bc_cinema_hero__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #93c5fd;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  padding: 6px 16px;
  border-radius: var(--hm-radius-pill);
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.bc_cinema_hero__name {
  font-family: "Gelasio", serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease 150ms, transform 600ms ease 150ms;
}
.bc_cinema_hero__info {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease 300ms, transform 600ms ease 300ms;
}
.bc_cinema_hero__info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bc_cinema_hero__badge.revealed,
.bc_cinema_hero__name.revealed,
.bc_cinema_hero__info.revealed {
  opacity: 1;
  transform: translateY(0);
}
.bc_cinema_hero__score-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  padding: 5px 12px;
  border-radius: var(--hm-radius-pill);
  font-weight: 600;
}
.bc_cinema_hero__photos-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--hm-radius-pill);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
  text-decoration: none;
  white-space: nowrap;
  align-self: flex-end;
}
.bc_cinema_hero__photos-btn:hover {
  background: rgba(255,255,255,0.24);
  border-color: rgba(255,255,255,0.65);
  color: #fff;
  text-decoration: none;
}

/* 12. Filmstrip */
.bc_cinema_filmstrip-wrap {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 16px 0;
}
.bc_cinema_filmstrip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 20px;
}
.bc_cinema_filmstrip::-webkit-scrollbar { display: none; }
.bc_cinema_filmstrip__thumb {
  flex-shrink: 0;
  width: 180px;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
  scroll-snap-align: start;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: transform 250ms ease, filter 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
.bc_cinema_filmstrip__thumb:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.bc_cinema_filmstrip__thumb.active {
  border-color: var(--hm-primary);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
}
.bc_cinema_filmstrip__more {
  flex-shrink: 0;
  width: 180px;
  height: 120px;
  border-radius: 10px;
  background: rgba(10,20,40,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  gap: 6px;
  transition: background 200ms ease;
  scroll-snap-align: start;
}
.bc_cinema_filmstrip__more span { font-size: 13px; font-weight: 500; opacity: 0.85; }
.bc_cinema_filmstrip__more:hover { background: rgba(10,20,40,0.9); }

/* ============================================================
   DETAIL PAGE — STICKY TABS
   ============================================================ */

.bc_hotel_tabs {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transform: translateY(-110%);
  transition: transform 250ms ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.bc_hotel_tabs.visible { transform: translateY(0); }
.bc_hotel_tabs__inner {
  display: flex;
  position: relative;
  overflow-x: auto;
  scrollbar-width: none;
}
.bc_hotel_tabs__inner::-webkit-scrollbar { display: none; }
.bc_hotel_tabs__tab {
  padding: 15px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hm-text-mid);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: color 200ms ease;
  white-space: nowrap;
  text-decoration: none;
}
.bc_hotel_tabs__tab:hover { color: var(--hm-text-dark); text-decoration: none; }
.bc_hotel_tabs__tab.active { color: var(--hm-primary); }
.bc_hotel_tabs__indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2.5px;
  background: var(--hm-primary);
  border-radius: 2px 2px 0 0;
  /* width set instantly via JS, only X position is animated */
  transition: transform 200ms ease;
}

/* ============================================================
   DETAIL PAGE — QUICK INFO SIDEBAR CARD
   ============================================================ */

.bc_hotel_quick-info {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--hm-shadow-card);
  position: sticky;
  top: var(--header-height, 70px);
}
.bc_hotel_quick-info__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--hm-text-light);
  margin-bottom: 16px;
}
.bc_hotel_quick-info__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 14px;
}
.bc_hotel_quick-info__row:last-of-type { border-bottom: none; }
.bc_hotel_quick-info__key { color: var(--hm-text-mid); }
.bc_hotel_quick-info__val { color: var(--hm-text-dark); font-weight: 600; text-align: right; }
.bc_hotel_price-teaser {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
  text-align: center;
}
.bc_hotel_price-teaser__from { font-size: 12px; color: var(--hm-text-light); margin-bottom: 2px; }
.bc_hotel_price-teaser__amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--hm-primary);
  line-height: 1;
  margin-bottom: 2px;
}
.bc_hotel_price-teaser__night { font-size: 13px; color: var(--hm-text-mid); margin-bottom: 16px; }
.bc_hotel_price-teaser__btn {
  display: block;
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
  border: none;
  border-radius: var(--hm-radius-pill);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.bc_hotel_price-teaser__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(59,130,246,0.35);
  color: #fff;
  text-decoration: none;
}

/* ============================================================
   DETAIL PAGE — ROOM PICKER
   ============================================================ */

.bc_rooms_modern {
  padding: 48px 0;
  background: var(--hm-bg-surface);
}
.bc_rooms_modern__heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--hm-text-dark);
  margin-bottom: 24px;
}
.bc_rooms_modern__search-bar {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  box-shadow: var(--hm-shadow-card);
}
.bc_rooms_modern__search-bar .form-group { margin-bottom: 0; flex: 1; min-width: 180px; }
.bc_rooms_modern__search-bar .btn-search {
  padding: 12px 28px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
  border: none;
  border-radius: var(--hm-radius-pill);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.bc_rooms_modern__search-bar .btn-search:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(59,130,246,0.35);
}

/* Room Card */
.bc_rooms_modern__card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  margin-bottom: 20px;
  box-shadow: var(--hm-shadow-card);
  opacity: 0;
  transform: translateY(20px);
  transition: box-shadow 300ms ease;
}
.bc_rooms_modern__card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 400ms ease-out, transform 400ms ease-out, box-shadow 300ms ease;
}
.bc_rooms_modern__card:hover { box-shadow: var(--hm-shadow-hover); }
.bc_rooms_modern__img {
  width: 240px;
  min-height: 180px;
  object-fit: cover;
  flex-shrink: 0;
  cursor: pointer;
  display: block;
}
.bc_rooms_modern__info {
  flex: 1;
  padding: 22px 24px;
  min-width: 0;
}
.bc_rooms_modern__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--hm-text-dark);
  margin-bottom: 6px;
}
.bc_rooms_modern__meta {
  font-size: 13px;
  color: var(--hm-text-mid);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.bc_rooms_modern__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.bc_rooms_modern__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bc_rooms_modern__chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--hm-bg-surface);
  border-radius: 20px;
  font-size: 12px;
  color: var(--hm-text-mid);
}
.bc_rooms_modern__price-col {
  width: 200px;
  flex-shrink: 0;
  background: var(--hm-bg-surface);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid rgba(0,0,0,0.06);
}
.bc_rooms_modern__price-amount {
  font-size: 26px;
  font-weight: 800;
  color: var(--hm-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.bc_rooms_modern__price-label {
  font-size: 13px;
  color: var(--hm-text-light);
  margin-bottom: 18px;
}
.bc_rooms_modern__reserve-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
  border: none;
  border-radius: var(--hm-radius-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.bc_rooms_modern__reserve-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59,130,246,0.35);
  color: #fff;
  text-decoration: none;
}

/* Skeleton Loaders */
@keyframes hotelShimmer {
  from { background-position: -600px 0; }
  to   { background-position:  600px 0; }
}
.bc_rooms_modern__skeleton {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  margin-bottom: 20px;
  height: 180px;
}
.bc_rooms_modern__skeleton-bar {
  flex: 1;
  background: linear-gradient(
    90deg,
    #f0f2f4 25%,
    #e8eaed 50%,
    #f0f2f4 75%
  );
  background-size: 600px 100%;
  animation: hotelShimmer 1500ms linear infinite;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .bc_cinema_hero__bg                  { animation: none; }
  .bc_cinema_hero__badge,
  .bc_cinema_hero__name,
  .bc_cinema_hero__info                { opacity: 1; transform: none; transition: none; }
  .reveal-on-scroll                    { opacity: 1; transform: none; transition: none; }
  .bc_hotel_card                       { transition: box-shadow 200ms ease; }
  .bc_hotel_card:hover                 { transform: none; }
  .bc_hotel_card__image img            { transition: none; }
  .bc_hotel_card:hover .bc_hotel_card__image img { transform: none; }
  .bc_rooms_modern__skeleton-bar       { animation: none; background: #f0f2f4; }
  .bc_cinema_filmstrip__thumb          { transition: box-shadow 200ms ease; }
  .bc_cinema_filmstrip__thumb:hover    { transform: none; filter: none; }
  .bc_hotel_tabs                       { transition: none; }
  .bc_hotel_modern__filter-panel       { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1199px) {
  .bc_hotel_modern__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .bc_hotel_modern__content-row { flex-direction: column; }
  .bc_hotel_modern__filter-panel {
    position: fixed !important;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 20px 20px 0 0;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    transform: translateY(100%);
    max-height: 85vh !important;
    transition: transform 300ms ease, opacity 300ms ease !important;
  }
  .bc_hotel_modern__filter-panel.open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .bc_cinema_hero__name { font-size: 30px; }
  .bc_cinema_hero__content { padding: 24px 20px 30px; }
  .bc_cinema_hero__meta { max-width: 80%; }
  .bc_rooms_modern__img { width: 180px; }
  .bc_rooms_modern__price-col { width: 160px; }
}

@media (max-width: 575px) {
  .bc_hotel_modern__grid { grid-template-columns: 1fr; }
  .bc_cinema_hero { min-height: 500px; height: 85vh; }
  .bc_cinema_hero__name { font-size: 26px; }
  .bc_cinema_hero__photos-btn { display: none; }
  .bc_cinema_filmstrip__thumb { width: 140px; height: 95px; }
  .bc_rooms_modern__card { flex-direction: column; }
  .bc_rooms_modern__img { width: 100%; height: 200px; }
  .bc_rooms_modern__price-col {
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.06);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .bc_rooms_modern__price-label { margin-bottom: 0; }
  .bc_rooms_modern__reserve-btn { width: auto; white-space: nowrap; }
  .bc_hotel_quick-info { position: static; }
}

/* ============================================================
   PREMIUM UPGRADE & ALIGNMENT STYLES
   ============================================================ */

/* Typography System */
.font-serif {
    font-family: 'Gelasio', Georgia, serif !important;
}
.font-size-26 {
    font-size: 1.625rem !important;
}
.font-size-24 {
    font-size: 1.5rem !important;
}

/* Staggered Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }

/* ── Booking Card ───────────────────────────────────────────── */
#tbw-card {
    background: #fff;
    border-radius: 18px;
    overflow: visible;
    box-shadow:
        0 0 0 1px rgba(37, 99, 235, 0.05),
        0 4px 6px -2px rgba(0,0,0,0.04),
        0 14px 40px -8px rgba(37, 99, 235, 0.1),
        0 28px 60px -20px rgba(0,0,0,0.08);
    transition: box-shadow .3s, transform .3s;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
#tbw-card:hover {
    box-shadow:
        0 0 0 1px rgba(37, 99, 235, 0.1),
        0 8px 16px -4px rgba(0,0,0,0.06),
        0 20px 52px -10px rgba(37, 99, 235, 0.1),
        0 36px 72px -24px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}
#tbw-hdr {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 18px 24px;
    position: relative; overflow: hidden;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}
#tbw-hdr::before {
    content:''; position:absolute; top:-30px; right:-30px;
    width:110px; height:110px; border-radius:50%;
    background:rgba(255,255,255,.06);
}
#tbw-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(255,255,255,.15); border-radius: 20px;
    padding: 3px 10px; margin-bottom: 6px;
    font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
    text-transform: uppercase; color: rgba(255,255,255,.85);
}
#tbw-badge i { font-size: 9px; }
#tbw-htitle {
    font-size: 18px; font-weight: 700; color: #fff;
    margin: 0 0 8px; line-height: 1.2;
}
#tbw-prow {
    display: flex; align-items: baseline; gap: 5px;
}
#tbw-pfrom {
    font-size: 10px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: rgba(255,255,255,.6);
}
#tbw-pamt {
    font-size: 26px; font-weight: 800; color: #fff;
    line-height: 1; letter-spacing: -1px;
}
#tbw-pper {
    font-size: 11px; color: rgba(255,255,255,.55);
    align-self: flex-end; padding-bottom: 2px; margin-left: 1px;
}
#tbw-body { padding: 20px; }
.tbw-lbl {
    display: flex; align-items: center; gap: 6px;
    font-size: 10px; font-weight: 700; letter-spacing: 1.1px;
    text-transform: uppercase; color: #94a3b8; margin-bottom: 7px;
}
.tbw-lbl i { color: #2563eb; font-size: 11px; }
.tbw-hr { border: none; border-top: 1px solid #f1f5f9; margin: 16px 0; }
.tbw-bd-line {
    display: flex; justify-content: space-between;
    font-size: 13px; color: #64748b; padding: 5px 0;
}
.tbw-bd-line span:last-child { font-weight: 600; color: #0f172a; }
#tbw-total-row {
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30,111,217,.03) 100%);
    border: 1.5px solid rgba(37, 99, 235, 0.1);
    border-radius: 12px; padding: 12px 14px; margin-top: 10px;
}
#tbw-total-label { font-size: 11px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: .8px; }
#tbw-total-val { font-size: 24px; font-weight: 800; color: #2563eb; letter-spacing: -0.5px; line-height: 1; }
#tbw-cta {
    display: block; width: 100%;
    margin-top: 16px; padding: 14px 18px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff; border: none;
    border-radius: 50px;
    font-size: 15px; font-weight: 700;
    letter-spacing: .3px; cursor: pointer;
    text-align: center;
    transition: transform .22s, box-shadow .22s, filter .22s;
    box-shadow: 0 7px 22px -4px rgba(37, 99, 235, 0.42);
}
#tbw-cta:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 14px 30px -6px rgba(30,111,217,.52);
    filter: brightness(1.06);
    color: #fff;
    text-decoration: none;
}
#tbw-cta:disabled { opacity:.6; cursor:not-allowed; transform:none; }
#tbw-trust {
    display: flex; justify-content: center; gap: 16px;
    padding-top: 12px; margin-top: 14px;
    border-top: 1px solid #f1f5f9;
}
.tbw-ti {
    display: flex; align-items: center; gap: 4px;
    font-size: 10px; font-weight: 600; color: #94a3b8;
    text-transform: uppercase; letter-spacing: .5px;
}
.tbw-ti i { color: #48bb78; font-size: 11px; }

.btn-book-now {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 14px;
    box-shadow: 0 7px 22px -4px rgba(37, 99, 235, 0.42);
}
.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -6px rgba(30, 111, 217, 0.5);
    color: white;
    text-decoration: none;
}
.form-group-modern {
    margin-bottom: 14px;
}
.form-label-modern {
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    margin-bottom: 6px;
    display: block;
}
.form-control-modern {
    width: 100%;
    padding: 0 16px;
    height: 44px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    transition: all 0.2s ease;
}
.form-control-modern:hover {
    border-color: #2563eb;
}

/* Redesigned Room Cards */
.bc_rooms_modern__card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: none;
}
.bc_rooms_modern__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -8px rgba(59, 130, 246, 0.15), 0 4px 12px -2px rgba(0, 0, 0, 0.05);
    border-color: rgba(59, 130, 246, 0.25);
}
.bc_rooms_modern__img-wrap {
    width: 280px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}
.bc_rooms_modern__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.bc_rooms_modern__card:hover .bc_rooms_modern__img {
    transform: scale(1.04);
}
.bc_rooms_modern__img-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    z-index: 2;
}
.bc_rooms_modern__info {
    flex: 1;
    padding: 24px;
    min-width: 0;
}
.bc_rooms_modern__name {
    font-size: 20px;
    font-weight: 700;
    color: #1a2b48;
    margin-bottom: 10px;
}
.bc_rooms_modern__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #5e6d77;
    margin-right: 18px;
}
.bc_rooms_modern__meta-item i {
    font-size: 14px;
}
.bc_rooms_modern__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background-color: rgba(37, 99, 235, 0.06);
    color: #2563eb;
    font-weight: 600;
    border-radius: 50px;
    font-size: 12px;
    margin-right: 6px;
    margin-bottom: 6px;
}
.bc_rooms_modern__chip i {
    font-size: 11px;
}
.bc_rooms_modern__price-col {
    width: 220px;
    background: #f8fafc;
    padding: 24px;
    border-left: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
}

/* Sticky tabs navigation fixes */
.bc_hotel_tabs {
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
    border-bottom: 1px solid #f1f5f9;
}
.bc_hotel_tabs__tab {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
}
.bc_hotel_tabs__tab.active {
    color: #2563eb !important;
}
.bc_hotel_tabs__indicator {
    background: #2563eb !important;
}

@media (max-width: 991px) {
    .bc_rooms_modern__img-wrap {
        width: 200px;
    }
    .bc_rooms_modern__price-col {
        width: 180px;
    }
}
@media (max-width: 767px) {
    .bc_rooms_modern__card {
        flex-direction: column;
    }
    .bc_rooms_modern__img-wrap {
        width: 100%;
        height: 200px;
    }
    .bc_rooms_modern__price-col {
        width: 100%;
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.06);
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px 24px;
    }
    .bc_rooms_modern__price-label {
        margin-bottom: 0;
    }
    .bc_rooms_modern__price-col select {
        margin-bottom: 0 !important;
        max-width: 140px;
    }
    .bc-room-selector {
        max-width: 160px;
        margin-bottom: 0 !important;
    }
}

/* Stepper & Room Selector Controls */
.btn-select-room {
    border-color: #2563eb;
    color: #2563eb;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 16px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-select-room:hover {
    background-color: #2563eb;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}
.room-stepper-wrapper {
    background: #ffffff;
    border-radius: 30px;
    padding: 3px;
    border: 1.5px solid #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}
.btn-step {
    width: 28px;
    height: 28px;
    border-radius: 50% !important;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    background: #f1f5f9;
    color: #2563eb;
    font-size: 11px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}
.btn-step:hover:not(:disabled) {
    background: #2563eb;
    color: #fff;
}
.btn-step:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.room-step-count {
    font-size: 13px;
    color: #1a2b48;
    margin: 0 10px;
    white-space: nowrap;
}

/* Toast Notifications */
#luxury-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.luxury-toast {
    background: rgba(26, 43, 72, 0.95);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.luxury-toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Validation Highlights */
.highlight-pulse-error {
    animation: pulseErrorBorder 1.5s infinite alternate;
}
@keyframes pulseErrorBorder {
    0% {
        border-color: #ef4444;
        box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.1);
    }
    100% {
        border-color: #b91c1c;
        box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.3);
    }
}

/* Sticky Booking Card on Desktop */
@media (min-width: 992px) {
    #tbw-card {
        position: sticky;
        top: 90px;
        z-index: 100;
    }
}

@keyframes pulseBooking {
    0% {
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
        border-color: rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 10px 35px rgba(37, 99, 235, 0.45);
        border-color: var(--hm-primary);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
        border-color: rgba(37, 99, 235, 0.3);
    }
}
.highlight-pulse-booking {
    animation: pulseBooking 1s ease-in-out 2 alternate;
    transition: all 0.3s ease;
}

/* ─────────────────────────────────────────────────────────────
   AMENITIES & PREMIUM ATTRIBUTES SYSTEM (Upgraded)
   ───────────────────────────────────────────────────────────── */
.bc-amenity-card {
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
}
.bc-amenity-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(37, 99, 235, 0.2) !important;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08) !important;
}

.bg-decoration {
    position: absolute;
    top: -3rem;
    right: -3rem;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%) !important;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: none;
    z-index: 0;
}
.bc-amenity-card:hover .bg-decoration {
    transform: scale(1.8) translate(-10px, 10px) !important;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 75%) !important;
}

.icon-box-gradient {
    width: 3.8rem !important;
    height: 3.8rem !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.bc-amenity-card:hover .icon-box-gradient {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.4) !important;
}
.bc-amenity-card h3 {
    transition: color 0.3s ease;
}
.bc-amenity-card:hover h3 {
    color: #1d4ed8 !important;
}

