/* ============================================
   STAYKAL — Premium Stay Experience
   Color: #1f3d2b (forest), #c6a96b (gold), #fff
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Jost:wght@200;300;400;500;600&display=swap');

:root {
  --forest: #1f3d2b;
  --forest-light: #2d5940;
  --forest-dark: #162b1e;
  --gold: #c6a96b;
  --gold-light: #d4bc88;
  --gold-dark: #a8894e;
  --white: #ffffff;
  --off-white: #f9f7f4;
  --cream: #f3ede4;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --border: rgba(31,61,43,0.12);
  --shadow-sm: 0 2px 12px rgba(31,61,43,0.08);
  --shadow-md: 0 8px 32px rgba(31,61,43,0.12);
  --shadow-lg: 0 20px 60px rgba(31,61,43,0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Jost', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  font-weight: 500;
}

.display-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.section-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-text {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
}

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

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 3rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.navbar.dark {
  background: rgba(31,61,43,0.92);
  backdrop-filter: blur(20px);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .brand-name { color: var(--forest); }
.navbar.dark .brand-name { color: var(--white); }

/* Navbar on light-background pages (e.g. /properties) — show dark text immediately */
.navbar.on-light {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border);
}
.navbar.on-light .brand-name { color: var(--forest); }
.navbar.on-light .nav-link { color: var(--text-dark); }
.navbar.on-light .nav-link:hover { color: var(--forest); }
.navbar.on-light .btn-nav {
  border-color: var(--forest);
  color: var(--forest);
}
.navbar.on-light .btn-nav:hover {
  background: var(--forest);
  color: var(--white);
}

/* ---- LOGO IMAGE STYLING ---- */
.navbar-logo {
  height: 70px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
  transition: var(--transition);
}

.footer-logo {
  height: 100px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1.5rem;
}

.admin-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-logo {
  height: 80px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

/* Responsive Logo Sizes */
@media (max-width: 1024px) {
  .navbar-logo {
    height: 65px;
    max-width: 165px;
  }

  .footer-logo {
    height: 90px;
    max-width: 180px;
  }

  .admin-logo {
    height: 75px;
    max-width: 140px;
  }
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 58px;
    max-width: 150px;
  }

  .footer-logo {
    height: 80px;
    max-width: 160px;
    margin-bottom: 1.25rem;
  }

  .admin-logo {
    height: 68px;
    max-width: 130px;
  }
}

@media (max-width: 480px) {
  .navbar-logo {
    height: 50px;
    max-width: 130px;
  }

  .footer-logo {
    height: 70px;
    max-width: 140px;
    margin-bottom: 1rem;
  }

  .admin-logo {
    height: 60px;
    max-width: 120px;
  }

  .admin-logo-wrapper {
    padding: 0.75rem 0;
    margin-bottom: 1.25rem;
  }
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
  position: relative;
  padding-bottom: 3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.navbar.scrolled .nav-link { color: var(--text-dark); }
.navbar.scrolled .nav-link:hover { color: var(--forest); }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}



.btn-nav {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-nav:hover {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}

.btn-nav-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn-nav-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.navbar.scrolled .btn-nav {
  border-color: var(--forest);
  color: var(--forest);
}

.navbar.scrolled .btn-nav:hover {
  background: var(--forest);
  color: var(--white);
}

/* ---- HAMBURGER — Premium ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  transition: var(--transition);
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger span:nth-child(1) { width: 18px; margin-bottom: 5px; }
.hamburger span:nth-child(2) { width: 12px; }
.hamburger span:nth-child(3) { display: none; }

.hamburger.open span:nth-child(1) {
  width: 16px;
  transform: translateY(3.25px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  width: 16px;
  transform: translateY(-3.25px) rotate(-45deg);
}

.navbar.scrolled .hamburger {
  background: rgba(31,61,43,0.07);
  border-color: rgba(31,61,43,0.18);
}
.navbar.scrolled .hamburger:hover {
  background: rgba(31,61,43,0.13);
  border-color: rgba(31,61,43,0.35);
}
.navbar.scrolled .hamburger span { background: var(--forest); }

.navbar.on-light .hamburger {
  background: rgba(31,61,43,0.07);
  border-color: rgba(31,61,43,0.18);
}
.navbar.on-light .hamburger span { background: var(--forest); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1800&q=80') center/cover no-repeat;
  opacity: 0.45;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,61,43,0.85) 0%, rgba(31,61,43,0.4) 50%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--white);
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(198,169,107,0.35);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(198,169,107,0.45);
  color: var(--white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-forest {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.btn-forest:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
}

.hero-stat-item .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.hero-stat-item .stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-search-card {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.search-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.search-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background: var(--off-white);
  border-radius: 100px;
  padding: 4px;
}

.search-tab {
  flex: 1;
  padding: 8px 16px;
  border-radius: 100px;
  border: none;
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.search-tab.active {
  background: var(--forest);
  color: var(--white);
}

.search-field {
  margin-bottom: 1rem;
}

.search-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 6px;
}

.search-field input,
.search-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: var(--transition);
  appearance: none;
}

.search-field input:focus,
.search-field select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(31,61,43,0.08);
}

.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* ---- FEATURES ROW ---- */
.features-row {
  padding: 4rem 3rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
}

.feature-item:hover {
  background: var(--off-white);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px; height: 56px;
  background: rgba(31,61,43,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--forest);
}

.feature-icon svg { transition: var(--transition); }
.feature-item:hover .feature-icon svg path,
.feature-item:hover .feature-icon svg rect,
.feature-item:hover .feature-icon svg circle { stroke: white; }

.feature-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  transition: var(--transition);
}

.feature-link:hover { gap: 10px; }

/* ---- SECTION COMMON ---- */
/* All sections get horizontal padding; section-container adds max-width centering */
section { padding: 6rem 3rem; }

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Hero content uses its own horizontal padding (not from section) */
.hero-content {
  padding: 0 3rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 768px) {
  section { padding: 4rem 1.25rem; }
  .hero-content { padding: 0 1.25rem; }
}

@media (max-width: 480px) {
  section { padding: 3rem 1rem; }
  .hero-content { padding: 0 1rem; }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-sub { margin-bottom: 1rem; }
.section-header .section-title { margin-bottom: 1rem; color: var(--forest); }
.section-header .body-text { max-width: 540px; margin: 0 auto; }

/* ---- SHOWCASE IMAGE ---- */
.showcase-section {
  padding: 0 3rem 6rem;
  background: var(--white);
}

.showcase-inner {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  height: 560px;
}

.showcase-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 8s ease;
}

.showcase-inner:hover .showcase-img { transform: scale(1); }

.showcase-badge {
  position: absolute;
  bottom: 2.5rem; right: 2.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.8rem;
  box-shadow: var(--shadow-md);
}

.showcase-badge-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.showcase-badge-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
}

.showcase-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.showcase-play:hover {
  background: rgba(255,255,255,0.35);
  transform: translate(-50%, -50%) scale(1.08);
}

/* ---- PROPERTIES GRID ---- */
.properties-section { background: var(--off-white); }

.properties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.property-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.property-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.property-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.property-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--forest);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.property-wishlist {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.property-wishlist:hover { background: var(--white); transform: scale(1.1); }

.wishlist-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(31,61,43,0.12);
  background: rgba(255,255,255,0.98);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.wishlist-btn.active,
.property-wishlist.active,
.prop-heart.active {
  background: #ffe9e9;
  border-color: rgba(231,76,60,0.2);
}

.wishlist-btn svg path,
.property-wishlist svg path,
.prop-heart svg path {
  transition: var(--transition);
}

.messages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.message-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31,61,43,0.08);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.message-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.message-thread-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.message-time {
  font-size: 0.75rem;
  color: var(--text-light);
}

.message-preview {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.message-reply-form .form-input {
  margin-bottom: 0.9rem;
}

.message-reply-form .btn-sm {
  padding: 0.9rem 1.25rem;
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .messages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .detail-gallery { grid-template-columns: 1fr; }
  .detail-gallery .gallery-thumb { display: none; }
  .detail-body { padding: 2rem 1.5rem; }
  .property-wishlist { top: 0.8rem; right: 0.8rem; }
}

.property-card-body {
  padding: 1.4rem;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.property-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.property-meta {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 0.8rem;
}

.property-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-mid);
}

.property-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
}

.price-unit {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-light);
}

.property-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.6rem;
}

.stars { color: var(--gold); font-size: 0.8rem; }
.rating-num { font-size: 0.8rem; font-weight: 500; color: var(--text-mid); }
.rating-count { font-size: 0.75rem; color: var(--text-light); }

/* property card lg (full width) */
.property-card-lg .property-card-img { height: 300px; }

/* ---- WHY CHOOSE ---- */
.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-image-block {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 580px;
}

.why-image-block img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.why-compare-card {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.compare-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.compare-col-staykal .compare-col-title { color: var(--forest); }
.compare-col-others .compare-col-title { color: var(--text-light); }

.compare-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.compare-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-yes { background: var(--forest); }
.check-no { background: #e0e0e0; }

.compare-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.5rem;
}

.compare-star { color: var(--gold); font-size: 0.85rem; }

.why-content .section-title {
  margin-bottom: 1.5rem;
}

.why-list {
  list-style: none;
  margin: 2rem 0;
}

.why-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.why-list-item:last-child { border-bottom: none; }

.why-list-icon {
  width: 40px; height: 40px;
  background: rgba(31,61,43,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-list-item h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.why-list-item p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- BLOG / INSIGHTS ---- */
.insights-section { background: var(--off-white); }

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.insight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.insight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.insight-img {
  height: 200px;
  overflow: hidden;
}

.insight-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.insight-body { padding: 1.4rem; }

.insight-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.insight-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.insight-date {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-light);
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: var(--forest);
  transform: translateY(-4px);
}

.testimonial-card:hover * { color: rgba(255,255,255,0.85) !important; }
.testimonial-card:hover .t-stars { color: var(--gold) !important; }

.t-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--gold);
}

.t-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 2px;
}

.t-location {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.t-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  display: flex;
  gap: 2px;
}

.t-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
}

/* ---- FAQ ---- */
.faq-section { background: var(--off-white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.faq-list { margin-top: 1rem; }

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--forest);
  transition: var(--transition);
  gap: 1rem;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--forest);
  transform: rotate(45deg);
}

.faq-item.open .faq-icon svg path { stroke: white; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.2rem; }

.faq-answer-inner {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
}

.faq-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 500px;
}

.faq-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---- CTA ---- */
.cta-section {
  background: var(--forest);
  padding: 7rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1800&q=80') center/cover no-repeat;
  opacity: 0.12;
}

.cta-section .section-sub { color: var(--gold); }
.cta-section .section-title { color: var(--white); margin-bottom: 1rem; }
.cta-section .body-text { color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; }

.cta-input-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.cta-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.cta-input::placeholder { color: rgba(255,255,255,0.4); }
.cta-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }

/* ---- FOOTER ---- */
.footer {
  background: var(--forest-dark);
  padding: 5rem 3rem 2.5rem;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2.5rem;
}

.footer-brand .brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}

.footer-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.55);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-col h6 {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links { list-style: none; }

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ====================================================
   PROPERTY LISTING PAGE
   ==================================================== */

.listing-hero {
  padding-top: 120px;
  padding-bottom: 3rem;
  background: var(--white);
  padding-left: 3rem;
  padding-right: 3rem;
  text-align: center;
}

.listing-hero .section-title { color: var(--forest); margin-bottom: 0.75rem; }
.listing-hero .body-text { margin-bottom: 2rem; }

.search-bar-full {
  max-width: 860px;
  margin: 0 auto 2.5rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 6px 6px 24px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-md);
}

.search-bar-full input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dark);
  background: transparent;
}

.search-bar-full input::placeholder { color: var(--text-light); }

.search-bar-btn {
  padding: 12px 28px;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition);
}

.search-bar-btn:hover { background: var(--gold); }

.filter-bar {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-select {
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231f3d2b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.filter-select:focus, .filter-select:hover {
  border-color: var(--forest);
}

.listing-body {
  padding: 3rem;
  background: var(--off-white);
}

.listing-container {
  max-width: 1400px;
  margin: 0 auto;
}

.listing-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.listing-count {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}

.listing-sort {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.listing-sort label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-mid);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.prop-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.prop-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.prop-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.prop-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.prop-badge {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  background: rgba(31,61,43,0.9);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.prop-img-count {
  position: absolute;
  top: 0.8rem; right: 2.8rem;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.prop-heart {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.prop-heart:hover { background: var(--white); transform: scale(1.1); }
.prop-heart.active svg path { fill: #e74c3c; stroke: #e74c3c; }

.prop-card-body { padding: 1.2rem; }

.prop-location-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.prop-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.prop-details {
  font-size: 0.76rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.prop-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prop-price strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
}

.prop-price span {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
  margin-left: 5px;
}

/* ---- PAGINATION ---- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.page-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.page-btn:hover, .page-btn.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

/* ====================================================
   PROPERTY DETAIL PAGE
   ==================================================== */

.detail-gallery {
  padding-top: 88px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 520px;
}

.gallery-main { grid-row: 1 / 3; overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-main:hover img { transform: scale(1.03); }

.gallery-thumb { overflow: hidden; position: relative; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-thumb:hover img { transform: scale(1.05); }

.gallery-more {
  position: absolute;
  inset: 0;
  background: rgba(31,61,43,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
}

.detail-body {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.detail-tag-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.detail-tag {
  background: rgba(31,61,43,0.08);
  color: var(--forest);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.detail-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.detail-stats {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.detail-stat { text-align: center; }
.detail-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
}
.detail-stat-label { font-size: 0.75rem; color: var(--text-light); }

.detail-description {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.amenities-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  font-weight: 400;
  color: var(--text-mid);
  padding: 10px 0;
}

.amenity-icon {
  width: 32px; height: 32px;
  background: rgba(31,61,43,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Booking widget */
.booking-widget {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.booking-price {
  margin-bottom: 1.5rem;
}

.booking-price .price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest);
}

.booking-price .price-unit { font-size: 0.85rem; color: var(--text-light); }

.booking-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.5rem;
}

.booking-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
}

.booking-date-field {
  padding: 12px 16px;
  border-right: 1px solid var(--border);
}

.booking-date-field:last-child { border-right: none; }

.booking-date-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 3px;
}

.booking-date-input {
  border: none;
  outline: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-dark);
  width: 100%;
  background: transparent;
  cursor: pointer;
}

.booking-guests {
  border: 1.5px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 1.2rem;
}

.booking-guests-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 3px;
}

.booking-guests-select {
  border: none;
  outline: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-dark);
  width: 100%;
  background: transparent;
  appearance: none;
  cursor: pointer;
}

.booking-btn {
  width: 100%;
  padding: 16px;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 1rem;
}

.booking-btn:hover { background: var(--gold); }

.booking-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.booking-fee-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}

.booking-fee-row:last-of-type {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ====================================================
   HOST PAGE
   ==================================================== */

.host-hero {
  min-height: 100vh;
  background: var(--forest);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 3rem 6rem;
}

.host-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1800&q=80') center/cover no-repeat;
  opacity: 0.2;
}

.host-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.host-hero .section-sub { color: var(--gold); margin-bottom: 1.5rem; }
.host-hero .display-title { color: var(--white); margin-bottom: 1.5rem; }
.host-hero .body-text { color: rgba(255,255,255,0.7); margin-bottom: 3rem; max-width: 500px; margin-left: auto; margin-right: auto; }

.host-steps { padding: 6rem 3rem; background: var(--off-white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}

.list-property-form {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.form-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-full { grid-column: 1 / -1; }

.form-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: var(--transition);
  appearance: none;
}

.form-field textarea { min-height: 120px; resize: vertical; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(31,61,43,0.06);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-light); font-weight: 300; }

.amenities-check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.amenity-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.amenity-check:hover { border-color: var(--forest); }
.amenity-check input[type="checkbox"] { accent-color: var(--forest); width: 16px; height: 16px; }
.amenity-check label { font-size: 0.85rem; font-weight: 300; color: var(--text-mid); cursor: pointer; }

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 3rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 2rem;
}

.upload-zone:hover { border-color: var(--gold); background: rgba(198,169,107,0.04); }

.upload-icon {
  width: 56px; height: 56px;
  background: rgba(31,61,43,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.upload-text {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 0.25rem;
}

.upload-subtext { font-size: 0.78rem; color: var(--text-light); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }

.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.pricing-card.selected {
  border-color: var(--forest);
  background: rgba(31,61,43,0.04);
}

.pricing-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 0.4rem;
}

.pricing-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

/* ====================================================
   GLOBAL FORM ELEMENTS — Airbnb-style
   ==================================================== */

/* Labels */
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  margin-bottom: 7px;
}

/* Inputs, textareas */
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #b0b0b0;
  border-radius: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: #aaa; }

.form-input:hover { border-color: #888; }

.form-input:focus {
  border-color: var(--text-dark);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.07);
}

/* Selects — custom arrow */
select.form-input,
.form-select {
  width: 100%;
  padding: 14px 44px 14px 16px;
  border: 1.5px solid #b0b0b0;
  border-radius: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23222' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select.form-input:hover,
.form-select:hover { border-color: #888; }

select.form-input:focus,
.form-select:focus {
  border-color: var(--text-dark);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.07);
}

/* Textarea */
textarea.form-input {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* Form group spacing */
.form-group { margin-bottom: 1.1rem; }

/* Two-column form row */
.form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

/* Password field */
.password-field-wrap {
  position: relative;
}

.password-field-wrap .form-input { padding-right: 50px; }

.password-toggle {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.password-toggle:hover { color: var(--text-dark); }

/* Submit button */
.btn-full {
  width: 100%;
  padding: 16px;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 0.5rem;
}

.btn-full:hover {
  background: var(--forest-light);
  transform: translateY(-1px);
}

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.4rem 0;
  color: #888;
  font-size: 0.8rem;
}

.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: #e0e0e0;
}

/* Social auth buttons */
.social-auth-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1.5px solid #d0d0d0;
  border-radius: 10px;
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.social-btn:hover {
  border-color: #888;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

/* Radio role selector */
.radio-group { display: flex; flex-direction: column; gap: 0.5rem; }

.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1.5px solid #d0d0d0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.radio-option:hover { border-color: var(--text-dark); }

.radio-option input[type="radio"] {
  width: 18px; height: 18px;
  accent-color: var(--forest);
  cursor: pointer;
  flex-shrink: 0;
}

.radio-option:has(input:checked) {
  border-color: var(--forest);
  background: rgba(31,61,43,0.04);
  color: var(--forest);
  font-weight: 500;
}

/* Auth links */
.auth-link { color: var(--forest); text-decoration: underline; text-underline-offset: 2px; font-weight: 500; }
.auth-link:hover { color: var(--forest-light); }

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  gap: 1rem;
}

.auth-switch {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-top: 1.5rem;
}

/* ====================================================
   AUTH PAGES — Centered Airbnb-style
   ==================================================== */

.auth-page-wrap {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: var(--white);
  padding: 0 1rem 4rem;
}

.auth-container {
  width: 100%;
  max-width: 520px;
  padding-top: 2rem;
}

/* Top bar: close + logo */
.auth-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 2rem;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 2rem;
}

.auth-topbar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}

.auth-close-btn {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease;
  color: var(--text-dark);
  text-decoration: none;
}

.auth-close-btn:hover { background: #f2f2f2; }

.auth-form-header {
  margin-bottom: 1.75rem;
}

.auth-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.auth-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}

/* Make auth page hide the main navbar and footer */
.auth-page-body .navbar,
.auth-page-body footer { display: none !important; }

/* ====================================================
   LEGACY AUTH (kept for backward compat)
   ==================================================== */
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.auth-image-col { position: relative; overflow: hidden; }
.auth-image-col img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.auth-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,61,43,0.9), rgba(31,61,43,0.3)); display: flex; align-items: flex-end; padding: 3rem; }
.auth-image-quote blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: white; font-style: italic; line-height: 1.4; margin-bottom: 0.75rem; }
.auth-image-quote cite { color: rgba(255,255,255,0.6); font-size: 0.82rem; font-style: normal; }
.auth-form-col { display: flex; align-items: flex-start; justify-content: center; padding: 3rem 2rem; overflow-y: auto; background: var(--white); }
.auth-form-inner { width: 100%; max-width: 440px; padding-top: 1rem; }
.auth-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.04em;
}
/* auth-social-btn and auth-footer-text handled in global form styles above */

/* ====================================================
   BOOKING CONFIRMATION / CHECKOUT
   ==================================================== */

.checkout-page {
  padding-top: 100px;
  min-height: 100vh;
  background: var(--off-white);
}

.checkout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.checkout-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.checkout-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.checkout-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.checkout-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.booking-summary-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.booking-summary-img {
  height: 200px;
  overflow: hidden;
}

.booking-summary-img img { width: 100%; height: 100%; object-fit: cover; }

.booking-summary-body { padding: 1.5rem; }

.booking-summary-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.summary-divider { height: 1px; background: var(--border); margin: 1rem 0; }

/* ====================================================
   ABOUT PAGE
   ==================================================== */

.about-hero {
  height: 65vh;
  background: var(--forest);
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 3rem 4rem;
}

.about-hero img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.about-hero-content { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; }
.about-hero .section-sub { color: var(--gold); margin-bottom: 1rem; }
.about-hero .display-title { color: var(--white); max-width: 700px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }

.value-icon {
  width: 48px; height: 48px;
  background: rgba(31,61,43,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.value-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.value-card p { font-size: 0.83rem; color: var(--text-light); line-height: 1.65; font-weight: 300; }

/* ====================================================
   ANIMATIONS
   ==================================================== */

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.visible { opacity: 1; }

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-left.visible { opacity: 1; transform: translateX(0); }

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scale-in.visible { opacity: 1; transform: scale(1); }

/* Stagger delay classes */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* Page transition overlay */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 9999;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

.page-transition.entering {
  animation: pageEnter 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.page-transition.leaving {
  animation: pageLeave 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes pageEnter {
  0% { transform: scaleY(0); transform-origin: bottom; }
  100% { transform: scaleY(1); transform-origin: bottom; }
}

@keyframes pageLeave {
  0% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: top; }
}

/* Gold line animation */
@keyframes goldLine {
  0% { width: 0; }
  100% { width: 100%; }
}

/* Float animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-anim { animation: float 4s ease-in-out infinite; }

/* Pulse */
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Hero parallax */
.hero-bg { will-change: transform; }

/* Custom cursor — disabled */
.custom-cursor, .custom-cursor-ring { display: none !important; }

/* Smooth scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 1001;
  transition: width 0.1s linear;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1005;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-panel {
  width: min(360px, 100%);
  max-width: 360px;
  height: 100vh;
  background: var(--forest);
  padding: 1.5rem 1rem 1rem;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.mobile-nav-links { list-style: none; }
.mobile-nav-links li { margin-bottom: 1rem; }
.mobile-nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--white);
  transition: var(--transition);
  display: inline-block;
  padding: 0.25rem 0;
}
.mobile-nav-links a:hover { color: var(--gold); }

.mobile-nav-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  width: 100%;
}


/* ---- MOBILE MENU — AUTH USER CARD ---- */
.user-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.user-badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--forest-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.user-badge:hover { transform: scale(1.03); }

.user-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.user-card-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.user-card-name {
  font-family: 'Jost', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin: 0;
}
.user-card-email {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin: 0.2rem 0 0 0;
}

.mobile-menu-user-nav {
  list-style: none; width: 100%;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.mobile-menu-user-nav li { margin: 0; }
.mobile-menu-user-nav a,
.mobile-menu-user-nav button.menu-button {
  width: 100%;
    display: flex; align-items: center; justify-content: flex-start;
  border: none;
  color: var(--white);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-menu-user-nav a:hover,
.mobile-menu-user-nav button.menu-button:hover { background: rgba(255,255,255,0.14); }

.switch-mode-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem; line-height: 1.4;
}
.mobile-menu-logout {
  width: 100%;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.mobile-menu-logout:hover { background: rgba(255,255,255,0.15); }

/* ====================================================
   RESPONSIVE
   ==================================================== */

@media (max-width: 1200px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .properties-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-body { grid-template-columns: 1fr; }
  .booking-widget { position: static; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-left { display: none; }  /* legacy */
  .auth-container { max-width: 100%; }
  .form-row-two { grid-template-columns: 1fr; }
  .checkout-container { grid-template-columns: 1fr; }
  .booking-summary-card { position: static; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 4rem 1.5rem; }
  section { padding: 4rem 1.5rem; }
  .navbar { padding: 0 1.5rem; }
  .navbar-nav, .navbar-actions .btn-nav:not(.btn-nav-primary) { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 1.5rem; }
  .hero-title { font-size: 2.8rem; }
  .hero-stats { gap: 1.5rem; }
  .features-row { padding: 3rem 1.5rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .showcase-section { padding: 0 1.5rem 4rem; }
  .showcase-inner { height: 300px; }
  .properties-grid, .insights-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .search-grid { grid-template-columns: 1fr; }
  .amenities-check-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid-3 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .listing-grid { grid-template-columns: 1fr; }
  .listing-hero { padding: 100px 1.5rem 2rem; }
  .listing-body { padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding: 3rem 1.5rem 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .cta-input-row { flex-direction: column; }
  .detail-gallery { height: auto; grid-template-columns: 1fr; }
  .gallery-main, .gallery-thumb { height: 200px; }
  .detail-body { padding: 2rem 1.5rem; }
  .checkout-container { padding: 2rem 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .search-bar-full { flex-direction: column; border-radius: var(--radius-md); padding: 1rem; }
  .search-bar-btn { border-radius: var(--radius-sm); width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .amenities-grid { grid-template-columns: 1fr; }
  .detail-stats { flex-wrap: wrap; gap: 1rem; }
  .why-compare-card { position: static; width: auto; transform: none; margin: 1rem; }
  .hero-stat-item .stat-num { font-size: 1.6rem; }
  /* cursor already hidden globally */
  .list-property-form { padding: 2rem 1.5rem; }
  .host-hero { padding: 100px 1.5rem 4rem; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .filter-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; }
  .filter-bar::-webkit-scrollbar { height: 3px; }
}

/* Utility */
.text-center { text-align: center; }
.text-forest { color: var(--forest); }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

/* =====================================================
   ADDITIONAL PAGE STYLES
   ===================================================== */

/* Inner Page Header */
.inner-page-header {
    background: var(--forest);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
}
.inner-page-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: white;
    margin: 0.5rem 0;
}
.inner-page-subtitle { color: rgba(255,255,255,.7); font-size: 1.1rem; }

/* Booking Page */
.booking-wrap { padding-top: 5rem; min-height: 100vh; }
.booking-header { background: var(--cream); padding: 2rem 0; border-bottom: 1px solid var(--border); }
.booking-title { font-family: var(--font-display); font-size: 2rem; font-weight: 600; margin: .5rem 0 0; }
.back-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--forest); font-size: .9rem; font-weight: 500; text-decoration: none; margin-bottom: .5rem; }
.back-link:hover { color: var(--gold); }
.booking-grid { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; padding: 3rem 0 6rem; }
.booking-section { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.section-heading { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 1.5rem; }
.trip-detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.trip-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); font-weight: 500; }
.trip-value-row { display: flex; align-items: center; justify-content: space-between; margin-top: .3rem; }
.trip-value { font-weight: 600; }
.trip-edit-btn { background: none; border: none; color: var(--forest); font-weight: 600; font-size: .9rem; cursor: pointer; text-decoration: underline; }
.payment-options { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.payment-option { flex: 1; cursor: pointer; }
.payment-option input { display: none; }
.payment-option-label { display: flex; align-items: center; gap: .75rem; padding: 1rem; border: 2px solid var(--border); border-radius: 10px; font-weight: 500; transition: all .3s; }
.payment-option.active .payment-option-label { border-color: var(--forest); background: rgba(31,61,43,.05); }
.cancellation-notice { display: flex; align-items: flex-start; gap: .75rem; background: var(--cream); border-radius: 10px; padding: 1rem 1.25rem; margin-top: 1.5rem; font-size: .9rem; }
.booking-summary-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; }
.summary-property { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.summary-property-img img { width: 100px; height: 80px; object-fit: cover; border-radius: 10px; }
.summary-property-type { font-size: .8rem; color: var(--text-muted); }
.summary-property-title { font-weight: 600; margin: .25rem 0; font-size: .95rem; }
.summary-rating { font-size: .85rem; display: flex; align-items: center; gap: .3rem; }
.summary-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.summary-section-title { font-family: var(--font-display); font-weight: 600; margin-bottom: 1rem; }
.price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem; font-size: .95rem; }
.price-total-row { font-weight: 700; font-size: 1.05rem; }
.price-total-label, .price-total-value { font-weight: 700; }
.summary-badges { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.5rem; }
.summary-badge { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text-muted); }

/* Confirmation */
.confirmation-wrap { padding: 7rem 0 5rem; min-height: 100vh; background: var(--cream); }
.confirmation-card { background: white; border-radius: 20px; padding: 3rem; max-width: 620px; margin: 0 auto; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,.08); }
.confirmation-icon { width: 80px; height: 80px; background: rgba(31,61,43,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.confirmation-title { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--forest); margin-bottom: .75rem; }
.confirmation-subtitle { color: var(--text-muted); margin-bottom: 2rem; }
.confirmation-booking-id { background: var(--cream); border-radius: 8px; padding: .75rem 1.25rem; font-size: .9rem; margin-bottom: 2rem; }
.confirmation-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; text-align: left; margin-bottom: 2rem; }
.conf-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); font-weight: 500; display: block; margin-bottom: .2rem; }
.conf-value { font-weight: 600; }
.confirmation-price-summary { background: var(--cream); border-radius: 10px; padding: 1.5rem; margin-bottom: 2rem; text-align: left; }
.confirmation-email-note { font-size: .9rem; color: var(--text-muted); margin-bottom: 2rem; }
.confirmation-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Host Page */
.host-hero { position: relative; min-height: 85vh; display: flex; align-items: center; background: var(--forest); overflow: hidden; padding-top: 5rem; }
.host-hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1600&h=900&fit=crop') center/cover; opacity: .25; }
.host-hero-content { position: relative; max-width: 680px; color: white; }
.host-eyebrow { font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; color: var(--gold); font-weight: 600; display: block; margin-bottom: 1rem; }
.host-hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; line-height: 1.15; margin-bottom: 1.5rem; }
.host-hero-title em { font-style: italic; color: var(--gold); }
.host-hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,.8); margin-bottom: 2.5rem; line-height: 1.7; }
.host-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-outline-white { border: 2px solid rgba(255,255,255,.5); color: white; background: transparent; }
.btn-outline-white:hover { background: white; color: var(--forest); }
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: #b8954f; }
.host-hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.host-stat { display: flex; flex-direction: column; }
.host-stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--gold); display: inline; }
.host-stat-suffix { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); }
.host-stat-label { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: .2rem; }
.host-steps-section { padding: 6rem 0; }
.host-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.host-step { text-align: center; padding: 2.5rem 2rem; background: white; border-radius: 16px; border: 1px solid var(--border); transition: all .3s; }
.host-step:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,.08); }
.host-step-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 600; color: var(--border); line-height: 1; margin-bottom: 1rem; }
.host-step-icon { width: 70px; height: 70px; background: rgba(31,61,43,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--forest); }
.host-step-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: .75rem; }
.host-step-desc { color: var(--text-muted); font-size: .95rem; line-height: 1.7; }
.host-why-section { padding: 6rem 0; background: var(--cream); }
.host-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.host-why-image { border-radius: 16px; overflow: hidden; position: relative; }
.host-why-image img { width: 100%; height: 500px; object-fit: cover; }
.host-benefits { display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0; }
.host-benefit { display: flex; gap: 1rem; align-items: flex-start; }
.host-benefit-icon { width: 44px; height: 44px; background: rgba(31,61,43,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--forest); }
.host-benefit h4 { font-weight: 600; margin-bottom: .3rem; }
.host-benefit p { color: var(--text-muted); font-size: .9rem; }
.host-calc-section { padding: 6rem 0; }
.host-calculator { display: grid; grid-template-columns: 1fr 320px; gap: 4rem; background: white; border: 1px solid var(--border); border-radius: 20px; padding: 3rem; margin-top: 3rem; }
.calc-result { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-left: 1px solid var(--border); padding-left: 3rem; }
.calc-result-label { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 1rem; }
.calc-result-value { font-family: var(--font-display); font-size: 3.5rem; font-weight: 600; color: var(--forest); margin-bottom: .5rem; }
.calc-result-note { font-size: .85rem; color: var(--text-muted); margin-bottom: 2rem; }
.form-range { width: 100%; accent-color: var(--forest); }
.range-display { font-size: .85rem; color: var(--text-muted); margin-top: .3rem; display: block; }
.host-testimonials-section { padding: 6rem 0; background: var(--cream); }

/* List Property */
.list-property-wrap { padding-top: 5rem; min-height: 100vh; }
.list-property-header { background: var(--forest); padding: 2.5rem 0; }
.list-property-header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.list-property-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: white; margin: 0; }
.list-property-subtitle { color: rgba(255,255,255,.7); margin: .4rem 0 0; }
.list-progress { min-width: 200px; }
.list-progress-bar { height: 4px; background: rgba(255,255,255,.3); border-radius: 2px; margin-bottom: .5rem; overflow: hidden; }
.list-progress-fill { height: 100%; background: var(--gold); border-radius: 2px; transition: width .4s ease; }
.list-progress-text { font-size: .85rem; color: rgba(255,255,255,.8); }
.list-step { display: none; padding: 3rem 0; }
.list-step.active { display: block; }
.step-title { font-family: var(--font-display); font-size: 2rem; font-weight: 600; margin-bottom: .5rem; }
.step-subtitle { color: var(--text-muted); margin-bottom: 2rem; }
.property-type-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.property-type-option { cursor: pointer; }
.property-type-option input { display: none; }
.property-type-card { display: flex; flex-direction: column; align-items: center; gap: .75rem; padding: 1.5rem 1rem; border: 2px solid var(--border); border-radius: 12px; font-weight: 500; transition: all .3s; color: var(--text); text-align: center; }
.property-type-card:hover, .property-type-card.selected { border-color: var(--forest); background: rgba(31,61,43,.05); }
.property-type-option input:checked ~ .property-type-card { border-color: var(--forest); background: rgba(31,61,43,.08); }
.form-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-full { grid-column: 1 / -1; }
.amenities-form-grid { display: flex; flex-direction: column; gap: 2.5rem; }
.amenity-group {}
.amenity-group-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.amenity-check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .75rem; }
.amenity-checkbox { display: flex; align-items: center; gap: .6rem; cursor: pointer; font-size: .9rem; }
.amenity-checkbox input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--forest); cursor: pointer; }
.photo-upload-area { }
.upload-zone { border: 2px dashed var(--border); border-radius: 16px; padding: 4rem 2rem; text-align: center; cursor: pointer; transition: all .3s; }
.upload-zone:hover { border-color: var(--forest); background: rgba(31,61,43,.02); }
.upload-zone h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin: 1rem 0 .5rem; }
.upload-zone p { color: var(--text-muted); margin-bottom: 1.5rem; }
.upload-zone svg { color: var(--text-muted); }
.photo-preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: .75rem; margin-top: 1.5rem; }
.photo-preview-item { position: relative; aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; }
.photo-preview-item img { width: 100%; height: 100%; object-fit: cover; }
.photo-preview-item button { position: absolute; top: 4px; right: 4px; background: rgba(0,0,0,.7); color: white; border: none; border-radius: 50%; width: 24px; height: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.photo-tips { margin-top: 2rem; background: var(--cream); border-radius: 10px; padding: 1.5rem; }
.photo-tips h4 { font-weight: 600; margin-bottom: .75rem; }
.photo-tips ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.photo-tips ul li { font-size: .9rem; color: var(--text-muted); padding-left: 1.2rem; position: relative; }
.photo-tips ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.input-prefix-wrap { position: relative; }
.input-prefix { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-weight: 600; }
.input-with-prefix { padding-left: 2rem !important; }
.rules-check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .75rem; }
.submission-notice { display: flex; align-items: flex-start; gap: 1rem; background: rgba(31,61,43,.06); border-radius: 12px; padding: 1.5rem; margin-top: 2rem; }
.submission-notice svg { color: var(--forest); flex-shrink: 0; margin-top: .2rem; }
.submission-notice strong { display: block; margin-bottom: .4rem; }
.submission-notice p { color: var(--text-muted); font-size: .9rem; margin: 0; }
.step-nav { display: flex; gap: 1rem; padding: 2rem 0 4rem; border-top: 1px solid var(--border); margin-top: 2rem; }
.map-placeholder { border: 1px dashed var(--border); border-radius: 12px; padding: 3rem; text-align: center; color: var(--text-muted); }
.map-placeholder p { margin-top: .75rem; }

/* Auth Pages — new standalone design in auth-page-wrap section above */
/* legacy: keep auth-image-col etc for backward compat */
.auth-page .navbar { display: none; }
.auth-image-col { position: relative; overflow: hidden; }
.auth-image-col img { width: 100%; height: 100%; object-fit: cover; }
.auth-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,61,43,.9), rgba(31,61,43,.3)); display: flex; align-items: flex-end; padding: 3rem; }
.auth-image-quote blockquote { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; color: white; margin: 0 0 .75rem; line-height: 1.5; }
.auth-image-quote cite { color: rgba(255,255,255,.7); font-size: .9rem; font-style: normal; }
.auth-form-col { display: flex; align-items: center; justify-content: center; padding: 3rem 2rem; background: white; overflow-y: auto; }
.auth-form-inner { width: 100%; max-width: 420px; }
.auth-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--forest); margin-bottom: 2.5rem; }

/* Account Page */
.account-wrap { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; padding-top: 5rem; }
.account-sidebar { background: var(--cream); border-right: 1px solid var(--border); padding: 2.5rem 1.5rem; display: flex; flex-direction: column; gap: 2rem; }
.account-profile { display: flex; align-items: center; gap: 1rem; }
.account-avatar { width: 56px; height: 56px; background: rgba(31,61,43,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.account-profile-info h3 { font-weight: 600; margin: 0; }
.account-profile-info span { font-size: .85rem; color: var(--text-muted); }
.account-nav { display: flex; flex-direction: column; gap: .25rem; flex: 1; }
.account-nav-link { display: flex; align-items: center; gap: .75rem; padding: .85rem 1rem; border-radius: 10px; color: var(--text); font-weight: 500; text-decoration: none; transition: all .2s; border: none; background: none; cursor: pointer; font-size: .95rem; font-family: var(--font-body); width: 100%; text-align: left; }
.account-nav-link:hover, .account-nav-link.active { background: white; color: var(--forest); }
.account-logout { color: #d44; margin-top: auto; }
.account-logout:hover { background: #fff0f0; color: #d44; }
.account-main { padding: 2.5rem 3rem; overflow-y: auto; }
.account-section-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 1.5rem; }
.bookings-list { display: flex; flex-direction: column; gap: 1rem; }
.booking-item { display: grid; grid-template-columns: 100px 1fr auto; gap: 1.5rem; align-items: center; background: white; border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; transition: all .3s; }
.booking-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.booking-item.booking-past { opacity: .8; }
.booking-item-img img { width: 100px; height: 75px; object-fit: cover; border-radius: 8px; }
.booking-item-info h3 { font-weight: 600; margin-bottom: .25rem; }
.booking-item-info p { color: var(--text-muted); font-size: .9rem; margin-bottom: .5rem; }
.booking-item-dates { display: flex; align-items: center; gap: .4rem; font-size: .85rem; color: var(--text-muted); }
.booking-item-meta { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }
.booking-status { padding: .3rem .75rem; border-radius: 20px; font-size: .8rem; font-weight: 600; }
.status-confirmed { background: rgba(31,61,43,.1); color: var(--forest); }
.status-pending { background: rgba(198,169,107,.15); color: #8a6f2d; }
.status-completed { background: rgba(0,0,0,.06); color: var(--text-muted); }
.booking-total { font-weight: 700; font-size: 1.05rem; }
.booking-id { font-size: .8rem; color: var(--text-muted); }
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
.empty-state svg { color: var(--border); margin-bottom: 1rem; }
.empty-state p { margin-bottom: 1.5rem; }
.btn-sm { padding: .4rem .9rem; font-size: .85rem; }
.settings-form { max-width: 580px; }

/* About Page */
.page-hero { position: relative; min-height: 55vh; display: flex; align-items: center; padding-top: 5rem; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(31,61,43,.85), rgba(31,61,43,.5)); }
.page-hero-content { position: relative; color: white; max-width: 700px; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 600; color: white; line-height: 1.2; margin: .75rem 0; }
.page-hero-subtitle { color: rgba(255,255,255,.8); font-size: 1.1rem; }
.about-mission { padding: 6rem 0; }
.about-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.about-stat { display: flex; flex-direction: column; }
.about-stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--forest); display: inline; }
.about-stat span:last-child { font-size: .85rem; color: var(--text-muted); margin-top: .2rem; }
.about-mission-image { position: relative; }
.about-mission-image img { width: 100%; height: 450px; object-fit: cover; border-radius: 16px; }
.about-mission-badge { position: absolute; bottom: -1.5rem; left: -1.5rem; background: var(--forest); color: white; border-radius: 16px; padding: 1.25rem 1.5rem; text-align: center; }
.about-badge-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--gold); display: block; }
.about-values { padding: 6rem 0; background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.value-card { background: white; border-radius: 16px; padding: 2rem; border: 1px solid var(--border); transition: all .3s; }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.07); }
.value-icon { width: 56px; height: 56px; background: rgba(31,61,43,.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--forest); margin-bottom: 1.25rem; }
.value-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: .5rem; }
.value-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }
.about-team { padding: 6rem 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.team-card { text-align: center; }
.team-avatar { width: 100px; height: 100px; background: var(--cream); border-radius: 50%; margin: 0 auto 1.25rem; border: 3px solid white; box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.team-name { font-weight: 600; margin-bottom: .25rem; }
.team-role { font-size: .85rem; color: var(--gold); font-weight: 500; display: block; margin-bottom: .75rem; }
.team-bio { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* Contact Page */
.contact-section { padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; }
.contact-info h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 2rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; gap: 1.25rem; }
.contact-info-icon { width: 48px; height: 48px; background: rgba(31,61,43,.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--forest); flex-shrink: 0; }
.contact-info-item h4 { font-weight: 600; margin-bottom: .3rem; }
.contact-info-item p { color: var(--text-muted); font-size: .9rem; margin: 0; }
.alert-success { background: rgba(31,61,43,.08); color: var(--forest); border: 1px solid rgba(31,61,43,.2); border-radius: 8px; padding: 1rem 1.25rem; margin-bottom: 1.5rem; }

/* FAQ Full */
.faq-full-section { padding: 4rem 0 6rem; }
.faq-container { max-width: 800px; }
.faq-category { margin-bottom: 3rem; }
.faq-category-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 2px solid var(--forest); color: var(--forest); }
.faq-contact-cta { text-align: center; padding: 3rem; background: var(--cream); border-radius: 16px; margin-top: 3rem; }
.faq-contact-cta h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: .5rem; }
.faq-contact-cta p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* Legal Pages */
.legal-section { padding: 4rem 0 6rem; }
.legal-container { max-width: 800px; }
.legal-container h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin: 2.5rem 0 .75rem; color: var(--forest); }
.legal-container p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }

/* Cancellation Policy Cards */
.policy-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.policy-card { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.policy-card-header { padding: 1.5rem; color: white; }
.policy-flexible { background: var(--forest); }
.policy-moderate { background: #c6a96b; }
.policy-strict { background: #333; }
.policy-card-header h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin: 0 0 .25rem; }
.policy-card-header span { font-size: .85rem; opacity: .8; }
.policy-card-body { padding: 1.5rem; }
.policy-card-body ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.policy-card-body li { font-size: .9rem; color: var(--text-muted); padding-left: 1rem; border-left: 2px solid var(--border); }

/* Wishlist Page */
.wishlist-section { padding: 4rem 0 6rem; }

/* Blog Page */
.blog-article { }
.blog-hero { position: relative; height: 60vh; overflow: hidden; }
.blog-hero img { width: 100%; height: 100%; object-fit: cover; }
.blog-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.2)); }
.blog-hero .container { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; }
.blog-hero-content { padding-bottom: 3rem; color: white; max-width: 800px; }
.blog-category { display: inline-block; background: var(--gold); color: white; padding: .3rem .8rem; border-radius: 20px; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.blog-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 600; color: white; margin-bottom: 1rem; }
.blog-meta { display: flex; gap: .75rem; align-items: center; color: rgba(255,255,255,.7); font-size: .9rem; }
.blog-body { max-width: 720px; margin: 0 auto; padding: 4rem 0 6rem; }
.blog-lead { font-size: 1.2rem; line-height: 1.8; color: var(--text); margin-bottom: 2.5rem; font-weight: 400; }
.blog-body h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; margin: 3rem 0 1rem; }
.blog-body p { color: var(--text-muted); line-height: 1.9; margin-bottom: 1.5rem; }
.blog-quote { border-left: 3px solid var(--gold); padding: 1.5rem 2rem; margin: 2.5rem 0; background: var(--cream); border-radius: 0 12px 12px 0; }
.blog-quote p { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; color: var(--forest); margin: 0; }
.blog-related { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.blog-related h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 1.5rem; }
.blog-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.blog-related-card { display: flex; gap: 1rem; text-decoration: none; color: var(--text); transition: all .2s; }
.blog-related-card:hover h4 { color: var(--forest); }
.blog-related-card img { width: 100px; height: 75px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.blog-related-card span { font-size: .8rem; color: var(--gold); font-weight: 600; text-transform: uppercase; display: block; margin-bottom: .3rem; }
.blog-related-card h4 { font-weight: 600; font-size: .95rem; line-height: 1.4; }

/* Checkbox labels */
.checkbox-label { display: flex; align-items: flex-start; gap: .6rem; cursor: pointer; font-size: .9rem; line-height: 1.5; }
.checkbox-label input { width: 18px; height: 18px; accent-color: var(--forest); cursor: pointer; flex-shrink: 0; margin-top: .15rem; }
.checkbox-label a { color: var(--forest); }

/* Host How it Works (simple redirect view) */
.how-it-works-page .inner-page-header { padding: 10rem 0 4rem; }

/* Mobile responsiveness additions */
@media (max-width: 1024px) {
    .booking-grid { grid-template-columns: 1fr; }
    .booking-summary-col { display: none; }
    .host-calc-section .host-calculator { grid-template-columns: 1fr; }
    .calc-result { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 2rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-mission-grid, .host-why-grid, .contact-grid { grid-template-columns: 1fr; }
    .auth-image-col { display: none; }
    .auth-wrap { grid-template-columns: 1fr; }
    .account-wrap { grid-template-columns: 1fr; }
    .account-sidebar { flex-direction: row; flex-wrap: wrap; padding: 1.5rem; gap: 1rem; position: sticky; top: 5rem; z-index: 10; background: white; border-bottom: 1px solid var(--border); }
    .account-nav { flex-direction: row; flex-wrap: wrap; }
    .account-main { padding: 2rem 1.5rem; }
    .policy-cards { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .host-steps-grid { grid-template-columns: 1fr; }
    .form-cols { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .inner-page-title { font-size: 2rem; }
    .blog-related-grid { grid-template-columns: 1fr; }
    .trip-detail-row { grid-template-columns: 1fr; }
    .payment-options { flex-direction: column; }
    .confirmation-details { grid-template-columns: 1fr; }
    .list-property-header-inner { flex-direction: column; align-items: flex-start; }
    .host-hero-stats { gap: 1.5rem; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .account-wrap { grid-template-columns: 1fr; }
    .account-sidebar {
        position: static;
        top: auto;
        border-right: none;
        border-bottom: 1px solid var(--border);
        background: white;
        padding: 1.5rem;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .account-profile { flex-direction: column; align-items: flex-start; }
    .account-nav { flex-direction: column; flex-wrap: nowrap; }
    .account-main { padding: 1.5rem; }
    .booking-item { grid-template-columns: 1fr; align-items: flex-start; }
    .booking-item-img img { width: 100%; height: auto; }
    .booking-item-meta { align-items: flex-start; text-align: left; }
}

@media (max-width: 480px) {
    .booking-wrap { padding-top: 4rem; }
    .auth-form-col { padding: 2rem 1.25rem; }
    .confirmation-card { padding: 2rem 1.25rem; }
    .confirmation-actions { flex-direction: column; }
    .host-hero-cta { flex-direction: column; }
    .team-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GLOBAL HORIZONTAL PADDING FIX
   ============================================================ */

.about-mission  { padding: 6rem 3rem; }
.about-values   { padding: 6rem 3rem; }
.about-team     { padding: 6rem 3rem; }
.contact-section{ padding: 5rem 3rem; }
.faq-full-section { padding: 4rem 3rem 6rem; }
.legal-section  { padding: 4rem 3rem 6rem; }
.wishlist-section { padding: 4rem 3rem 6rem; }
.host-steps-section { padding: 6rem 3rem; }
.blog-body      { padding: 4rem 3rem 6rem; max-width: 100%; }
.blog-body > *  { max-width: 720px; margin-left: auto; margin-right: auto; }

.inner-page-header { padding-left: 3rem; padding-right: 3rem; }
.page-hero      { padding-left: 3rem; padding-right: 3rem; }
.page-hero-content { max-width: 700px; }
.host-hero      { padding-left: 3rem; padding-right: 3rem; }
.booking-header { padding-left: 3rem; padding-right: 3rem; }
.booking-grid,
.checkout-container { max-width: 1400px; margin: 0 auto; padding-left: 3rem; padding-right: 3rem; }
.detail-body    { padding-left: 3rem; padding-right: 3rem; }

@media (max-width: 768px) {
  .about-mission, .about-values, .about-team,
  .contact-section, .faq-full-section, .legal-section,
  .wishlist-section, .host-steps-section, .inner-page-header,
  .page-hero, .host-hero, .booking-header,
  .booking-grid, .checkout-container, .detail-body, .blog-body {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .about-mission, .about-values, .about-team { padding-top: 4rem; padding-bottom: 4rem; }
  .contact-section { padding-top: 3rem; padding-bottom: 3rem; }
  .faq-full-section, .legal-section, .wishlist-section { padding-top: 3rem; padding-bottom: 4rem; }
}

@media (max-width: 480px) {
  .about-mission, .about-values, .about-team,
  .contact-section, .faq-full-section, .legal-section,
  .wishlist-section, .host-steps-section, .inner-page-header,
  .page-hero, .host-hero, .booking-header,
  .booking-grid, .checkout-container, .detail-body, .blog-body {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* ---- BLOG INNER PAGE PADDING FIX ---- */
.blog-hero .container { padding-left: 3rem; padding-right: 3rem; box-sizing: border-box; }
.blog-related-grid { padding-left: 0; padding-right: 0; }

@media (max-width: 768px) {
  .blog-hero .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .blog-body { padding-left: 1.25rem; padding-right: 1.25rem; }
}
@media (max-width: 480px) {
  .blog-hero .container, .blog-body { padding-left: 1rem; padding-right: 1rem; }
}

/* ============================================================
   HOST PAGE — FULL FIX + MISSING CLASSES
   ============================================================ */

.container {
  max-width: 1320px;
  margin-left: auto; margin-right: auto;
  width: 100%;
  padding-left: 3rem; padding-right: 3rem;
  box-sizing: border-box;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 28px;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-lg { padding: 16px 40px; font-size: 0.9rem; }
.btn-primary { background: var(--forest); color: var(--white); border-color: var(--forest); }
.btn-primary:hover { background: var(--forest-light); border-color: var(--forest-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(31,61,43,0.25); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); box-shadow: 0 6px 20px rgba(198,169,107,0.35); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.85); color: var(--white); }

.host-steps-section { padding: 6rem 0; }
.host-why-section   { padding: 6rem 0; background: var(--cream); }
.host-calc-section  { padding: 6rem 0; }
.host-testimonials-section { padding: 6rem 0; background: var(--off-white); }
.host-hero .container { text-align: left; }
.host-steps-section .section-header { text-align: center; margin-bottom: 3rem; }
.host-why-content .section-title { margin-bottom: 0.5rem; }
.host-calc-section .section-header { text-align: center; margin-bottom: 3rem; }

.host-calculator {
  display: grid; grid-template-columns: 1fr 300px; gap: 4rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 3rem;
}
.calc-inputs { display: flex; flex-direction: column; gap: 1.25rem; }
.calc-result {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  border-left: 1px solid var(--border); padding-left: 3rem; gap: 0.5rem;
}
.calc-result-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); }
.calc-result-value { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 600; color: var(--forest); line-height: 1.1; margin: 0.25rem 0; }
.calc-result-note { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1.5rem; }
.form-range { width: 100%; accent-color: var(--forest); height: 4px; cursor: pointer; }
.range-display { font-size: 0.85rem; font-weight: 500; color: var(--forest); margin-top: 0.4rem; display: block; }

.host-testimonials-section .section-header { text-align: center; margin-bottom: 3rem; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.testimonial-card p { font-size: 0.92rem; font-weight: 300; color: var(--text-mid); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; flex: 1; }
.testimonial-card { display: flex; flex-direction: column; }
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--forest), var(--forest-light)); flex-shrink: 0; border: 2px solid var(--gold); }
.testimonial-author strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--forest); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-light); font-weight: 300; }
.testimonial-card:hover .testimonial-author strong { color: var(--white); }
.testimonial-card:hover .testimonial-author span  { color: rgba(255,255,255,0.7); }

.cta-section .container { position: relative; z-index: 2; }
.cta-content { text-align: center; max-width: 620px; margin: 0 auto; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: var(--white); margin-bottom: 1rem; line-height: 1.15; }
.cta-subtitle { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; line-height: 1.7; }

@media (max-width: 1024px) {
  .host-calculator { grid-template-columns: 1fr; gap: 2.5rem; }
  .calc-result { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 2.5rem; }
  .host-why-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .host-steps-grid { grid-template-columns: 1fr; }
  .host-hero-stats { gap: 2rem; }
  .host-hero-cta { flex-direction: column; align-items: flex-start; }
  .host-calculator { padding: 2rem 1.5rem; }
  .calc-result-value { font-size: 2.5rem; }
}
@media (max-width: 480px) {
  .container { padding-left: 1rem; padding-right: 1rem; }
  .btn-lg { padding: 14px 28px; }
}

/* ============================================================
   AUTH-AWARE NAVBAR
   ============================================================ */

.nav-area { display: flex; align-items: center; gap: 0.75rem; }
.nav-link-host { display: inline-flex; align-items: center; gap: 6px; color: var(--gold) !important; font-weight: 600; }

.user-avatar-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 10px 6px 6px;
  background: var(--white); border: 1.5px solid #d0d0d0;
  border-radius: 100px; cursor: pointer;
  transition: box-shadow 0.2s ease;
  font-family: 'Jost', sans-serif; font-size: 0.82rem;
  font-weight: 500; color: var(--text-dark);
}
.user-avatar-btn:hover { box-shadow: 0 2px 10px rgba(0,0,0,0.12); }

.user-initial-text {
  width: 28px; height: 28px;
  background: var(--forest); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 600; flex-shrink: 0;
}

.user-menu-wrap { position: relative; }

.user-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 220px; background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14), 0 1px 0 rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 6px 0; z-index: 2000;
  opacity: 0; transform: translateY(8px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.user-dropdown.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.user-dropdown-header { padding: 12px 18px 10px; display: flex; flex-direction: column; gap: 2px; }
.user-dropdown-header span:first-child { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.user-dropdown-email { font-size: 0.78rem; color: var(--text-light); }
.user-dropdown-divider { height: 1px; background: #f0f0f0; margin: 4px 0; }

.user-dropdown-item {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 18px;
  font-family: 'Jost', sans-serif; font-size: 0.87rem;
  font-weight: 400; color: var(--text-dark);
  text-decoration: none; background: none; border: none;
  width: 100%; text-align: left; cursor: pointer;
  transition: background 0.15s ease;
}
.user-dropdown-item:hover { background: #f5f5f5; }
.user-dropdown-item-highlight { color: var(--forest); font-weight: 600; }
.user-dropdown-signout { color: #d44; }
.user-dropdown-signout:hover { background: #fff2f2; }

.mode-toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--forest); color: white;
  padding: 12px 24px; border-radius: 100px;
  font-family: 'Jost', sans-serif; font-size: 0.88rem; font-weight: 500;
  z-index: 9999; opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap; box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.mode-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.navbar.scrolled .user-avatar-btn,
.navbar.on-light .user-avatar-btn { border-color: #ccc; background: var(--white); color: var(--text-dark); }

/* ============================================================
   PROPERTY LISTING WIZARD
   ============================================================ */

.wizard-page { background: var(--white); }
.wizard-shell { min-height: 100vh; display: flex; flex-direction: column; }

.wizard-header {
  position: fixed; top: 0; left: 0; right: 0; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; background: var(--white); z-index: 100;
  border-bottom: 1px solid #ebebeb; gap: 2rem;
}
.wizard-logo { display: flex; align-items: center; gap: 10px; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--forest); text-decoration: none; flex-shrink: 0; }
.wizard-progress-bar { flex: 1; max-width: 600px; height: 4px; background: #e8e8e8; border-radius: 2px; overflow: hidden; }
.wizard-progress-fill { height: 100%; background: var(--forest); border-radius: 2px; transition: width 0.4s cubic-bezier(0.4,0,0.2,1); width: 0%; }
.wizard-save-btn { background: none; border: none; font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; padding: 6px 2px; flex-shrink: 0; transition: color 0.2s; }
.wizard-save-btn:hover { color: var(--forest); }

.wizard-body { flex: 1; padding-top: 64px; padding-bottom: 100px; position: relative; overflow: hidden; }

.wizard-step { display: none; min-height: calc(100vh - 164px); align-items: flex-start; justify-content: flex-start; }
.wizard-step.active { display: flex; }

@keyframes slideInR  { from { opacity:0; transform:translateX(40px);  } to { opacity:1; transform:none; } }
@keyframes slideInL  { from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:none; } }
@keyframes slideOutL { from { opacity:1; transform:none; } to { opacity:0; transform:translateX(-40px); } }
@keyframes slideOutR { from { opacity:1; transform:none; } to { opacity:0; transform:translateX(40px);  } }

.wizard-step.slide-in-right  { animation: slideInR  0.35s ease forwards; }
.wizard-step.slide-in-left   { animation: slideInL  0.35s ease forwards; }
.wizard-step.slide-out-left  { animation: slideOutL 0.3s  ease forwards; position:absolute; width:100%; }
.wizard-step.slide-out-right { animation: slideOutR 0.3s  ease forwards; position:absolute; width:100%; }

.wizard-step-content { width: 100%; max-width: 900px; padding: 3rem 3rem 2rem; }
.wizard-step-content--narrow { max-width: 640px; }
.wizard-step-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; color: var(--text-dark); line-height: 1.18; margin-bottom: 0.75rem; }
.wizard-step-sub { font-size: 0.95rem; font-weight: 300; color: var(--text-light); line-height: 1.65; margin-bottom: 2rem; }

.wizard-intro-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 164px); width: 100%; }
.wizard-intro-text { display: flex; flex-direction: column; justify-content: center; padding: 4rem 4rem 4rem 3rem; background: var(--white); }
.wizard-intro-eyebrow { font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; display: block; }
.wizard-intro-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 400; color: var(--text-dark); line-height: 1.12; margin-bottom: 1.5rem; }
.wizard-intro-body { font-size: 1rem; font-weight: 300; color: var(--text-mid); line-height: 1.75; max-width: 440px; }
.wizard-intro-image { position: relative; overflow: hidden; background: var(--forest); }
.wizard-intro-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }

.wizard-type-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.85rem; margin-top: 1.5rem; }
.wizard-type-card { display: contents; }
.wizard-type-card input { display: none; }
.wizard-type-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 0.85rem; padding: 1.1rem 1.2rem; border: 1.5px solid #d0d0d0; border-radius: 14px; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; font-family: 'Jost', sans-serif; font-size: 0.88rem; font-weight: 500; color: var(--text-dark); user-select: none; }
.wizard-type-inner:hover { border-color: var(--text-dark); }
.wizard-type-inner.selected { border-color: var(--forest); background: rgba(31,61,43,0.05); box-shadow: 0 0 0 1px var(--forest); }

.wizard-space-list { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.5rem; }
.wizard-space-option { display: block; }
.wizard-space-option input { display: none; }
.wizard-space-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 1.4rem; border: 1.5px solid #d0d0d0; border-radius: 14px; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.wizard-space-inner:hover { border-color: var(--text-dark); }
.wizard-space-inner.selected { border-color: var(--forest); background: rgba(31,61,43,0.04); box-shadow: 0 0 0 1px var(--forest); }
.wizard-space-text { display: flex; flex-direction: column; gap: 3px; }
.wizard-space-text strong { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); }
.wizard-space-text span  { font-size: 0.83rem; font-weight: 300; color: var(--text-light); }

.wizard-location-form { display: flex; flex-direction: column; gap: 0; margin-top: 1rem; }
.wizard-location-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.wizard-map-placeholder { margin-top: 1.25rem; border: 1.5px dashed #d0d0d0; border-radius: 14px; padding: 2.5rem; text-align: center; color: var(--text-light); }
.wizard-map-placeholder p { margin-top: 0.75rem; font-size: 0.88rem; }

.wizard-counter-list { display: flex; flex-direction: column; margin-top: 1.5rem; }
.wizard-counter-row { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; border-bottom: 1px solid #ebebeb; gap: 2rem; }
.wizard-counter-row:last-child { border-bottom: none; }
.wizard-counter-label { display: flex; flex-direction: column; gap: 3px; }
.wizard-counter-label strong { font-size: 1rem; font-weight: 500; color: var(--text-dark); }
.wizard-counter-label span   { font-size: 0.83rem; color: var(--text-light); font-weight: 300; }
.wizard-counter-ctrl { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.wizard-counter-btn { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid #b0b0b0; background: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 0.2s, background 0.2s; color: var(--text-dark); }
.wizard-counter-btn:hover { border-color: var(--text-dark); background: #f5f5f5; }
.wizard-counter-val { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; min-width: 32px; text-align: center; color: var(--text-dark); }

.wizard-amen-group { margin-bottom: 2.5rem; }
.wizard-amen-group-title { font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 1rem; }
.wizard-amen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 0.75rem; }
.wizard-amen-card { display: block; cursor: pointer; }
.wizard-amen-card input { display: none; }
.wizard-amen-inner { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding: 1rem 1.1rem; border: 1.5px solid #d0d0d0; border-radius: 12px; font-size: 0.87rem; font-weight: 400; color: var(--text-dark); transition: border-color 0.18s, background 0.18s; }
.wizard-amen-inner:hover { border-color: #888; }
.wizard-amen-card.checked .wizard-amen-inner { border-color: var(--forest); background: rgba(31,61,43,0.05); box-shadow: 0 0 0 1px var(--forest); }
.wizard-amen-check { width: 22px; height: 22px; border: 1.5px solid #ccc; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: transparent; transition: all 0.18s; }
.wizard-amen-card.checked .wizard-amen-check { background: var(--forest); border-color: var(--forest); color: white; }

.wizard-photo-drop { border: 2px dashed #d0d0d0; border-radius: 16px; transition: border-color 0.2s, background 0.2s; margin-bottom: 1.5rem; }
.wizard-photo-drop.dragging { border-color: var(--forest); background: rgba(31,61,43,0.03); }
.wizard-photo-drop-inner { padding: 3.5rem 2rem; display: flex; flex-direction: column; align-items: center; text-align: center; cursor: pointer; gap: 0.75rem; color: var(--text-mid); }
.wizard-photo-drop-inner svg { color: var(--text-light); margin-bottom: 0.5rem; }
.wizard-photo-drop-inner h3 { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 600; color: var(--text-dark); margin: 0; }
.wizard-photo-drop-inner p  { font-size: 0.85rem; color: var(--text-light); margin: 0; }
.wizard-upload-btn { margin-top: 0.5rem; padding: 10px 22px; background: var(--white); border: 1.5px solid var(--text-dark); border-radius: 100px; font-family: 'Jost', sans-serif; font-size: 0.83rem; font-weight: 600; cursor: pointer; transition: background 0.2s, color 0.2s; }
.wizard-upload-btn:hover { background: var(--text-dark); color: var(--white); }
.wizard-photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.85rem; margin-bottom: 1.5rem; }
.wizard-photo-thumb { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; background: #f0f0f0; }
.wizard-photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.wizard-photo-cover-badge { position: absolute; bottom: 0.5rem; left: 0.5rem; background: rgba(0,0,0,0.6); color: white; font-size: 0.7rem; font-weight: 600; padding: 3px 8px; border-radius: 100px; }
.wizard-photo-remove { position: absolute; top: 0.5rem; right: 0.5rem; width: 24px; height: 24px; background: white; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.wizard-photo-tips { background: var(--off-white); border-radius: 12px; padding: 1.25rem 1.5rem; font-size: 0.87rem; }
.wizard-photo-tips strong { color: var(--text-dark); display: block; margin-bottom: 0.75rem; }
.wizard-photo-tips ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.wizard-photo-tips li { color: var(--text-mid); padding-left: 1rem; position: relative; }
.wizard-photo-tips li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

.wizard-title-input { font-size: 1.15rem !important; font-weight: 400 !important; line-height: 1.6 !important; resize: none; }
.wizard-char-count { text-align: right; font-size: 0.78rem; color: var(--text-light); margin-top: 6px; }
.wizard-desc-input { line-height: 1.7 !important; resize: none; }
.wizard-desc-prompts { background: var(--off-white); border-radius: 12px; padding: 1.25rem 1.5rem; margin-top: 1.5rem; }
.wizard-desc-prompt-label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.75rem; }
.wizard-desc-prompts ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.wizard-desc-prompts li { font-size: 0.85rem; color: var(--text-mid); padding-left: 1rem; position: relative; }
.wizard-desc-prompts li::before { content: '·'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.wizard-price-display { display: flex; align-items: center; gap: 0.5rem; margin: 1.5rem 0 2rem; padding: 1.5rem 0; border-top: 1px solid #ebebeb; border-bottom: 1px solid #ebebeb; }
.wizard-price-currency { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 400; color: var(--text-mid); }
.wizard-price-input { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: var(--text-dark); border: none; outline: none; width: 200px; background: transparent; -moz-appearance: textfield; }
.wizard-price-input::-webkit-outer-spin-button, .wizard-price-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.wizard-price-unit { font-size: 1.1rem; color: var(--text-mid); font-weight: 300; }
.wizard-price-breakdown { background: var(--off-white); border-radius: 14px; padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.wizard-price-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--text-mid); }
.wizard-price-row--total { padding-top: 0.75rem; border-top: 1px solid #e0e0e0; font-weight: 600; color: var(--text-dark); }
.wizard-price-row--earn  { color: var(--forest); font-weight: 600; }
.wizard-pricing-extras { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.wizard-submit-notice { display: flex; gap: 1rem; align-items: flex-start; background: rgba(31,61,43,0.06); border-radius: 12px; padding: 1.25rem 1.5rem; margin-bottom: 2rem; color: var(--forest); }
.wizard-submit-notice p { font-size: 0.88rem; line-height: 1.65; margin: 0; color: var(--text-mid); }
.wizard-submit-notice svg { flex-shrink: 0; margin-top: 2px; color: var(--forest); }
.wizard-publish-btn { width: 100%; padding: 18px; background: var(--forest); color: white; border: none; border-radius: 14px; font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: 0.05em; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.wizard-publish-btn:hover { background: var(--forest-light); transform: translateY(-1px); }
.wizard-publish-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.wizard-footer { position: fixed; bottom: 0; left: 0; right: 0; height: 80px; display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; background: var(--white); border-top: 1px solid #ebebeb; z-index: 100; }
.wizard-back-btn { background: none; border: none; font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; padding: 10px 4px; transition: color 0.2s; }
.wizard-back-btn:hover { color: var(--forest); }
.wizard-next-btn { padding: 14px 32px; background: var(--forest); color: white; border: none; border-radius: 10px; font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.wizard-next-btn:hover { background: var(--forest-light); transform: translateY(-1px); }

@media (max-width: 900px) {
  .wizard-intro-layout { grid-template-columns: 1fr; }
  .wizard-intro-image  { display: none; }
  .wizard-intro-text   { padding: 3rem 2rem; }
  .wizard-type-grid    { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .wizard-pricing-extras { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .wizard-header   { padding: 0 1.25rem; gap: 1rem; }
  .wizard-step-content { padding: 2rem 1.25rem 1.5rem; }
  .wizard-step-content--narrow { max-width: 100%; }
  .wizard-type-grid { grid-template-columns: repeat(2, 1fr); }
  .wizard-amen-grid { grid-template-columns: repeat(2, 1fr); }
  .wizard-location-row { grid-template-columns: 1fr; }
  .wizard-price-input { font-size: 3rem; width: 160px; }
  .wizard-footer   { padding: 0 1.25rem; }
}
@media (max-width: 480px) {
  .wizard-type-grid { grid-template-columns: repeat(2, 1fr); }
  .wizard-amen-grid { grid-template-columns: 1fr 1fr; }
  .wizard-photo-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   HOST PAGE HERO — FULL RESTYLE
   ============================================================ */

.host-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden; padding-top: 0;
}
.host-hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1800&h=1000&fit=crop') center/cover no-repeat;
  z-index: 0;
}
.host-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,28,18,0.88) 0%, rgba(10,28,18,0.60) 55%, rgba(10,28,18,0.25) 100%);
}
.host-hero .container { position: relative; z-index: 2; padding-top: 8rem; padding-bottom: 5rem; }
.host-hero-content { max-width: 680px; color: white; position: relative; margin-left: auto; margin-right: auto; text-align: center; }
.host-eyebrow {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.host-eyebrow::before { content: ''; display: block; width: 32px; height: 1.5px; background: var(--gold); flex-shrink: 0; }
.host-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 400; line-height: 1.1; color: var(--white); margin-bottom: 1.5rem; letter-spacing: -0.01em; }
.host-hero-title em { font-style: italic; color: var(--gold); display: block; }
.host-hero-subtitle { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.78); line-height: 1.75; margin-bottom: 2.75rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.host-hero-cta { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.host-hero-stats { display: flex; justify-content: center; gap: 3.5rem; flex-wrap: wrap; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.15); }

.host-stat {
  display: grid; grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 1px; row-gap: 4px; align-items: center;
}
.host-stat-num { grid-column: 1; grid-row: 1; font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 500; color: var(--gold); line-height: 1; }
.host-stat-suffix { grid-column: 2; grid-row: 1; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: var(--gold); line-height: 1.1; padding-bottom: 2px; }
.host-stat-label { grid-column: 1 / -1; grid-row: 2; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); white-space: nowrap; text-align: center; }

@media (max-width: 768px) {
  .host-hero .container { padding-top: 7rem; padding-bottom: 4rem; }
  .host-hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .host-hero-subtitle { font-size: 0.95rem; }
  .host-hero-stats { gap: 2rem; }
  .host-stat-num { font-size: 2.2rem; }
  .host-hero-cta { flex-direction: column; align-items: center; }
  .host-hero-cta .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .host-hero-stats { gap: 1.5rem; }
  .host-stat-num { font-size: 1.9rem; }
}

/* Auth error box */
.auth-error-box {
  background: #fff2f2;
  border: 1.5px solid #f5c6c6;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.87rem;
  color: #c0392b;
  margin-bottom: 1.25rem;
}


/* =========================
   AIRBNB STYLE RESPONSIVE CHAT
========================= */

.chat-container{
    display:grid;
    grid-template-columns:340px 1fr;
    height:calc(100vh - 72px);
    margin-top:72px;
    background:var(--off-white);
    overflow:hidden;
}

/* =========================
   SIDEBAR
========================= */

.chat-sidebar{
    background:var(--white);
    border-right:1px solid var(--border);
    display:flex;
    flex-direction:column;
    overflow:hidden;
    z-index:100;
}

.chat-sidebar-header{
    padding:1.25rem 1.25rem 1rem;
    border-bottom:1px solid var(--border);
    display:flex;
    align-items:center;
    gap:0.75rem;
    background:var(--white);
}

.chat-sidebar-header h2{
    margin:0;
    font-size:1.3rem;
    color:var(--forest);
    font-family:'Cormorant Garamond', serif;
}

.chat-close-btn{
    width:38px;
    height:38px;
    border-radius:12px;
    border:1px solid var(--border);
    background:transparent;
    color:var(--forest);
    cursor:pointer;
    display:none;
}

.chat-list{
    flex:1;
    overflow-y:auto;
    padding:0.5rem;
}

.chat-list-item{
    display:flex;
    align-items:flex-start;
    gap:0.9rem;
    padding:0.95rem;
    border-radius:18px;
    text-decoration:none;
    color:inherit;
    transition:0.25s ease;
    position:relative;
}

.chat-list-item:hover{
    background:var(--off-white);
}

.chat-list-item.active{
    background:var(--off-white);
}

.chat-list-avatar{
    width:52px;
    height:52px;
    flex-shrink:0;
}

.chat-list-avatar img{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
}

.chat-list-info{
    flex:1;
    min-width:0;
}

.chat-list-name{
    margin:0;
    font-size:0.96rem;
    font-weight:600;
    color:var(--forest);
}

.chat-list-property{
    margin:0.15rem 0;
    font-size:0.76rem;
    color:var(--text-muted);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.chat-list-preview{
    margin:0.25rem 0 0;
    font-size:0.84rem;
    color:var(--text-light);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.chat-list-time{
    font-size:0.72rem;
    color:var(--text-light);
    flex-shrink:0;
}

/* =========================
   MAIN AREA
========================= */

.chat-main{
    display:flex;
    flex-direction:column;
    height:100%;
    background:var(--white);
    position:relative;
}

.chat-topbar-mobile{
    display:none;
}

.chat-header{
    padding:1rem 1.5rem;
    border-bottom:1px solid var(--border);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    background:var(--white);
    flex-shrink:0;
}

.chat-header-info{
    display:flex;
    align-items:center;
    gap:1rem;
    min-width:0;
}

.chat-header-avatar{
    width:52px;
    height:52px;
    border-radius:50%;
    object-fit:cover;
}

.chat-header h3{
    margin:0;
    color:var(--forest);
    font-size:1rem;
}

.chat-header p{
    margin:0.15rem 0 0;
    color:var(--text-light);
    font-size:0.85rem;
}

/* =========================
   MESSAGES
========================= */

.chat-messages{
    flex:1;
    overflow-y:auto;
    padding:1.5rem;
    display:flex;
    flex-direction:column;
    gap:1rem;
    background:var(--off-white);
}

.chat-message{
    display:flex;
    align-items:flex-end;
    gap:0.65rem;
    width:100%;
}

.chat-message.sent{
    justify-content:flex-end;
}

.chat-message-avatar{
    width:32px;
    height:32px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
}

.chat-message-body{
    max-width:60%;
    display:flex;
    flex-direction:column;
}

.chat-message-body p{
    margin:0;
    padding:0.9rem 1rem;
    border-radius:22px;
    line-height:1.5;
    font-size:0.92rem;
    word-break:break-word;
}

.chat-message.received .chat-message-body p{
    background:var(--white);
    border:1px solid var(--border);
    color:var(--text-dark);
    border-bottom-left-radius:8px;
}

.chat-message.sent .chat-message-body p{
    background:var(--forest);
    color:var(--white);
    border-bottom-right-radius:8px;
}

.chat-message-time{
    font-size:0.7rem;
    color:var(--text-light);
    margin-top:0.35rem;
    padding:0 0.35rem;
}

/* =========================
   INPUT
========================= */

.chat-input-form{
    padding:1rem 1.25rem;
    border-top:1px solid var(--border);
    background:var(--white);
    flex-shrink:0;
}

.chat-input-group{
    display:flex;
    align-items:flex-end;
    gap:0.75rem;
}

.chat-input{
    flex:1;
    border:none;
    background:var(--off-white);
    border-radius:999px;
    padding:1rem 1.15rem;
    font-size:0.94rem;
    resize:none;
    outline:none;
    font-family:'Jost', sans-serif;
    min-height:50px;
    max-height:120px;
}

.chat-send-btn{
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:var(--forest);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    flex-shrink:0;
}

/* =========================
   EMPTY STATES
========================= */

.chat-empty,
.chat-welcome{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    height:100%;
    padding:2rem;
    color:var(--text-light);
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px){

    .chat-container{
        grid-template-columns:300px 1fr;
    }

    .chat-message-body{
        max-width:72%;
    }
}

/* =========================
   MOBILE
========================= */

/* =========================
   AIRBNB STYLE MOBILE CHAT
========================= */

@media (max-width: 768px){

    body.chat-page{
        overflow:hidden;
    }

    .chat-container{
        display:flex;
        flex-direction:column;
        height:calc(100vh - 72px);
        margin-top:72px;
        background:var(--white);
        position:relative;
    }

    /* SIDEBAR */

    .chat-sidebar{
        position:fixed;
        top:72px;
        left:0;
        width:100%;
        height:calc(100vh - 72px);
        background:var(--white);
        z-index:9999;
        transform:translateX(-100%);
        transition:0.28s ease;
        border-right:none;
    }

    .chat-sidebar.open{
        transform:translateX(0);
    }

    .chat-sidebar-header{
        height:72px;
        padding:1rem 1.2rem;
        display:flex;
        align-items:center;
        border-bottom:1px solid var(--border);
        background:var(--white);
    }

    .chat-close-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        width:42px;
        height:42px;
        border-radius:12px;
        border:1px solid var(--border);
        background:transparent;
        flex-shrink:0;
    }

    .chat-list{
        padding:0;
    }

    .chat-list-item{
        margin:0;
        border-radius:0;
        padding:1rem 1.2rem;
        border-bottom:1px solid var(--border);
        background:var(--white);
    }

    .chat-list-avatar{
        width:52px;
        height:52px;
    }

    .chat-list-name{
        font-size:0.95rem;
    }

    .chat-list-preview{
        font-size:0.82rem;
    }

    /* MAIN */

    .chat-main{
        display:flex;
        flex-direction:column;
        height:100%;
        background:var(--off-white);
        overflow:hidden;
    }

    .chat-topbar-mobile{
        display:flex;
        align-items:center;
        padding:0.85rem 1rem;
        background:var(--white);
        border-bottom:1px solid var(--border);
        flex-shrink:0;
    }

    .chat-open-list{
        width:42px;
        height:42px;
        border-radius:12px;
        border:1px solid var(--border);
        background:transparent;
        color:var(--forest);
        font-size:1rem;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    /* CHAT HEADER */

    .chat-header{
        padding:1rem;
        background:var(--white);
        border-bottom:1px solid var(--border);
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:0.75rem;
        flex-shrink:0;
    }

    .chat-header-info{
        display:flex;
        align-items:center;
        gap:0.85rem;
        min-width:0;
    }

    .chat-header-avatar{
        width:46px;
        height:46px;
        border-radius:50%;
        object-fit:cover;
        flex-shrink:0;
    }

    .chat-header h3{
        margin:0;
        font-size:0.96rem;
        line-height:1.2;
    }

    .chat-header p{
        margin:0.2rem 0 0;
        font-size:0.78rem;
        color:var(--text-light);
    }

    .chat-header .btn{
        padding:0.6rem 0.8rem;
        font-size:0.72rem;
        white-space:nowrap;
    }

    /* MESSAGES */

    .chat-messages{
        flex:1;
        overflow-y:auto;
        padding:1rem;
        display:flex;
        flex-direction:column;
        gap:1rem;
        background:var(--off-white);
        -webkit-overflow-scrolling:touch;
    }

    .chat-message{
        display:flex;
        align-items:flex-end;
        gap:0.55rem;
        width:100%;
    }

    .chat-message.sent{
        justify-content:flex-end;
    }

    .chat-message-avatar{
        width:30px;
        height:30px;
        border-radius:50%;
        object-fit:cover;
        flex-shrink:0;
    }

    .chat-message-body{
        max-width:78%;
        display:flex;
        flex-direction:column;
    }

    .chat-message.received .chat-message-body{
        align-items:flex-start;
    }

    .chat-message.sent .chat-message-body{
        align-items:flex-end;
    }

    .chat-message-body p{
        margin:0;
        padding:0.9rem 1rem;
        font-size:0.92rem;
        line-height:1.45;
        border-radius:22px;
        word-break:break-word;
    }

    .chat-message.received p{
        background:var(--white);
        color:var(--text-dark);
        border:1px solid var(--border);
        border-bottom-left-radius:8px;
    }

    .chat-message.sent p{
        background:var(--forest);
        color:var(--white);
        border-bottom-right-radius:8px;
    }

    .chat-message-time{
        margin-top:0.35rem;
        font-size:0.68rem;
        color:var(--text-light);
        padding:0 0.25rem;
    }

    /* INPUT */

    .chat-input-form{
        padding:0.85rem;
        background:var(--white);
        border-top:1px solid var(--border);
        flex-shrink:0;
    }

    .chat-input-group{
        display:flex;
        align-items:flex-end;
        gap:0.75rem;
    }

    .chat-input{
        flex:1;
        border:none;
        background:var(--off-white);
        border-radius:999px;
        padding:0.95rem 1rem;
        font-size:0.92rem;
        line-height:1.4;
        resize:none;
        outline:none;
        min-height:48px;
        max-height:120px;
        overflow-y:auto;
    }

    .chat-send-btn{
        width:46px;
        height:46px;
        border-radius:50%;
        border:none;
        background:var(--forest);
        color:var(--white);
        display:flex;
        align-items:center;
        justify-content:center;
        flex-shrink:0;
    }

    .chat-send-btn svg{
        width:18px;
        height:18px;
    }
}

/* EXTRA SMALL */

@media (max-width: 480px){

    .chat-header{
        padding:0.85rem;
    }

    .chat-header-avatar{
        width:42px;
        height:42px;
    }

    .chat-header h3{
        font-size:0.92rem;
    }

    .chat-header p{
        font-size:0.75rem;
    }

    .chat-header .btn{
        padding:0.55rem 0.7rem;
        font-size:0.68rem;
    }

    .chat-messages{
        padding:0.85rem;
    }

    .chat-message-body{
        max-width:84%;
    }

    .chat-message-body p{
        font-size:0.89rem;
        padding:0.82rem 0.95rem;
    }

    .chat-input{
        font-size:0.9rem;
    }
}

/* =========================================================
   HOST DASHBOARD — MODERN MINIMAL UI
   ========================================================= */

.host-page{
    background: #f5f5f5;
}

/* =========================
   MAIN LAYOUT
========================= */

.host-dashboard-wrapper{
    padding-top: 7rem;
    padding-bottom: 4rem;
}

.host-dashboard-grid{
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.5rem;
    align-items: start;
}

/* =========================
   SIDEBAR
========================= */

.host-sidebar{
    background: #ffffff;
    border-radius: 28px;
    padding: 1.6rem;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0,0,0,0.04);
}

.host-sidebar-logo{
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.host-sidebar-menu{
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.host-sidebar-link{
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .95rem 1rem;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: .25s ease;
}

.host-sidebar-link:hover{
    background: rgba(0,0,0,0.04);
    color: var(--text-dark);
}

.host-sidebar-link.active{
    background: var(--text-dark);
    color: #fff;
}

/* =========================
   CONTENT AREA
========================= */

.host-main-content{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* =========================
   TOPBAR
========================= */

.host-topbar{
    background: #ffffff;
    border-radius: 28px;
    padding: 1.5rem 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0,0,0,0.04);
}

.host-topbar-left h1{
    font-size: 2rem;
    margin: 0;
    line-height: 1.1;
}

.host-topbar-left p{
    margin: .35rem 0 0;
    color: var(--text-muted);
    font-size: .95rem;
}

.host-topbar-actions{
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

/* =========================
   SUMMARY CARDS
========================= */

.host-summary-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
}

.host-summary-card{
    background: #ffffff;
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.04);
    transition: .25s ease;
}

.host-summary-card:hover{
    transform: translateY(-3px);
}

.host-summary-card p{
    margin: 0;
    color: var(--text-muted);
    font-size: .9rem;
}

.host-summary-card strong{
    display: block;
    margin-top: .8rem;
    font-size: 2.3rem;
    line-height: 1;
    color: var(--text-dark);
}

/* =========================
   MAIN DASHBOARD GRID
========================= */

.host-dashboard-cards{
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1.5rem;
}

/* =========================
   PANELS
========================= */

.host-panel{
    background: #ffffff;
    border-radius: 28px;
    padding: 1.6rem;
    border: 1px solid rgba(0,0,0,0.04);
}

.host-panel-title{
    font-size: 1.2rem;
    margin-bottom: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* =========================
   BOOKINGS
========================= */

.host-booking-list{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.host-booking-card{
    display: flex;
    gap: 1rem;
    border-radius: 18px;
    padding: 1rem;
    background: #fafafa;
    transition: .25s ease;
}

.host-booking-card:hover{
    background: #f0f0f0;
}

.host-booking-image{
    width: 120px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.host-booking-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.host-booking-content{
    flex: 1;
}

.host-booking-content h3{
    margin: 0;
    font-size: 1.05rem;
}

.host-booking-content p{
    margin: .4rem 0;
    color: var(--text-muted);
    font-size: .9rem;
}

.host-booking-meta{
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    margin-top: .75rem;
    flex-wrap: wrap;
}

/* =========================
   MESSAGES
========================= */

.message-card{
    background: #fafafa;
    border-radius: 22px;
    padding: 1.25rem;
    border: 1px solid rgba(0,0,0,0.04);
}

.message-thread{
    max-height: 250px;
    overflow-y: auto;
}

/* =========================
   PROPERTY CARDS
========================= */

.properties-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}

.property-card{
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: .3s ease;
}

.property-card:hover{
    transform: translateY(-4px);
}

.property-card-img{
    height: 220px;
    overflow: hidden;
}

.property-card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-card-body{
    padding: 1.25rem;
}

/* =========================
   BUTTONS
========================= */

.btn{
    border-radius: 14px !important;
    padding: .9rem 1.4rem !important;
    font-weight: 600;
}

.btn-primary{
    background: var(--text-dark) !important;
    border: none !important;
    color: #fff !important;
}

.btn-outline{
    background: transparent !important;
    border: 1px solid rgba(0,0,0,0.12) !important;
    color: var(--text-dark) !important;
}

/* =========================
   EMPTY STATE
========================= */

.empty-state{
    background: #ffffff !important;
    border-radius: 28px !important;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:1200px){

    .host-summary-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .properties-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .host-dashboard-cards{
        grid-template-columns: 1fr;
    }
}

@media(max-width:992px){

    .host-dashboard-grid{
        grid-template-columns: 1fr;
    }

    .host-sidebar{
        position: relative;
        top: unset;
    }

    .messages-grid{
        grid-template-columns: 1fr !important;
    }
}

@media(max-width:768px){

    .host-dashboard-wrapper{
        padding-top: 6rem;
    }

    .host-topbar{
        flex-direction: column;
        align-items: flex-start;
    }

    .host-summary-grid{
        grid-template-columns: 1fr 1fr;
    }

    .properties-grid{
        grid-template-columns: 1fr;
    }

    .host-booking-card{
        flex-direction: column;
    }

    .host-booking-image{
        width: 100%;
        height: 220px;
    }

    .host-summary-card strong{
        font-size: 2rem;
    }
}

@media(max-width:576px){

    .host-summary-grid{
        grid-template-columns: 1fr;
    }

    .host-panel,
    .host-topbar,
    .host-sidebar{
        border-radius: 22px;
    }

    .host-topbar-left h1{
        font-size: 1.7rem;
    }

    .host-sidebar{
        padding: 1.1rem;
    }

    .host-sidebar-link{
        padding: .85rem .9rem;
        font-size: .92rem;
    }

    .host-panel{
        padding: 1.15rem;
    }

    .property-card-img{
        height: 200px;
    }

    .host-booking-image{
        height: 200px;
    }

    .btn{
        width: 100%;
        justify-content: center;
    }
}




.about-regions{
    padding:120px 0;
    background:#f8f6f2;
    overflow:hidden;
}

.regions-wrapper{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:80px;
    align-items:center;
}

.regions-text{
    font-size:1.05rem;
    line-height:1.9;
    color:#5f6b65;
    margin-bottom:1.5rem;
}

.regions-actions{
    display:flex;
    gap:1rem;
    flex-wrap:wrap;
    margin-top:2.5rem;
}

.regions-images{
    position:relative;
    min-height:620px;
}

.regions-image-main{
    width:78%;
    border-radius:32px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.regions-image-main img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.regions-image-secondary{
    position:absolute;
    right:0;
    bottom:40px;

    width:52%;

    border-radius:28px;
    overflow:hidden;

    border:8px solid #f8f6f2;

    box-shadow:0 20px 50px rgba(0,0,0,0.14);
}

.regions-image-secondary img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.btn-dark{
    background:#102418;
    color:#fff;
}

.btn-dark:hover{
    background:#1b3325;
}

.btn-outline-dark{
    border:1px solid #102418;
    color:#102418;
    background:transparent;
}

.btn-outline-dark:hover{
    background:#102418;
    color:#fff;
}

@media (max-width:991px){

    .about-regions{
        padding:90px 0;
    }

    .regions-wrapper{
        grid-template-columns:1fr;
        gap:60px;
    }

    .regions-images{
        min-height:auto;
    }

    .regions-image-main{
        width:100%;
    }

    .regions-image-secondary{
        width:45%;
        bottom:-30px;
    }
}

@media (max-width:768px){

    .regions-actions{
        flex-direction:column;
    }

    .regions-actions .btn{
        width:100%;
        justify-content:center;
    }

    .regions-image-secondary{
        position:relative;
        width:70%;
        margin:-60px auto 0;
        right:auto;
        bottom:auto;
    }
}


.mobile-menu-user-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-user-nav li {
    width: 100%;
}

.mobile-menu-user-nav a,
.mobile-menu-user-nav button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #f5f1e8;
    font-family: 'Jost', sans-serif;
    font-size: 0.98rem;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    border: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.mobile-menu-user-nav a:hover,
.mobile-menu-user-nav button:hover {
    color: #d6b36a;
}

.menu-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d6b36a;
    flex-shrink: 0;
}

.menu-icon svg {
    width: 20px;
    height: 20px;
}

.menu-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 0.8rem 0;
}

.mobile-menu-logout {
    color: #d6b36a !important;
}

.user-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.user-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #d6b36a;
    color: #10261c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.user-card-name {
    margin: 0;
    color: #fff;
    font-size: 0.96rem;
    font-weight: 600;
}

.user-card-email {
    margin: 0.15rem 0 0;
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
}

.mobile-menu-close{
    top: 34px !important;
    right: 24px !important;
}

.host-nav-link{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:500;
    letter-spacing:0.2px;
}

.host-nav-link svg{
    flex-shrink:0;
    opacity:0.92;
}





.showcase-inner{
    position:relative;
    overflow:hidden;
    border-radius:48px;
}

.showcase-video{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:48px;

    opacity:0;
    visibility:hidden;

    transition:opacity .45s ease;

    z-index:2;
}

.showcase-video.active{
    opacity:1;
    visibility:visible;
}

.showcase-play{
    position:absolute;

    top:40%;
    left:50%;

    transform:translate(-50%, -50%);

    width:104px;
    height:104px;

    border-radius:50%;

    background:rgba(145, 155, 132, 0.28);

    border:2px solid rgba(255,255,255,0.55);

    backdrop-filter:blur(10px);

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    z-index:5;

    transition:all .3s ease;
}

.showcase-play:hover{
    transform:translate(-50%, -50%) scale(1.05);
    background:rgba(145, 155, 132, 0.4);
}

.showcase-play svg{
    width:26px;
    height:26px;
    margin-left:4px;
}

.showcase-badge{
    position:absolute;
    right:3rem;
    bottom:3rem;

    z-index:6;
}


@media (max-width: 768px){

    .showcase-section{
        padding:2rem 1rem;
    }

    .showcase-inner{
        border-radius:32px;
    }

    .showcase-img,
    .showcase-video,
    .showcase-video-live{
        border-radius:32px;
        min-height:420px;
        object-fit:cover;
    }

    /* PLAY BUTTON */

    .showcase-play{
        width:82px;
        height:82px;

        top:42%;
        left:50%;
    }

    .showcase-play svg{
        width:20px;
        height:20px;
    }

    /* BADGE */

    .showcase-badge{
        position:absolute;

        left:1rem;
        right:1rem;
        bottom:1rem;

        min-width:auto;
        width:auto;

        padding:1.25rem 1.4rem;

        border-radius:24px;
    }

    .showcase-badge-label{
        font-size:.72rem;
        letter-spacing:.18em;
        margin-bottom:.7rem;
    }

    .showcase-badge-value{
        font-size:1.05rem;
        line-height:1.5;
    }
}

.showcase-badge{
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(10px);
}




