/* ============================================================
   RESET & TOKENS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy:       #0d1f38;
  --navy-deep:  #08152a;
  --navy-mid:   #1a3358;
  --slate:      #2d4a6e;
  --cream:      #faf9f6;
  --white:      #ffffff;
  --off-white:  #f7f6f3;

  --text-primary:   #0d1f38;
  --text-secondary: #4a5568;
  --text-muted:     #718096;
  --text-light:     #a0aec0;

  --border:         #e2e8f0;
  --border-light:   #edf2f7;
  --border-mid:     #cbd5e0;

  --accent:         #d97706;   /* amber */
  --accent-deep:    #b45309;
  --accent-light:   #fffbeb;
  --accent-border:  #fcd34d;

  --coral:          #e05e3c;
  --coral-hover:    #c94e2c;
  --coral-light:    #fff5f2;

  --green:          #16a34a;
  --green-bg:       #f0fdf4;
  --green-border:   #bbf7d0;

  --gold:           #b7892a;
  --gold-light:     #fef9e7;

  --shadow-xs:  0 1px 2px rgba(13,31,56,.06);
  --shadow-sm:  0 1px 4px rgba(13,31,56,.08), 0 1px 2px rgba(13,31,56,.05);
  --shadow-md:  0 4px 16px rgba(13,31,56,.10), 0 2px 4px rgba(13,31,56,.06);
  --shadow-lg:  0 12px 40px rgba(13,31,56,.13), 0 4px 12px rgba(13,31,56,.07);
  --shadow-xl:  0 24px 64px rgba(13,31,56,.16), 0 8px 24px rgba(13,31,56,.08);

  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #eef1f6;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 4px; }

/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 9px 20px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ab-badge {
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ab-link { color: var(--accent-border); text-decoration: underline; cursor: pointer; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 62px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 0;
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  margin-right: 28px;
}
.nav-logo em { font-style: italic; color: var(--coral); }

/* Inline search bar */
.nav-search {
  flex: 1;
  max-width: 680px;
  display: flex;
  align-items: center;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 40px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  height: 42px;
}
.nav-search:focus-within {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13,31,56,.07);
}
.ns-field {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  color: var(--text-primary);
  outline: none;
  height: 100%;
}
.ns-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}
.ns-btn {
  flex-shrink: 0;
  margin: 4px;
  padding: 0 18px;
  height: 32px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ns-btn:hover { background: var(--coral-hover); }
.ns-btn svg { width: 14px; height: 14px; }

.nav-spacer { flex: 1; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 20px;
}
.nav-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.nav-btn:hover { border-color: var(--navy); color: var(--navy); background: var(--off-white); }
.nav-btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  font-weight: 600;
}
.nav-btn-primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: var(--white); }

/* ============================================================
   SEARCH STRIP  (below nav)
   ============================================================ */
.search-strip {
  background: var(--navy);
  padding: 0 28px;
}
.search-strip-inner {
  display: flex;
  align-items: center;
  gap: 2px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 14px 0;
}
.ss-field {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
}
.ss-field:hover, .ss-field:focus-within {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.3);
}
.ss-field + .ss-field { margin-left: 6px; }
.ss-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,.5);
  margin-bottom: 3px;
}
.ss-value {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ss-value.placeholder { font-weight: 400; color: rgba(255,255,255,.45); }
.ss-go {
  flex-shrink: 0;
  margin-left: 10px;
  padding: 0 28px;
  height: 52px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ss-go:hover { background: var(--coral-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(208,78,44,.35); }

/* ============================================================
   BREADCRUMB & HEADING ROW
   ============================================================ */
.page-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
}
.page-header-inner {
  max-width: 1380px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0 0;
  font-size: 12px;
  color: var(--text-light);
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); text-decoration: underline; }
.breadcrumb-sep { color: var(--border-mid); }

.page-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px 0 16px;
  gap: 16px;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.4px;
}
.page-title-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 400;
}
.title-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-outline {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-primary);
  cursor: pointer;
  transition: all .2s;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); background: var(--off-white); }
.btn-map { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-map:hover { background: var(--navy-mid); color: var(--white); }

/* ============================================================
   FILTER CHIPS ROW
   ============================================================ */
.filter-chips-row {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
}
.filter-chips-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-chips-inner::-webkit-scrollbar { display: none; }
.fchip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.fchip:hover { border-color: var(--navy); color: var(--navy); }
.fchip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.fchip.active .fchip-x { opacity: 0.7; }
.fchip-x {
  font-size: 15px;
  line-height: 1;
  color: inherit;
  margin-left: 2px;
}
.fchip-clear {
  background: var(--coral-light);
  border-color: var(--coral);
  color: var(--coral);
  font-weight: 600;
}
.fchip-clear:hover { background: var(--coral); color: var(--white); }
.chip-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 4px;
}

/* ============================================================
   MAIN BODY LAYOUT
   ============================================================ */
.page-body {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 296px 1fr;
  gap: 0;
  padding: 0 28px;
  align-items: start;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  background: var(--white);
  border-right: 1px solid var(--border);
  min-height: calc(100vh - 180px);
  padding: 0;
  position: sticky;
  top: 62px;
  max-height: calc(100vh - 62px);
  overflow-y: auto;
}
.sidebar::-webkit-scrollbar { width: 3px; }
.sidebar::-webkit-scrollbar-thumb { background: var(--border); }

.sidebar-section {
  padding: 20px 22px;
  border-bottom: 1px solid var(--border-light);
}
.sidebar-section:last-child { border-bottom: none; }

.ss-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ss-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
}
.ss-reset {
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
}
.ss-reset:hover { text-decoration: underline; }

/* Map toggle button */
.map-btn {
  width: 100%;
  padding: 11px 14px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .2s;
  margin-bottom: 16px;
}
.map-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Price range slider */
.price-range-wrap { padding: 2px 0; }
.price-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(to right, var(--navy) 0%, var(--navy) 45%, var(--border-mid) 45%, var(--border-mid) 100%);
  outline: none;
  cursor: pointer;
  margin-bottom: 10px;
}
.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--navy);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(13,31,56,.2);
  transition: box-shadow .2s;
}
.price-slider::-webkit-slider-thumb:hover { box-shadow: 0 0 0 6px rgba(13,31,56,.08); }
.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}
.price-labels strong { color: var(--navy); font-weight: 700; }

/* Star rating selector */
.star-grid {
  display: flex;
  gap: 6px;
}
.star-opt {
  flex: 1;
  padding: 8px 4px;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  color: var(--text-muted);
  background: var(--white);
}
.star-opt:hover { border-color: var(--navy); color: var(--navy); }
.star-opt.on {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* Checkbox filter items */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .15s;
}
.check-row:hover { background: var(--off-white); }
.check-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 4px;
}
.check-lbl {
  font-size: 13.5px;
  color: var(--text-primary);
  flex: 1;
  line-height: 1.3;
}
.check-count {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

/* Guest rating buttons */
.grating-list { display: flex; flex-direction: column; gap: 6px; }
.grating-btn {
  width: 100%;
  padding: 9px 12px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all .2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.grating-btn:hover { border-color: var(--navy); }
.grating-btn.on { border-color: var(--navy); background: var(--off-white); }
.gr-left { display: flex; align-items: center; gap: 8px; }
.gr-badge {
  min-width: 34px;
  padding: 3px 6px;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 5px 5px 5px 0;
  font-size: 12px;
  font-weight: 700;
}
.gr-label { font-size: 13px; font-weight: 600; color: var(--navy); }
.gr-sub { font-size: 11px; color: var(--text-light); margin-top: 1px; }
.gr-count { font-size: 12px; color: var(--text-light); }

/* ============================================================
   RESULTS PANEL
   ============================================================ */
.results-panel {
  padding: 20px 0 20px 20px;
  min-height: 100vh;
}

/* Sort + results count */
.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 10px;
}
.results-count-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.results-count-label span {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 13px;
}
.sort-row { display: flex; align-items: center; gap: 8px; }
.sort-lbl { font-size: 13px; color: var(--text-muted); }
.sort-select {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230d1f38' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.sort-select:focus { border-color: var(--navy); }

/* Quick sort pills */
.sort-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.sp {
  padding: 6px 14px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.sp:hover { border-color: var(--navy); color: var(--navy); }
.sp.active { background: var(--navy); border-color: var(--navy); color: var(--white); font-weight: 600; }

/* ============================================================
   PROMO STRIP (members)
   ============================================================ */
.promo-strip {
  background: linear-gradient(100deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-md);
}
.ps-left { display: flex; align-items: center; gap: 14px; }
.ps-icon { font-size: 26px; flex-shrink: 0; }
.ps-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.ps-sub { font-size: 12px; color: rgba(255,255,255,.55); }
.ps-btn {
  flex-shrink: 0;
  padding: 9px 18px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  white-space: nowrap;
  transition: all .2s;
}
.ps-btn:hover { background: var(--accent-deep); }

/* ============================================================
   MAP PREVIEW INLINE
   ============================================================ */
.map-preview-card {
  border-radius: var(--radius);
  height: 210px;
  background: linear-gradient(135deg, #0a1828, #14253e, #0d2240);
  border: 1px solid var(--border);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.map-preview-card:hover { box-shadow: var(--shadow-lg); }
/* Simulated map grid */
.map-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
/* Fake roads */
.map-road {
  position: absolute;
  background: rgba(255,255,255,.08);
}
.mr1 { top: 40%; left: 0; right: 0; height: 2px; }
.mr2 { top: 65%; left: 0; right: 0; height: 1px; }
.mr3 { left: 30%; top: 0; bottom: 0; width: 2px; }
.mr4 { left: 60%; top: 0; bottom: 0; width: 1px; }
/* Map pins */
.map-pin {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer;
  transition: transform .2s;
  z-index: 2;
}
.map-pin:hover { transform: translateY(-3px); }
.mp-bubble {
  padding: 5px 10px;
  background: var(--white);
  border-radius: 20px 20px 20px 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  white-space: nowrap;
}
.mp-bubble.primary { background: var(--navy); color: var(--white); }
.mp-bubble.accent-pin { background: var(--coral); color: var(--white); }
.mp-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; margin-top: 3px; }
.map-pin.p1 { top: 35%; left: 25%; color: var(--navy); }
.map-pin.p2 { top: 22%; left: 55%; color: var(--coral); }
.map-pin.p3 { top: 55%; left: 68%; color: var(--navy); }
.map-pin.p4 { top: 60%; left: 38%; color: var(--navy); }
.map-overlay-text {
  position: relative; z-index: 1;
  text-align: center;
}
.map-expand-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 8px 16px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all .2s;
}
.map-expand-btn:hover { background: var(--white); transform: translateY(-1px); }
.map-count-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   HOTEL CARD
   ============================================================ */
.hotel-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 272px 1fr;
  cursor: pointer;
  transition: all .35s cubic-bezier(.23, 1, .32, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.hotel-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
  border-color: rgba(13,31,56,.1);
}

/* Image area */
.hc-img {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.hc-img-bg {
  position: absolute;
  inset: 0;
  transition: transform .6s cubic-bezier(.23, 1, .32, 1);
}
.hotel-card:hover .hc-img-bg { transform: scale(1.06); }

/* Beautiful photo-like gradient backgrounds */
.hbg-1 {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(180,140,80,.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(80,120,200,.25) 0%, transparent 50%),
    linear-gradient(150deg, #1a2e50 0%, #243a5e 35%, #1a2040 65%, #2a1a30 100%);
}
.hbg-2 {
  background:
    radial-gradient(ellipse at 60% 80%, rgba(80,160,100,.3) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 30%, rgba(60,100,180,.2) 0%, transparent 45%),
    linear-gradient(150deg, #0f2418 0%, #1a3a22 40%, #0d2030 80%, #142030 100%);
}
.hbg-3 {
  background:
    radial-gradient(ellipse at 70% 60%, rgba(200,140,60,.3) 0%, transparent 50%),
    radial-gradient(ellipse at 25% 25%, rgba(160,80,80,.2) 0%, transparent 45%),
    linear-gradient(150deg, #2a1a10 0%, #3a2210 40%, #1e1428 70%, #2a1020 100%);
}
.hbg-4 {
  background:
    radial-gradient(ellipse at 40% 70%, rgba(60,120,200,.3) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(100,60,180,.2) 0%, transparent 45%),
    linear-gradient(150deg, #0a1828 0%, #102040 45%, #180a38 80%, #0a1430 100%);
}
.hbg-5 {
  background:
    radial-gradient(ellipse at 60% 50%, rgba(200,170,60,.25) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(180,100,40,.2) 0%, transparent 45%),
    linear-gradient(150deg, #1e1808 0%, #2a2208 40%, #181208 75%, #201810 100%);
}

.hc-img-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  opacity: .22;
  transition: transform .6s cubic-bezier(.23, 1, .32, 1), opacity .3s;
}
.hotel-card:hover .hc-img-icon { transform: scale(1.08); opacity: .3; }

/* Overlay gradient */
.hc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Badges */
.hc-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}
.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 6px;
  letter-spacing: 0.2px;
  line-height: 1;
}
.hbadge-green { background: var(--green); color: #fff; }
.hbadge-gold { background: var(--gold); color: #fff; }
.hbadge-coral { background: var(--coral); color: #fff; }
.hbadge-navy { background: var(--navy); color: #fff; }

/* Save / wishlist button */
.hc-save {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all .2s;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.hc-save:hover { background: #fff; transform: scale(1.1); }

/* Photo count */
.hc-photo-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

/* â”€â”€â”€ Card body â”€â”€â”€ */
.hc-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
}
.hc-top { margin-bottom: 10px; }
.hc-stars {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 7px;
}
.hc-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 5px;
  letter-spacing: -0.25px;
}
.hc-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 11px;
}
.hc-location-pin { font-size: 12px; }

.hc-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Amenity pills */
.hc-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: auto;
}
.amenity-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  color: var(--text-secondary);
  padding: 4px 9px;
  background: var(--off-white);
  border-radius: 6px;
  font-weight: 400;
}

/* Footer: rating + price */
.hc-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  gap: 10px;
}

.hc-rating {
  display: flex;
  align-items: center;
  gap: 9px;
}
.rating-score {
  min-width: 38px;
  padding: 6px 8px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px 8px 8px 0;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  line-height: 1;
  flex-shrink: 0;
}
.rating-score.gold-score { background: var(--gold); }
.rating-info {}
.rating-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 1px;
}
.rating-count {
  font-size: 11.5px;
  color: var(--text-light);
}

.hc-pricing { text-align: right; }
.price-was {
  font-size: 12px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 1px;
}
.price-now {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.price-per { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }
.price-total { font-size: 11.5px; color: var(--text-muted); }
.price-free-cancel { font-size: 11px; color: var(--green); font-weight: 700; margin-top: 4px; }
.reserve-btn {
  display: block;
  width: 100%;
  margin-top: 11px;
  padding: 11px 16px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .2s;
  text-align: center;
  letter-spacing: 0.1px;
}
.reserve-btn:hover { background: var(--coral-hover); transform: translateY(-1px); box-shadow: 0 5px 16px rgba(208,78,44,.3); }

/* Sponsored label */
.sponsored-label {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  color: var(--text-light);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--white);
  z-index: 2;
}

/* ============================================================
   LOAD MORE + PAGINATION
   ============================================================ */
.load-more-btn {
  width: 100%;
  padding: 13px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all .2s;
  margin-bottom: 20px;
}
.load-more-btn:hover { background: var(--off-white); border-color: var(--navy); }

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 32px;
}
.pg {
  min-width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  transition: all .2s;
}
.pg:hover { border-color: var(--navy); color: var(--navy); }
.pg.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.pg-dots { color: var(--text-light); font-size: 13px; padding: 0 4px; }

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 1100px) {
  .page-body { grid-template-columns: 260px 1fr; }
  .hotel-card { grid-template-columns: 240px 1fr; }
}

/* ============================================================
   MICRO-ANIMATIONS
   ============================================================ */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hotel-card {
  animation: fadeSlideIn .5s ease both;
}
.hotel-card:nth-child(2) { animation-delay: .08s; }
.hotel-card:nth-child(3) { animation-delay: .14s; }
.hotel-card:nth-child(4) { animation-delay: .20s; }
.hotel-card:nth-child(5) { animation-delay: .26s; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: 40px 28px 24px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}
.footer-logo em { font-style: italic; color: var(--coral); }
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }
