/* ===== V2 DESIGN SYSTEM ===== */
:root {
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --sage: #588157;
  --sage-light: #A3B18A;
  --brown: #6B4423;
  --brown-hover: #7d4f28;
  --cream: #FEFAE0;
  --cream-dark: #F5EFD0;
  --border: #DAD7CD;
  --text: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #767676;
  --white: #ffffff;
  --r4: 4px;
  --shadow-sm: 0 2px 8px rgba(27,67,50,.08);
  --shadow-md: 0 4px 16px rgba(27,67,50,.10);
  --shadow-lg: 0 8px 30px rgba(27,67,50,.14);
  /* Legacy aliases for existing components */
  --primary-blue: #1B4332;
  --primary-blue-light: #588157;
  --secondary-orange: #6B4423;
  --secondary-orange-light: #8B6914;
  --text-dark: #1B4332;
  --border-light: #DAD7CD;
  --bg-light: #FEFAE0;
  --success: #588157;
  --error: #dc2626;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
/* Skeleton loader: gives immediate visual feedback while data loads */
@keyframes skel-shine { 0% { background-position: -200px 0; } 100% { background-position: 200px 0; } }
.skel { background: linear-gradient(90deg, #eef0ec 0%, #f8faf6 50%, #eef0ec 100%); background-size: 400px 100%; animation: skel-shine 1.2s ease-in-out infinite; border-radius: 6px; }
.skel-line { height: 14px; margin-bottom: 8px; }
.skel-row { display: flex; gap: 12px; padding: 10px 12px; border-bottom: 1px solid #f1f5f9; }
.skel-card { background: #fff; border: 1px solid #DAD7CD; border-radius: 10px; padding: 12px 14px; margin-bottom: 10px; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Libre Baskerville', Georgia, serif; line-height: 1.25; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV (V2) ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  height: 68px;
  background: rgba(27,67,50,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* ── V2: staging banner as its own fixed strip above the navbar. Navbar is already position:fixed top:0; when body.has-staging-banner, shift it down so the banner doesn't get covered OR leave a white gap on scroll. ── */
.v2-staging-banner {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1001;
  background: #c1440e; color: #fff;
  padding: 6px 14px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-align: center; text-transform: uppercase; line-height: 1.1;
}
body.has-staging-banner .navbar { top: 26px; }
body.has-staging-banner { padding-top: 26px; }

.navbar-container {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1400px; margin: 0 auto;
}

.navbar-logo {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; text-decoration: none;
}
.navbar-logo img { height: 36px; width: auto; }
.navbar-logo span, .navbar-logo-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem; color: var(--white); font-weight: 700; letter-spacing: -.3px;
}

.navbar-links { display: flex; align-items: center; gap: 28px; }
.navbar-link {
  color: rgba(255,255,255,.82); font-size: .9rem; font-weight: 500;
  text-decoration: none; cursor: pointer; transition: color .2s;
  border-bottom: 2px solid transparent; padding: 4px 0;
}
.navbar-link:hover, .navbar-link.active { color: var(--white); }

.nav-cta {
  background: var(--brown); color: var(--white); border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: .875rem; font-weight: 600;
  padding: 9px 20px; border-radius: var(--r4); transition: background .2s;
}
.nav-cta:hover { background: var(--brown-hover); }

/* Services dropdown */
.nav-services-wrap { position: relative; }
.nav-services-wrap .navbar-link::after { content: ' \25BE'; font-size: 0.7em; }
.nav-services-drop {
  visibility: hidden; opacity: 0;
  position: absolute;
  top: calc(100% + 2px); left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r4); padding: 8px 0; min-width: 220px;
  box-shadow: var(--shadow-lg); z-index: 1001;
  transition: opacity .2s ease, visibility .2s ease;
  pointer-events: none;
}
/* Bridge area so mouse can travel from link to dropdown */
.nav-services-wrap::after {
  content: ''; position: absolute;
  top: 100%; left: 0; right: 0; height: 12px;
}
.nav-services-wrap:hover .nav-services-drop {
  visibility: visible; opacity: 1; pointer-events: auto;
}
.nav-services-drop a {
  display: block; padding: 10px 18px; color: var(--text);
  font-size: .88rem; transition: all .15s; white-space: nowrap;
}
.nav-services-drop a:hover { background: var(--cream); color: var(--green); }
.nav-services-drop .drop-divider { border-top: 1px solid var(--border); margin: 4px 0; }

.nav-mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--white); font-size: 1.4rem;
}
.navbar-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--white); font-size: 1.6rem; padding: 4px 8px;
}
.navbar-mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 2000;
}
.navbar-mobile-overlay.open { display: block; }
.navbar-mobile-menu {
  position: fixed; top: 0; right: -300px; width: 280px; height: 100vh;
  background: var(--green); z-index: 2001;
  display: flex; flex-direction: column;
  padding: 20px 0; transition: right .3s ease;
  overflow-y: auto;
}
.navbar-mobile-menu.open { right: 0; }
.navbar-mobile-menu .mobile-close {
  display: flex; justify-content: flex-end; padding: 0 20px 16px;
}
.navbar-mobile-menu .mobile-close button {
  background: none; border: none; color: rgba(255,255,255,.8);
  font-size: 1.4rem; cursor: pointer; padding: 4px;
}
.navbar-mobile-menu a {
  display: block; padding: 14px 24px; color: rgba(255,255,255,.85);
  text-decoration: none; font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: background .15s;
}
.navbar-mobile-menu a:hover { background: rgba(255,255,255,.08); color: #fff; }
.navbar-mobile-menu .mobile-cta {
  margin: 16px 24px 0; background: var(--brown); color: #fff !important;
  border-radius: var(--r4); text-align: center; font-weight: 700;
  border-bottom: none;
}

/* ===== HERO (V2 - 2 column) ===== */
.hero {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
  overflow: visible;
}

.hero-left {
  background: var(--green);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 80px;
  overflow: visible;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); color: var(--sage-light);
  font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 28px; width: fit-content;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 7px; height: 7px;
  border-radius: 50%; background: #52b788;
}

.hero h1, .hero-h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--white); line-height: 1.18; margin-bottom: 20px;
}
.hero h1 em, .hero-h1 em { color: var(--sage-light); font-style: italic; }

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.75);
  line-height: 1.7; max-width: 440px; margin-bottom: 40px;
}

/* Search card in hero */
.search-card {
  background: var(--white); border-radius: var(--r4);
  box-shadow: var(--shadow-lg); overflow: visible; position: relative; z-index: 20;
}
.search-tabs { display: flex; border-bottom: 1px solid var(--border); }
.search-tab {
  flex: 1; padding: 14px; text-align: center;
  font-size: .83rem; font-weight: 600; color: var(--text-light);
  cursor: pointer; border: none; background: none; transition: all .2s;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  font-family: 'DM Sans', sans-serif;
}
.search-tab.active { color: var(--green); border-bottom-color: var(--green); }

.search-fields { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; border-bottom: 1px solid var(--border); }
.search-field {
  padding: 16px 18px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.search-field:last-child { border-right: none; }
.search-field label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-mid);
}
.search-field input, .search-field select {
  border: none; outline: none; font-family: 'DM Sans', sans-serif;
  font-size: .95rem; color: var(--text); background: transparent;
  width: 100%; padding: 0; cursor: pointer;
}
.search-field input::placeholder { color: #aaa; }

.search-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
}
.search-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.search-pill {
  font-size: .78rem; font-weight: 500; color: var(--text-mid);
  background: var(--cream); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 100px; cursor: pointer; transition: all .2s;
}
.search-pill:hover { background: var(--cream-dark); color: var(--green); border-color: var(--sage); }

.search-btn {
  background: var(--brown); color: var(--white); border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 700;
  padding: 11px 28px; border-radius: var(--r4); transition: background .2s;
  white-space: nowrap;
}
.search-btn:hover { background: var(--brown-hover); }

.hero-stats { display: flex; gap: 32px; margin-top: 32px; }
.hero-stat-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--white);
}
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: 2px; }

/* Hero right - photo mosaic */
.hero-right { position: relative; overflow: hidden; background: #1a3329; }
.mosaic {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr; height: 100%; gap: 3px;
}
.mosaic-item { overflow: hidden; position: relative; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.mosaic-item:hover img { transform: scale(1.04); }
.mosaic-item.tall { grid-row: span 2; }
.mosaic-badge {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(27,67,50,.88); color: var(--white);
  font-size: .75rem; font-weight: 600; padding: 5px 10px;
  border-radius: var(--r4); backdrop-filter: blur(4px);
}

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-bar-inner { display: flex; align-items: center; }
.trust-item {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 20px 28px; border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.trust-item-title { font-size: .9rem; font-weight: 700; color: var(--green); }
.trust-item-desc { font-size: .78rem; color: var(--text-light); margin-top: 1px; }

/* ===== SECTION PATTERNS ===== */
.section-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--green); margin-bottom: 12px;
}
.section-sub { font-size: 1rem; color: var(--text-mid); max-width: 520px; line-height: 1.7; }

/* ===== HOW IT WORKS ===== */
.how { padding: 96px 0; background: var(--white); }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
.how-step { padding: 48px 40px; position: relative; border: 1px solid var(--border); }
.how-step:not(:first-child) { border-left: none; }
.step-num {
  font-family: 'Libre Baskerville', serif; font-size: 3.5rem; font-weight: 700;
  color: var(--cream-dark); line-height: 1; margin-bottom: 24px; user-select: none;
}
.step-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 20px;
}
.step-title { font-size: 1.2rem; color: var(--green); margin-bottom: 10px; }
.step-desc { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }

/* ===== DESTINATIONS ===== */
.destinations { padding: 96px 0; background: var(--cream); }
.dest-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.dest-view-all {
  font-size: .88rem; font-weight: 600; color: var(--green);
  text-decoration: underline; text-underline-offset: 3px; cursor: pointer;
}
.dest-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 200px; gap: 12px;
}
.dest-card { position: relative; overflow: hidden; border-radius: var(--r4); cursor: pointer; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.dest-card:hover img { transform: scale(1.06); }
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
}
.dest-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 18px; }
.dest-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--white);
}
.dest-count { font-size: .78rem; color: rgba(255,255,255,.72); margin-top: 3px; }
.dest-card.featured { grid-column: span 2; grid-row: span 2; }
.dest-card.featured .dest-name { font-size: 2rem; }

/* ===== SAVINGS BANNER ===== */
.savings { padding: 80px 0; background: var(--green); }
.savings-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.savings-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sage-light); margin-bottom: 14px;
}
.savings-h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--white); margin-bottom: 20px; }
.savings-h2 em { color: var(--sage-light); font-style: italic; }
.savings-p { color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 36px; font-size: .97rem; }
.savings-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brown); color: var(--white); border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
  padding: 14px 28px; border-radius: var(--r4); transition: background .2s;
  text-decoration: none;
}
.savings-cta:hover { background: var(--brown-hover); }
.savings-cards { display: flex; flex-direction: column; gap: 16px; }
.saving-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r4); padding: 22px 24px;
  display: flex; align-items: center; gap: 16px;
}
.saving-card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.saving-card-title { font-weight: 700; color: var(--white); font-size: .95rem; margin-bottom: 4px; }
.saving-card-desc { font-size: .82rem; color: rgba(255,255,255,.55); }

/* ===== TESTIMONIALS ===== */

/* FAQ accordion */
details summary::-webkit-details-marker { display: none; }
details[open] summary svg { transform: rotate(180deg); }
details summary:hover { color: #588157; }

.testimonials { padding: 96px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card {
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--r4);
  padding: 32px; display: flex; flex-direction: column; gap: 20px;
}
.testimonial-stars { color: #c8a84b; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-quote { font-size: .95rem; line-height: 1.75; color: var(--text-mid); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Libre Baskerville', serif; font-weight: 700; color: var(--white); font-size: .9rem;
}
.testimonial-name { font-weight: 700; font-size: .88rem; color: var(--text); }
.testimonial-meta { font-size: .78rem; color: var(--text-light); }
.testimonial-saving {
  display: inline-block; background: #d1fae5; color: #065f46;
  font-size: .75rem; font-weight: 700; padding: 3px 9px; border-radius: 100px;
}

/* ===== BLOG PAGE ===== */
.blog-container { max-width: 1200px; margin: 68px auto 0; padding: 48px 40px 72px; }
.blog-header { margin-bottom: 32px; }
.blog-categories { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.blog-cat-btn { padding: 8px 18px; border: 1.5px solid var(--green); background: transparent; color: var(--green); border-radius: 999px; cursor: pointer; font-size: 0.875rem; font-weight: 500; transition: background .15s, color .15s; }
.blog-cat-btn:hover, .blog-cat-btn.active { background: var(--green); color: #fff; }
.blog-card-image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--r4) var(--r4) 0 0; display: block; }
.blog-card-category { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--sage); margin-bottom: 6px; }
.blog-card-title { font-size: 1rem; font-weight: 600; color: var(--green); line-height: 1.4; margin-bottom: 8px; }
.blog-card-meta { font-size: .78rem; color: var(--text-light); margin-bottom: 8px; }
.blog-card-desc { font-size: .875rem; color: var(--text); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== BLOG STRIP ===== */
.blog-strip { padding: 80px 0; background: var(--cream); border-top: 1px solid var(--border); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r4);
  overflow: hidden; transition: box-shadow .2s; cursor: pointer;
}
.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-card-img { height: 200px; overflow: hidden; background: var(--cream-dark); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 22px; }
.blog-tag { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--sage); margin-bottom: 8px; }
.blog-title { font-size: 1rem; color: var(--green); line-height: 1.4; margin-bottom: 10px; }
.blog-meta { font-size: .78rem; color: var(--text-light); }

/* ===== FOOTER (V2) ===== */
.footer { background: var(--green); color: rgba(255,255,255,.75); padding: 64px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px; max-width: 1200px; margin-left: auto; margin-right: auto;
  text-align: left;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
.footer-logo-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem; color: var(--white); font-weight: 700;
}
.footer-tagline { font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4, .footer-col-title {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--white); margin-bottom: 16px;
}
.footer-links, .footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-col a {
  display: block; color: rgba(255,255,255,.75); font-size: .88rem;
  text-decoration: none; transition: color .2s; padding: 0;
}
.footer-links a:hover, .footer-col a:hover { color: var(--white); }
.footer-col .new-tag {
  display: inline-block; background: var(--sage); color: #fff;
  font-size: .55rem; font-weight: 700; padding: 1px 5px;
  border-radius: 3px; margin-left: 4px; vertical-align: middle;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== BUTTONS (V2) ===== */
.btn-primary {
  padding: 14px 28px; background: var(--green); color: white;
  border: none; border-radius: var(--r4); cursor: pointer;
  font-size: .9rem; font-weight: 700; transition: background .2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--green-mid); }

.btn-secondary {
  padding: 10px 20px; background: var(--brown); color: white;
  border: none; border-radius: var(--r4); cursor: pointer;
  font-size: .875rem; font-weight: 600; transition: background .2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-secondary:hover { background: var(--brown-hover); }

.btn-outline {
  padding: 10px 20px; background: transparent; color: var(--green);
  border: 1px solid var(--border); border-radius: var(--r4); cursor: pointer;
  font-size: .875rem; font-weight: 600; transition: all .2s;
}
.btn-outline:hover { background: var(--cream); border-color: var(--sage); }

/* ===== SEARCH PAGE (V2) ===== */
.search-container {
  margin-top: 68px;
  display: grid; grid-template-columns: 280px 1fr 1fr;
  gap: 24px; padding: 32px 24px;
  max-width: 1400px; margin-left: auto; margin-right: auto;
  min-height: calc(100vh - 68px);
}
.search-container.no-map {
  grid-template-columns: 280px 1fr;
}

.search-bar-sticky {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 0; position: sticky; top: 68px; z-index: 90;
  box-shadow: var(--shadow-sm); margin-top: 68px;
}
.search-bar-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 12px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.filter-sidebar, .sidebar {
  position: sticky; top: 140px; height: fit-content;
  display: flex; flex-direction: column; gap: 16px;
}
.filter-section {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r4); padding: 20px;
}
.filter-title, .filter-label {
  font-size: .85rem; font-weight: 700; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px; letter-spacing: .05em;
}
.filter-item {
  margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.filter-item input[type="checkbox"], .filter-item input[type="radio"] {
  cursor: pointer; accent-color: var(--sage);
  width: 16px; height: 16px;
}
.filter-item label { cursor: pointer; font-size: .9rem; color: var(--text); }

.filter-select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border);
  border-radius: var(--r4); font-size: .9rem; background: var(--white);
  font-family: 'DM Sans', sans-serif; transition: border-color .2s;
}
.filter-select:focus { border-color: var(--sage); outline: none; box-shadow: 0 0 0 2px rgba(88,129,87,.1); }

.price-range { margin-top: 8px; }
.price-range input[type="range"] { width: 100%; accent-color: var(--sage); }
.price-display { font-size: .85rem; color: var(--text-light); margin-top: 8px; }

.filter-btn {
  width: 100%; background: var(--brown); color: var(--white);
  border: none; cursor: pointer; padding: 10px;
  border-radius: var(--r4); font-weight: 600; margin-top: 8px;
  font-family: 'DM Sans', sans-serif; transition: background .2s;
}
.filter-btn:hover { background: var(--brown-hover); }

/* V2 search filter additions */
.filter-sidebar-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-bottom: 4px;
}
.filter-section-title {
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px; letter-spacing: .05em;
  font-family: 'DM Sans', sans-serif;
}
.filter-input {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border);
  border-radius: var(--r4); font-size: .9rem; background: var(--white);
  font-family: 'DM Sans', sans-serif; transition: border-color .2s;
  box-sizing: border-box;
}
.filter-input:focus { border-color: var(--sage); outline: none; box-shadow: 0 0 0 2px rgba(88,129,87,.1); }
.filter-checkbox-group { display: flex; flex-direction: column; gap: 8px; }
.filter-checkbox-label {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--text); cursor: pointer;
  padding: 4px 0; transition: color .2s;
}
.filter-checkbox-label:hover { color: var(--green); }
.filter-checkbox-label input[type="checkbox"],
.filter-checkbox-label input[type="radio"] {
  width: 16px; height: 16px; accent-color: var(--sage); cursor: pointer; flex-shrink: 0;
}
.filter-range {
  width: 100%; accent-color: var(--sage); cursor: pointer;
  height: 6px; border-radius: 3px;
}
.filter-dropdown {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 0 0 var(--r4) var(--r4);
  box-shadow: 0 4px 16px rgba(27,67,50,.10);
  z-index: 100; max-height: 220px; overflow: auto;
}
.filter-dropdown-item {
  padding: 8px 12px; cursor: pointer; font-size: .85rem;
  border-bottom: 1px solid var(--cream); transition: background .15s;
}
.filter-dropdown-item:hover { background: var(--cream); }
.filter-map-toggle {
  width: 100%; margin-top: 12px; padding: 10px;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r4); cursor: pointer; font-weight: 600;
  font-size: .85rem; color: var(--green); transition: background .2s;
  font-family: 'DM Sans', sans-serif;
}
.filter-map-toggle:hover { background: var(--border); }
.results-sort { display: flex; align-items: center; gap: 8px; }
.property-expand-panel {
  padding: 1.5rem; background: var(--cream); border-radius: 0 0 var(--r4) var(--r4);
  border: 1px solid var(--border); border-top: none; margin-bottom: 1rem;
}
.results-area { display: flex; flex-direction: column; gap: 16px; }
.results-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; background: var(--white); padding: 20px;
  border-radius: var(--r4); border: 1px solid var(--border);
}
.results-count { font-size: .95rem; color: var(--text-light); }
.sort-select {
  border: 1px solid var(--border); border-radius: var(--r4);
  padding: 8px 12px; font-size: .9rem; font-family: 'DM Sans', sans-serif;
}

/* Property grid */
.property-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

/* ===== PROPERTY CARD (V2) ===== */
.property-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r4); overflow: hidden;
  transition: box-shadow .2s, transform .2s; cursor: pointer;
}
.property-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card-image, .property-img {
  position: relative; height: 200px; overflow: hidden; background: var(--cream-dark);
}
.card-image img, .property-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .4s;
}
.property-card:hover .card-image img, .property-card:hover .property-img img { transform: scale(1.05); }

.verified-badge, .property-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--green); color: white;
  padding: 4px 8px; border-radius: var(--r4);
  font-size: .75rem; font-weight: 600;
}
.sample-label {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,.5); color: white;
  padding: .3rem .6rem; border-radius: var(--r4); font-size: .75rem;
}

.card-content, .property-body { padding: 16px; }
.card-name, .property-name {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700; font-size: 1rem; color: var(--green);
  margin-bottom: 4px; line-height: 1.3;
}
.card-meta, .property-location { font-size: .8rem; color: var(--text-light); margin-bottom: 8px; }
.card-stars, .property-rating {
  display: flex; align-items: center; gap: 4px;
  font-size: .85rem; margin-bottom: 10px; color: var(--text);
}
.property-rating-star { color: #c8a84b; }

.card-amenities, .property-amenities {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px;
}
.amenity-chip, .property-amenity {
  background: var(--cream); padding: 3px 8px;
  border-radius: 100px; font-size: .75rem; color: var(--text-light);
}

.price-tag-small, .property-price-amount {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700; color: var(--green); font-size: 1.1rem;
}
.property-price {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 10px; border-top: 1px solid var(--border);
}
.property-price-period { font-size: .8rem; color: var(--text-light); }
.property-cta {
  background: var(--brown); color: var(--white); border: none; cursor: pointer;
  padding: 8px 16px; border-radius: var(--r4); font-weight: 600;
  font-size: .85rem; transition: background .2s;
}
.property-cta:hover { background: var(--brown-hover); }

/* Horizontal card (search results) - Booking.com style */
.horizontal-card {
  display: flex; padding: 0;
  border: 1px solid var(--border); border-radius: 8px;
  cursor: pointer; transition: all .2s; overflow: hidden;
  background: var(--white); position: relative;
}
.horizontal-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); border-color: var(--sage); }
.horizontal-card.selected { border-color: #dc2626; box-shadow: 0 0 0 2px rgba(220,38,38,0.25); }
.h-card-image { flex: 0 0 220px; overflow: hidden; position: relative; min-height: 200px; }
.h-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.h-card-content { flex: 1; padding: 16px 16px 12px; display: flex; flex-direction: column; }
.h-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.h-card-info { flex: 1; min-width: 0; }
.h-card-name {
  font-family: 'Libre Baskerville', serif; font-weight: 700; font-size: 1.05rem; color: var(--green);
  margin-bottom: 4px; line-height: 1.3;
}
.h-card-name:hover { text-decoration: underline; }
.h-card-meta {
  font-size: .82rem; color: var(--text-light); margin-bottom: 6px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.h-card-rating {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 8px; border-radius: 6px 6px 6px 0;
  font-size: .82rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.h-card-rating.excellent { background: var(--green); }
.h-card-rating.good { background: var(--sage); }
.h-card-rating.ok { background: #A3B18A; }
.h-card-rating-text { font-size: .75rem; color: var(--text-light); font-weight: 400; }
.h-card-price { font-weight: 700; color: var(--green); font-size: .95rem; white-space: nowrap; }
.h-card-stats { display: flex; gap: .8rem; font-size: .82rem; color: var(--text-light); margin-bottom: 6px; flex-wrap: wrap; }
.h-card-stats span { display: flex; align-items: center; gap: 3px; }
.h-card-amenities { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.h-card-bottom { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; }
.h-card-price-block { text-align: right; }
.h-card-price-label { font-size: .7rem; color: var(--text-light); }
.h-card-button {
  padding: .5rem 1rem; background: var(--brown); color: white;
  border: none; border-radius: var(--r4); cursor: pointer;
  font-size: .85rem; font-weight: 600; transition: background .2s;
}
.h-card-button:hover { background: var(--brown-hover); }
.h-card-select {
  position: absolute; top: 10px; right: 10px; z-index: 10;
  width: 24px; height: 24px; border-radius: 4px;
  border: 2px solid #fff; background: rgba(0,0,0,0.25);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .15s; color: #fff; font-size: 14px;
}
.h-card-select:hover { background: rgba(0,0,0,0.4); }
.h-card-select.checked { background: #dc2626; border-color: #dc2626; }

/* Floating RFQ selection bar */
.rfq-select-bar {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff; padding: 12px 24px;
  border-radius: 50px; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: flex; align-items: center; gap: 16px; z-index: 1500;
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  animation: slideUp .3s ease;
}
.rfq-select-bar button {
  background: #fff; color: var(--green); border: none;
  padding: 8px 20px; border-radius: 50px; font-weight: 700;
  cursor: pointer; font-size: .85rem; transition: all .2s;
}
.rfq-select-bar button:hover { background: var(--cream); }
.rfq-select-bar .clear-btn {
  background: transparent; color: rgba(255,255,255,0.7);
  padding: 4px 8px; font-size: .8rem; font-weight: 400;
}
.rfq-select-bar .clear-btn:hover { color: #fff; }
@keyframes slideUp { from { transform: translateX(-50%) translateY(100px); opacity: 0; } to { transform: translateX(-50%) translateY(0); opacity: 1; } }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 8px; margin: 32px 0; }
.page-btn {
  padding: 8px 12px; border: 1px solid var(--border); background: var(--white);
  border-radius: var(--r4); cursor: pointer; font-size: .85rem;
  transition: all .2s; font-family: 'DM Sans', sans-serif;
}
.page-btn:hover { background: var(--cream); border-color: var(--sage); }
.page-btn.active { background: var(--green); color: var(--white); border-color: var(--green); }
.page-btn.ellipsis { cursor: default; }
.empty-state { grid-column: 1 / -1; text-align: center; padding: 60px 20px; }
.empty-state h3 { font-size: 1.4rem; color: var(--green); margin-bottom: 12px; }

/* ===== DETAIL PAGE (V2) ===== */
.detail-page { padding: 0; max-width: 1200px; margin: 68px auto 0; }

.back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: .5rem 1rem; background: transparent; border: 1px solid var(--border);
  border-radius: var(--r4); cursor: pointer; font-size: .9rem;
  margin: 24px 24px 16px; transition: all .2s;
}
.back-btn:hover { background: var(--cream); }

.gallery {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px; gap: 8px;
  margin: 0 24px 32px; border-radius: var(--r4); overflow: hidden;
}
.gallery-main { grid-column: 1; grid-row: 1 / 3; overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb { overflow: hidden; cursor: pointer; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-thumb:hover img { transform: scale(1.05); }

.detail-hero { width: 100%; height: 400px; border-radius: var(--r4); overflow: hidden; margin: 0 24px 0; }
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }

.details-layout {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 40px; padding: 0 24px;
}
.details-content { background: var(--white); padding: 32px; border-radius: var(--r4); }

.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; padding: 0 24px; }
.detail-left { display: flex; flex-direction: column; gap: .75rem; }
.detail-left h1 { font-size: 2rem; margin: 0; color: var(--green); }
.detail-right { display: flex; flex-direction: column; gap: .75rem; }

.property-type { font-size: 1rem; color: var(--text-light); }
.price-tag {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--green);
}

.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.info-item { text-align: center; padding: .5rem; background: var(--cream); border-radius: var(--r4); }
.info-value { font-size: 1.1rem; font-weight: 700; color: var(--green); }
.info-label { font-size: .85rem; color: var(--text-light); margin-top: .3rem; }

.address-section { padding: .75rem; background: var(--cream); border-radius: var(--r4); }
.address-label { font-weight: 600; font-size: .9rem; margin-bottom: .3rem; }
.address-text { font-size: .95rem; color: var(--text); }

.amenities-section h3 { margin-bottom: 1rem; color: var(--green); }
.amenities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.amenity-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; }
.amenity-icon-circle {
  width: 32px; height: 32px; background: var(--cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Booking card sidebar */
/* V2 Property Detail layout */
.detail-gallery {
  display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 8px; max-width: 1200px; margin: 0 auto 32px; padding: 0 24px;
  height: 400px;
}
.gallery-main { grid-row: 1 / 3; overflow: hidden; border-radius: var(--r4); }
.gallery-side { overflow: hidden; border-radius: var(--r4); }
.detail-layout {
  display: grid; grid-template-columns: 2fr 1fr; gap: 32px;
  max-width: 1200px; margin: 0 auto; padding: 0 24px 64px;
}
.detail-content { min-width: 0; }
.detail-sidebar { position: relative; }
.detail-badge {
  color: #fff; font-size: 0.65rem; font-weight: 700;
  padding: 3px 8px; border-radius: var(--r4); letter-spacing: 0.02em;
}
.detail-save-btn {
  padding: 6px 12px; border-radius: var(--r4); border: 1px solid var(--border);
  background: var(--white); cursor: pointer; font-size: 0.8rem; font-weight: 600;
  color: var(--green); transition: background .2s;
}
.detail-save-btn:hover { background: var(--cream); }
.booking-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r4); padding: 28px; box-shadow: var(--shadow-md);
  position: sticky; top: 90px;
}
.booking-card h2 { font-size: 1.1rem; margin-bottom: 4px; color: var(--green); }
.booking-label {
  font-size: 0.8rem; font-weight: 600; color: var(--text-light);
  display: block; margin-bottom: 4px;
}
.booking-external-link {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 8px 12px; border-radius: var(--r4); color: #fff;
  font-size: 0.8rem; font-weight: 600; text-decoration: none; transition: opacity .2s;
}
.booking-external-link:hover { opacity: 0.9; }
.booking-trust {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
}
.booking-trust-item { font-size: 0.78rem; color: var(--text-light); }
.price-per-night {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--green); margin-bottom: 20px;
}
.price-per-night small { font-size: .8rem; color: var(--text-light); font-family: 'DM Sans'; }
.date-picker {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border);
  border-radius: var(--r4); font-size: .9rem; margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}
.booking-summary {
  background: var(--cream); padding: 16px; border-radius: var(--r4);
  font-size: .9rem; margin-bottom: 16px;
}
.summary-row { display: flex; justify-content: space-between; margin-bottom: 8px; }
.summary-row:last-child { border-top: 1px solid var(--border); padding-top: 8px; margin-bottom: 0; font-weight: 700; color: var(--green); }
.book-btn {
  width: 100%; background: var(--green); color: var(--white);
  border: none; cursor: pointer; padding: 14px; border-radius: var(--r4);
  font-weight: 700; font-size: 1rem; margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif; transition: background .2s;
}
.book-btn:hover { background: var(--sage); }
.contact-host-btn {
  width: 100%; background: var(--brown); color: var(--white);
  border: none; cursor: pointer; padding: 12px; border-radius: var(--r4);
  font-weight: 600; font-family: 'DM Sans', sans-serif;
  transition: background .2s;
}
.contact-host-btn:hover { background: var(--brown-hover); }
.trust-badges { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); font-size: .85rem; }
.trust-badge { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }

/* Reviews */
.reviews-section { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.reviews-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.review-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.review-item:last-child { border-bottom: none; }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.review-author { font-weight: 600; color: var(--text); }
.review-rating { color: #c8a84b; }
.review-date { font-size: .85rem; color: var(--text-light); }
.review-text { color: var(--text-light); line-height: 1.7; }

/* ===== MAP STYLES ===== */
.map-highlight-label { background: none !important; border: none !important; }
.leaflet-popup-content-wrapper { background: var(--green) !important; color: #fff !important; border-radius: 8px !important; font-size: 13px; font-weight: 500; }
.leaflet-popup-content b { color: #fff; }
.leaflet-popup-tip { background: var(--green) !important; }
.leaflet-popup-close-button { color: #fff !important; }
.map-embed { width: 100%; border-radius: var(--r4); margin-top: 1.5rem; }
.search-map-panel {
  position: sticky; top: 100px; height: calc(100vh - 132px);
  border-left: 1px solid var(--border); border-radius: var(--r4);
  overflow: hidden;
}
.search-map-panel .leaflet-container { height: 100% !important; width: 100% !important; }
.map-toggle-btn {
  position: absolute; top: 10px; right: 10px; z-index: 1001;
  background: #fff; border: 2px solid var(--green); color: var(--green);
  padding: 6px 14px; border-radius: var(--r4); font-weight: 600;
  font-size: .85rem; cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.map-toggle-btn:hover { background: var(--green); color: #fff; }

/* ===== REQUEST QUOTE PAGE ===== */
.rfq-hero {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  padding: 72px 0; text-align: center; margin-top: 68px;
}
.rfq-hero h1 { color: var(--white); margin-bottom: 12px; }
.rfq-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; }

.form-container {
  max-width: 720px; margin: -32px auto 48px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r4);
  padding: 48px; box-shadow: var(--shadow-lg); position: relative; z-index: 1;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { margin-bottom: 24px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  display: block; font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--green); margin-bottom: 8px;
}
.form-input, .form-select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: var(--r4); font-size: .95rem; font-family: 'DM Sans', sans-serif;
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus {
  border-color: var(--sage); outline: none;
  box-shadow: 0 0 0 2px rgba(88,129,87,.1);
}
.form-textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: var(--r4); font-size: .95rem; min-height: 120px;
  font-family: 'DM Sans', sans-serif; resize: vertical;
}
.form-textarea:focus { border-color: var(--sage); outline: none; box-shadow: 0 0 0 2px rgba(88,129,87,.1); }
.form-submit {
  width: 100%; padding: 16px 32px; background: var(--green);
  color: white; border: none; border-radius: var(--r4);
  cursor: pointer; font-weight: 700; font-size: 1rem;
  font-family: 'DM Sans', sans-serif; transition: background .2s;
}
.form-submit:hover { background: var(--green-mid); }

.checkbox-group { display: flex; flex-wrap: wrap; gap: 12px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; }
.checkbox-item input { accent-color: var(--sage); width: 16px; height: 16px; }
.checkbox-item label { font-size: .9rem; cursor: pointer; }

/* ===== SERVICES PAGE ===== */
.services-hero {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  padding: 96px 0; text-align: center; margin-top: 68px;
}
.services-hero h1 { color: var(--white); margin-bottom: 12px; }
.services-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 48px; }
.two-col-list { list-style: none; margin-top: 16px; }
.two-col-list li { padding: 8px 0; padding-left: 24px; position: relative; font-size: .95rem; color: var(--text-mid); }
.two-col-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--sage); font-weight: 700; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.feature-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r4); padding: 32px;
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.1rem; color: var(--green); margin-bottom: 8px; }
.feature-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }

.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 32px; }
.process-step {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r4); padding: 28px; position: relative;
}
.process-step::before {
  content: attr(data-step); position: absolute; top: -16px; left: 24px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--brown); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem;
}

.pricing-table {
  width: 100%; border-collapse: collapse; margin-top: 32px;
  font-size: .95rem; border: 1px solid var(--border);
}
.pricing-table thead { background: var(--cream); }
.pricing-table th, .pricing-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.pricing-table th { font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .03em; color: var(--green); }

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  padding: 96px 0; text-align: center; margin-top: 68px;
}
.about-hero h1 { color: var(--white); margin-bottom: 12px; }
.about-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.about-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mission-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mission-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r4); padding: 32px;
}
.mission-card-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--brown);
}
.mission-card-label { font-size: .85rem; color: var(--text-light); margin-top: 4px; }

.founder-grid { display: grid; grid-template-columns: 300px 1fr; gap: 60px; align-items: start; }
.founder-photo { position: relative; padding-bottom: 100%; border-radius: var(--r4); overflow: hidden; }
.founder-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.founder-title { font-size: .9rem; color: var(--sage); font-weight: 600; margin-bottom: 16px; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.value-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r4); padding: 32px;
}
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.1rem; color: var(--green); margin-bottom: 8px; }
.value-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }

.timeline { max-width: 600px; margin-top: 40px; }
.timeline-item { display: flex; gap: 24px; margin-bottom: 32px; }
.timeline-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brown); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0;
}
.timeline-content h4 { font-size: 1rem; color: var(--green); margin-bottom: 4px; }
.timeline-content p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }

/* About stats (legacy) */
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 32px 0; }
.about-stat { text-align: center; padding: 24px; background: var(--cream); border-radius: var(--r4); }
.about-stat-value { font-family: 'Libre Baskerville', serif; font-size: 2.4rem; font-weight: 700; color: var(--brown); }
.about-stat-label { font-size: .9rem; color: var(--text-light); margin-top: .3rem; }

/* ===== BLOG PAGE ===== */
.blog-content { max-width: 900px; margin: 0 auto; padding: 48px 24px; }
.blog-content h2 { font-size: 1.6rem; color: var(--green); margin: 40px 0 16px; }
.blog-content h3 { font-size: 1.2rem; color: var(--text); margin: 28px 0 12px; }
.blog-content p { margin-bottom: 16px; line-height: 1.8; }
.blog-featured-img { width: 100%; margin: 32px 0; border-radius: var(--r4); box-shadow: var(--shadow-md); }
.highlight-box {
  background: var(--cream); border-left: 4px solid var(--brown);
  padding: 24px; margin: 24px 0; border-radius: 0 var(--r4) var(--r4) 0;
}
.author-bio {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r4); padding: 28px;
  display: flex; gap: 20px; margin: 48px 0;
}
.author-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ===== CITY PAGE ===== */
.city-hero {
  margin-top: 68px; background: linear-gradient(135deg, var(--green), var(--green-mid));
  padding: 80px 0;
}
.city-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.city-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1); color: var(--sage-light);
  font-size: .78rem; font-weight: 600; padding: 6px 14px;
  border-radius: 100px; margin-bottom: 16px;
}
.city-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 16px; }
.city-hero p { font-size: 1.05rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 24px; }
.city-hero-stats { display: flex; gap: 32px; margin-bottom: 24px; }
.city-stat-num { font-family: 'Libre Baskerville', serif; font-size: 1.8rem; font-weight: 700; color: var(--white); }
.city-stat-label { font-size: .78rem; color: rgba(255,255,255,.55); }
.city-hero-cta {
  background: var(--brown); color: var(--white); border: none; cursor: pointer;
  padding: 14px 28px; border-radius: var(--r4); font-weight: 700;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; transition: background .2s;
}
.city-hero-cta:hover { background: var(--brown-hover); }
.city-hero-image { height: 400px; border-radius: var(--r4); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.city-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.neighborhoods-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 32px; }
.neighborhood-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r4); padding: 28px;
}
.neighborhood-card h3 { font-size: 1.1rem; color: var(--green); margin-bottom: 8px; }
.neighborhood-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 8px; }
.neighborhood-card-count { font-size: .78rem; color: var(--sage); font-weight: 600; }

.guides-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 32px; }
.guide-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r4); padding: 24px;
}
.guide-card-title { font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.guide-card-desc { font-size: .9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 12px; }

.faq-item { margin-bottom: 0; padding: 20px 0; border-bottom: 1px solid var(--border); }
.faq-q {
  font-size: 1rem; font-weight: 700; color: var(--green);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center;
}
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--sage); transition: transform .2s; }
.faq-item.open .faq-q::after { content: '-'; }
.faq-a { display: none; font-size: .9rem; color: var(--text-mid); line-height: 1.7; padding-top: 12px; }
.faq-item.open .faq-a { display: block; }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--green); padding: 64px 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,.75); margin-bottom: 28px; font-size: 1.05rem; }
.cta-btn {
  background: var(--brown); color: var(--white); border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
  padding: 14px 32px; border-radius: var(--r4); transition: background .2s;
}
.cta-btn:hover { background: var(--brown-hover); }

/* ===== DASHBOARD / CHAT / AUTH (preserved) ===== */
.unread-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--error); color: #fff; border-radius: 50%;
  width: 18px; height: 18px; font-size: .65rem; font-weight: 700; margin-left: .3rem;
}

.notification-banner { padding: 1rem; background: var(--success); color: white; border-radius: var(--r4); }

.contact-section { padding: 1.5rem; background: var(--cream); border-radius: var(--r4); }
.contact-section h3 { margin-bottom: 1rem; }

.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.5); display: flex; align-items: center;
  justify-content: center; z-index: 2000;
}
.modal {
  background: white; border-radius: var(--r4); padding: 2rem;
  max-width: 800px; max-height: 90vh; overflow-y: auto; position: relative;
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--cream); border: none; width: 30px; height: 30px;
  border-radius: 50%; cursor: pointer; font-size: 1.2rem;
}

.fax-section { padding: 1rem; background: var(--cream); border: 1px solid #d4e7d0; border-radius: var(--r4); margin-bottom: 1.5rem; }
.fax-section-header { display: flex; align-items: center; gap: .5rem; font-weight: 600; margin-bottom: .75rem; color: var(--green); }
.fax-number-display { font-size: 1rem; font-family: monospace; background: white; padding: .5rem .75rem; border-radius: var(--r4); margin-bottom: .75rem; border: 1px solid #ddd; }
.btn-send-fax { padding: .6rem 1.2rem; background: var(--sage); color: white; border: none; border-radius: var(--r4); cursor: pointer; font-size: .9rem; font-weight: 600; transition: all .2s; }
.btn-send-fax:hover { background: var(--green); }
.fax-modal-content { padding: 2rem; }
.fax-modal-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; color: var(--green); }
.fax-info-box { background: var(--cream); padding: 1rem; border-radius: var(--r4); margin-bottom: 1.5rem; border-left: 4px solid var(--sage); }
.fax-info-label { font-size: .85rem; color: #666; margin-bottom: .25rem; }
.fax-info-value { font-size: 1.1rem; font-weight: 600; font-family: monospace; color: var(--green); }
.fax-message-group { margin-bottom: 1.5rem; }
.fax-message-label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
.fax-message-textarea { width: 100%; min-height: 150px; padding: .8rem; border: 1px solid var(--border); border-radius: var(--r4); font-size: .9rem; font-family: inherit; resize: vertical; }
.fax-actions { display: flex; gap: .75rem; justify-content: flex-end; }
.fax-service-link { padding: .6rem 1.2rem; background: var(--sage); color: white; border: none; border-radius: var(--r4); cursor: pointer; font-size: .9rem; font-weight: 600; transition: all .2s; text-decoration: none; display: inline-block; }
.fax-service-link:hover { background: var(--green); text-decoration: none; }

.property-type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.type-card { padding: 1rem; border: 1px solid var(--border); border-radius: var(--r4); }
.type-name { font-weight: 700; margin-bottom: .5rem; }
.type-desc { font-size: .85rem; color: var(--text-light); margin-bottom: .5rem; }
.type-tax { font-size: .85rem; color: var(--brown); font-weight: 600; }

.dashboard-container { max-width: 1200px; margin: 68px auto 0; padding: 2rem; }
.dashboard-header { margin-bottom: 2rem; }
.dashboard-header h1 { font-size: 2rem; margin-bottom: .5rem; }
.dashboard-tabs { display: flex; flex-wrap: wrap; gap: .25rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.dashboard-tab {
  padding: 0.55rem 0.85rem; background: none; border: none;
  border-bottom: 2px solid transparent; cursor: pointer;
  font-size: .78rem; font-weight: 600; color: var(--text-light); transition: all .2s; position: relative;
  white-space: nowrap;
}
.dashboard-tab:hover { color: var(--text); }
.dashboard-tab.active { color: var(--green); border-bottom-color: var(--green); }
.dashboard-tab-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--error); color: white; border-radius: 50%;
  width: 16px; height: 16px; font-size: .65rem; margin-left: .3rem;
}
.dashboard-content { display: flex; flex-direction: column; gap: 1.5rem; }
.profile-form { display: flex; flex-direction: column; gap: 1rem; max-width: 600px; }
.privacy-toggle { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }

.chat-container { display: grid; grid-template-columns: 250px 1fr; gap: 0; height: 600px; border: 1px solid var(--border); border-radius: var(--r4); overflow: hidden; }
.chat-sidebar { border-right: 1px solid var(--border); overflow-y: auto; }
.conversation-item { padding: 1rem; border-bottom: 1px solid var(--border); cursor: pointer; transition: all .2s; }
.conversation-item:hover { background: var(--cream); }
.conversation-item.active { background: var(--green); color: white; }
.conversation-item.unread { font-weight: 700; }
.conversation-property { font-weight: 600; font-size: .9rem; }
.conversation-preview { font-size: .85rem; color: var(--text-light); margin-top: .3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.conversation-item.active .conversation-preview { color: rgba(255,255,255,.8); }
.conversation-meta { display: flex; justify-content: space-between; align-items: center; font-size: .75rem; color: var(--text-light); margin-top: .3rem; }
.conversation-item.active .conversation-meta { color: rgba(255,255,255,.7); }
.conversation-badge { background: var(--error); color: white; border-radius: 50%; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; }
.chat-main { display: flex; flex-direction: column; background: white; }
.chat-header { padding: 1rem; border-bottom: 1px solid var(--border); }
.chat-header h3 { margin-bottom: .3rem; }
.chat-header p { font-size: .85rem; color: var(--text-light); }
.chat-messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.chat-empty { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--text-light); }
.message-bubble { padding: .8rem 1rem; border-radius: var(--r4); max-width: 70%; word-wrap: break-word; }
.message-bubble.sent { background: var(--green); color: white; align-self: flex-end; }
.message-bubble.received { background: var(--cream); color: var(--text); align-self: flex-start; }
.message-meta { font-size: .75rem; color: var(--text-light); margin-top: .2rem; }
.chat-input-area { display: flex; gap: .5rem; padding: 1rem; border-top: 1px solid var(--border); background: var(--cream); }
.chat-input-area input { flex: 1; padding: .7rem; border: 1px solid var(--border); border-radius: var(--r4); font-size: .9rem; }
.chat-input-area button { padding: .7rem 1.2rem; background: var(--green); color: white; border: none; border-radius: var(--r4); cursor: pointer; font-weight: 600; }

.login-container { display: flex; align-items: center; justify-content: center; min-height: 70vh; padding: 2rem; margin-top: 68px; }
.login-form { width: 100%; max-width: 400px; padding: 2rem; border: 1px solid var(--border); border-radius: var(--r4); box-shadow: var(--shadow-md); }
.login-form h2 { margin-bottom: 1.5rem; }
.login-toggle { text-align: center; margin-top: 1rem; font-size: .9rem; }
.login-toggle button { background: none; border: none; color: var(--green); cursor: pointer; font-weight: 600; padding: 0; }

.signup-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.signup-card { padding: 1rem; border: 1px solid var(--border); border-radius: var(--r4); cursor: pointer; transition: all .2s; }
.signup-card:hover, .signup-card.active { border-color: var(--green); background: var(--cream); }

.website-link { display: inline-block; padding: .8rem 1.5rem; background: var(--brown); color: white; text-decoration: none; border-radius: var(--r4); font-weight: 600; cursor: pointer; }

/* Legacy compat */
.search-bar { display: flex; gap: .5rem; max-width: 600px; margin: 0 auto; }
.search-bar input, .search-bar select { padding: .8rem 1rem; border: none; border-radius: var(--r4); font-size: .9rem; }
.search-bar button { padding: .8rem 1.5rem; background: var(--brown); color: white; border: none; border-radius: var(--r4); cursor: pointer; font-weight: 600; }

.value-props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 3rem 2rem; max-width: 1400px; margin: 0 auto; }
.value-prop { text-align: center; }
.value-prop-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-prop h3 { font-size: 1.2rem; margin-bottom: .5rem; }

.featured-section { padding: 2rem; max-width: 1400px; margin: 0 auto; }

.amenity-toggle { padding: .5rem .8rem; border: 1px solid var(--border); background: white; border-radius: var(--r4); cursor: pointer; font-size: .85rem; transition: all .2s; }
.amenity-toggle.active { background: var(--green); color: white; border-color: var(--green); }
.amenities-chips { display: flex; flex-direction: column; gap: .5rem; }

.slider { cursor: pointer; }

.sort-buttons { display: flex; gap: .5rem; }
.sort-btn { padding: .5rem .8rem; border: 1px solid var(--border); background: white; border-radius: var(--r4); cursor: pointer; font-size: .85rem; transition: all .2s; }
.sort-btn.active { background: var(--green); color: white; border-color: var(--green); }

.promoted-badge { position: absolute; top: 10px; right: 10px; background: linear-gradient(135deg, var(--brown), #8B6914); color: #fff; padding: .3rem .7rem; border-radius: var(--r4); font-size: .7rem; font-weight: 700; letter-spacing: .5px; }
.promote-section { background: var(--cream); border: 2px solid var(--brown); border-radius: var(--r4); padding: 1.5rem; margin-top: 1rem; }
.promote-section h3 { color: #8B6914; margin-bottom: .5rem; }

.room-breakdown { font-size: .85rem; color: #666; margin-top: .4rem; line-height: 1.4; }
.room-breakdown-item { display: inline; margin-right: .75rem; }
.room-breakdown-item:not(:last-child)::after { content: ' \2022 '; margin-left: .75rem; }
.room-breakdown-item:last-child::after { content: ''; }

.owner-edit-panel { background: var(--cream); border: 2px solid var(--border); border-radius: var(--r4); padding: 1.5rem; margin-top: 1.5rem; }
.owner-edit-panel h3 { font-size: 1.1rem; font-weight: 700; color: var(--green); margin-bottom: 1rem; }
.owner-edit-form { display: grid; gap: 1rem; }
.owner-edit-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.owner-edit-form-row.full { grid-template-columns: 1fr; }
.owner-edit-label { font-size: .85rem; font-weight: 600; color: #555; margin-bottom: .4rem; display: block; }
.owner-edit-input { padding: .5rem .75rem; border: 1px solid var(--border); border-radius: var(--r4); font-size: 1rem; width: 100%; font-family: inherit; }
.owner-edit-input:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(88,129,87,.1); }
.owner-edit-select { padding: .5rem .75rem; border: 1px solid var(--border); border-radius: var(--r4); font-size: 1rem; width: 100%; font-family: inherit; }
.owner-edit-select:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(88,129,87,.1); }
.owner-edit-submit { background: var(--sage); color: #fff; padding: .6rem 1.2rem; border: none; border-radius: var(--r4); cursor: pointer; font-weight: 600; font-size: .9rem; transition: all .2s; }
.owner-edit-submit:hover { background: var(--green); }
.preferred-contact-badge { display: inline-block; background: #d4e7d0; color: var(--green); padding: .25rem .6rem; border-radius: var(--r4); font-size: .75rem; font-weight: 600; margin-top: .5rem; }

.why-section { background: var(--cream); padding: 80px 0; }
.why-content { max-width: 1000px; margin: 0 auto; text-align: center; padding: 0 24px; }
.why-content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--green); margin-bottom: 12px; }
.why-content p { font-size: 1rem; line-height: 1.7; color: var(--text-mid); max-width: 700px; margin: 0 auto 24px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; text-align: left; }
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r4); padding: 28px; }
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; color: var(--green); }
.why-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 60px 32px; }
  .search-fields { grid-template-columns: 1fr 1fr; }
  .search-field:nth-child(2n) { border-right: none; }
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card.featured { grid-column: span 2; grid-row: span 1; height: 280px; }
  .savings-inner { grid-template-columns: 1fr; gap: 40px; }
  .search-container { grid-template-columns: 1fr; }
  .filter-sidebar, .sidebar { position: static; }
  .detail-grid, .details-layout { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .city-hero-inner { grid-template-columns: 1fr; }
  .two-col-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-grid { grid-template-columns: 1fr; }
  .how-step:not(:first-child) { border-left: 1px solid var(--border); border-top: none; }
  .search-bar-inner { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 250px 250px; }
  .gallery-main { grid-column: 1 / -1; grid-row: auto; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 16px; }
  .navbar-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .navbar-hamburger { display: block; }
  .search-container { grid-template-columns: 1fr !important; }
  .hero { min-height: auto; }
  .hero-left { padding: 48px 20px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .search-fields { grid-template-columns: 1fr; }
  .search-field { border-right: none; border-bottom: 1px solid var(--border); }
  .search-field:last-child { border-bottom: none; }
  .trust-bar-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
  .dest-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .dest-card { height: 220px; }
  .dest-card.featured { grid-column: span 1; height: 260px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-container { padding: 32px 20px 56px; }
  .blog-categories { gap: 6px; }
  .blog-cat-btn { padding: 6px 14px; font-size: .8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .dest-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .value-props { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .property-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .detail-gallery { grid-template-columns: 1fr; grid-template-rows: 250px 120px; height: auto; }
  .gallery-main { grid-row: auto; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .search-bar-inner { grid-template-columns: 1fr; }
  .city-hero-stats { gap: 20px; flex-wrap: wrap; }
  .neighborhoods-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .signup-cards { grid-template-columns: 1fr; }
  .chat-container { grid-template-columns: 1fr; height: auto; }
  .chat-sidebar { max-height: 200px; }
  .about-stats-grid { grid-template-columns: 1fr !important; }
  .rfq-grid { grid-template-columns: 1fr !important; }
  .rfq-grid aside { position: static !important; }
  .horizontal-card { flex-direction: column; }
  .h-card-image { flex: none; height: 180px; }
  .h-card-top { flex-direction: column; gap: 8px; }
  .rfq-select-bar { left: 16px; right: 16px; transform: none; }
  .rfq-steps-grid { grid-template-columns: 1fr !important; }
}
