/* =============================================
   I-BOOIKNG — Complete Design System
   ============================================= */

/* ---- VARIABLES ---- */
:root {
  --primary: #FF385C;
  --primary-dark: #D93B30;
  --primary-light: rgba(255,56,92,0.1);
  --text-dark: #222222;
  --text-mid: #484848;
  --text-secondary: #717171;
  --text-light: #B0B0B0;
  --border: #DDDDDD;
  --border-dark: #B0B0B0;
  --bg: #FFFFFF;
  --bg-light: #F7F7F7;
  --shadow-xs: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.13);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 56px rgba(0,0,0,0.20);
  --radius-card: 16px;
  --radius-btn: 999px;
  --radius-input: 12px;
  --t-fast: 150ms ease;
  --t: 250ms ease;
  --t-slow: 400ms ease;
}

/* ---- RESET ---- */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration:none; color:inherit; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
img { max-width:100%; display:block; }
ul { list-style:none; }
input,select,textarea { font-family:inherit; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 { font-weight:600; line-height:1.2; color:var(--text-dark); }

/* =============================================
   HEADER
   ============================================= */
#main-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
#main-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Row 1 */
.header-row1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
  position: relative;
}

/* Logo */
.header-logo a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  letter-spacing: -0.5px;
}
.logo-svg { width: 30px; height: 30px; }
.brand-logo { height: 38px; width: auto; display: block; object-fit: contain; }
@media (max-width: 768px) { .brand-logo { height: 30px; } }

/* Center Nav Tabs */
.header-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2px;
  transition: opacity var(--t), visibility var(--t);
}
.nav-tab {
  position: relative;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-btn);
  transition: all var(--t-fast);
  white-space: nowrap;
  border: none;
  background: none;
}
.nav-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 999px;
  transition: transform var(--t);
}
.nav-tab:hover { background: var(--bg-light); color: var(--text-dark); }
.nav-tab.active { color: var(--text-dark); font-weight: 600; }
.nav-tab.active::after { transform: translateX(-50%) scaleX(1); }

/* Pro badge */
.tab-pro {
  font-size: 9px;
  font-weight: 700;
  background: var(--text-dark);
  color: white;
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: super;
  letter-spacing: 0.05em;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.become-host-btn {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-btn);
  transition: background var(--t-fast);
  white-space: nowrap;
  border: none;
  background: none;
  cursor: pointer;
}
.become-host-btn:hover { background: var(--bg-light); }

.user-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 6px 5px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--bg);
  transition: box-shadow var(--t-fast);
  cursor: pointer;
}
.user-menu-btn:hover { box-shadow: var(--shadow-md); }

.hamburger-icon { font-size: 14px; color: var(--text-dark); }
.user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--text-secondary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  overflow: hidden;
  flex-shrink: 0;
}

/* Row 2 — Search Bar */
.header-row2 {
  padding: 0 0 16px;
  display: flex;
  justify-content: center;
  transition: all var(--t);
  overflow: hidden;
}

.search-bar {
  display: flex;
  align-items: stretch;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-sm);
  height: 66px;
  width: 100%;
  max-width: 860px;
  transition: box-shadow var(--t);
  overflow: visible;
  position: relative;
}
.search-bar:hover { box-shadow: var(--shadow-md); }

.search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 20px;
  cursor: pointer;
  transition: background var(--t-fast);
  border-radius: var(--radius-btn);
  position: relative;
  min-width: 0;
}
.search-field + .search-field::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--border);
}
.search-field:hover { background: var(--bg-light); }
.search-field.active { background: white; box-shadow: var(--shadow-md); z-index: 2; }
.search-field.active + .search-field::before,
.search-field:hover + .search-field::before { opacity: 0; }

.sf-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
  white-space: nowrap;
}
.sf-value {
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sf-value.has-value { color: var(--text-dark); }

.search-btn-wrap {
  display: flex;
  align-items: center;
  padding: 7px;
  flex-shrink: 0;
}
.search-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all var(--t-fast);
  border: none;
  cursor: pointer;
}
.search-btn:hover { background: var(--primary-dark); transform: scale(1.05); }
.search-btn.wide {
  width: auto;
  border-radius: var(--radius-btn);
  padding: 0 20px;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

/* Compact Search Pill (on scroll) */
.search-compact {
  display: none;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 10px 10px 10px 18px;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: box-shadow var(--t-fast);
  white-space: nowrap;
  gap: 0;
}
.search-compact:hover { box-shadow: var(--shadow-md); }
.sc-text { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.sc-sep { width: 1px; height: 18px; background: var(--border); margin: 0 12px; }
.sc-sub { font-size: 13px; color: var(--text-secondary); }
.sc-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: 12px;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}

/* Scrolled header state */
#main-header.scrolled .header-row2 { height: 0; padding: 0; opacity: 0; pointer-events: none; }
#main-header.scrolled .header-nav { opacity: 0; visibility: hidden; pointer-events: none; }
#main-header.scrolled .search-compact { display: flex; }

/* Compact pill is absolutely centred on desktop */
.search-compact {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .search-compact {
    position: static;
    transform: none;
    flex: 1;
    margin: 0 8px;
  }
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 490;
  pointer-events: none;
}
.search-overlay.active { pointer-events: all; }
.search-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity var(--t);
}
.search-overlay.active .search-overlay-bg { opacity: 1; }

/* Expanded Search Panel */
.search-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  border-radius: 0 0 24px 24px;
  padding: 14px 18px 18px;
  box-shadow: var(--shadow-xl);
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 300ms cubic-bezier(0.4,0,0.2,1), opacity 300ms ease;
  z-index: 491;
}
.search-overlay.active .search-panel { transform: translateY(0); opacity: 1; }

.search-panel-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 13px;
}
.sp-tab {
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  color: var(--text-secondary);
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--t-fast);
}
.sp-tab:hover { border-color: var(--text-dark); color: var(--text-dark); }
.sp-tab.active { background: var(--text-dark); color: white; border-color: var(--text-dark); }

.search-panel-form {
  display: none;
  max-width: 800px;
  margin: 0 auto;
}
.search-panel-form.active { display: grid; }
.spf-stays { grid-template-columns: 2fr 1.4fr 1.4fr 1.4fr auto; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-btn); overflow: hidden; }
.spf-exp { grid-template-columns: 2fr 1.5fr 1.5fr auto; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-btn); }
.spf-svc { grid-template-columns: 2fr 1.5fr 1.5fr 1fr auto; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-btn); }

.sp-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9px 16px;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--t-fast), box-shadow var(--t-fast);
  min-width: 0;
}
.sp-field:last-of-type { border-right: none; }
.sp-field:hover { background: var(--bg-light); }
/* clear active field highlight — more functional focus feedback */
.sp-field:focus-within, .sp-field:focus-visible { background: var(--bg-light); box-shadow: inset 0 0 0 2px var(--text-dark); border-radius: 14px; outline: none; }
.sp-field-label { font-size: 10.5px; font-weight: 700; margin-bottom: 2px; letter-spacing: 0.02em; color: var(--text-dark); }
.sp-field input, .sp-field select {
  border: none;
  outline: none;
  font-size: 13.5px;
  color: var(--text-dark);
  background: transparent;
  font-family: inherit;
  width: 100%;
  cursor: pointer;
}
.sp-field input::placeholder { color: var(--text-secondary); }

/* Guest counter in panel */
.guests-panel-value {
  font-size: 13.5px;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.guests-panel-value.has-guests { color: var(--text-dark); }

.sp-search-btn {
  padding: 10px 20px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  margin: 5px;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.sp-search-btn:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(255,56,92,0.4); }
.sp-search-btn:active { transform: translateY(0); }

/* Dropdown popover for guests */
.guests-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  padding: 24px;
  width: 320px;
  z-index: 600;
  display: none;
}
.guests-popover.show { display: block; animation: fadeInDown 200ms ease; }

.guest-type-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.guest-type-row:last-child { border-bottom: none; }
.guest-type-name { font-size: 15px; font-weight: 500; }
.guest-type-desc { font-size: 13px; color: var(--text-secondary); }
.counter-group {
  display: flex;
  align-items: center;
  gap: 14px;
}
.counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  background: white;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--t-fast);
  cursor: pointer;
  line-height: 1;
}
.counter-btn:hover:not(:disabled) { border-color: var(--text-dark); color: var(--text-dark); }
.counter-btn:disabled { opacity: 0.3; cursor: default; }
.counter-val { font-size: 15px; font-weight: 500; min-width: 18px; text-align: center; }

/* =============================================
   MAIN CONTENT
   ============================================= */
main { min-height: 50vh; }

/* Category Filter Bar */
.category-bar {
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--bg);
}
.category-bar::-webkit-scrollbar { display: none; }

.category-list {
  display: flex;
  gap: 28px;
  padding: 12px 0 0;
  min-width: max-content;
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--t-fast);
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.cat-item:hover { color: var(--text-dark); border-bottom-color: var(--border-dark); }
.cat-item.active { color: var(--text-dark); border-bottom-color: var(--text-dark); }
.cat-icon { font-size: 22px; }

/* =============================================
   PROPERTY SECTIONS (Horizontal Scroll)
   ============================================= */
.property-sections { padding: 24px 0 40px; }

.prop-section { margin-bottom: 48px; }

.section-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  margin-bottom: 16px;
}
.section-hdr-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.2px;
}
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.section-link:hover { color: var(--primary); }

.section-nav-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.snb {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--t-fast);
  cursor: pointer;
}
.snb:hover { border-color: var(--text-dark); box-shadow: var(--shadow-sm); }
.snb:disabled { opacity: 0.3; cursor: default; box-shadow: none; border-color: var(--border); }

/* Scroll track */
.props-track-wrap { overflow: hidden; position: relative; }
.props-track-wrap::before,
.props-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 16px;
  width: 48px;
  z-index: 3;
  pointer-events: none;
}
.props-track-wrap::before { left: 0; background: linear-gradient(to right, white 40%, transparent); }
.props-track-wrap::after { right: 0; background: linear-gradient(to left, white 40%, transparent); }

.props-track {
  display: flex;
  gap: 12px;
  padding: 4px 24px 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.props-track::-webkit-scrollbar { display: none; }

/* =============================================
   PROPERTY CARD
   ============================================= */
.prop-card {
  flex: 0 0 220px;
  width: 220px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform var(--t);
}
.prop-card:hover { transform: translateY(-4px); }

/* Image */
.card-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-light);
  margin-bottom: 10px;
}
.card-carousel-inner {
  display: flex;
  height: 100%;
  transition: transform 380ms cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.card-carousel-img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  user-select: none;
  -webkit-user-drag: none;
}

/* Heart */
.heart-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: transform var(--t-fast);
}
.heart-btn:hover { transform: scale(1.15); }
.heart-icon {
  font-size: 22px;
  color: rgba(255,255,255,0.9);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
  transition: all var(--t-fast);
  line-height: 1;
}
.heart-btn.wishlisted .heart-icon { color: var(--primary); filter: none; }

/* Guest Favourite badge */
.gf-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: white;
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
  pointer-events: none;
}

/* Carousel arrows */
.car-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  opacity: 0;
  transition: opacity var(--t-fast);
  pointer-events: none;
  z-index: 4;
}
.card-img-wrap:hover .car-arrows { opacity: 1; pointer-events: all; }
.car-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  border: none;
  cursor: pointer;
  transition: transform var(--t-fast);
}
.car-btn:hover { transform: scale(1.1); }
.car-btn:disabled { opacity: 0; pointer-events: none; }

/* Carousel dots */
.car-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity var(--t-fast);
  pointer-events: none;
  z-index: 4;
}
.card-img-wrap:hover .car-dots { opacity: 1; }
.car-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transition: all var(--t-fast);
}
.car-dot.on { background: white; transform: scale(1.25); }

/* Card info */
.card-info { padding: 0 2px; }
.card-info-r1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 1px;
}
.card-loc {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.card-rating {
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.star { color: var(--text-dark); }
.card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1px;
}
.card-price-line {
  font-size: 13px;
  color: var(--text-dark);
  margin-top: 2px;
}
.card-price-line strong { font-weight: 600; }
.card-price-unit { color: var(--text-light, #717171); font-weight: 400; }

/* =============================================
   INSPIRATION SECTION
   ============================================= */
.inspiration-section {
  border-top: 1px solid var(--border);
  padding: 40px 24px 48px;
}
.inspiration-section h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.insp-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.insp-tabs::-webkit-scrollbar { display: none; }
.insp-tab {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  transition: all var(--t-fast);
}
.insp-tab.active { color: var(--text-dark); border-bottom-color: var(--text-dark); }
.insp-tab:hover { color: var(--text-dark); }

.insp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 12px;
  row-gap: 2px;
}
.insp-item { padding: 6px 0; }
.insp-city { font-size: 14px; font-weight: 500; display: block; color: var(--text-dark); }
.insp-type { font-size: 12px; color: var(--text-secondary); display: block; }

.show-more-btn {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.show-more-btn:hover { color: var(--primary); }

/* =============================================
   HOST CTA BANNER
   ============================================= */
.host-cta-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 1180px;
  margin: 48px auto;
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
  border-radius: 28px;
  background: linear-gradient(130deg, #0d7585 0%, #128499 46%, #ef5a4d 128%);
  box-shadow: 0 26px 60px rgba(13,117,133,0.30);
}
.host-cta-banner::before {
  content: ''; position: absolute; z-index: -1; top: -90px; right: -70px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
}
.host-cta-banner::after {
  content: ''; position: absolute; z-index: -1; bottom: -100px; left: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 70%);
}
.host-cta-text h2 { font-size: 34px; font-weight: 800; margin-bottom: 14px; line-height: 1.2; color: #fff; letter-spacing: -0.4px; }
.host-cta-text p { font-size: 16px; color: rgba(255,255,255,0.92); margin-bottom: 28px; line-height: 1.65; }
.host-cta-banner .btn-primary {
  background: #fff; color: #0f7d92; border: none; font-weight: 700;
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}
.host-cta-banner .btn-primary:hover { background: #f1fbfd; color: #0a5e6f; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0,0,0,0.24); }
.host-cta-img { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 22px 46px rgba(8,28,34,0.40); }
.host-cta-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.host-cta-banner:hover .host-cta-img img { transform: scale(1.05); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 40px 40px 0;
  border-bottom: 1px solid var(--border);
}
.footer-col-inner { padding: 0 0 32px; }
.footer-col-hd {
  font-size: 12.5px; font-weight: 700; color: var(--text-dark);
  margin-bottom: 14px; text-transform: none;
}
.footer-col-inner ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col-inner ul li a {
  font-size: 13px; color: var(--text-secondary);
  transition: color var(--t-fast); text-decoration: none;
}
.footer-col-inner ul li a:hover { color: var(--text-dark); text-decoration: underline; }

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bl {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-secondary);
}
.footer-bl a { color: var(--text-secondary); text-decoration: none; transition: color var(--t-fast); }
.footer-bl a:hover { color: var(--text-dark); text-decoration: underline; }
.footer-bl-dot { width: 3px; height: 3px; background: var(--text-secondary); border-radius: 50%; flex-shrink: 0; }

.footer-br { display: flex; align-items: center; gap: 20px; }
.footer-lang-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--text-dark);
  cursor: pointer; background: none; border: none;
  padding: 6px 10px; border-radius: 8px; transition: background var(--t-fast);
}
.footer-lang-btn:hover { background: var(--border); }
.footer-curr { font-size: 13px; font-weight: 600; color: var(--text-dark); cursor: pointer; }
.footer-socials { display: flex; gap: 18px; }
.footer-socials a {
  font-size: 18px;
  color: var(--text-dark);
  transition: color var(--t-fast);
  text-decoration: none;
  display: flex;
}
.footer-socials a:hover { color: var(--primary); }

/* =============================================
   MOBILE BOTTOM NAV
   ============================================= */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: white;
  border-top: 1px solid var(--border);
  padding: 6px 0 max(env(safe-area-inset-bottom), 6px);
}
.mobile-nav-list {
  display: flex;
  justify-content: space-around;
}
.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 16px;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  min-width: 56px;
  border: none;
  background: none;
  cursor: pointer;
  transition: color var(--t-fast);
}
.mobile-nav-item.active { color: var(--primary); }
.mobile-nav-item i { font-size: 22px; display: block; }

/* Mobile search button */
.mobile-search-trigger {
  display: none;
  width: 100%;
  margin: 0 0 12px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-sm);
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* =============================================
   MOBILE SEARCH MODAL
   ============================================= */
.mobile-search-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #fff;
  display: none;
  flex-direction: column;
}
@keyframes msmSlideUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.mobile-search-modal.show { display: flex; animation: msmSlideUp 320ms cubic-bezier(.2,.8,.25,1) both; }
.msm-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.msm-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  cursor: pointer;
  background: var(--bg-light);
  color: var(--text-dark);
  transition: background var(--t-fast), transform .25s ease;
}
.msm-close:hover { background: #ececec; transform: rotate(90deg); }
.msm-title { font-size: 16px; font-weight: 700; }
.msm-body { flex: 1; overflow-y: auto; padding: 26px 18px; }
.msm-step { display: none; }
.msm-step.active { display: block; animation: msmSlideUp 300ms ease both; }
.msm-step-title { font-size: 25px; font-weight: 800; letter-spacing: -.3px; margin-bottom: 18px; }
.msm-input {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid transparent;
  background: var(--bg-light);
  border-radius: 14px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.msm-input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px var(--primary-light); }
.msm-suggestions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.msm-suggestion {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.msm-suggestion:hover { background: var(--primary-light); border-color: rgba(255,56,92,.18); transform: translateX(4px); }
.msm-sug-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.msm-sug-name { font-size: 14.5px; font-weight: 600; }
.msm-sug-type { font-size: 12.5px; color: var(--text-secondary); margin-top: 1px; }
.msm-footer {
  padding: 16px 18px calc(16px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}
.msm-skip {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 6px;
  transition: color var(--t-fast);
}
.msm-skip:hover { color: var(--text-dark); }
.msm-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #ff5b78, var(--primary));
  color: white;
  border: none;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255,56,92,.34);
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}
.msm-next:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,56,92,.46); filter: brightness(1.04); }
.msm-next:active { transform: translateY(0) scale(.99); }

/* =============================================
   USER DROPDOWN MENU
   ============================================= */
.user-dropdown-wrap { position: relative; }
.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  padding: 8px 0;
  z-index: 600;
  display: none;
}
.user-dropdown.show { display: block; animation: fadeInDown 200ms ease; }
.dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 13px;
  color: var(--text-dark);
  cursor: pointer;
  transition: background var(--t-fast);
  text-decoration: none;
}
.dd-item:hover { background: var(--bg-light); }
.dd-item.bold { font-weight: 600; }
.dd-sep { height: 1px; background: var(--border); margin: 6px 0; }

/* =============================================
   LISTINGS PAGE
   ============================================= */
.filter-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-strip::-webkit-scrollbar { display: none; }

.fchip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  background: var(--bg);
  cursor: pointer;
  transition: all var(--t-fast);
  flex-shrink: 0;
}
.fchip:hover { border-color: var(--text-dark); }
.fchip.on { background: var(--text-dark); color: white; border-color: var(--text-dark); }
.fchip-sort { margin-left: auto; }

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px 20px;
  padding: 24px;
}
/* Listings card (larger) */
.listing-card { cursor: pointer; }
.listing-card .card-img-wrap { aspect-ratio: 4/3; border-radius: 16px; }
.listing-card:hover .card-img-wrap { box-shadow: var(--shadow-md); }

.load-more {
  display: block;
  margin: 8px auto 40px;
  padding: 14px 48px;
  border: 1.5px solid var(--text-dark);
  border-radius: var(--radius-btn);
  background: var(--bg);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
}
.load-more:hover { background: var(--text-dark); color: white; }

/* =============================================
   LISTING DETAILS PAGE
   ============================================= */
.details-page { max-width: 1120px; margin: 0 auto; padding: 0 24px 60px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
  margin-bottom: 32px;
}
.gal-main { grid-row: 1/3; overflow: hidden; }
.gal-sub { overflow: hidden; }
.gal-main img, .gal-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}
.gal-main:hover img, .gal-sub:hover img { transform: scale(1.03); }
.gallery-wrap { position: relative; }
.show-all-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: white;
  border: 1px solid var(--text-dark);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.show-all-btn:hover { background: var(--bg-light); }

.details-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  /* stretch (default) lets the right column fill the full row height so the
     sticky booking card stays pinned all the way down the page */
  align-items: stretch;
}
.details-main {}
/* Right column wrapper stretches to full height; booking card sticks within it */
.details-layout > div:last-child { align-self: stretch; }
.details-title { font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.details-sub {
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.details-rating { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; color: var(--text-dark); }
.details-dot { width: 3px; height: 3px; background: var(--text-secondary); border-radius: 50%; }

.sep { height: 1px; background: var(--border); margin: 24px 0; }

.host-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.host-info { display: flex; align-items: center; gap: 14px; }
.host-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-light);
  flex-shrink: 0;
}
.host-name { font-size: 16px; font-weight: 600; }
.host-since { font-size: 13px; color: var(--text-secondary); }

.highlights { display: flex; flex-direction: column; gap: 20px; }
.highlight-item { display: flex; gap: 16px; align-items: flex-start; }
.highlight-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.highlight-text h4 { font-size: 15px; font-weight: 600; }
.highlight-text p { font-size: 14px; color: var(--text-secondary); }

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.amenity-item i { font-size: 20px; }
.amenity-item.unavailable { color: var(--text-secondary); text-decoration: line-through; }

/* Booking Card */
.booking-card {
  position: sticky;
  top: 96px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}
.bk-price { margin-bottom: 10px; }
.bk-price-main { font-size: 22px; font-weight: 700; }
.bk-price-main span { font-size: 15px; font-weight: 400; color: var(--text-secondary); }
.bk-rating { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }
.bk-rating strong { color: var(--text-dark); }

.bk-dates {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  cursor: pointer;
}
.bk-date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.bk-date-field {
  padding: 10px 13px;
  border: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast);
  cursor: pointer;
}
.bk-date-field:first-child { border-right: 1px solid var(--border); }
.bk-date-field:hover { background: var(--bg-light); }
.bk-date-field.active { border-color: var(--text-dark); border-radius: 12px; }
.bk-field-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.bk-field-val { font-size: 13px; color: var(--text-secondary); }
.bk-field-val.set { color: var(--text-dark); }

/* ===== Guests dropdown ===== */
.bk-guests-wrap { position: relative; margin-bottom: 12px; }
.bk-guests-trigger {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: #fff;
  text-align: left;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.bk-guests-trigger:hover { background: var(--bg-light); }
.bk-guests-wrap.open .bk-guests-trigger { border-color: var(--text-dark); border-width: 2px; padding: 9px 12px; }
.bkg-trig-text { display: flex; flex-direction: column; min-width: 0; }
.bk-guests-lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-dark); margin-bottom: 3px; }
.bk-guests-val { font-size: 14px; color: var(--text-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bkg-chev { flex-shrink: 0; color: var(--text-dark); transition: transform 0.25s ease; }
.bk-guests-wrap.open .bkg-chev { transform: rotate(180deg); }

/* Bare travellers/quantity field box — used by the activity- & service-details
   booking cards (a simple stepper, not the listing page's popover selector). */
.bk-guests {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border: 1px solid var(--border); border-radius: 14px; padding: 10px 14px; margin-bottom: 12px;
}
.bk-guests-info { display: flex; flex-direction: column; min-width: 0; }

/* Popover panel */
.bk-guests-pop {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 40;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  padding: 2px 16px 12px;
  animation: bkgPop 0.18s ease;
}
.bk-guests-pop[hidden] { display: none; }
@keyframes bkgPop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

.bkg-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.bkg-row:last-of-type { border-bottom: none; }
.bkg-name { font-size: 16px; font-weight: 600; color: var(--text-dark); }
.bkg-sub { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }
.bkg-link { color: var(--text-dark); text-decoration: underline; }
.bkg-link:hover { color: var(--primary); }

.bkg-stepper { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.bkg-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-dark, #b0b0b0);
  background: #fff;
  color: #222;
  font-size: 19px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.bkg-btn:hover:not(:disabled) { border-color: #222; color: #000; }
.bkg-btn:disabled { border-color: #e4e4e4; color: #cfcfcf; cursor: not-allowed; }
.bkg-count { font-size: 15px; font-weight: 500; color: var(--text-dark); min-width: 18px; text-align: center; }
.bkg-note { font-size: 12.5px; color: var(--text-secondary); line-height: 1.45; margin: 10px 0 0; }

.reserve-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #E31C5F, #FF385C);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t-fast);
  position: relative;
  overflow: hidden;
}
.reserve-btn:hover { transform: scale(1.01); box-shadow: 0 4px 20px rgba(255,56,92,0.4); }
.reserve-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 300ms;
}
.reserve-btn:active::after { background: rgba(255,255,255,0.15); }

.price-breakdown { margin-top: 14px; border-top: 1px solid var(--border); padding-top: 14px; }
.pb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}
.pb-row.total {
  font-weight: 700;
  font-size: 15px;
  border-top: 1px solid var(--border);
  padding-top: 11px;
  margin-top: 11px;
  margin-bottom: 0;
}
.pb-row .underline { text-decoration: underline; cursor: pointer; }
.bk-note { font-size: 12px; color: var(--text-secondary); text-align: center; margin-top: 8px; }

/* Reviews */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.reviews-score { font-size: 32px; font-weight: 700; }
.reviews-breakdown { display: flex; flex-direction: column; gap: 6px; }
.rb-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.rb-bar { flex: 1; height: 4px; background: var(--border); border-radius: 999px; overflow: hidden; max-width: 120px; }
.rb-fill { height: 100%; background: var(--text-dark); border-radius: 999px; }

.review-card { padding: 20px 0; border-bottom: 1px solid var(--border); }
.review-card:last-child { border-bottom: none; }
.reviewer-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.reviewer-av { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; background: var(--bg-light); }
.reviewer-name { font-size: 14px; font-weight: 600; }
.reviewer-date { font-size: 12px; color: var(--text-secondary); }
.review-text { font-size: 14px; line-height: 1.6; color: var(--text-mid); }

/* Map */
.map-placeholder {
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  gap: 8px;
  margin-top: 16px;
  position: relative;
}
.map-placeholder i { font-size: 40px; color: var(--primary); }
.map-placeholder p { font-size: 15px; font-weight: 500; }

/* Mini calendar */
.mini-cal { margin-top: 16px; }
.mini-cal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cal-month-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.cal-month-name { font-size: 15px; font-weight: 600; }
.cal-nav-btn { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border); background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all var(--t-fast); }
.cal-nav-btn:hover { border-color: var(--text-dark); }
.cal-days { display: grid; grid-template-columns: repeat(7,1fr); text-align: center; gap: 2px; }
.cal-day-hdr { font-size: 11px; font-weight: 600; color: var(--text-secondary); padding: 4px 0; }
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--t-fast);
}
.cal-day:hover:not(.disabled):not(.empty) { background: var(--bg-light); }
.cal-day.selected { background: var(--text-dark); color: white; }
.cal-day.in-range { background: var(--bg-light); border-radius: 0; }
.cal-day.disabled { color: var(--text-light); cursor: default; text-decoration: line-through; }
.cal-day.empty { cursor: default; }
.cal-day.today { font-weight: 700; }

/* Mobile booking bar */
.mobile-booking-bar {
  display: none;
  position: fixed;
  bottom: 56px;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 300;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mbb-price { font-size: 16px; }
.mbb-price strong { font-weight: 700; }
.mbb-price span { font-size: 13px; color: var(--text-secondary); }

/* =============================================
   EXPERIENCES PAGE
   ============================================= */
.exp-hero {
  background: linear-gradient(135deg, #FF385C 0%, #C13584 100%);
  color: white;
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.exp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.exp-hero h1 { font-size: 48px; font-weight: 800; color: white; margin-bottom: 12px; position: relative; }
.exp-hero p { font-size: 18px; opacity: 0.9; position: relative; }

.exp-search-bar {
  max-width: 640px;
  margin: 28px auto 0;
  display: flex;
  background: white;
  border-radius: var(--radius-btn);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.esb-field {
  flex: 1;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-right: 1px solid var(--border);
}
.esb-field:last-of-type { border-right: none; }
.esb-label { font-size: 10px; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.07em; }
.esb-val { font-size: 14px; color: var(--text-dark); }
.esb-btn { padding: 0 24px; background: var(--primary); color: white; font-size: 15px; font-weight: 600; border: none; cursor: pointer; transition: background var(--t-fast); }
.esb-btn:hover { background: var(--primary-dark); }

.exp-filters {
  padding: 16px 24px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
  scrollbar-width: none;
}
.exp-filters::-webkit-scrollbar { display: none; }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 24px;
}
.exp-card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.exp-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.exp-card:hover .exp-card-img img { transform: scale(1.06); }
.exp-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: white;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
}
.exp-card-body { padding: 14px 2px; }
.exp-card-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.exp-card-meta { font-size: 13px; color: var(--text-secondary); display: flex; gap: 10px; margin-bottom: 6px; }
.exp-card-price { font-size: 14px; font-weight: 600; }
.exp-card-price span { font-weight: 400; color: var(--text-secondary); }

/* =============================================
   SERVICES PAGE
   ============================================= */
.svc-hero {
  background: linear-gradient(135deg, #222222 0%, #444 100%);
  color: white;
  padding: 64px 24px;
  text-align: center;
}
.svc-hero h1 { color: white; font-size: 40px; font-weight: 800; margin-bottom: 10px; }
.svc-hero p { font-size: 16px; opacity: 0.8; }

.svc-cat-tabs {
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.svc-cat-tabs::-webkit-scrollbar { display: none; }
.svc-tab {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  transition: all var(--t-fast);
}
.svc-tab.active { color: var(--text-dark); border-bottom-color: var(--text-dark); }
.svc-tab:hover { color: var(--text-dark); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 24px;
}
.svc-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--t);
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.svc-card-img { aspect-ratio: 16/10; overflow: hidden; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.svc-card:hover .svc-card-img img { transform: scale(1.05); }
.svc-card-body { padding: 20px; }
.svc-provider { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.svc-provider-av { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; background: var(--bg-light); }
.svc-provider-name { font-size: 14px; font-weight: 600; }
.svc-provider-badge { font-size: 11px; color: var(--text-secondary); }
.svc-card-title { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.svc-card-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 14px; }
.svc-card-footer { display: flex; justify-content: space-between; align-items: center; }
.svc-price { font-size: 15px; font-weight: 700; }
.svc-price span { font-size: 12px; font-weight: 400; color: var(--text-secondary); }
.svc-book-btn {
  padding: 9px 20px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-btn);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast);
}
.svc-book-btn:hover { background: var(--primary-dark); }

/* =============================================
   WISHLIST PAGE
   ============================================= */
.wishlist-empty {
  text-align: center;
  padding: 80px 24px;
}
.we-icon { font-size: 72px; margin-bottom: 16px; line-height: 1; }
.wishlist-empty h2 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.wishlist-empty p { font-size: 15px; color: var(--text-secondary); max-width: 380px; margin: 0 auto 28px; line-height: 1.6; }
.wl-title-row { padding: 28px 24px 0; }
.wl-title-row h1 { font-size: 30px; font-weight: 700; margin-bottom: 4px; }
.wl-title-row p { font-size: 15px; color: var(--text-secondary); }

/* =============================================
   TRIPS PAGE
   ============================================= */
.trips-container { max-width: 780px; margin: 0 auto; padding: 32px 24px 60px; }
.trips-title { font-size: 32px; font-weight: 700; margin-bottom: 24px; }
.trips-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.trips-tab {
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  transition: all var(--t-fast);
}
.trips-tab.active { color: var(--text-dark); border-bottom-color: var(--text-dark); }
.trips-tab:hover { color: var(--text-dark); }

.trip-card {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.trip-card:last-child { border-bottom: none; }
.trip-img { width: 120px; height: 90px; border-radius: 12px; overflow: hidden; flex-shrink: 0; }
.trip-img img { width: 100%; height: 100%; object-fit: cover; }
.trip-info { flex: 1; }
.trip-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 6px;
}
.trip-status.upcoming { background: #E6F7EF; color: #1A7A47; }
.trip-status.completed { background: var(--bg-light); color: var(--text-secondary); }
.trip-location { font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.trip-type { font-size: 14px; color: var(--text-secondary); margin-bottom: 4px; }
.trip-dates { font-size: 13px; color: var(--text-secondary); }
.trip-actions { display: flex; gap: 10px; margin-top: 12px; }
.trip-action-btn {
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: white;
  transition: all var(--t-fast);
}
.trip-action-btn:hover { border-color: var(--text-dark); }
.trip-action-btn.primary { background: var(--primary); color: white; border-color: var(--primary); }
.trip-action-btn.primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.trips-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--text-secondary);
}
.trips-empty i { font-size: 56px; display: block; margin-bottom: 16px; }
.trips-empty h3 { font-size: 20px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }

/* =============================================
   PAGE HERO (generic)
   ============================================= */
.page-hero {
  padding: 40px 24px 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.page-hero h1 { font-size: 32px; font-weight: 700; margin-bottom: 6px; }
.page-hero p { font-size: 16px; color: var(--text-secondary); }

/* =============================================
   BUTTONS (generic)
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
  font-family: inherit;
  text-decoration: none;
}
.btn-primary:hover { background: var(--primary-dark); transform: scale(1.02); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--text-dark);
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
  font-family: inherit;
  text-decoration: none;
}
.btn-outline:hover { background: var(--text-dark); color: white; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}
@keyframes fadeInDown {
  from { opacity:0; transform:translateY(-12px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(20px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes shimmer {
  from { background-position:-200% 0; }
  to { background-position:200% 0; }
}
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }

.aos { opacity:0; transform:translateY(20px); transition:opacity 500ms ease, transform 500ms ease; }
.aos.visible { opacity:1; transform:translateY(0); }

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

/* Ripple */
.ripple { position:relative; overflow:hidden; }
.ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: ripple-anim 600ms linear;
  pointer-events: none;
}
@keyframes ripple-anim { to { transform:scale(4); opacity:0; } }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .insp-grid { grid-template-columns: repeat(4,1fr); }
  .host-cta-banner { margin: 40px 24px; padding: 48px 40px; }
}
@media (max-width: 1024px) {
  .details-layout { grid-template-columns: 1fr; gap: 32px; }
  .booking-card { position: static; }
  .mobile-booking-bar { display: flex; }
  .gallery-grid { height: 360px; }
  .mini-cal-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .insp-grid { grid-template-columns: repeat(3,1fr); }
  .host-cta-banner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .mobile-nav { display: block; }
  main { padding-bottom: 70px; }
  .become-host-btn { display: none; }
  .header-nav { display: none; }
  .header-row2 { display: none; }
  .header-row1 { height: 64px; }
  .section-nav-btns { display: none; }
  .prop-card { flex: 0 0 180px; width: 180px; }
  .props-track { padding: 4px 16px 16px; gap: 10px; }
  .section-hdr { padding: 0 16px; }
  .section-title { font-size: 18px; }
  .inspiration-section { padding: 32px 16px 40px; }
  .inspiration-section h2 { font-size: 22px; }
  .insp-grid { grid-template-columns: repeat(2,1fr); }
  .footer-cols { grid-template-columns: 1fr; padding: 24px 16px 0; }
  .footer-bottom-row { flex-direction: column; align-items: flex-start; padding: 16px; }
  .site-footer { margin-bottom: 64px; }
  .host-cta-banner { margin: 28px 16px; padding: 36px 22px; gap: 28px; border-radius: 22px; }
  .host-cta-text h2 { font-size: 24px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 280px; height: auto; }
  .gal-sub { display: none; }
  .amenities-grid { grid-template-columns: 1fr; }
  .details-page { padding: 0 16px 100px; }
  .category-bar { padding: 0 16px; }
  .filter-strip { padding: 10px 16px; }
  .listings-grid { padding: 16px; gap: 16px; }
  .exp-hero h1 { font-size: 32px; }
  .svc-hero h1 { font-size: 32px; }
  .page-hero { padding: 24px 16px 16px; }
  .wl-title-row { padding: 20px 16px 0; }
  .trips-container { padding: 24px 16px 80px; }
  .trips-title { font-size: 24px; }
  .cal-days { gap: 0; }
  .mobile-booking-bar { bottom: 56px; }
}
@media (max-width: 480px) {
  .search-compact .sc-text { display: none; }
  .insp-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; padding: 16px; }
  .svc-grid { grid-template-columns: 1fr; padding: 16px; }
  .trip-card { flex-direction: column; }
  .trip-img { width: 100%; height: 180px; }
}

/* Focus */
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 4px; }
body.no-scroll { overflow: hidden; }

/* =============================================================
   PACKAGE INCLUDES — icon system (Holiday Packages)
   ============================================================= */
.pkg-includes {
  margin: 10px 0 2px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pkg-includes-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #6b7280;
}
.pkg-includes--compact { margin: 9px 0 3px; gap: 0; }
/* Compact (card) icons are smaller so 4–6 inclusions fit the narrow card width */
.pkg-includes--compact .pkg-inc-list { gap: 5px; }
.pkg-includes--compact .pkg-inc { width: 26px; height: 26px; border-radius: 8px; }
.pkg-includes--compact .pkg-inc-ic { width: 15px; height: 15px; }

.pkg-inc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.pkg-inc {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef3ff, #e0ebff);
  color: #0057FF;
  cursor: default;
  flex-shrink: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.pkg-inc-ic { width: 19px; height: 19px; display: block; line-height: 0; }
.pkg-inc-ic svg { width: 100%; height: 100%; display: block; }

/* Optional (admin-enabled) inclusions use the pink brand accent */
.pkg-inc--opt {
  background: linear-gradient(135deg, #ffe9ee, #ffd7e0);
  color: #FF385C;
}

.pkg-inc:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #0057FF, #3d7bff);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,87,255,0.32);
}
.pkg-inc--opt:hover {
  background: linear-gradient(135deg, #FF385C, #ff6a86);
  box-shadow: 0 8px 18px rgba(255,56,92,0.34);
}

/* Tooltip */
.pkg-inc-tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #1f2937;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 4px 9px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}
.pkg-inc-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1f2937;
}
.pkg-inc:hover .pkg-inc-tip,
.pkg-inc:focus-within .pkg-inc-tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Detail-page variant — larger chips with inline labels */
.pkg-includes--detail .pkg-inc-list { gap: 12px; }
.pkg-includes--detail .pkg-inc {
  width: auto;
  height: auto;
  padding: 9px 15px 9px 11px;
  gap: 8px;
  border-radius: 999px;
}
.pkg-includes--detail .pkg-inc-ic { width: 18px; height: 18px; }
.pkg-includes--detail .pkg-inc-label {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.pkg-includes--detail .pkg-inc-tip { display: none; }

/* Responsive */
@media (max-width: 600px) {
  .pkg-inc { width: 31px; height: 31px; border-radius: 9px; }
  .pkg-inc-ic { width: 17px; height: 17px; }
  .pkg-inc-list { gap: 7px; }
  .pkg-includes--detail .pkg-inc { padding: 8px 13px 8px 10px; }
  .pkg-includes--detail .pkg-inc-label { font-size: 12.5px; }
  /* tooltips can clip on tiny screens inside scrollers — keep but allow tap */
}

/* =============================================
   HOLIDAY PACKAGE CARD (shared) — used by index slider
   and the Tour Packages grid (packages.html).
   ============================================= */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 1100px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .pkg-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 16px; } }
@media (max-width: 460px)  { .pkg-grid { grid-template-columns: 1fr; } }

.hpc { cursor: pointer; transition: transform 250ms ease; display: flex; flex-direction: column; height: 100%; }
.hpc:hover { transform: translateY(-3px); }
.hpc-img { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 1 / 1; background: #f0f0f0; margin-bottom: 10px; flex-shrink: 0; }
.hpc-strip { display: flex; height: 100%; transition: transform 380ms cubic-bezier(.4,0,.2,1); will-change: transform; }
.hpc-strip img { min-width: 100%; height: 100%; object-fit: cover; flex-shrink: 0; pointer-events: none; transition: transform 850ms cubic-bezier(.2,.6,.2,1); }
.hpc:hover .hpc-strip img { transform: scale(1.09); }

.hpc-badge {
  position: absolute; top: 10px; left: 10px; background: #fff; color: #222;
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0,0,0,.12); pointer-events: none; z-index: 3;
}
.hpc-heart {
  position: absolute; top: 9px; right: 9px; z-index: 5;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  border: none; background: none; padding: 0; cursor: pointer; transition: transform 150ms;
}
.hpc-heart:hover { transform: scale(1.15); }
.hpc-heart .pc-heart-icon { font-size: 22px; color: rgba(255,255,255,.95); filter: drop-shadow(0 1px 3px rgba(0,0,0,.4)); transition: all 150ms; }
.hpc-heart.saved .pc-heart-icon, .hpc-heart.wishlisted .pc-heart-icon { color: #FF385C; filter: none; }

.hpc-arrows {
  position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%);
  display: flex; justify-content: space-between; padding: 0 8px;
  opacity: 0; transition: opacity 150ms; pointer-events: none; z-index: 4;
}
.hpc-img:hover .hpc-arrows { opacity: 1; pointer-events: all; }
.hpc-arr {
  width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.95);
  box-shadow: 0 2px 8px rgba(0,0,0,.2); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #222; transition: transform 150ms;
}
.hpc-arr:hover { transform: scale(1.1); }
.hpc-arr:disabled { opacity: 0; pointer-events: none; }

.hpc-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 4px; opacity: 0; transition: opacity 150ms; pointer-events: none; z-index: 4;
}
.hpc-img:hover .hpc-dots { opacity: 1; }
.hpc-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.55); transition: all 150ms; }
.hpc-dot.on { background: #fff; transform: scale(1.3); }

.hpc-body { padding: 0 2px; display: flex; flex-direction: column; flex: 1; }
.hpc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.hpc-title {
  font-size: 14px; font-weight: 700; color: #222; line-height: 1.25; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.hpc-score {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 3px;
  background: linear-gradient(135deg, #0a8f5b, #0fae6f); color: #fff;
  font-size: 11.5px; font-weight: 700; padding: 3px 7px; border-radius: 7px;
}
.hpc-score i { font-size: 8.5px; color: #ffe06b; }
.hpc-place { display: flex; align-items: center; gap: 5px; margin-top: 4px;
  font-size: 12px; color: #717171; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hpc-place i { color: #FF385C; font-size: 12.5px; flex-shrink: 0; }
.hpc-meta { display: flex; align-items: center; gap: 5px; margin-top: 3px; font-size: 12px; color: #717171; }
.hpc-meta i { font-size: 12px; flex-shrink: 0; }
.hpc-rateline { font-size: 11px; color: #717171; margin-top: 3px; }
.hpc-word { color: #0a8f5b; font-weight: 700; }

.hpc-foot { margin-top: auto; padding-top: 10px; }
.hpc-price { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.hpc-old { font-size: 11.5px; color: #9aa0a6; text-decoration: line-through; }
.hpc-off { font-size: 10px; font-weight: 700; color: #0a8f5b; background: #e6f6ee; padding: 2px 6px; border-radius: 6px; }
.hpc-now { width: 100%; margin-top: 1px; }
.hpc-now strong { font-size: 18px; font-weight: 800; color: #222; }
.hpc-now span { font-size: 11.5px; color: #717171; }

@media (max-width: 768px) {
  .hpc-title { font-size: 13.5px; }
  .hpc-place, .hpc-meta { font-size: 11.5px; }
  .hpc-now strong { font-size: 17px; }
}

/* ===== Testimonials grid (testimonials.html) ===== */
.tm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 24px 24px;
}
@media (max-width: 760px) { .tm-grid { grid-template-columns: 1fr; padding: 8px 16px 16px; } }
.tm-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.tm-video { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.tm-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tm-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.tm-stars { color: #ffb400; font-size: 15px; letter-spacing: 1px; }
.tm-text { font-size: 15px; line-height: 1.65; color: #333; }
.tm-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tm-person img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.tm-name { font-weight: 700; font-size: 14px; color: #222; }
.tm-loc { font-size: 12.5px; color: var(--text-secondary); }

/* ===== Generic article / legal page ===== */
.page-hero {
  background: var(--bg-light); border-bottom: 1px solid var(--border);
  padding: 56px 24px; text-align: center;
}
.page-hero h1 { font-size: 34px; font-weight: 800; margin-bottom: 10px; }
.page-hero p { font-size: 16px; color: var(--text-secondary); max-width: 680px; margin: 0 auto; }
.prose { max-width: 820px; margin: 0 auto; padding: 40px 24px 56px; }
.prose h2 { font-size: 22px; font-weight: 700; margin: 28px 0 12px; }
.prose h3 { font-size: 17px; font-weight: 700; margin: 22px 0 8px; }
.prose p, .prose li { font-size: 15px; line-height: 1.75; color: #444; }
.prose ul { padding-left: 22px; margin: 8px 0 16px; list-style: disc; }
.prose a { color: var(--primary); }

/* Package-card heart reflects wishlist state (delegated toggle adds .wishlisted) */
.hpc-heart.wishlisted .pc-heart-icon { color: #FF385C; }

/* ===== Blog cards (blogs.html) ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px 8px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; gap: 16px; padding: 12px 16px; } }
.blog-card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(0,0,0,0.12); }
.blog-card-img { aspect-ratio: 16 / 10; overflow: hidden; background: #f0f0f0; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.blog-card-cat {
  align-self: flex-start; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .4px; color: var(--primary); background: var(--primary-light);
  padding: 4px 10px; border-radius: 999px;
}
.blog-card-title { font-size: 17px; font-weight: 700; line-height: 1.3; color: #222; }
.blog-card-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.6; flex: 1; }
.blog-card-meta { font-size: 12.5px; color: var(--text-secondary); margin-top: 4px; }
/* Read-time badge on the image */
.blog-card-img { position: relative; }
.blog-readtime {
  position: absolute; bottom: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(0,0,0,.62); color: #fff; backdrop-filter: blur(3px);
  font-size: 11.5px; font-weight: 600; padding: 5px 11px; border-radius: 999px;
}
/* Author row footer */
.blog-card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--bg-light);
}
.blog-author { display: flex; align-items: center; gap: 10px; min-width: 0; }
.blog-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px;
}
.blog-author .ba-name { font-size: 13px; font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.blog-author .ba-date { font-size: 12px; color: var(--text-secondary); }
.blog-card-arrow {
  color: var(--primary); font-size: 18px; flex: 0 0 auto;
  transform: translateX(-4px); opacity: 0; transition: transform .25s ease, opacity .25s ease;
}
.blog-card:hover .blog-card-arrow { transform: translateX(0); opacity: 1; }

/* ===== Job cards (careers.html) ===== */
.jobs-list { max-width: 880px; margin: 0 auto; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.job-card {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 22px 24px;
  transition: box-shadow 250ms ease;
}
.job-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,0.08); }
.job-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
.job-meta i { margin-right: 4px; }
.job-desc { font-size: 14px; color: #444; line-height: 1.6; max-width: 560px; }
@media (max-width: 640px) { .job-card { flex-direction: column; align-items: flex-start; } }

/* =============================================================
   SERVICES DROPDOWN PAGES — shared modern components
   (Activities · Blogs · Pickup & Drop · How to Reach)
   ============================================================= */

/* ---- Rich gradient hero (richer variant of .svc-hero) ---- */
.svc-hero.svc-hero-rich {
  position: relative;
  background: linear-gradient(135deg, #2b0a14 0%, #7a1430 45%, var(--primary) 100%);
  overflow: hidden;
  padding: 76px 24px 70px;
}
.svc-hero.svc-hero-rich::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(420px circle at 18% 22%, rgba(255,255,255,.16), transparent 60%),
    radial-gradient(520px circle at 85% 80%, rgba(255,255,255,.10), transparent 55%);
  pointer-events: none;
}
.svc-hero-rich > * { position: relative; z-index: 1; }
.svc-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .4px;
  color: #fff; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
  backdrop-filter: blur(4px);
}
.svc-hero-rich h1 { font-size: 44px; line-height: 1.1; max-width: 760px; margin: 0 auto 12px; }
.svc-hero-rich > p { max-width: 600px; margin: 0 auto; opacity: .9; }
.svc-hero-stats {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 40px; margin-top: 30px;
}
.svc-hero-stat { color: #fff; text-align: center; }
.svc-hero-stat b { display: block; font-size: 26px; font-weight: 800; line-height: 1; }
.svc-hero-stat span { font-size: 12.5px; opacity: .8; }

/* ---- Centred section heading ---- */
.sec-head { text-align: center; max-width: 720px; margin: 48px auto 6px; padding: 0 24px; }
.sec-head h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.sec-head p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* ---- Filter pills + search toolbar (Activities / Blogs) ---- */
.svc-toolbar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  max-width: 1120px; margin: 0 auto; padding: 22px 24px 6px;
}
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; min-width: 0; }
.filter-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 999px; cursor: pointer;
  font-size: 13.5px; font-weight: 600; color: var(--text-dark);
  background: #fff; border: 1px solid var(--border); white-space: nowrap;
  transition: transform .18s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.filter-pill:hover { transform: translateY(-2px); border-color: var(--primary); color: var(--primary); box-shadow: 0 6px 16px rgba(255,56,92,.14); }
.filter-pill.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(255,56,92,.28); }
.filter-pill i { font-size: 15px; }
.svc-search { position: relative; flex: 0 1 280px; min-width: 200px; }
.svc-search i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-secondary); font-size: 16px; pointer-events: none; }
.svc-search input {
  width: 100%; padding: 11px 16px 11px 40px; border: 1px solid var(--border);
  border-radius: 999px; font-size: 14px; font-family: inherit; outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.svc-search input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,56,92,.12); }

/* ---- Empty state ---- */
.svc-empty { text-align: center; padding: 60px 24px; color: var(--text-secondary); }
.svc-empty i { font-size: 40px; color: var(--border); display: block; margin-bottom: 12px; }

/* ---- Activity cards (richer than .exp-card) ---- */
.act-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px; max-width: 1180px; margin: 0 auto; padding: 24px;
}
.act-card {
  display: flex; flex-direction: column; background: #fff; cursor: pointer;
  border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.act-card:hover { transform: translateY(-7px); box-shadow: 0 22px 46px rgba(0,0,0,.13); border-color: transparent; }
.act-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #f0f0f0; }
.act-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.act-card:hover .act-card-img img { transform: scale(1.08); }
.act-card-cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(255,255,255,.94); border-radius: 999px; padding: 5px 12px;
  font-size: 11.5px; font-weight: 700; color: var(--text-dark);
  backdrop-filter: blur(3px);
}
.act-card-diff {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(0,0,0,.6); color: #fff; border-radius: 999px;
  padding: 5px 11px; font-size: 11px; font-weight: 600;
}
.act-card-fav {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--text-dark);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease, color .2s ease, background .2s ease;
}
.act-card:hover .act-card-fav { opacity: 1; transform: translateY(0); }
.act-card-fav:hover { background: #fff; color: var(--primary); }
/* touch devices have no hover — keep the save button visible */
@media (hover: none) { .act-card-fav { opacity: 1; transform: none; } }
.act-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.act-card-title { font-size: 16.5px; font-weight: 700; line-height: 1.3; color: #222; }
.act-card-loc { font-size: 13px; color: var(--text-secondary); display: flex; align-items: center; gap: 5px; }
.act-card-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 12.5px; color: var(--text-secondary); }
.act-card-meta i { color: var(--primary); margin-right: 4px; }
.act-card-rate b { color: var(--text-dark); }
.act-card-foot {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--bg-light);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.act-card-price { font-size: 13px; color: var(--text-secondary); }
.act-card-price b { font-size: 19px; color: var(--text-dark); font-weight: 800; }
.act-book {
  display: inline-block; border: none; background: var(--primary); color: #fff; cursor: pointer;
  padding: 9px 16px; border-radius: var(--radius-btn); font-size: 13.5px; font-weight: 600;
  font-family: inherit; text-decoration: none; line-height: 1.2; white-space: nowrap;
  transition: background .18s ease, transform .18s ease;
}
.act-book:hover { background: var(--primary-dark); color: #fff; transform: scale(1.04); }

/* "Included in packages" badge on the card image */
.act-card-pkg {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  background: linear-gradient(135deg, #1c8aa0, #0f7d92); color: #fff;
  border-radius: 999px; padding: 5px 11px; font-size: 11px; font-weight: 700;
  box-shadow: 0 6px 16px rgba(15,125,146,.4);
}
.act-card-pkg i { font-size: 12px; }

/* "Included in packages" quick-filter pill (logo teal accent) */
.filter-pill-pkg { border-color: #9fd3dd; color: #0f7d92; }
.filter-pill-pkg:hover { border-color: #0f7d92; color: #0f7d92; box-shadow: 0 6px 16px rgba(15,125,146,.16); }
.filter-pill-pkg.active { background: linear-gradient(135deg, #1c8aa0, #0f7d92); border-color: transparent; color: #fff; box-shadow: 0 8px 20px rgba(15,125,146,.3); }

/* results count under the toolbar */
.svc-count-row { max-width: 1180px; margin: 0 auto; padding: 12px 24px 0; }
.svc-count { font-size: 13.5px; color: var(--text-secondary); font-weight: 600; }

/* ---- Benefits strip (shared) ---- */
.benefit-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1120px; margin: 8px auto; padding: 36px 24px;
}
.benefit-item { display: flex; gap: 14px; align-items: flex-start; padding: 6px; }
.benefit-item .b-ic {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 21px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.benefit-item:hover .b-ic { transform: translateY(-3px) rotate(-6deg); background: var(--primary); color: #fff; }
.benefit-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.benefit-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

/* ---- Blog: featured post ---- */
/* Outer is just a full-width wrapper for max-width/padding — the 2-column
   split lives on .blog-featured-inner (the card), which is the only child. */
.blog-featured {
  max-width: 1120px; margin: 26px auto 0; padding: 0 24px;
}
.blog-featured-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch;
  border: 1px solid var(--border); border-radius: 22px; overflow: hidden;
  background: #fff; text-decoration: none; color: inherit;
  transition: box-shadow .3s ease, transform .3s ease;
}
.blog-featured-inner:hover { box-shadow: 0 24px 50px rgba(0,0,0,.12); transform: translateY(-4px); }
.blog-featured-img { position: relative; overflow: hidden; min-height: 300px; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.blog-featured-inner:hover .blog-featured-img img { transform: scale(1.05); }
.blog-featured-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--primary); color: #fff; font-size: 11.5px; font-weight: 700;
  letter-spacing: .4px; padding: 6px 13px; border-radius: 999px;
}
.blog-featured-body { padding: 34px 34px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body .bf-cat { font-size: 12px; font-weight: 700; letter-spacing: .5px; color: var(--primary); text-transform: uppercase; margin-bottom: 10px; }
.blog-featured-body h2 { font-size: 26px; font-weight: 800; line-height: 1.22; margin-bottom: 12px; color: #1d1d1d; }
.blog-featured-body p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 18px; }
.blog-featured-body .bf-meta { font-size: 13px; color: var(--text-secondary); margin-bottom: 18px; }
.blog-read-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color: var(--primary); text-decoration: none; align-self: flex-start; transition: gap .2s ease; }
.blog-read-link:hover { gap: 12px; }

/* ---- Newsletter band (shared) ---- */
.newsletter-band {
  max-width: 1120px; margin: 56px auto; padding: 44px 32px;
  border-radius: 24px; text-align: center;
  background: linear-gradient(135deg, #1f1f1f, #3a3a3a);
  color: #fff; position: relative; overflow: hidden;
}
.newsletter-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(360px circle at 80% 20%, rgba(255,56,92,.4), transparent 60%);
  pointer-events: none;
}
.newsletter-band > * { position: relative; z-index: 1; }
.newsletter-band h2 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.newsletter-band p { font-size: 15px; opacity: .85; margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 13px 18px; border: none; border-radius: 999px;
  font-size: 14px; font-family: inherit; outline: none;
}
.newsletter-form button {
  border: none; cursor: pointer; padding: 13px 24px; border-radius: 999px;
  background: var(--primary); color: #fff; font-size: 14px; font-weight: 700;
  font-family: inherit; white-space: nowrap; transition: background .18s ease, transform .18s ease;
}
.newsletter-form button:hover { background: var(--primary-dark); transform: scale(1.03); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .blog-featured, .blog-featured-inner { grid-template-columns: 1fr; }
  .benefit-strip { grid-template-columns: repeat(2, 1fr); }
  .svc-hero-rich h1 { font-size: 34px; }
  .act-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 760px) {
  /* toolbar stacks: scrollable pill row above a full-width search */
  .svc-toolbar { flex-direction: column; align-items: stretch; gap: 12px; padding: 18px 16px 4px; }
  .filter-bar { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .filter-bar::-webkit-scrollbar { display: none; }
  .svc-search { flex: 1 1 auto; }
  .svc-hero.svc-hero-rich { padding: 58px 20px 54px; }
  .svc-hero-stats { gap: 10px 26px; margin-top: 22px; }
}
@media (max-width: 600px) {
  .act-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 16px; }
  .act-card-body { padding: 12px 13px 14px; gap: 6px; }
  .act-card-title { font-size: 14.5px; }
  .act-card-loc, .act-card-meta { font-size: 11.5px; }
  .act-card-meta { gap: 10px; }
  .act-card-price b { font-size: 16px; }
  .act-card-foot { flex-direction: column; align-items: stretch; gap: 8px; }
  .act-book { text-align: center; }
  .act-card-cat, .act-card-pkg, .act-card-diff { font-size: 10px; padding: 4px 8px; }
  .benefit-strip { grid-template-columns: 1fr; gap: 14px; padding: 28px 18px; }
  .blog-featured-body { padding: 24px; }
  .blog-featured-body h2 { font-size: 21px; }
  .newsletter-band { margin: 40px 16px; padding: 34px 20px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .svc-hero-rich h1 { font-size: 26px; }
  .svc-hero-stat b { font-size: 20px; }
  .sec-head h2 { font-size: 23px; }
}
@media (max-width: 380px) {
  .act-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   DETAIL PAGE EXTRAS — shared by service-details & activity-details
   (the global .svc-hero is a dark gradient hero, so detail pages use
   their own .dtl-hero image hero to avoid the class clash)
   ============================================================= */
.dtl-back-row { display: flex; justify-content: space-between; align-items: center; padding: 20px 0 14px; flex-wrap: wrap; gap: 10px; }
.dtl-back, .dtl-save {
  display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600;
  color: var(--text-dark); text-decoration: none; background: none; border: none; cursor: pointer;
  transition: color .18s ease;
}
.dtl-back:hover, .dtl-save:hover { color: var(--primary); }
.dtl-save.saved { color: var(--primary); }
.dtl-title { font-size: 28px; font-weight: 800; margin-bottom: 8px; line-height: 1.22; }
.dtl-submeta { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 22px; flex-wrap: wrap; color: var(--text-secondary); }
.dtl-submeta .star { color: var(--primary); }
.dtl-submeta b { color: var(--text-dark); }

.dtl-hero { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 16/8; margin-bottom: 30px; background: #f0f0f0; }
.dtl-hero img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 700ms ease; }
.dtl-hero:hover img { transform: scale(1.04); }
.dtl-hero .badge-cat { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.95); color: #222; font-size: 12px; font-weight: 700; padding: 7px 15px; border-radius: 999px; box-shadow: 0 2px 10px rgba(0,0,0,.15); }
.dtl-hero .badge-diff { position: absolute; top: 16px; right: 16px; background: rgba(0,0,0,.62); color: #fff; font-size: 12px; font-weight: 600; padding: 7px 14px; border-radius: 999px; display: inline-flex; gap: 6px; align-items: center; backdrop-filter: blur(3px); }

.dtl-h2 { font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.dtl-about { font-size: 15px; line-height: 1.78; color: var(--text-mid); }

.dtl-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.dtl-fact { border: 1px solid var(--border); border-radius: 14px; padding: 16px 12px; text-align: center; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.dtl-fact:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.08); border-color: transparent; }
.dtl-fact i { font-size: 22px; color: var(--primary); }
.dtl-fact .fl { font-size: 11px; text-transform: uppercase; letter-spacing: .4px; color: var(--text-secondary); margin-top: 9px; }
.dtl-fact .fv { font-size: 14.5px; font-weight: 700; margin-top: 2px; }

.dtl-incl { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.dtl-incl div { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text-mid); }
.dtl-incl i { font-size: 19px; color: var(--primary); flex: 0 0 auto; margin-top: 1px; }

.dtl-steps { display: flex; flex-direction: column; gap: 18px; }
.dtl-step { display: flex; gap: 16px; align-items: flex-start; }
.dtl-step .n { width: 34px; height: 34px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 6px 16px rgba(255,56,92,.3); }
.dtl-step h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 2px; }
.dtl-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.dtl-highlights { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; padding: 0; }
.dtl-highlights li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text-mid); align-items: flex-start; }
.dtl-highlights i { color: var(--primary); margin-top: 2px; flex: 0 0 auto; }

.dtl-reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dtl-review { border: 1px solid var(--border); border-radius: 16px; padding: 20px; transition: box-shadow .25s ease, transform .25s ease; }
.dtl-review:hover { box-shadow: 0 12px 28px rgba(0,0,0,.07); transform: translateY(-3px); }
.dtl-review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.dtl-review-av { width: 42px; height: 42px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex: 0 0 auto; }
.dtl-review .nm { font-weight: 700; font-size: 14.5px; }
.dtl-review .st { color: var(--primary); font-size: 13px; letter-spacing: 1px; }
.dtl-review p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

.dtl-safety { margin-top: 16px; padding: 18px; background: var(--bg-light); border-radius: 16px; display: flex; gap: 12px; align-items: flex-start; }
.dtl-safety i { font-size: 22px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.dtl-safety .t { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.dtl-safety .d { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

/* Compact protection note INSIDE the booking card (stays with the sticky card,
   so it can't overlap page content the way a separate box below the card does) */
.bk-protect {
  display: flex; align-items: flex-start; gap: 9px;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
  font-size: 12.5px; color: var(--text-secondary); line-height: 1.5;
}
.bk-protect i { color: var(--primary); font-size: 16px; flex: 0 0 auto; margin-top: 1px; }

@media (max-width: 768px) {
  .dtl-facts { grid-template-columns: 1fr 1fr; }
  .dtl-incl, .dtl-highlights, .dtl-reviews { grid-template-columns: 1fr; }
  .dtl-hero { aspect-ratio: 4/3; }
  .dtl-title { font-size: 23px; }
}
