:root {
  --orange: #F7941D;
  --navy: #1B3A6B;
  --teal: #009B9B;
  --text: #1F2937;
  --muted: #6B7280;
  --bg: #F8FAFC;
  --border: #E5E7EB;
  --font-display: 'Poppins', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  max-width: 100%;
  background:
    radial-gradient(1100px 500px at 8% 0%, rgba(0,155,155,0.07), transparent 60%),
    radial-gradient(1100px 500px at 95% 15%, rgba(247,148,29,0.06), transparent 55%),
    radial-gradient(900px 600px at 50% 90%, rgba(27,58,107,0.05), transparent 60%),
    var(--bg);
  background-attachment: fixed;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.card-grid .reveal:nth-child(1) { transition-delay: .03s; }
.card-grid .reveal:nth-child(2) { transition-delay: .09s; }
.card-grid .reveal:nth-child(3) { transition-delay: .15s; }
.card-grid .reveal:nth-child(4) { transition-delay: .21s; }
.category-strip .reveal:nth-child(1) { transition-delay: .02s; }
.category-strip .reveal:nth-child(2) { transition-delay: .06s; }
.category-strip .reveal:nth-child(3) { transition-delay: .10s; }
.category-strip .reveal:nth-child(4) { transition-delay: .14s; }
.category-strip .reveal:nth-child(5) { transition-delay: .18s; }
.category-strip .reveal:nth-child(6) { transition-delay: .22s; }

/* NAVBAR */
.navbar {
  background: #fff;
  border-bottom: 2px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(10,20,40,0.08); }
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; height: 100%; }
.logo-img { height: 56px; width: auto; object-fit: contain; display: block; }
.footer-logo-img { height: 56px; }

.nav-search {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  gap: 10px;
  height: 56px;
}
.nav-hamburger {
  display: none; background: none; font-size: 20px; color: var(--navy);
  width: 36px; height: 36px; align-items: center; justify-content: center; flex-shrink: 0;
}
.mobile-search-screen, .mobile-bottom-nav { display: none; }

.nav-location {
  display: flex; align-items: center; gap: 6px; border: none; background: none;
  font-size: 13px; color: var(--muted); font-weight: 600; padding: 0; flex-shrink: 0;
}
.nav-location i { color: var(--orange); font-size: 15px; }
.nav-search-btn {
  display: flex; align-items: center; justify-content: center; border: none;
  background: none; font-size: 17px; color: var(--text); padding: 4px; flex-shrink: 0;
}
.nav-list-property {
  display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700;
  padding: 9px 16px; white-space: nowrap; flex-shrink: 0;
  background: var(--orange); color: #fff; border-radius: 8px;
}
.nav-list-property:hover { opacity: 0.92; }

.nav-links { display: flex; align-items: center; gap: 28px; margin: 0 auto; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--navy);
  transition: color .2s ease; position: relative; padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--orange);
}
.nav-search i { color: var(--muted); line-height: 1; }

/* MOBILE NAV DRAWER */
.mobile-nav-backdrop {
  position: fixed; inset: 0; background: rgba(10,20,40,0.55); z-index: 199;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.mobile-nav-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-nav-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: 280px; max-width: 82vw;
  background: #fff; z-index: 200; box-shadow: 8px 0 40px rgba(10,20,40,0.2);
  transform: translateX(-100%); transition: transform .3s ease;
  display: flex; flex-direction: column; padding: 20px;
}
.mobile-nav-drawer.open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mobile-nav-head .logo-img { height: 34px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-nav-links a {
  display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: var(--text);
  padding: 12px 10px; border-radius: 8px; transition: background .2s ease, color .2s ease;
}
.mobile-nav-links a i { width: 18px; color: var(--teal); }
.mobile-nav-count {
  background: #E53E3E; color: #fff; font-size: 10px; font-weight: 700;
  border-radius: 10px; padding: 1px 7px; margin-left: 4px;
}
.mobile-nav-links a:hover, .mobile-nav-links a.active { background: #F4F7FC; color: var(--orange); }
.mobile-nav-footer { padding-top: 16px; border-top: 1px solid var(--border); }
.nav-search-field { justify-content: center; }
.nav-search input {
  border: none;
  outline: none;
  font-size: 14px;
  flex: 1;
  min-width: 100px;
  color: var(--text);
  font-weight: 500;
}
.nav-search-divider { width: 1px; height: 26px; background: var(--border); }
.nav-search-field { display: flex; flex-direction: column; line-height: 1.2; }
.nsf-label { font-size: 10px; color: var(--muted); }
.nsf-value { font-size: 13px; font-weight: 600; }
.btn-search {
  background: var(--navy);
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s ease, transform .15s ease;
}
.btn-search:hover { background: #14294e; transform: translateY(-1px); }
.btn-search:active { transform: translateY(0); }

.nav-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.nav-icon-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--navy);
  position: relative; line-height: 1;
  transition: color .2s ease;
}
.nav-icon-link:hover { color: var(--orange); }
.nav-icon-link i { font-size: 16px; line-height: 1; }
.nav-icon-wrap { position: relative; display: inline-flex; }
.nav-badge {
  background: #E53E3E; color: #fff !important; font-size: 10px; font-weight: 700;
  border-radius: 50%; width: 16px; height: 16px; padding: 0; box-sizing: border-box;
  display: flex; align-items: center; justify-content: center; z-index: 5;
  position: absolute; top: -7px; right: -7px;
}
.nav-profile {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: #fff;
  background: var(--navy); padding: 8px 18px 8px 10px; border-radius: 30px;
  margin-left: 6px;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}
.nav-profile:hover { background: #14294e; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(27,58,107,0.25); }
.nav-profile img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
.nav-profile i { font-size: 22px; color: #fff; }

main { max-width: 1440px; margin: 0 auto; padding: 28px 32px 64px; }

/* HERO */
.hero-card {
  border-radius: 20px;
  position: relative;
  min-height: 440px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 20px 50px rgba(10,20,40,0.18);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { background-size: 100%; }
  to   { background-size: 112%; }
}
.hero-content > * { animation: fadeUp .7s ease both; }
.hero-content .hero-pill { animation-delay: .05s; }
.hero-content h1 { animation-delay: .15s; }
.hero-content p { animation-delay: .25s; }
.hero-content .hero-badges { animation-delay: .35s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,20,40,0.75) 20%, rgba(10,20,40,0.2) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 36px; color: #fff; width: 100%; }
.hero-pill {
  background: var(--orange);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 14px;
}
.hero-content h1 { font-family: var(--font-display); font-size: 46px; font-weight: 700; margin-bottom: 8px; line-height: 1.15; }
.hero-content p { font-size: 16px; color: #E5E7EB; margin-bottom: 16px; }

.hero-badges { display: flex; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.hero-badges span {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}

.hero-search {
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 6px 6px 6px 16px;
  max-width: 540px;
  gap: 10px;
}
.hero-search i { color: var(--muted); }
.hero-search input { flex: 1; border: none; outline: none; font-size: 14px; padding: 8px 0; }
.hero-search button {
  background: var(--navy);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

/* FEATURED CARD */
.featured-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10,20,40,0.06);
  transition: box-shadow .3s ease, transform .3s ease;
}
.featured-card:hover { box-shadow: 0 20px 44px rgba(10,20,40,0.14); transform: translateY(-3px); }
.featured-photo { background-size: cover; transition: background-size .5s ease; }
.featured-card:hover .featured-photo { background-size: 112%; }
.featured-photo {
  min-height: 260px; background-size: cover; background-position: center;
  position: relative;
}
.fav-btn {
  position: absolute; top: 12px; right: 12px;
  background: #fff; width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform .2s ease, color .2s ease;
}
.fav-btn:hover { transform: scale(1.12); color: #E53E3E; }
.fav-btn.wished { color: #E53E3E; }
.fav-btn.wished:hover { transform: scale(1.12); }
.featured-info { padding: 32px 36px; display: flex; flex-direction: column; }
.featured-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.featured-head h4 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--navy); }
.badge-verified {
  background: #ECFDF5; color: #059669; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px; display: inline-flex; align-items: center; gap: 4px; width: fit-content;
}
.featured-rating { font-size: 14px; color: var(--text); margin-bottom: 8px; }
.featured-rating i { color: var(--orange); }
.featured-rating span { color: var(--muted); }
.featured-loc { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.featured-loc i { color: var(--orange); margin-right: 4px; }

.featured-stats {
  display: flex; gap: 40px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 14px 0; margin-bottom: 20px;
}
.featured-stats div { font-size: 15px; font-weight: 700; color: var(--navy); }
.featured-stats i { margin-right: 6px; color: var(--teal); }
.featured-stats span { display: block; font-size: 11px; font-weight: 500; color: var(--muted); margin-top: 2px; }

.featured-desc { font-size: 13px; line-height: 1.6; color: var(--muted); margin-bottom: 16px; }
.featured-services { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.featured-service-chip {
  background: #F4F7FC; border: 1px solid var(--border); border-radius: 8px;
  padding: 8px 14px; display: flex; flex-direction: column; gap: 2px; min-width: 100px;
}
.featured-service-chip span { font-size: 10px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.3px; }
.featured-service-chip strong { font-size: 14px; color: var(--navy); }
.featured-amenities { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.featured-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.featured-actions { display: flex; gap: 10px; }
.btn-outline {
  border: 1px solid var(--border); border-radius: 8px; padding: 10px 18px;
  text-align: center; font-size: 13px; font-weight: 600; color: var(--navy);
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
}
.btn-outline:hover { border-color: var(--navy); background: #F4F7FC; transform: translateY(-1px); }
.btn-whatsapp {
  background: #E9FBF0; color: #12A150; border-radius: 8px; padding: 10px 18px;
  text-align: center; font-size: 13px; font-weight: 600;
  transition: background .2s ease, transform .15s ease;
}
.btn-whatsapp:hover { background: #D7F5E3; transform: translateY(-1px); }
.btn-book {
  background: var(--orange); color: #fff; padding: 11px 26px; border-radius: 8px;
  font-weight: 700; font-size: 13px;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}
.btn-book:hover { background: #E07F00; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(247,148,29,0.35); }
.btn-book-mobile-label { display: none; }

/* MODE TABS */
.mode-tabs { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin: 0 0 48px; }
.mode-card {
  display: flex; align-items: center; gap: 18px; width: 100%; text-align: left; font-family: inherit;
  border-radius: 14px; padding: 30px 26px; min-height: 110px;
  border: 1.5px solid var(--border);
  background: #fff; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.mode-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(10,20,40,0.1); }
.mode-card i:last-child { transition: transform .25s ease; }
.mode-card:hover i:last-child { transform: translateX(4px); }
.mode-card i:first-child { font-size: 34px; }
.mode-card div { flex: 1; display: flex; flex-direction: column; }
.mode-card strong { font-size: 18px; letter-spacing: 0.3px; }
.mode-card span { font-size: 13px; color: var(--muted); }
.mode-card.day-out { border-color: var(--orange); }
.mode-card.day-out i:first-child { color: var(--orange); }
.mode-card.day-out strong { color: var(--orange); }
.mode-card.stay-only { border-color: var(--teal); }
.mode-card.stay-only i:first-child { color: var(--teal); }
.mode-card.stay-only strong { color: var(--teal); }
.mode-card.active { color: #fff; }
.mode-card.active i, .mode-card.active strong { color: #fff !important; }
.mode-card.active span { color: rgba(255,255,255,0.8); }
.mode-card.day-out.active { background: var(--orange); border-color: var(--orange); }
.mode-card.day-stay.active { background: var(--navy); border-color: var(--navy); }
.mode-card.stay-only.active { background: var(--teal); border-color: var(--teal); }

.section-block { margin-bottom: 56px; }
.section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.section-eyebrow {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 6px;
}
.section-head h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.2px; color: var(--navy); }
.section-head a { font-size: 13px; color: var(--orange); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; transition: gap .2s ease; }
.section-head a:hover { gap: 8px; }

/* CATEGORY STRIP */
.category-strip {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 4px 32px 10px; scrollbar-width: none;
  margin: 0 -32px; width: calc(100% + 64px);
}
.category-strip::-webkit-scrollbar { display: none; }
.cat-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 10px; font-size: 13px; font-weight: 700; text-align: center; color: var(--text);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  flex: 0 0 150px; height: 140px; scroll-snap-align: start;
}
.cat-item:hover {
  transform: translateY(-6px); box-shadow: 0 16px 30px rgba(10,20,40,0.1); border-color: transparent;
}
.cat-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
  transition: transform .25s ease;
}
.cat-item:hover .cat-icon { transform: scale(1.1) rotate(-4deg); }
.cat-icon.orange { background: #FFF3E0; color: var(--orange); }
.cat-icon.navy { background: #E8EEF9; color: var(--navy); }
.cat-icon.teal { background: #E0F7F7; color: var(--teal); }
.cat-icon.green { background: #E9F9EE; color: #16A34A; }

/* OFFER BANNER */
.hero-section { margin-bottom: 40px; position: relative; }
.hero-banner-carousel { position: relative; }
.hero-banner-carousel .hero-card {
  display: none; align-items: flex-end;
}
.hero-banner-carousel .hero-card.active { display: flex; }
.hero-category-overlap {
  display: flex; gap: 20px; margin: -48px 48px 0; position: relative; z-index: 3;
}
.hero-cat-card {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: #fff; border-radius: 14px; padding: 20px 12px 16px;
  box-shadow: 0 16px 36px rgba(10,20,40,0.14); text-decoration: none; font-size: 13px;
  color: var(--text); font-weight: 700; border: none; cursor: pointer;
}
.hero-cat-card i { font-size: 24px; }
.hero-cat-card.active { background: var(--orange); color: #fff; }
.offer-banner {
  background-size: cover; background-position: center;
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 56px;
  box-shadow: 0 16px 40px rgba(10,20,40,0.16);
  min-height: 280px;
  transition: background-size .6s ease;
}
.offer-banner:hover { background-size: 108%; }
.offer-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,20,40,0.82) 45%, rgba(10,20,40,0.25) 100%);
  z-index: 0;
}
.offer-banner > *:not(.offer-banner-overlay) { position: relative; z-index: 1; }
.offer-text h3 { color: #fff; }
.offer-price { color: #F1F5F9; }
.offer-pill {
  background: #fff; color: var(--orange); font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px; display: inline-block; margin-bottom: 10px;
}
.offer-text h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.offer-price { font-size: 15px; margin-bottom: 14px; }
.offer-price strong { color: var(--orange); font-size: 26px; }
.btn-explore {
  background: var(--navy); color: #fff; padding: 10px 20px; border-radius: 8px;
  font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s ease, transform .15s ease;
}
.btn-explore:hover { background: #14294e; transform: translateY(-1px); }
.btn-explore i { transition: transform .2s ease; }
.btn-explore:hover i { transform: translateX(4px); }
.offer-limited {
  background: var(--orange); color: #fff; font-size: 11px; font-weight: 700;
  padding: 6px 12px; border-radius: 20px; position: absolute; top: 20px; right: 20px;
}

/* CARD GRID (popular + group) */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 22px; }

.stay-card, .group-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.stay-card:hover, .group-card:hover {
  box-shadow: 0 16px 32px rgba(10,20,40,0.12); transform: translateY(-5px); border-color: transparent;
}
.stay-photo, .group-photo {
  height: 200px; background-size: cover; background-position: center; position: relative;
  transition: background-size .5s ease; overflow: hidden; display: block;
}
.stay-card:hover .stay-photo, .group-card:hover .group-photo { background-size: 116%; }
.stay-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.stay-card:hover .stay-photo img { transform: scale(1.12); }
.group-photo { height: 180px; }
.popular-tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--navy); color: #fff; font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: 6px;
}
.stay-body, .group-body { padding: 18px; }
.stay-body h4, .group-body h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.stay-loc { font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.stay-loc i { color: var(--orange); margin-right: 3px; }
.stay-rating { font-size: 12px; margin-bottom: 8px; }
.stay-rating i { color: var(--orange); }
.stay-price { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.stay-price span { font-size: 11px; font-weight: 500; color: var(--muted); }
.stay-pkg {
  display: inline-block; background: #E0F7F7; color: var(--teal);
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 6px;
}
.stay-body-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 10px; }
.stay-enquire-btn {
  background: var(--orange); color: #fff; font-size: 11px; font-weight: 700;
  padding: 6px 14px; border-radius: 6px; flex-shrink: 0;
  transition: background .2s ease, transform .15s ease;
}
.stay-enquire-btn:hover { background: #E07F00; transform: translateY(-1px); }
.group-body span { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }

/* STATS STRIP */
.stats-strip {
  display: flex; justify-content: space-around; text-align: center;
  background: linear-gradient(135deg, var(--navy), #0F2547);
  border-radius: 16px; padding: 32px 20px; margin-bottom: 56px; flex-wrap: wrap; gap: 20px;
}
.stats-item strong { display: block; font-family: var(--font-display); font-size: 30px; font-weight: 700; color: #fff; }
.stats-item span { font-size: 12px; color: rgba(255,255,255,0.75); }

/* TRUST STRIP */
.trust-strip {
  background: transparent; display: flex; justify-content: space-between;
  margin: 10px 0 56px; flex-wrap: wrap; gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px; flex: 1 1 180px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(10,20,40,0.04);
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.trust-item:hover { box-shadow: 0 16px 32px rgba(10,20,40,0.1); transform: translateY(-4px); border-color: transparent; }
.trust-item i { font-size: 22px; color: var(--teal); transition: transform .25s ease; flex-shrink: 0; }
.trust-item:hover i { transform: scale(1.15); }
.trust-item strong { display: block; font-size: 13px; }
.trust-item span { font-size: 11px; color: var(--muted); }

/* FOOTER */
.site-footer { background: var(--navy); color: #C7D2E8; padding: 40px 32px 0; margin-top: 30px; }
.footer-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px;
  align-items: start;
  padding-bottom: 40px;
}
.footer-brand .nav-logo i { color: #fff; }
.footer-brand p { font-size: 13px; margin: 14px 0; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px;
  transition: background .2s ease, transform .2s ease;
}
.footer-social a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-col h4, .footer-newsletter h4 { color: #fff; font-size: 14px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; margin-bottom: 12px; color: #C7D2E8; }
.footer-col a:hover { color: #fff; }
.footer-newsletter p { font-size: 12px; margin-bottom: 14px; line-height: 1.5; }
.newsletter-form { display: flex; }
.newsletter-form input {
  flex: 1; min-width: 0; border: none; border-radius: 6px 0 0 6px; padding: 11px 12px; font-size: 12px; outline: none;
}
.newsletter-form button {
  background: var(--orange); color: #fff; border-radius: 0 6px 6px 0; padding: 0 16px; font-weight: 700; font-size: 12px; flex-shrink: 0;
}
.footer-bottom {
  max-width: 1440px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: #9FB0CE; }

/* PROPERTY DETAIL */
.detail-hero {
  min-height: 340px; border-radius: 16px; background-size: cover; background-position: center;
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
  box-shadow: 0 20px 50px rgba(10,20,40,0.18);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
.detail-hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,20,40,0.8), rgba(10,20,40,0.1)); }
.detail-hero-content { position: relative; z-index: 2; padding: 30px; color: #fff; }
.detail-hero-content > * { animation: fadeUp .7s ease both; }
.detail-hero-content h1 { animation-delay: .1s; }
.detail-hero-content .detail-loc { animation-delay: .2s; }
.detail-hero-content h1 { font-family: var(--font-display); font-size: 38px; font-weight: 700; margin: 10px 0 6px; }
.detail-loc { font-size: 14px; color: #E5E7EB; }
.detail-loc i { color: var(--orange); margin-right: 6px; }

.detail-service-pill {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  background: var(--teal); color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 20px;
}
.detail-rating-pill {
  position: absolute; top: 20px; right: 20px; z-index: 3;
  background: #fff; border-radius: 10px; padding: 8px 14px; text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.detail-rating-pill span { display: block; font-size: 17px; font-weight: 800; color: var(--navy); }
.detail-rating-pill span i { color: var(--orange); font-size: 14px; }
.detail-rating-pill small { font-size: 10px; color: var(--muted); }

.gallery-cat-tabs { display: flex; gap: 8px; overflow-x: auto; margin-top: 12px; scrollbar-width: none; }
.gallery-cat-tabs::-webkit-scrollbar { display: none; }
.gallery-cat-tab {
  flex-shrink: 0; font-size: 12px; font-weight: 600; color: var(--muted); background: #fff;
  border: 1px solid var(--border); border-radius: 20px; padding: 7px 14px; transition: all .2s ease;
}
.gallery-cat-tab:hover { border-color: var(--teal); color: var(--teal); }
.gallery-cat-tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }

.detail-gallery { display: flex; gap: 8px; overflow-x: auto; margin-top: 10px; scrollbar-width: none; }
.detail-gallery::-webkit-scrollbar { display: none; }
.detail-gallery-item {
  flex: 0 0 120px; height: 90px; border-radius: 8px; background-size: cover; background-position: center;
  position: relative; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color .2s ease, opacity .2s ease;
}
.detail-gallery-item:hover { opacity: 0.85; }
.detail-gallery-item.active { border-color: var(--orange); }
.detail-gallery-item.gallery-hidden { display: none; }

.quick-amenity-strip {
  display: flex; gap: 22px; flex-wrap: wrap; background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 20px; margin-top: 14px;
}
.quick-amenity { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text); }
.quick-amenity i { color: var(--teal); }
.quick-amenity.more { color: var(--orange); font-weight: 700; cursor: default; }

.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; margin-top: 26px; align-items: stretch; }
.detail-side { align-self: stretch; }
.detail-main { display: flex; flex-direction: column; gap: 20px; }
.detail-main .section-block { margin-bottom: 0; }
.detail-panel {
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px;
  transition: box-shadow .3s ease, transform .3s ease;
}
.detail-panel:hover { box-shadow: 0 16px 40px rgba(10,20,40,0.08); transform: translateY(-2px); }
.detail-main h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.detail-desc { font-size: 14px; line-height: 1.7; color: var(--text); }

/* REVIEWS */
.review-summary { display: flex; gap: 32px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.review-score { text-align: center; flex-shrink: 0; }
.review-score strong { display: block; font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--navy); }
.review-stars { color: var(--orange); font-size: 14px; margin: 4px 0; }
.review-score span { font-size: 12px; color: var(--muted); }
.review-bars { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 6px; }
.review-bar-row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); }
.review-bar-row span:first-child { width: 34px; flex-shrink: 0; }
.review-bar-row span:first-child i { color: var(--orange); font-size: 10px; }
.review-bar-row span:last-child { width: 32px; flex-shrink: 0; text-align: right; }
.review-bar-track { flex: 1; height: 6px; background: #EEF1F5; border-radius: 4px; overflow: hidden; }
.review-bar-fill { height: 100%; background: var(--teal); border-radius: 4px; }

.review-categories {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 20px;
}
.review-cat { text-align: center; }
.review-cat span { display: block; font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.review-cat strong { font-size: 14px; color: var(--navy); }
.review-cat strong i { color: var(--orange); font-size: 11px; }

.review-list { display: flex; flex-direction: column; gap: 16px; }
.review-item { border-top: 1px solid var(--border); padding-top: 16px; }
.review-item:first-child { border-top: none; padding-top: 0; }
.review-item-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.review-item-head strong { font-size: 13px; display: block; }
.review-item-stars { font-size: 11px; color: var(--orange); }
.review-item-date { margin-left: auto; font-size: 11px; color: var(--muted); flex-shrink: 0; }
.review-item-comment { font-size: 13px; line-height: 1.6; color: var(--text); }

/* AMENITIES FULL GRID */
.amenity-full-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.amenity-full-item { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.amenity-full-item i { font-size: 20px; color: var(--teal); }
.amenity-full-item span { font-size: 12px; font-weight: 600; color: var(--text); }

/* LOCATION */
.detail-location-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; align-items: stretch; }
.detail-map-embed { border-radius: 10px; overflow: hidden; min-height: 200px; border: 1px solid var(--border); }
.detail-location-info { display: flex; flex-direction: column; gap: 6px; }
.detail-location-info strong { font-size: 14px; color: var(--navy); }
.detail-location-info p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }

/* STICKY MOBILE BAR */
.detail-sticky-bar { display: none; }

.section-head .btn-outline { padding: 8px 16px; font-size: 12px; }

/* WRITE REVIEW MODAL */
.review-modal-backdrop {
  position: fixed; inset: 0; background: rgba(10,20,40,0.55); z-index: 300;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.review-modal-backdrop.open { opacity: 1; pointer-events: auto; }
.review-modal {
  background: #fff; border-radius: 20px; padding: 32px; max-width: 420px; width: 100%;
  text-align: center; position: relative; box-shadow: 0 30px 80px rgba(10,20,40,0.3);
  transform: translateY(20px); transition: transform .25s ease;
}
.review-modal-backdrop.open .review-modal { transform: translateY(0); }
.review-modal-close {
  position: absolute; top: 14px; right: 14px; background: #F4F7FC; border-radius: 50%;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px;
}
.review-modal-icon {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--orange), #FFB74D); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  box-shadow: 0 10px 24px rgba(247,148,29,0.35);
}
.review-modal h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.review-modal p { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.review-modal-form { display: flex; flex-direction: column; gap: 14px; }
.star-rating-input { display: flex; justify-content: center; gap: 8px; font-size: 30px; }
.star-pick { color: #E5E7EB; cursor: pointer; transition: color .15s ease, transform .15s ease; }
.star-pick:hover { transform: scale(1.15); }
.star-pick.picked { color: var(--orange); }
.review-modal-form textarea {
  border: 1px solid var(--border); border-radius: 10px; padding: 12px; font-size: 13px;
  font-family: inherit; resize: vertical;
}
.review-modal-login-note { font-size: 13px; color: var(--text); margin-bottom: 16px !important; }

/* SUCCESS TOAST */
.toast-success {
  position: fixed; top: 90px; right: 24px; z-index: 400;
  background: #fff; border-radius: 14px; padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 16px 40px rgba(10,20,40,0.2); border-left: 4px solid #10B981;
  transform: translateX(120%); opacity: 0; transition: transform .35s ease, opacity .35s ease;
  max-width: 340px;
}
.toast-success.show { transform: translateX(0); opacity: 1; }
.toast-success-icon {
  width: 34px; height: 34px; border-radius: 50%; background: #ECFDF5; color: #10B981;
  display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
}
.toast-success strong { display: block; font-size: 13px; color: var(--navy); }
.toast-success span { font-size: 11px; color: var(--muted); }

/* OTP LOGIN MODAL */
.otp-modal-backdrop {
  position: fixed; inset: 0; background: rgba(10,20,40,0.6); z-index: 350;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.otp-modal-backdrop.open { opacity: 1; pointer-events: auto; }
.otp-modal {
  background: #fff; border-radius: 20px; max-width: 760px; width: 100%; min-height: 520px;
  position: relative; box-shadow: 0 30px 80px rgba(10,20,40,0.35);
  transform: translateY(20px); transition: transform .25s ease;
  display: flex; overflow: hidden;
}
.otp-modal-backdrop.open .otp-modal { transform: translateY(0); }

.otp-modal-left {
  flex: 0 0 42%; position: relative; padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; background-size: cover; background-position: center;
}
.otp-modal-left-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,14,30,0.97) 0%, rgba(6,14,30,0.95) 55%, rgba(6,14,30,0.75) 80%, rgba(6,14,30,0.45) 100%);
}
.otp-modal-left > * { position: relative; z-index: 1; }
.otp-modal-logo {
  height: 44px; width: auto; position: absolute; top: 24px; left: 28px; z-index: 1;
}
.otp-modal .otp-modal-left h2 { font-family: var(--font-display); font-size: 26px; font-weight: 700; line-height: 1.25; margin-bottom: 10px; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.otp-modal .otp-modal-left p { font-size: 12.5px; color: rgba(255,255,255,0.92); line-height: 1.6; margin-bottom: 18px; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.otp-modal-perks { display: flex; flex-direction: column; gap: 8px; }
.otp-modal-perks li { font-size: 12px; font-weight: 600; color: #fff; display: flex; align-items: center; gap: 8px; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.otp-modal-perks i { color: var(--orange); }

.otp-modal-right { flex: 1; padding: 40px 40px 32px; text-align: left; display: flex; flex-direction: column; justify-content: center; }

.otp-modal-icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--navy), #14294e); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 19px;
  box-shadow: 0 10px 24px rgba(27,58,107,0.25);
}
.otp-modal h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.otp-modal p { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.otp-modal p strong { color: var(--navy); }
.otp-modal .review-modal-close { z-index: 2; background: rgba(255,255,255,0.9); }

.otp-phone-row {
  display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 10px;
  overflow: hidden; margin-bottom: 8px;
}
.otp-country-code { background: #F4F7FC; padding: 12px 14px; font-size: 14px; font-weight: 600; color: var(--navy); border-right: 1px solid var(--border); }
.otp-phone-row input {
  flex: 1; border: none; outline: none; padding: 12px 14px; font-size: 15px; font-family: inherit; letter-spacing: 0.5px;
}

.otp-code-row { display: flex; justify-content: center; gap: 10px; margin-bottom: 8px; }
.otp-digit {
  width: 50px; height: 56px; text-align: center; font-size: 22px; font-weight: 700;
  border: 1.5px solid var(--border); border-radius: 10px; outline: none; color: var(--navy);
  transition: border-color .2s ease;
}
.otp-digit:focus { border-color: var(--orange); }

.otp-name-input {
  width: 100%; border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 14px;
  font-size: 14px; font-family: inherit; margin-bottom: 8px; outline: none; box-sizing: border-box;
}

.otp-error { color: #EF4444; font-size: 12px; min-height: 16px; margin-bottom: 10px; text-align: left; }
.otp-resend { background: none; color: var(--teal); font-size: 12px; font-weight: 600; margin-top: 14px; }
.otp-resend:hover { text-decoration: underline; }

.pkg-list { display: flex; flex-direction: column; gap: 12px; }
.pkg-item {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  background: #F9FAFC; border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.pkg-item:hover { border-color: var(--teal); box-shadow: 0 8px 20px rgba(0,155,155,0.08); }
.pkg-item-info { flex: 1; min-width: 0; }
.pkg-item-info strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.pkg-item-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 6px; }
.pkg-item-meta span { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.pkg-item-meta i { color: var(--teal); }
.pkg-item-includes { font-size: 12px; color: var(--muted); line-height: 1.5; }
.pkg-item-cta { text-align: right; flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.pkg-price { font-weight: 800; color: var(--navy); font-size: 17px; line-height: 1.3; }
.pkg-price span { font-size: 11px; font-weight: 500; color: var(--muted); }
.pkg-price small { display: block; font-size: 11px; font-weight: 600; color: var(--muted); }
.pkg-item-cta .btn-book { padding: 9px 22px; font-size: 12px; }

.amenity-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.amenity-chip {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 8px 14px; font-size: 12px; font-weight: 600;
}
.amenity-chip i { color: var(--teal); margin-right: 6px; }

.enquiry-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 22px;
  position: sticky; top: 90px;
  box-shadow: 0 16px 40px rgba(10,20,40,0.08);
}
.enquiry-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }

.enquiry-card-head { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.enquiry-card-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), #FFB74D); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  box-shadow: 0 8px 16px rgba(247,148,29,0.3);
}
.enquiry-card-head h4 { margin: 0 0 2px; font-size: 15px; font-weight: 700; color: var(--navy); }
.enquiry-card-head p { font-size: 11px; color: var(--muted); line-height: 1.4; }

.enquiry-quick-actions { display: flex; flex-direction: column; gap: 10px; }

.enquiry-divider {
  display: flex; align-items: center; text-align: center;
  font-size: 11px; color: var(--muted); margin: 18px 0 14px;
}
.enquiry-divider::before, .enquiry-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.enquiry-divider span { padding: 0 10px; white-space: nowrap; }

.enquiry-trust-note {
  display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: var(--muted);
  margin-top: 14px; text-align: center; justify-content: center; line-height: 1.4;
}
.enquiry-trust-note i { color: var(--teal); flex-shrink: 0; }
.detail-side-btn { display: block; width: 100%; text-align: center; margin-bottom: 10px; box-sizing: border-box; }
.enquiry-success {
  background: #ECFDF5; color: #059669; font-size: 12px; padding: 10px 12px;
  border-radius: 8px; margin-bottom: 14px;
}
.enquiry-form { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.enquiry-form input, .enquiry-form textarea {
  border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px;
  font-size: 13px; font-family: inherit; width: 100%; box-sizing: border-box;
}

/* NO-PHOTO PLACEHOLDER */
.no-photo {
  background: linear-gradient(135deg, #EEF2F8, #E4EAF3) !important;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: #A9B4C6;
}
.no-photo i { font-size: 26px; }
.no-photo span { font-size: 11px; font-weight: 600; }

/* SECTION BANDS (visual rhythm / variety) */
.band-navy {
  background: linear-gradient(160deg, #E9F0FB 0%, #DCE7F7 100%);
  border-radius: 20px; padding: 40px; margin-left: -8px; margin-right: -8px;
  box-shadow: 0 12px 30px rgba(27,58,107,0.06);
}
.band-tint {
  background: linear-gradient(160deg, #FFF3E3 0%, #FFE9CF 100%);
  border-radius: 20px; padding: 40px;
  box-shadow: 0 12px 30px rgba(247,148,29,0.08);
}

/* LEGAL PAGES */
.legal-page h3 { font-size: 16px; margin: 24px 0 8px; }
.legal-page h3:first-child { margin-top: 0; }
.legal-page .detail-desc { margin-bottom: 4px; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 24px; align-items: start; }
.contact-info-col { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card { display: flex; align-items: center; gap: 14px; padding: 20px; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: #E8EEF9; color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-info-card strong { display: block; font-size: 13px; color: var(--navy); margin-bottom: 2px; }
.contact-info-card span { font-size: 13px; color: var(--muted); }
.contact-form-card textarea {
  border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px;
  font-size: 13px; font-family: inherit; width: 100%; box-sizing: border-box; resize: vertical;
}

/* ABOUT: SPLIT SECTIONS */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-split-reverse .about-split-img { order: 2; }
.about-split-reverse .about-split-content { order: 1; }
.about-split-img { height: 340px; border-radius: 18px; background-size: cover; background-position: center; box-shadow: 0 20px 50px rgba(10,20,40,0.14); }
.about-split-content h3 { font-size: 26px; margin: 6px 0 14px; }
.about-split-content .detail-desc { margin-bottom: 14px; }
.about-split-content .detail-desc:last-child { margin-bottom: 0; }

/* ABOUT: VISION & MISSION */
.vision-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vision-mission-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px;
  transition: box-shadow .3s ease, transform .3s ease;
}
.vision-mission-card:hover { box-shadow: 0 16px 40px rgba(10,20,40,0.1); transform: translateY(-3px); }
.vision-mission-card h4 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 6px 0 10px; }
.vision-mission-card p { font-size: 13.5px; line-height: 1.7; color: var(--muted); }

/* ABOUT: FOUNDER NOTE */
.founder-note { text-align: center; padding: 40px; position: relative; }
.founder-quote-icon { font-size: 24px; color: var(--orange); opacity: 0.5; margin-bottom: 10px; }
.founder-quote { font-family: var(--font-display); font-size: 18px; font-style: italic; line-height: 1.7; color: var(--navy); max-width: 720px; margin: 0 auto 20px; }
.founder-info { display: flex; align-items: center; justify-content: center; gap: 12px; }
.founder-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), #14294e);
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px;
}
.founder-info strong { display: block; font-size: 13px; color: var(--navy); }
.founder-info span { font-size: 12px; color: var(--muted); }

/* ABOUT: TEAM */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-item {
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px 18px; text-align: center;
  transition: box-shadow .3s ease, transform .3s ease;
}
.team-item:hover { box-shadow: 0 16px 32px rgba(10,20,40,0.1); transform: translateY(-4px); }
.team-avatar {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 14px; background: #E8EEF9; color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.team-item strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.team-item span { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ABOUT: TESTIMONIALS */
.testimonial-card {
  background: #fff; border-radius: 14px; padding: 24px; box-shadow: 0 10px 30px rgba(10,20,40,0.06);
}
.testimonial-card .review-stars { font-size: 13px; color: var(--orange); margin-bottom: 12px; }
.testimonial-card p { font-size: 13px; line-height: 1.7; color: var(--text); margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-author strong { display: block; font-size: 13px; color: var(--navy); }
.testimonial-author span { font-size: 11px; color: var(--muted); }

/* WHY CHOOSE US */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-item {
  text-align: left; background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 22px; transition: box-shadow .3s ease, transform .3s ease;
}
.why-item:hover { box-shadow: 0 16px 32px rgba(10,20,40,0.1); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px; border-radius: 14px; background: #E8EEF9; color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.why-item:hover .why-icon { transform: translateY(-4px); background: var(--orange); color: #fff; }
.why-item h4 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.why-item p { font-size: 13px; line-height: 1.6; color: var(--muted); }

/* HOW IT WORKS */
.how-it-works {
  position: relative; border-radius: 20px; overflow: hidden; margin-bottom: 56px;
  background: url('https://images.pexels.com/photos/338504/pexels-photo-338504.jpeg?auto=compress&w=1600') center/cover;
  padding: 56px 40px;
}
.how-it-works-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(27,58,107,0.94), rgba(0,155,181,0.85)); }
.how-it-works-content { position: relative; z-index: 1; color: #fff; text-align: center; }
.how-it-works-content h3 { font-family: var(--font-display); font-size: 30px; font-weight: 700; margin: 6px 0 40px; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 900px; margin: 0 auto; }
.how-step { text-align: left; }
.how-step-num { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: rgba(255,255,255,0.35); display: block; margin-bottom: 6px; }
.how-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.how-step p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.85); }

/* EXPLORE BY CITY */
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.city-item {
  position: relative; overflow: hidden; border-radius: 14px; height: 160px;
  background-size: cover; background-position: center;
  padding: 18px; display: flex; flex-direction: column; justify-content: flex-end; gap: 2px;
  transition: transform .3s ease, box-shadow .3s ease, background-size .5s ease;
}
.city-item:hover { transform: translateY(-6px); box-shadow: 0 18px 34px rgba(10,20,40,0.2); background-size: 114%; }
.city-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,20,40,0.82) 15%, rgba(10,20,40,0.1) 65%);
  z-index: 0;
}
.city-item > *:not(.city-item-overlay) { position: relative; z-index: 1; }
.city-name { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: #fff; }
.city-count { font-size: 12px; color: rgba(255,255,255,0.8); }

/* OWNER CTA */
.owner-cta {
  background: linear-gradient(135deg, var(--navy), #0F2547);
  border-radius: 20px; padding: 44px 48px; margin-bottom: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  flex-wrap: wrap;
}
.owner-cta-text h3 { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: #fff; margin: 6px 0 10px; }
.owner-cta-text p { font-size: 14px; color: rgba(255,255,255,0.75); max-width: 480px; line-height: 1.6; }
.owner-cta .btn-book { flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px; }

/* ACCOUNT PAGE */
.account-hero {
  display: flex; align-items: center; gap: 20px; background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 28px; margin-bottom: 24px;
}
.account-avatar {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), #14294e); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700;
}
.account-hero h1 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.account-hero p { font-size: 13px; color: var(--muted); }
.account-hero p i { color: var(--teal); margin-right: 6px; }
.account-logout { margin-left: auto; }

.account-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; align-items: stretch; }
.account-main { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.account-main .section-block { margin-bottom: 0; }
.account-side { align-self: stretch; min-width: 0; }
.detail-panel { min-width: 0; }

.account-form { display: flex; flex-direction: column; gap: 14px; }
.account-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.account-form input {
  border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px;
  font-size: 13px; font-family: inherit; width: 100%; box-sizing: border-box;
}

.account-enquiry-list { display: flex; flex-direction: column; gap: 10px; }
.account-enquiry-item {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: #F9FAFC; border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px;
}
.account-enquiry-item strong { display: block; font-size: 13px; color: var(--navy); margin-bottom: 4px; }
.account-enquiry-item span:not(.badge-verified) { font-size: 11px; color: var(--muted); }

/* PROPERTIES PAGE — NEW HERO BANNER */
.props-hero-banner {
  display: flex; align-items: stretch; gap: 0; background: #fff; border-radius: 20px;
  overflow: hidden; margin-bottom: 24px; box-shadow: 0 10px 30px rgba(10,20,40,0.06); min-height: 260px;
}
.props-hero-text { flex: 1.1; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.props-hero-text h1 { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 12px; }
.props-hero-text p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.props-hero-perks { display: flex; gap: 20px; flex-wrap: wrap; }
.props-hero-perks span { font-size: 12px; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 6px; }
.props-hero-perks i { color: var(--orange); }

.props-hero-photo {
  flex: 1; position: relative; background-size: cover; background-position: center;
  border-radius: 0 0 0 60px;
}
.props-hero-offer {
  position: absolute; top: 24px; right: 24px; background: rgba(10,20,40,0.85); color: #fff;
  border-radius: 14px; padding: 18px 22px; text-align: right; backdrop-filter: blur(4px);
}
.props-hero-offer span { display: block; font-size: 11px; color: rgba(255,255,255,0.75); }
.props-hero-offer strong { display: block; font-family: var(--font-display); font-size: 24px; color: var(--orange); margin: 2px 0; }
.props-hero-offer small { display: block; font-size: 10px; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.props-hero-offer .btn-explore { font-size: 11px; padding: 8px 14px; }

/* CATEGORY ICON FILTER ROW */
.cat-filter-row {
  display: flex; gap: 20px; overflow-x: auto; padding: 4px 0 16px; margin-bottom: 8px;
  border-bottom: 1px solid var(--border); scrollbar-width: none;
}
.cat-filter-row::-webkit-scrollbar { display: none; }
.cat-filter-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0;
  font-size: 11.5px; font-weight: 600; color: var(--muted);
}
.cat-filter-icon {
  width: 52px; height: 52px; border-radius: 50%; background: #F4F7FC; color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  border: 2px solid transparent; transition: all .2s ease;
}
.cat-filter-item:hover .cat-filter-icon { border-color: var(--teal); }
.cat-filter-item.active .cat-filter-icon { background: var(--navy); color: #fff; border-color: var(--navy); }
.cat-filter-item.active { color: var(--navy); font-weight: 700; }

/* SORT CHIP ROW */
.sort-chip-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
.sort-chip {
  font-size: 12px; font-weight: 600; color: var(--text); background: #fff;
  border: 1px solid var(--border); border-radius: 20px; padding: 8px 16px;
  transition: all .2s ease;
}
.sort-chip:hover { border-color: var(--teal); color: var(--teal); }
.sort-chip.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* PROPERTY LIST CARDS (horizontal) */
.prop-list { display: flex; flex-direction: column; gap: 8px; }
.prop-list-card {
  display: flex; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 8px; transition: box-shadow .3s ease, transform .3s ease;
}
.prop-list-card:hover { box-shadow: 0 16px 32px rgba(10,20,40,0.1); transform: translateY(-3px); }
.prop-list-photo { flex: 0 0 280px; height: 190px; border-radius: 10px; overflow: hidden; position: relative; display: block; }
.prop-list-photo img { width: 100%; height: 100%; object-fit: cover; }
.prop-list-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.prop-list-top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.prop-list-body h4 { font-size: 14px; font-weight: 700; margin-bottom: 1px; line-height: 1.25; }
.prop-list-desc { font-size: 12.5px; color: var(--muted); margin: 4px 0; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.prop-list-actions { display: flex; align-items: center; gap: 8px; }
.prop-list-icon-btn { padding: 8px 12px; }
.prop-list-body .stay-loc { margin-bottom: 2px; font-size: 12px; }
.prop-list-body .stay-rating { margin-bottom: 2px; }
.prop-list-amenities { display: flex; gap: 5px; flex-wrap: wrap; margin: 4px 0; }
.prop-list-amenities .amenity-chip { font-size: 10px; padding: 3px 8px; }
.prop-list-amenities .amenity-chip.more { background: #F4F7FC; color: var(--muted); }
.prop-list-bottom { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; padding-top: 4px; }
.prop-list-bottom .btn-book { padding: 6px 14px; font-size: 12px; }

/* PROPERTIES STICKY ENQUIRY BAR */
.props-sticky-bar {
  display: flex !important; position: sticky; bottom: 0; left: 0; right: 0; margin-top: 24px;
  background: linear-gradient(90deg, var(--navy), var(--teal)); border-radius: 14px; padding: 16px 24px;
  box-shadow: 0 -10px 30px rgba(10,20,40,0.15); z-index: 50;
}
.props-sticky-bar .btn-book { background: var(--orange); }

/* PROPERTIES PAGE HERO */
.props-page-hero {
  min-height: 220px; border-radius: 20px; background-size: cover; background-position: center;
  position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 28px; text-align: center;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
.props-page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,20,40,0.8), rgba(0,155,155,0.55));
}
.props-page-hero-content { position: relative; z-index: 1; color: #fff; padding: 20px; }
.props-page-hero-content > * { animation: fadeUp .7s ease both; }
.props-page-hero-content h1 { animation-delay: .1s; }
.props-page-hero-content p { animation-delay: .2s; }
.props-page-hero-content h1 { font-family: var(--font-display); font-size: 34px; font-weight: 700; margin-bottom: 8px; }
.props-page-hero-content p { font-size: 15px; color: #E5E7EB; }

/* PROPERTIES LAYOUT (sidebar filter + results) */
.props-layout { display: flex; align-items: flex-start; gap: 28px; }
.props-results { flex: 1; min-width: 0; }
.mobile-filter-trigger { display: none; }
.filter-backdrop { display: none; }

.filter-sidebar {
  flex: 0 0 260px; background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 20px; position: sticky; top: 90px;
}
.filter-sidebar-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.filter-sidebar-head h4 { font-size: 15px; font-weight: 700; color: var(--navy); }
.filter-close { display: none; background: none; font-size: 16px; color: var(--muted); }

.filter-bar {
  display: flex; flex-direction: column; gap: 14px; padding: 14px 0 0;
}
.filter-bar input, .filter-bar select {
  border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px;
  font-size: 13px; font-family: inherit; color: var(--text); width: 100%;
}
.filter-bar .btn-search { padding: 11px 24px; width: 100%; text-align: center; }
.filter-bar .btn-outline { width: 100%; text-align: center; }
.filter-group { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.filter-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; color: var(--muted); }
.filter-divider { height: 1px; background: var(--border); margin: 2px 0; }
.filter-price-row { display: flex; align-items: center; gap: 8px; }
.filter-price-row input { width: 0; flex: 1; }
.filter-price-row span { color: var(--muted); font-size: 12px; flex-shrink: 0; }
.filter-checks { display: flex; flex-direction: column; gap: 8px; max-height: 220px; overflow-y: auto; }
.filter-check {
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text);
  cursor: pointer; font-weight: 500;
}
.filter-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--orange); cursor: pointer; flex-shrink: 0; }

.pagination-wrap { margin-top: 24px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ezy-pagination { display: flex; align-items: center; gap: 6px; }
.ezy-page-btn {
  min-width: 36px; height: 36px; padding: 0 8px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 8px;
  font-size: 13px; font-weight: 600; color: var(--navy); background: #fff;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.ezy-page-btn:hover:not(.active):not(.disabled):not(.dots) { border-color: var(--orange); color: var(--orange); }
.ezy-page-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.ezy-page-btn.disabled { color: #C7D0DC; cursor: default; }
.ezy-page-btn.dots { border: none; background: none; }
.ezy-pagination-info { font-size: 12px; color: var(--muted); }
.empty-state { text-align: center; color: var(--muted); padding: 60px 0; font-size: 14px; }

.wishlist-hero {
  display: flex; align-items: center; gap: 16px; color: #fff; padding: 32px 28px;
  border-radius: 16px; margin-bottom: 24px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
}
.wishlist-hero-icon {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
}
.wishlist-hero h1 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.wishlist-hero p { font-size: 13px; color: rgba(255,255,255,0.85); }
@media (max-width: 768px) {
  .wishlist-hero { padding: 22px 18px; gap: 12px; }
  .wishlist-hero-icon { width: 46px; height: 46px; font-size: 18px; }
  .wishlist-hero h1 { font-size: 18px; }
  .wishlist-hero p { font-size: 12px; }
}

@media (max-width: 1100px) {
  .nav-search { display: none; }
  .featured-card { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .mode-tabs { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-inner { padding: 10px 16px; gap: 10px; position: relative; flex-wrap: nowrap; }
  .navbar .logo-img { height: 34px; }
  .navbar .nav-logo { position: static; transform: none; margin-right: auto; }
  .nav-hamburger { display: none !important; }
  .nav-links { display: none; }
  .nav-location {
    display: flex; align-items: center; gap: 4px; border: none; background: none;
    font-size: 11px; color: var(--muted); max-width: 90px; padding: 0;
  }
  .nav-location i { color: var(--orange); font-size: 13px; }
  .nav-location span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .nav-search-btn {
    display: flex; align-items: center; justify-content: center; border: none;
    background: none; font-size: 18px; color: var(--text); padding: 4px;
    margin: 0 auto; flex-shrink: 0;
  }
  .nav-list-property {
    display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700;
    padding: 7px 10px; white-space: nowrap; flex-shrink: 0;
    background: var(--orange); color: #fff; border-radius: 8px !important;
  }
  .nav-list-property i { font-size: 12px; }
  .nav-actions { gap: 8px; margin-left: auto; flex-shrink: 0; }
  .nav-location { flex-shrink: 0; max-width: 70px; }
  .nav-icon-link { display: none !important; }
  .nav-profile { display: none !important; }
  .nav-icon-link span, .nav-icon-link { font-size: 0; gap: 0; }
  .nav-icon-link i { font-size: 18px; }
  .nav-profile span, .nav-profile { font-size: 0; padding: 8px; }
  .nav-profile i { font-size: 20px; }
  .nav-profile i.fa-chevron-down { display: none; }
  .nav-profile img { width: 22px; height: 22px; }

  .mobile-search-screen {
    display: none; position: fixed; inset: 0; z-index: 2000; background: #fff;
    flex-direction: column;
  }
  .mobile-search-screen.open { display: flex; }
  .mobile-search-head {
    display: flex; align-items: center; gap: 10px; padding: 14px 16px;
    border-bottom: 1px solid var(--border); flex-shrink: 0;
  }
  .mobile-search-form {
    flex: 1; display: flex; align-items: center; gap: 8px; border: 1px solid var(--border);
    border-radius: 10px !important; padding: 10px 14px; background: var(--bg);
  }
  .mobile-search-form i { color: var(--muted); }
  .mobile-search-form input { flex: 1; border: none; outline: none; font-size: 14px; background: none; }
  .mobile-search-close {
    display: flex; align-items: center; justify-content: center; width: 36px; height: 36px;
    border: none; background: none; font-size: 20px; color: var(--text); flex-shrink: 0;
  }
  .mobile-search-suggestions { padding: 20px 16px; display: flex; flex-wrap: wrap; gap: 10px; }
  .mobile-search-label { width: 100%; font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 4px; }
  .mobile-search-chip {
    padding: 8px 16px; border-radius: 20px !important; background: var(--bg);
    border: 1px solid var(--border); font-size: 13px; font-weight: 600; color: var(--text);
  }

  .mobile-bottom-nav {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    display: flex; background: #fff; border-top: 1px solid var(--border);
    box-shadow: 0 -4px 16px rgba(10,20,40,0.06);
    transition: transform 0.25s ease;
  }
  .mobile-bottom-nav.hide { transform: translateY(100%); }
  .mobile-bottom-nav a {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2px; padding: 8px 4px; font-size: 10px; color: var(--muted); text-decoration: none;
  }
  .mobile-bottom-nav a i { font-size: 17px; }
  .mobile-bottom-nav a.active { color: var(--orange); }

  main { padding: 14px 16px 76px; }
  .hero-section, .mode-tabs, .section-block, .stats-strip, .offer-banner { margin-left: 0; margin-right: 0; }
  .hero-section { margin-bottom: 12px; margin-top: -14px; margin-left: -16px; margin-right: -16px; width: calc(100% + 32px); }
  .hero-category-overlap { margin-bottom: 0; }
  .section-head { margin-bottom: 12px; }

  .detail-panel, .stay-card, .group-card, .trust-item, .why-item, .team-item,
  .testimonial-card, .vision-mission-card, .filter-sidebar, .enquiry-card,
  .contact-info-card, .account-enquiry-item, .pkg-item, .featured-card,
  .prop-list-card, .mode-card, .cat-item, .amenity-chip, .otp-modal, .review-modal {
    border: none !important;
  }

  .hero-card { min-height: 190px; border-radius: 0 !important; margin-bottom: 0; }
  .hero-content { padding: 20px; }
  .hero-content h1 { font-size: 24px; }
  .hero-content p { font-size: 13px; }
  .hero-badges span { font-size: 11px; padding: 5px 10px; }
  .hero-search { flex-wrap: nowrap; max-width: 100%; padding: 5px 5px 5px 12px; }
  .hero-search button { padding: 9px 16px; font-size: 13px; }

  .hero-category-overlap {
    display: flex; gap: 10px; margin: -32px 16px 8px; position: relative; z-index: 3;
  }
  .hero-cat-card {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px;
    background: #fff; border-radius: 12px !important; padding: 14px 6px 10px;
    box-shadow: 0 10px 24px rgba(10,20,40,0.12); text-decoration: none; font-size: 11px;
    color: var(--text); font-weight: 600;
  }

  .card-scroll {
    display: flex !important; flex-wrap: nowrap; overflow-x: auto; gap: 16px;
    scroll-snap-type: x mandatory; margin: 0 -16px; padding: 4px 16px 10px;
    -webkit-overflow-scrolling: touch;
  }
  .card-scroll::-webkit-scrollbar { display: none; }
  .card-scroll .stay-card { flex: 0 0 78%; scroll-snap-align: start; }

  .mode-tabs { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 32px; }
  .mode-card {
    flex-direction: column; text-align: center; justify-content: center;
    padding: 14px 8px; min-height: 90px; gap: 8px;
  }
  .mode-card div { align-items: center; }
  .mode-card strong { font-size: 11px; letter-spacing: 0.1px; }
  .mode-card span { font-size: 9.5px; line-height: 1.3; }
  .mode-card i:first-child { font-size: 20px; }
  .mode-card i:last-child {
    display: block; font-size: 11px; margin-top: 2px; opacity: 0.6;
  }

  .section-block { margin-bottom: 24px; }
  .offer-banner { margin-bottom: 24px; }
  .mode-tabs { margin-bottom: 24px !important; }
  .section-head h3 { font-size: 19px; }
  .section-head { flex-wrap: wrap; gap: 8px; }

  .category-strip { margin: 0 -16px; width: calc(100% + 32px); padding: 4px 16px 10px; }
  .cat-item { flex: 0 0 110px; height: 120px; padding: 14px 8px; font-size: 12px; }
  .cat-icon { width: 42px; height: 42px; font-size: 18px; }

  .featured-photo { min-height: 160px; }
  .featured-info { padding: 16px; }
  .featured-head { flex-wrap: wrap; gap: 6px; margin-bottom: 6px; }
  .featured-head h4 { font-size: 16px; }
  .featured-loc { margin-bottom: 8px; font-size: 12px; }
  .featured-stats { display: none; }
  .featured-desc {
    margin-bottom: 10px; font-size: 12px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .featured-services { gap: 6px; margin-bottom: 10px; }
  .featured-service-chip { flex: 1 1 auto; min-width: 80px; padding: 6px 8px; }
  .featured-amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
  .featured-amenities .amenity-chip:nth-child(n+5) { display: none; }
  .amenity-chip { text-align: center; justify-content: center; display: flex; align-items: center; gap: 6px; }
  .featured-footer { flex-direction: column; align-items: stretch; gap: 8px; }
  .featured-actions { justify-content: stretch; gap: 8px; }
  .featured-actions a { flex: 1; text-align: center; padding: 9px 10px; font-size: 12px; }
  .featured-footer .btn-book { text-align: center; padding: 10px; }
  .btn-book-price { display: none; }
  .btn-book-mobile-label { display: inline-flex; align-items: center; gap: 6px; }

  .stats-strip { padding: 20px; gap: 16px; }
  .stats-item { flex: 1 1 40%; }
  .stats-item strong { font-size: 22px; }
  .trust-strip { gap: 12px; justify-content: flex-start; }
  .trust-item { flex: 1 1 45%; padding: 14px 16px; }

  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .stay-photo { height: 190px; }
  .group-photo { height: 130px; }

  .offer-banner { padding: 24px; min-height: 220px; flex-wrap: wrap; }
  .offer-text h3 { font-size: 17px; }
  .offer-limited { top: 12px; right: 12px; font-size: 10px; }

  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .how-it-works { padding: 36px 20px; }
  .how-it-works-content h3 { font-size: 22px; margin-bottom: 24px; }
  .how-steps { grid-template-columns: 1fr; gap: 20px; }

  .city-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .city-item { height: 120px; padding: 12px; }
  .city-name { font-size: 16px; }

  .owner-cta { padding: 28px 22px; flex-direction: column; align-items: flex-start; margin-bottom: 20px; }
  .owner-cta-text h3 { font-size: 20px; }
  .owner-cta .btn-book { width: 100%; text-align: center; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 24px; }
  .site-footer { padding: 30px 16px 0; }

  .band-navy, .band-tint { padding: 20px; margin-left: 0; margin-right: 0; }

  .detail-hero { min-height: 260px; }
  .detail-hero-content h1 { font-size: 24px; }
  .detail-service-pill { top: 12px; left: 12px; font-size: 11px; padding: 5px 10px; }
  .detail-rating-pill { top: 12px; right: 12px; padding: 6px 10px; }
  .detail-rating-pill span { font-size: 14px; }

  .detail-gallery-item { flex: 0 0 90px; height: 64px; }
  .gallery-cat-tab { font-size: 11px; padding: 6px 12px; }

  .quick-amenity-strip { gap: 14px; padding: 12px 14px; overflow-x: auto; flex-wrap: nowrap; }
  .quick-amenity { font-size: 12px; flex-shrink: 0; }

  .detail-panel { padding: 16px; }
  .detail-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 16px; }
  .enquiry-card { position: static; }

  .review-summary { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
  .review-score strong { font-size: 34px; }
  .review-bars { width: 100%; }
  .review-categories {
    grid-template-columns: repeat(2, 1fr); gap: 18px 12px;
    padding: 16px 0; text-align: center;
  }
  .review-item-head { flex-wrap: wrap; }
  .review-item-head > div:not(.review-avatar) { flex: 1; min-width: 0; }
  .review-avatar { border-radius: 50% !important; flex-shrink: 0; }
  .review-item-head strong { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .review-item-date { width: 100%; margin-left: 0; order: 3; padding-left: 48px; box-sizing: border-box; margin-top: 4px; }

  .amenity-full-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  .detail-location-row { grid-template-columns: 1fr; }
  .detail-map-embed { min-height: 160px; }

  .detail-sticky-bar {
    display: flex; gap: 10px; position: fixed; bottom: 0; left: 0; right: 0;
    background: #fff; border-top: 1px solid var(--border); padding: 12px 16px;
    box-shadow: 0 -6px 20px rgba(10,20,40,0.1); z-index: 150;
  }
  main:has(.detail-sticky-bar) { padding-bottom: 90px; }

  .section-head { align-items: flex-start; }
  .review-modal { padding: 24px 20px; }
  .toast-success { left: 16px; right: 16px; top: 12px; max-width: none; }

  .otp-modal { flex-direction: column; min-height: 0; max-height: 90vh; overflow-y: auto; }
  .otp-modal-left { display: none; }
  .otp-modal-right { padding: 32px 22px 24px; }

  .account-hero { flex-wrap: wrap; padding: 20px; }
  .account-logout { margin-left: 0; width: 100%; }
  .account-logout button { width: 100%; }
  .account-grid { grid-template-columns: 1fr; gap: 16px; }
  .account-form-row { grid-template-columns: 1fr; }

  .props-hero-banner { flex-direction: column; min-height: 0; }
  .props-hero-text { padding: 24px 20px; order: 2; }
  .props-hero-text h1 { font-size: 20px; }
  .props-hero-perks { gap: 12px; }
  .props-hero-perks span { font-size: 11px; }
  .props-hero-photo { height: 160px; order: 1; border-radius: 0; }
  .props-hero-offer { top: 12px; right: 12px; padding: 12px 14px; }
  .props-hero-offer strong { font-size: 18px; }

  .cat-filter-row { gap: 14px; padding-bottom: 12px; }
  .cat-filter-icon { width: 42px; height: 42px; font-size: 15px; }
  .cat-filter-item { font-size: 10.5px; }

  .sort-chip-row { gap: 8px; }
  .sort-chip { font-size: 11px; padding: 7px 12px; }
  .sort-chip-row .mobile-filter-trigger { margin-left: 0 !important; flex-shrink: 0; width: auto; padding: 7px 14px; margin-bottom: 0; }

  .prop-list-card { flex-direction: column; padding: 8px; border-radius: 14px !important; }
  .prop-list-photo { flex: none; width: 100%; height: 150px; border-radius: 10px !important; }
  .prop-list-bottom { flex-direction: row; align-items: center; gap: 8px; }
  .prop-list-bottom .btn-book { padding: 7px 16px; border-radius: 8px !important; }
  .prop-list-desc { display: none; }
  .prop-list-amenities .amenity-chip:nth-child(n+4) { display: none; }
  .prop-list-icon-btn { display: none; }
  .amenity-chip { border-radius: 20px !important; }

  .props-sticky-bar { padding: 12px 16px; border-radius: 0; margin: 16px -16px -40px; }
  .props-sticky-bar .btn-book { font-size: 12px; padding: 10px; }

  .props-page-hero { min-height: 160px; border-radius: 14px; margin-bottom: 20px; }
  .props-page-hero-content h1 { font-size: 22px; }
  .props-page-hero-content p { font-size: 13px; }

  .pagination-wrap nav { flex-wrap: wrap; justify-content: center; }

  /* FILTER: MOBILE BOTTOM SHEET */
  .mobile-filter-trigger {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; background: #fff; border: 1px solid var(--border); border-radius: 10px;
    padding: 12px; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 16px;
    position: relative;
  }
  .filter-dot { position: absolute; top: 8px; right: calc(50% - 60px); width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }

  .props-layout { display: block; }

  .filter-backdrop {
    display: block; position: fixed; inset: 0; background: rgba(10,20,40,0.5);
    z-index: 199; opacity: 0; pointer-events: none; transition: opacity .25s ease;
  }
  .filter-backdrop.open { opacity: 1; pointer-events: auto; }

  .filter-sidebar {
    position: fixed; left: 0; right: 0; bottom: 0; top: auto;
    max-height: 80vh; overflow-y: auto;
    border-radius: 20px 20px 0 0; border: none;
    box-shadow: 0 -10px 40px rgba(10,20,40,0.25);
    z-index: 200;
    transform: translateY(100%);
    transition: transform .3s ease;
  }
  .filter-sidebar.open { transform: translateY(0); }
  .filter-close { display: block; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 22px; }
  .hero-badges { display: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stay-body { padding: 12px; }
  .stay-body h4 { font-size: 13px; }
  .stay-photo { height: 160px; }
  .stay-body-footer { flex-wrap: wrap; }
  .stay-enquire-btn { font-size: 10px; padding: 5px 10px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 16px; }
  .about-split-reverse .about-split-img { order: 1; }
  .about-split-reverse .about-split-content { order: 2; }
  .about-split-img { height: 200px; }
  .vision-mission-grid { grid-template-columns: 1fr; gap: 14px; }

  .founder-note { padding: 24px 18px; }
  .founder-quote { font-size: 15px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .team-item { padding: 18px 12px; }
  .card-grid-3 { grid-template-columns: 1fr; gap: 14px; }

  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .why-item { padding: 16px; }
  .why-icon { width: 40px; height: 40px; font-size: 16px; margin-bottom: 10px; }
  .why-item h4 { font-size: 14px; margin-bottom: 6px; }
  .why-item p { font-size: 11px; }
  .city-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .city-item { height: 100px; padding: 10px; }
  .city-name { font-size: 14px; }
  .city-count { font-size: 10px; }
  .cat-item { flex: 0 0 96px; height: 108px; }
  .featured-services { gap: 6px; }
  .featured-service-chip { min-width: 84px; padding: 6px 10px; }
  .trust-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust-item { flex: none; gap: 10px; padding: 14px; }
  .trust-item i { font-size: 18px; }
  .trust-item strong { font-size: 12px; }
  .trust-item span { font-size: 10.5px; }
}
