:root {
  --color-bg: #faf8f4;
  --color-surface: #ffffff;
  --color-text: #23291f;
  --color-muted: #6b7263;
  --color-primary: #051b12;
  --color-primary-dark: #204d29;
  --color-accent: #c9a668;
  --color-border: #e6e2d8;
  --color-ink: #051b12;
  --color-ink-light: #0f2e1f;
  --color-gold: #ffdea5;
  --color-cta: #775a19;
  --color-cta-dark: #5d4201;
  --color-mint: #cfe9d9;
  --color-mint-text: #354c40;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(35, 41, 31, 0.08);
  --max-width: 1180px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --color-bg: #171b15;
    --color-surface: #202519;
    --color-text: #eef1ea;
    --color-muted: #a7ae9e;
    --color-primary: #57a866;
    --color-primary-dark: #3f8a4d;
    --color-accent: #e6a45c;
    --color-border: #333a2c;
    --shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  }
}

/* Manual dark/light toggle (admin dashboard) overrides the OS preference either way. */
:root[data-theme="dark"] {
  --color-bg: #171b15;
  --color-surface: #202519;
  --color-text: #eef1ea;
  --color-muted: #a7ae9e;
  --color-primary: #57a866;
  --color-primary-dark: #3f8a4d;
  --color-accent: #e6a45c;
  --color-border: #333a2c;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

:root[data-theme="light"] {
  --color-bg: #faf8f4;
  --color-surface: #ffffff;
  --color-text: #23291f;
  --color-muted: #6b7263;
  --color-primary: #051b12;
  --color-primary-dark: #204d29;
  --color-accent: #c9a668;
  --color-border: #e6e2d8;
  --shadow: 0 6px 24px rgba(35, 41, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  margin-top: 0;
  font-weight: 600;
  color: var(--color-ink);
}

.glassmorphism {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.glassmorphism-dark {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
  line-height: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Fraud warning banner ---------- */
.fraud-banner {
  background: #7a1f1f;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  padding: 8px 12px;
}

.fraud-banner strong {
  text-decoration: underline;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--color-surface) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__wordmark {
  font-family: var(--font-display);
  display: block;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-ink);
  white-space: nowrap;
}

.brand small {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: none;
  gap: 26px;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.main-nav a:hover {
  color: var(--color-primary);
}

.header-call-btn {
  background: var(--color-cta);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.header-call-btn:hover {
  background: var(--color-cta-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: inline-flex;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 1rem;
}

@media (min-width: 860px) {
  .main-nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 20px;
  border-bottom: 1px solid var(--color-border);
  font-weight: 500;
}

@media (min-width: 860px) {
  .mobile-nav {
    display: none !important;
  }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(circle at top right, rgba(201, 166, 104, 0.12), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, var(--color-bg) 70%);
  color: var(--color-text);
  padding: 44px 0 20px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 24px;
  align-items: end;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(201, 166, 104, 0.14);
  color: var(--color-cta);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0 0 16px;
}

.hero p {
  font-size: 1rem;
  max-width: 580px;
  color: var(--color-muted);
  margin: 0 0 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-highlight {
  display: flex;
  justify-content: flex-end;
}

.hero-highlight__card {
  width: min(100%, 320px);
  padding: 22px;
  border: 1px solid rgba(201, 166, 104, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 252, 245, 0.98));
  box-shadow: 0 18px 40px rgba(35, 41, 31, 0.08);
}

.hero-highlight__label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-highlight__card strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.4;
  color: var(--color-ink);
}

.hero-highlight__card p {
  margin: 10px 0 0;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent);
  color: #2a1a06;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-outline {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-ink);
}

/* ---------- Filter bar (homepage) ---------- */
.filter-bar {
  position: sticky;
  top: 73px;
  z-index: 40;
  background: color-mix(in srgb, var(--color-bg) 95%, transparent);
  backdrop-filter: blur(6px);
  padding: 12px 0;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.filter-chip:hover {
  border-color: var(--color-ink);
}

.filter-chip.active {
  background: var(--color-mint);
  border-color: var(--color-ink);
  color: var(--color-ink);
}

.filter-chip .material-symbols-outlined {
  font-size: 1.05rem;
}

.filter-count {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-muted);
  white-space: nowrap;
}

.filter-more-row {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.filter-more-row.open {
  display: flex;
}

/* ---------- Sections ---------- */
.section {
  padding: 48px 0;
}

.section--compact {
  padding-top: 28px;
  padding-bottom: 40px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 700;
  margin: 0 0 8px;
}

.section-heading p {
  color: var(--color-muted);
  margin: 0;
}

/* ---------- Bungalow grid/cards ---------- */
.bungalow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.bungalow-card {
  display: flex;
  flex-direction: column;
  padding: 14px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(201, 166, 104, 0.16);
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(35, 41, 31, 0.06);
}

.bungalow-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #dde7d3, #c4d6b0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.85rem;
  overflow: hidden;
  margin-bottom: 14px;
}

.bungalow-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.bungalow-card:hover .bungalow-card__media img {
  transform: scale(1.06);
}

.bungalow-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.bungalow-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.bungalow-code {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-cta);
  text-transform: uppercase;
}

.bungalow-card__body h3 {
  margin: 0;
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-ink);
}

.bungalow-card:hover .bungalow-card__body h3 {
  color: var(--color-cta);
}

.bungalow-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--color-mint);
  color: var(--color-mint-text);
  width: fit-content;
}

.bungalow-price {
  text-align: right;
  flex-shrink: 0;
}

.bungalow-price .price-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cta);
  margin-bottom: 2px;
}

.bungalow-price .price-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-ink);
  white-space: nowrap;
}

.bungalow-meta-line {
  font-size: 0.88rem;
  color: var(--color-muted);
}

.amenity-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.amenity-pill {
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--color-mint);
  color: var(--color-mint-text);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.card-actions .btn,
.card-actions a {
  flex: 1;
  text-align: center;
  justify-content: center;
  font-size: 0.85rem;
  padding: 10px 12px;
}

.btn-call {
  background: var(--color-primary);
  color: #fff;
}

.btn-call:hover {
  background: var(--color-primary-dark);
}

.btn-details {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

/* ---------- Chat CTA callout (homepage) ---------- */
.cta-callout {
  background: var(--color-ink);
  padding: 40px 26px;
  border-radius: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 24px 0 0;
}

.cta-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(207, 233, 217, 0.16), transparent 65%);
  pointer-events: none;
}

.cta-callout__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-callout h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--color-gold);
  margin: 0 0 16px;
}

.cta-callout p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin: 0 0 32px;
}

.cta-callout .btn-primary {
  background: var(--color-gold);
  color: #261900;
}

.cta-callout .btn-primary:hover {
  background: #fff;
}

/* ---------- Bungalow detail ---------- */
.gallery-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #11150e;
  aspect-ratio: 16 / 9;
  max-height: 450px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 18px 42px rgba(5, 27, 18, 0.14);
}

.gallery-slider__track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-slider__track::-webkit-scrollbar {
  display: none;
}

.gallery-slider__track .slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  height: 100%;
}

.gallery-slider__track .slide img,
.gallery-slider__track .slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.gallery-slider__empty {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfd6c6;
}

.gallery-slider__controls {
  position: absolute;
  inset: auto 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gallery-slider__actions {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(5, 27, 18, 0.72);
  backdrop-filter: blur(8px);
}

.gallery-slider__nav,
.gallery-slider__toggle {
  border: none;
  cursor: pointer;
}

.gallery-slider__nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-ink);
  font-size: 1.5rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.gallery-slider__count {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-slider__toggle {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 10px;
  margin: 14px 0 0;
}

.gallery-thumbs__item {
  padding: 0;
  border: 1px solid rgba(201, 166, 104, 0.22);
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-surface);
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-thumbs__item.active {
  border-color: var(--color-cta);
  box-shadow: 0 0 0 2px rgba(119, 90, 25, 0.18);
}

.gallery-thumbs__item img,
.gallery-thumbs__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin: 20px 0 10px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 14px 0 18px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.bungalow-detail-page {
  padding-top: 18px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.75fr);
  gap: 22px;
  margin: 10px 0 34px;
  align-items: start;
}

.detail-content {
  min-width: 0;
}

.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.amenity-list li {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
}

.price-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 98px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-border);
}

.price-row:last-of-type {
  border-bottom: none;
}

/* ---------- Chat widget ---------- */
.chat-launcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
  animation: chat-pulse 2s ease-in-out infinite;
}

.chat-launcher:hover {
  transform: scale(1.06);
  background: var(--color-primary-dark);
}

.chat-launcher--active {
  background: var(--color-primary-dark);
  animation: none;
}

@keyframes chat-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); }
  50% { transform: scale(1.08); box-shadow: 0 10px 28px rgba(47, 107, 58, 0.42); }
}

@media (max-width: 767px) {
  .chat-launcher {
    bottom: calc(64px + env(safe-area-inset-bottom) + 14px);
  }

  .chat-panel {
    bottom: calc(64px + env(safe-area-inset-bottom) + 84px);
  }
}

.chat-panel {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 70;
  width: min(340px, calc(100vw - 24px));
  height: min(500px, calc(100vh - 132px));
  background: var(--color-surface);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: chat-pop-in 0.18s ease-out;
}

.chat-panel[hidden] {
  display: none !important;
}

@keyframes chat-pop-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-panel__header {
  background: var(--color-primary);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-panel__header small {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
}

.chat-panel__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.chat-panel__messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--color-bg);
}

.chat-message {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.4;
  animation: chat-fade-in 0.15s ease-out;
}

@keyframes chat-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-message--bot {
  align-self: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-bottom-left-radius: 4px;
}

.chat-message--user {
  align-self: flex-end;
  background: var(--color-primary);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-message--typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 14px;
}

.chat-message--typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-muted);
  animation: chat-typing-bounce 1s infinite ease-in-out;
}

.chat-message--typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-message--typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes chat-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-restart {
  align-self: center;
  margin-top: 4px;
  background: var(--color-accent);
  color: #2a1a06;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

.chat-panel__input {
  display: flex;
  gap: 6px;
  padding: 10px;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.chat-panel__input input[type="text"] {
  flex: 1;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.88rem;
  background: var(--color-bg);
  color: var(--color-text);
}

.chat-skip {
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0 12px;
  font-size: 0.8rem;
  color: var(--color-muted);
  cursor: pointer;
}

.chat-send {
  background: var(--color-primary);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
}

.footer-chat-link {
  background: none;
  border: none;
  color: inherit;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.footer-chat-link:hover {
  color: #fff;
}

@media (max-width: 480px) {
  .chat-panel {
    right: 10px;
    bottom: calc(64px + env(safe-area-inset-bottom) + 76px);
    width: calc(100vw - 20px);
    height: min(440px, calc(100vh - 156px));
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-ink);
  color: #cfd6c8;
  padding: 64px 0 28px;
  margin-top: 56px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  margin: 0 0 14px;
  line-height: 1.2;
}

.footer-tagline {
  color: #9aa693;
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  margin: 0 0 16px;
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #b7bfab;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  font-size: 0.82rem;
  color: #74806c;
  text-align: center;
}

.footer-icon-row {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.footer-icon-row .material-symbols-outlined {
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: color 0.15s ease;
}

.footer-icon-row .material-symbols-outlined:hover {
  color: var(--color-gold);
}

/* ---------- Mobile bottom nav ---------- */
.bottom-nav {
  display: none;
}

@media (max-width: 767px) {
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 20px rgba(5, 27, 18, 0.06);
    justify-content: space-around;
    align-items: center;
    height: 64px;
    padding-bottom: env(safe-area-inset-bottom);
  }

  body {
    padding-bottom: 64px;
  }
}

.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--color-muted);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: none;
  border: none;
  cursor: pointer;
}

.bottom-nav__item.active {
  color: var(--color-cta);
}

@media (max-width: 1230px) {
  .bungalow-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-shell,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-highlight {
    justify-content: flex-start;
  }

  .price-box {
    position: static;
  }
}

@media (max-width: 860px) {
  .site-header .container {
    gap: 10px;
  }

  .header-call-btn {
    display: none;
  }

  .brand__logo {
    width: 42px;
    height: 42px;
  }

  .brand__wordmark {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.53rem;
  }
}

@media (max-width: 780px) {
  .container {
    padding: 0 14px;
  }

  .hero {
    padding: 30px 0 14px;
  }

  .hero p {
    font-size: 0.94rem;
  }

  .filter-count {
    width: 100%;
    margin-left: 0;
  }

  .section {
    padding: 34px 0;
  }

  .cta-callout {
    border-radius: 24px;
    padding: 32px 18px;
  }

  .gallery-slider__controls {
    inset: auto 10px 10px;
    gap: 8px;
  }

  .gallery-slider__actions {
    gap: 6px;
    padding: 7px 9px;
  }

  .gallery-slider__toggle,
  .gallery-slider__count {
    font-size: 0.7rem;
  }
}

/* ---------- Public enquiry form ---------- */
.enquiry-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-top: 28px;
  scroll-margin-top: 90px;
}

.field-error {
  color: #a02828;
  font-size: 0.8rem;
}

/* ---------- Static/content pages ---------- */
.content-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
}

.content-page h2 {
  font-family: var(--font-display);
  font-weight: 700;
}

.font-serif {
  font-family: var(--font-display);
  font-weight: 700;
}

.content-page section {
  padding: 20px 0;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* ---------- Admin shell (sidebar layout) ---------- */
.admin-app {
  display: flex;
  min-height: 100vh;
  align-items: flex-start;
}

.admin-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #12271a;
  color: #d9ded2;
  min-height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.admin-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
}

.admin-sidebar__logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--color-accent);
  color: #2a1a06;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.admin-sidebar__brand strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.admin-sidebar__brand small {
  color: #8b9382;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-sidebar__section {
  padding: 14px 20px 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6d7566;
}

.admin-sidebar__nav {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.admin-sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: #c7cdbc;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}

.admin-sidebar__nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.admin-sidebar__nav a.active {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
}

.nav-badge {
  margin-left: auto;
  background: #d94c3c;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 999px;
}

.admin-sidebar__footer {
  padding: 16px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 12px;
}

.admin-sidebar__user {
  font-size: 0.8rem;
  color: #a7ae9e;
  margin-bottom: 10px;
}

.admin-sidebar__footer button {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
}

.admin-sidebar__footer button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.admin-main {
  flex: 1;
  min-width: 0;
  padding: 26px 32px 60px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.admin-topbar .breadcrumb {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.admin-topbar h1 {
  margin: 0;
  font-size: 1.4rem;
}

@media (max-width: 860px) {
  .admin-app {
    flex-direction: column;
  }
  .admin-sidebar {
    width: 100%;
    min-height: auto;
    position: static;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    padding: 12px 0;
  }
  .admin-sidebar__brand {
    border-bottom: none;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .admin-sidebar__nav {
    flex-direction: row;
    flex: none;
  }
  .admin-sidebar__section {
    display: none;
  }
  .admin-sidebar__footer {
    border-top: none;
    margin-top: 0;
    padding: 0 16px;
    flex-shrink: 0;
  }
  .admin-sidebar__user {
    display: none;
  }
  .admin-sidebar__footer button {
    width: auto;
    white-space: nowrap;
  }
  .admin-main {
    padding: 20px 16px 60px;
  }
}

/* ---------- Admin dashboard: stat cards, alerts, quick actions ---------- */
.stat-card {
  border-top: 4px solid var(--color-border);
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: color-mix(in srgb, var(--color-surface) 70%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  animation: card-rise 0.35s ease-out backwards;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.stat-grid .stat-card:nth-child(1) { animation-delay: 0.02s; }
.stat-grid .stat-card:nth-child(2) { animation-delay: 0.07s; }
.stat-grid .stat-card:nth-child(3) { animation-delay: 0.12s; }
.stat-grid .stat-card:nth-child(4) { animation-delay: 0.17s; }
.stat-grid .stat-card:nth-child(5) { animation-delay: 0.22s; }

@keyframes card-rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.stat-card--blue { border-top-color: #2f6fb0; }
.stat-card--green { border-top-color: var(--color-primary); }
.stat-card--orange { border-top-color: var(--color-accent); }
.stat-card--red { border-top-color: #a02828; }
.stat-card--gold { border-top-color: #c79a1e; }

.admin-card {
  animation: card-rise 0.35s ease-out backwards;
}

.dash-panels {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 780px) {
  .dash-panels {
    grid-template-columns: 1fr;
  }
}

.alert-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alert-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  border-left: 4px solid var(--color-border);
  background: var(--color-bg);
  font-size: 0.9rem;
}

.alert-item--warn { border-left-color: var(--color-accent); }
.alert-item--danger { border-left-color: #a02828; }
.alert-item--info { border-left-color: #2f6fb0; }

.alert-item .count {
  font-weight: 700;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.8rem;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-actions a,
.quick-actions button {
  flex: 1 1 130px;
}

/* ---------- Theme toggle ---------- */
.admin-sidebar__theme-toggle {
  margin-bottom: 10px;
}

/* ---------- Notification toasts ---------- */
.notification-toasts {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(340px, calc(100vw - 32px));
}

.admin-toast {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  animation: toast-in 0.2s ease-out;
}

.admin-toast--leaving {
  animation: toast-out 0.3s ease-in forwards;
}

.admin-toast--new_booking { border-left-color: var(--color-primary); }
.admin-toast--follow_up_due { border-left-color: var(--color-accent); }
.admin-toast--spam_alert { border-left-color: #a02828; }

.admin-toast__icon {
  font-size: 1.3rem;
  line-height: 1;
}

.admin-toast__body {
  flex: 1;
  font-size: 0.85rem;
}

.admin-toast__msg {
  color: var(--color-muted);
}

.admin-toast__close {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--color-muted);
  line-height: 1;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toast-out {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(24px); }
}

/* ---------- Charts (hand-rolled SVG, no external dependency) ---------- */
.chart-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 780px) {
  .chart-row {
    grid-template-columns: 1fr;
  }
}

.admin-chart {
  width: 100%;
  height: auto;
  overflow: visible;
}

.admin-chart__label {
  font-size: 8px;
  fill: var(--color-muted);
}

.admin-chart__value {
  font-size: 9px;
  font-weight: 700;
  fill: var(--color-text);
}

.admin-chart__center {
  font-size: 22px;
  font-weight: 800;
  fill: var(--color-text);
}

.admin-chart__empty {
  color: var(--color-muted);
  text-align: center;
  padding: 24px 0;
}

.admin-chart--donut {
  display: block;
  margin: 0 auto;
  max-width: 200px;
}

.admin-chart-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.82rem;
}

.admin-chart-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-chart-legend__swatch {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}

.admin-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 20px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.admin-thumb {
  width: 56px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--color-bg);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-field label {
  font-weight: 600;
  font-size: 0.88rem;
}

.form-field input[type="text"],
.form-field input[type="number"],
.form-field input[type="tel"],
.form-field textarea,
.form-field select {
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--color-bg);
  color: var(--color-text);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-active {
  background: rgba(47, 107, 58, 0.15);
  color: var(--color-primary-dark);
}

.badge-inactive {
  background: rgba(160, 40, 40, 0.12);
  color: #a02828;
}

.alert {
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.alert-error {
  background: rgba(160, 40, 40, 0.1);
  color: #a02828;
  border: 1px solid rgba(160, 40, 40, 0.25);
}

.login-shell {
  max-width: 380px;
  margin: 80px auto;
  padding: 0 20px;
}

.icon-btn {
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 0.85rem;
}

.icon-btn.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* ---------- Admin stat cards ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.stat-card .stat-value {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge-new {
  background: rgba(47, 111, 176, 0.15);
  color: #2f6fb0;
}

.badge-contacted {
  background: rgba(87, 168, 102, 0.18);
  color: var(--color-primary-dark);
}

.badge-interested {
  background: rgba(217, 139, 60, 0.18);
  color: #a15a1a;
}

.badge-follow_up {
  background: rgba(199, 154, 30, 0.18);
  color: #8a6a15;
}

.badge-booked {
  background: rgba(47, 107, 58, 0.18);
  color: var(--color-primary-dark);
}

.badge-closed {
  background: rgba(107, 114, 99, 0.15);
  color: var(--color-muted);
}

.badge-spam {
  background: rgba(160, 40, 40, 0.15);
  color: #a02828;
}

/* =========================================
   LUXURY REDESIGN - HOMEPAGE OVERHAUL
   ========================================= */

/* Hero Section */
.luxury-hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -72px; /* Pull up under header */
  padding-top: 72px;
}

.luxury-hero__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}

.luxury-hero__bg img, .luxury-hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.luxury-hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.8) 100%);
}

.luxury-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}

.luxury-hero__content .eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: #fff;
}

.luxury-hero__content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  color: #fff;
}

.luxury-hero__content p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 48px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Premium Search (Airbnb Style) */
.premium-search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  margin: 0 auto;
  max-width: 850px;
  color: var(--color-text);
  text-align: left;
}

.premium-search__item {
  flex: 1;
  padding: 10px 24px;
  border-radius: 30px;
  transition: background 0.2s;
  cursor: pointer;
}

.premium-search__item:hover {
  background: rgba(0,0,0,0.04);
}

.premium-search__item label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 4px;
  cursor: pointer;
}

.premium-search__item input,
.premium-search__item select {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  outline: none;
  color: var(--color-text);
  cursor: pointer;
}

.premium-search__divider {
  width: 1px;
  height: 32px;
  background: #e0e0e0;
}

.premium-search__btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.premium-search__btn:hover {
  transform: scale(1.05);
  background: var(--color-primary-dark);
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  margin-bottom: 8px;
  color: var(--color-primary);
  display: inline-block;
}

.stat-plus {
  font-size: 3rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
}

.stat-item p {
  color: var(--color-muted);
  font-size: 1.1rem;
  margin: 0;
}

/* Amenities Grid */
.why-choose-us {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .eyebrow {
  display: block;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.amenity-card {
  padding: 40px 30px;
  background: #fff;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--color-border);
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.amenity-card .material-symbols-outlined {
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.amenity-card h4 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

/* Luxury Property Cards */
.luxury-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--color-border);
}

.luxury-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.luxury-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.luxury-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.luxury-card:hover .luxury-card__media img {
  transform: scale(1.05);
}

.badges {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.badge-featured {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-ink);
}

.badge-verified {
  background: rgba(5, 27, 18, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge-verified .material-symbols-outlined {
  font-size: 14px;
}

.wishlist-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  transition: transform 0.2s;
}

.wishlist-btn:hover {
  transform: scale(1.1);
}

.wishlist-btn .material-symbols-outlined {
  font-size: 28px;
  font-variation-settings: 'FILL' 0;
}

.luxury-card__body {
  padding: 24px;
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
}

.rating .material-symbols-outlined {
  font-size: 16px;
  color: var(--color-accent);
  font-variation-settings: 'FILL' 1;
}

.luxury-pricing {
  margin: 20px 0;
  padding: 16px;
  background: var(--color-bg);
  border-radius: 12px;
}

.price-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.price-tier:last-child {
  margin-bottom: 0;
}

.price-tier strong {
  color: var(--color-primary);
}

/* Testimonials */
.testimonials-section {
  padding: 100px 0;
}

.testimonial-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  height: 100%;
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  margin: 24px 0;
  color: var(--color-text);
  line-height: 1.8;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviewer-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.verified-badge {
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
}

/* Trust Section */
.trust-section {
  padding: 80px 0;
  background: var(--color-primary);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-item .material-symbols-outlined {
  font-size: 40px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.trust-item h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.trust-item p {
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0;
}

.luxury-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border: none;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .premium-search {
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
  }
  .premium-search__item {
    width: 100%;
    padding: 12px;
  }
  .premium-search__divider {
    width: 100%;
    height: 1px;
    margin: 8px 0;
  }
  .premium-search__btn {
    width: 100%;
    border-radius: 12px;
    margin-top: 16px;
  }
  
  .stats-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .luxury-hero {
    height: auto;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 100px;
  }
  
  .luxury-hero h1 {
    font-size: 2.5rem;
  }
}

.chat-progress {
  height: 4px;
  background: var(--color-border);
  width: 100%;
}

.chat-progress-bar {
  height: 100%;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

/* =========================================
   LUXURY REDESIGN - BUNGALOW DETAIL
   ========================================= */

.luxury-gallery {
  border-radius: 24px;
  margin-bottom: 40px;
}

.luxury-price-box {
  background: transparent;
  padding: 0;
  border: none;
}

.price-box-inner {
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.luxury-divider {
  border: 0;
  height: 1px;
  background: var(--color-border);
  margin: 40px 0;
}

.grid-amenities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.grid-amenities li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}

.faq-accordion {
  margin-top: 24px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}

.faq-item summary {
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '\002B';
  font-size: 1.5rem;
  color: var(--color-primary);
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  margin-top: 16px;
  color: var(--color-muted);
  line-height: 1.6;
}

