/* ═══════════════════════════════════════════════════════════
   FLER Smart — Booking Site Design System
   Dark navy + orange accent, matching the institutional site
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --orange: #F05A28;
  --orange-light: #FF7A4D;
  --orange-dark: #C44416;
  --navy: #0C1220;
  --navy-mid: #131B2B;
  --navy-light: #1A2540;
  --navy-card: #192035;
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.14);
  --text: #F0F4FF;
  --text-secondary: #9AAAC8;
  --text-muted: #566080;
  --green: #22c55e;
  --yellow: #eab308;
  --red: #ef4444;
  --blue: #3b82f6;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(0,0,0,0.35);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.25);
  --transition: all 0.22s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
select option { background-color: var(--navy-mid); color: var(--text); }

/* ─── CONTAINER ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12,18,32,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled { background: rgba(12,18,32,0.98); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-logo img { height: 56px; }
.header-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.header-logo-text span { color: var(--orange); }

.header-nav { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-link:hover { background: rgba(255,255,255,0.06); color: var(--text); }

.btn-header-cta {
  padding: 10px 22px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-header-cta:hover { background: var(--orange-light); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-booking-footer { display: none; }

/* ─── Skeleton ─── */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.btn-mobile-cta {
  margin-top: 8px;
  padding: 14px 20px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-align: center;
}
.mobile-menu.open { display: flex; }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 68px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy); /* fallback while video loads */
  overflow: hidden;
}

/* Video fills the entire hero area */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-video.loaded { opacity: 0.7; }

/* Overlay: dark gradient so text is always readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(12,18,32,0.55) 0%,
      rgba(12,18,32,0.40) 40%,
      rgba(12,18,32,0.75) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(240,90,40,0.15);
  border: 1px solid rgba(240,90,40,0.3);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-title span { color: var(--orange); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ─── SEARCH BAR ─── */
.search-bar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(24px);
  overflow: hidden;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px 20px;
}
.search-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.search-field input,
.search-field select {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.search-field input::-webkit-calendar-picker-indicator { filter: invert(0.7); }

.search-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.btn-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  background: var(--orange);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  height: 100%;
  min-height: 72px;
  border-radius: 0;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-search svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }
.btn-search:hover { background: var(--orange-light); }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: bounce 2s infinite;
}
.hero-scroll-hint svg { width: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* ═══════════════════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════════════════ */
.stats-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  color: var(--orange);
  margin-bottom: 8px;
  opacity: 0.9;
  display: flex;
}
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-dark {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.section-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(240,90,40,0.12);
  border: 1px solid rgba(240,90,40,0.25);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--orange-light);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   PROPERTY CARDS
   ═══════════════════════════════════════════════════════════ */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.property-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.45);
  border-color: rgba(240,90,40,0.3);
}

.property-card-gallery {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.property-card-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.property-card:hover .property-card-gallery img { transform: scale(1.05); }

.gallery-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 10px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.property-card:hover .gallery-nav { opacity: 1; pointer-events: all; }
.gallery-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  border: 1px solid rgba(255,255,255,0.15);
}
.gallery-btn svg {
  width: 18px; height: 18px;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  display: block;
}
.gallery-btn:hover { background: rgba(240,90,40,0.8); }

.gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}
.gallery-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.2s, width 0.2s;
}
.gallery-dot.active { background: #fff; width: 14px; border-radius: 3px; }

.property-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 10px;
  background: var(--orange);
  color: #fff;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.property-card-body { padding: 20px; }

.property-card-location {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.property-card-attrs {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}
.prop-attr {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.prop-attr svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.property-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.property-price { display: flex; align-items: baseline; gap: 4px; }
.price-from { font-size: 0.7rem; color: var(--text-muted); }
.price-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
}
.price-per { font-size: 0.75rem; color: var(--text-muted); }

.btn-card-cta {
  padding: 10px 20px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-card-cta:hover { background: var(--orange-light); transform: translateY(-1px); }

/* Skeleton */
.loading-grid { display: contents; }
.skeleton-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 360px;
  animation: skeleton-pulse 1.4s ease-in-out infinite;
}
@keyframes skeleton-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p { color: var(--text-secondary); margin-bottom: 32px; line-height: 1.8; }

.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.af-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.about-feature strong { display: block; font-weight: 700; margin-bottom: 2px; }
.about-feature p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.about-visual { position: relative; }
.about-card-floating {
  background: var(--navy-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.acf-stat { margin-bottom: 28px; }
.acf-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.acf-label { font-size: 0.9rem; color: var(--text-secondary); }
.acf-divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.acf-row { display: flex; gap: 40px; }
.acf-pct { font-size: 1.8rem; font-weight: 800; color: var(--text); display: block; }

/* ═══════════════════════════════════════════════════════════
   CTA STRIP
   ═══════════════════════════════════════════════════════════ */
.cta-strip {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  padding: 72px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 { font-size: 2rem; font-weight: 800; }
.cta-inner p { color: rgba(255,255,255,0.8); margin-top: 6px; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  transition: var(--transition);
  border: none;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,90,40,0.4); }
.btn-primary.btn-lg { padding: 18px 36px; font-size: 1rem; border-radius: var(--radius); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.06); border-color: var(--orange); color: var(--orange); }

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-back-home svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.btn-back-home:hover { background: rgba(255,255,255,0.1); color: var(--text); }

/* ═══════════════════════════════════════════════════════════
   LISTING PAGE
   ═══════════════════════════════════════════════════════════ */
.listing-header {
  padding: 100px 0 40px;
  border-bottom: 1px solid var(--border);
  background: var(--navy-mid);
}
.listing-title { font-size: 2rem; font-weight: 800; }
.listing-sub { color: var(--text-secondary); margin-top: 6px; }

.listing-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 80px;
  align-items: start;
}

.filters-sidebar {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 88px;
}

.filter-group { margin-bottom: 28px; }
.filter-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.filter-dates { display: flex; flex-direction: column; gap: 10px; }
.filter-dates label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}
.filter-dates input {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
}
.filter-dates input:focus { border-color: rgba(240,90,40,0.5); }
.filter-dates input::-webkit-calendar-picker-indicator { filter: invert(0.6); }

.filter-select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.filter-select:focus { border-color: rgba(240,90,40,0.5); }

.filter-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--transition);
}
.chip:hover, .chip.active {
  background: rgba(240,90,40,0.12);
  border-color: rgba(240,90,40,0.4);
  color: var(--orange-light);
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}
.filter-check input { width: 16px; height: 16px; accent-color: var(--orange); cursor: pointer; }

.btn-apply-filters {
  width: 100%;
  padding: 12px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
  margin-bottom: 8px;
}
.btn-apply-filters:hover { background: var(--orange-light); }

.btn-clear-filters {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: var(--transition);
}
.btn-clear-filters:hover { border-color: var(--border-light); color: var(--text-secondary); }

.listing-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 40px;
  color: var(--text-muted);
}
.listing-empty svg { width: 48px; height: 48px; stroke: currentColor; fill: none; stroke-width: 1.5; margin: 0 auto 16px; }
.listing-empty h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 8px; }

/* ═══════════════════════════════════════════════════════════
   PROPERTY DETAIL PAGE
   ═══════════════════════════════════════════════════════════ */
.property-detail { padding-bottom: 80px; }

.prop-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}

.prop-gallery-grid .gallery-main {
  grid-column: 1;
  grid-row: 1 / 3;
}

.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s ease;
  background: var(--navy-light);
}
.gallery-img:hover { transform: scale(1.03); }

.gallery-more {
  position: relative;
  cursor: pointer;
}
.gallery-more::after {
  content: attr(data-count);
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.prop-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.prop-header { margin-bottom: 28px; }
.prop-location {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--orange);
  margin-bottom: 10px;
}
.prop-title { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.prop-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.prop-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.prop-meta-item svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.prop-section { margin-bottom: 36px; }
.prop-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.prop-desc { color: var(--text-secondary); line-height: 1.8; }

.amenidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.amenidade-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}
.amenidade-item .am-icon { font-size: 18px; }

/* ─── Booking Sidebar ─── */
.booking-sidebar {
  background: var(--navy-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 88px;
  box-shadow: var(--shadow-card);
}

.booking-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
}
.booking-price .price-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
}
.booking-price .price-night { color: var(--text-muted); font-size: 0.9rem; }

.booking-form { display: flex; flex-direction: column; gap: 14px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
}
.form-field input,
.form-field select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus { border-color: rgba(240,90,40,0.5); }
.form-field input::-webkit-calendar-picker-indicator { filter: invert(0.6); }

.booking-summary {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 0.85rem;
}
.booking-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--text-secondary);
}
.booking-summary-row:last-child {
  margin-bottom: 0;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}

.btn-reservar {
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 800;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-reservar:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,90,40,0.45); }
.btn-reservar:disabled { background: var(--navy-light); color: var(--text-muted); cursor: not-allowed; transform: none; box-shadow: none; }

.sidebar-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  justify-content: center;
  margin-top: 12px;
}

/* ─── Availability Calendar ─── */
.avail-calendar { margin-bottom: 36px; }
.avail-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.avail-cal-month { font-size: 1rem; font-weight: 700; }
.avail-cal-btn {
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}
.avail-cal-btn:hover { background: rgba(255,255,255,0.1); color: var(--text); }

.avail-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-size: 0.82rem;
}
.avail-day-name {
  text-align: center;
  color: var(--text-muted);
  font-weight: 700;
  padding: 6px 0;
  font-size: 0.7rem;
  text-transform: uppercase;
}
.avail-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.avail-day.empty { cursor: default; }
.avail-day.past { color: var(--text-muted); cursor: not-allowed; opacity: 0.4; }
.avail-day.free { color: var(--text); }
.avail-day.free:hover { background: rgba(34,197,94,0.15); color: var(--green); }
.avail-day.booked { background: rgba(239,68,68,0.12); color: var(--red); cursor: not-allowed; text-decoration: line-through; }
.avail-day.booked.selectable { cursor: pointer; opacity: 0.8; }
.avail-day.today { border: 1.5px solid var(--orange); font-weight: 700; color: var(--orange); }
.avail-day.selected { background: var(--orange); color: #fff; font-weight: 700; }
.avail-day.in-range { background: rgba(240,90,40,0.15); color: var(--orange-light); }

/* Calendar hover preview while picking end date */
.avail-day.free.hover-range {
  background: rgba(240,90,40,0.08);
  color: var(--text);
}

/* Calendar selection status strip */
.cal-selection-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(240,90,40,0.08);
  border: 1px solid rgba(240,90,40,0.25);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}
.cal-selection-info.selecting {
  background: rgba(255,255,255,0.03);
  border-color: var(--border);
  animation: pulse-border 1.5s ease infinite;
}
@keyframes pulse-border {
  0%, 100% { border-color: var(--border); }
  50% { border-color: rgba(240,90,40,0.4); }
}
.cal-clear-btn {
  padding: 4px 12px;
  font-size: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--text-muted);
  transition: var(--transition);
}
.cal-clear-btn:hover { border-color: rgba(239,68,68,0.4); color: var(--red); }

/* Sidebar date hint */
.sb-date-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
  animation: pulse-border 2s ease infinite;
}

/* Sidebar date range pills */
.sb-date-range {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 12px;
  background: rgba(240,90,40,0.06);
  border: 1px solid rgba(240,90,40,0.2);
  border-radius: var(--radius-sm);
}
.sb-date-cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sb-date-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
}
.sb-date-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
}
.sb-date-arrow {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
}

/* Legend free dot */
.free-dot {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}

.avail-legend {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.avail-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.avail-legend-dot {
  width: 11px; height: 11px;
  border-radius: 3px;
}

/* ═══════════════════════════════════════════════════════════
   CHECKOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  padding: 40px 0 80px;
  align-items: start;
}

.checkout-form-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.checkout-form-card h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checkout-field label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
}
.checkout-field input {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.checkout-field input:focus { border-color: rgba(240,90,40,0.5); }
.checkout-field.span-2 { grid-column: 1 / 3; }

.payment-methods { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.payment-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.payment-method:hover { border-color: var(--border-light); }
.payment-method.selected { border-color: var(--orange); background: rgba(240,90,40,0.06); }
.payment-method input[type="radio"] { accent-color: var(--orange); width: 18px; height: 18px; }
.payment-method-icon { font-size: 22px; }
.payment-method-info strong { display: block; font-weight: 700; font-size: 0.9rem; }
.payment-method-info span { font-size: 0.78rem; color: var(--text-muted); }

.checkout-terms {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.checkout-terms a { color: var(--orange); text-decoration: underline; }

.btn-checkout {
  width: 100%;
  padding: 18px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 800;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-checkout:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(240,90,40,0.5); }
.btn-checkout:disabled { background: var(--navy-light); color: var(--text-muted); cursor: not-allowed; transform: none; }

.checkout-summary-card {
  background: var(--navy-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 88px;
}
.checkout-summary-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  background: var(--navy-light);
}
.checkout-summary-name { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.checkout-summary-loc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.checkout-summary-rows { border-top: 1px solid var(--border); }
.checkout-sum-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.checkout-sum-row:last-child { border-bottom: none; font-weight: 700; color: var(--text); font-size: 1rem; }

/* ─── PIX Modal ─── */
.pix-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
}
.pix-modal-overlay.open { display: flex; }
.pix-modal {
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  animation: fadeInUp 0.3s ease;
}
.pix-modal h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.pix-modal p { color: var(--text-secondary); margin-bottom: 24px; }
.pix-qr {
  width: 200px;
  height: 200px;
  background: #fff;
  margin: 0 auto 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #333;
  padding: 16px;
}
.pix-copy-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 600;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.pix-copy-btn:hover { background: rgba(255,255,255,0.1); }
.btn-pix-cancel {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--orange); }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-social svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.footer-social:hover { background: rgba(255,255,255,0.08); color: var(--text); }
.footer-links h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); font-weight: 700; margin-bottom: 16px; }
.footer-links a { display: block; color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); font-weight: 700; margin-bottom: 16px; }
.footer-contact p { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 42px; height: 42px;
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 52px; height: 52px;
  font-size: 1.6rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(240,90,40,0.3); }

/* ═══════════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow);
  z-index: 2000;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.error { border-color: rgba(239,68,68,0.5); background: rgba(239,68,68,0.12); }
.toast.success { border-color: rgba(34,197,94,0.4); background: rgba(34,197,94,0.1); }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .prop-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
  .prop-gallery-grid .gallery-main { grid-column: 1 / 3; grid-row: 1; }
  .prop-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; margin-top: 32px; }
  .checkout-layout { grid-template-columns: 1fr; }

  /* Sticky Bottom Bar for Mobile Booking */
  .mobile-booking-footer {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
  }
  .mobile-booking-info { display: flex; flex-direction: column; }
  .mobile-booking-price { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
  .mobile-booking-label { font-size: 0.75rem; color: var(--text-muted); }
  .btn-mobile-book {
    background: var(--orange);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 12px rgba(240,90,40,0.3);
  }
}

@media (max-width: 768px) {
  .header-nav, .btn-header-cta { display: none; }
  .hamburger { display: flex; }
  
  .hero { align-items: flex-start; padding-top: 100px; }
  .hero-scroll-hint { display: none; }
  
  .search-bar {
    flex-direction: column;
    border-radius: var(--radius);
    gap: 0;
    margin-bottom: 32px;
    background: rgba(12, 18, 32, 0.85);
  }
  .search-field { padding: 12px 16px; }
  .search-field input, .search-field select { min-height: 24px; color: #fff; }
  .search-divider { width: 100%; height: 1px; }
  .btn-search { 
    min-height: 54px; 
    border-radius: var(--radius-sm); 
    margin: 16px;
    width: calc(100% - 32px);
  }
  .listing-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .prop-gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: 260px; }
  .prop-gallery-grid > :not(.gallery-main) { display: none; }
  .prop-gallery-grid .gallery-main { grid-column: 1; grid-row: 1; }
  .checkout-form-grid { grid-template-columns: 1fr; }
  .checkout-field.span-2 { grid-column: 1; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE BOTTOM-SHEET
   ═══════════════════════════════════════════════════════════ */

/* No mobile: esconde o calendário visual e o sidebar de desktop */
@media (max-width: 1024px) {
  .avail-calendar { display: none; }
  .booking-sidebar { display: none; }
  /* Padding extra para o footer sticky não sobrepor conteúdo */
  .property-detail { padding-bottom: 100px; }
}

/* Overlay */
.mobile-sheet-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 900;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-sheet-overlay.open {
  display: block;
  opacity: 1;
}

/* Bottom-sheet panel */
.mobile-sheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy-mid);
  border-radius: 20px 20px 0 0;
  border-top: 1px solid var(--border-light);
  z-index: 901;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 90vh;
  overflow-y: auto;
  /* Only show on mobile */
  display: none;
}
@media (max-width: 1024px) {
  .mobile-sheet { display: block; }
}
.mobile-sheet.open { transform: translateY(0); }

.mobile-sheet-handle {
  width: 36px; height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 99px;
  margin: 12px auto 0;
}

.mobile-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 10px;
  border-bottom: 1px solid var(--border);
}
.mobile-sheet-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 40px);
}
.mobile-sheet-close {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.mobile-sheet-body {
  padding: 20px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-sheet-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 0;
}

/* Campos do bottom-sheet */
.msb-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.msb-field label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
}
.msb-field input[type="date"],
.msb-field select {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s;
}
.msb-field input[type="date"]:focus,
.msb-field select:focus { border-color: rgba(240,90,40,0.6); }
.msb-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
  cursor: pointer;
}

/* Resumo de preço */
.msb-summary {
  background: rgba(240,90,40,0.07);
  border: 1px solid rgba(240,90,40,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 16px;
}
.msb-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Erro de disponibilidade */
.msb-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-top: 14px;
  font-size: 0.84rem;
  color: #f87171;
}

/* Botão confirmar */
.btn-mobile-confirm {
  width: 100%;
  padding: 17px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-top: 18px;
  transition: var(--transition);
}
.btn-mobile-confirm:hover:not(:disabled) {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(240,90,40,0.4);
}
.btn-mobile-confirm:disabled {
  background: var(--navy-light);
  color: var(--text-muted);
  cursor: not-allowed;
}

/* --- NOVOS ESTILOS PARA LANDING PAGE DO IMÓVEL --- */
.prop-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.btn-action {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: inherit;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-action:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-action:disabled {
  opacity: 0.8;
  cursor: default;
}

.amenidades-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px 16px;
  margin-top: 20px;
}
.amenidade-premium-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ap-icon {
  font-size: 1.5rem;
  opacity: 0.9;
}
.ap-label {
  font-size: 1rem;
  color: var(--text-base);
  font-weight: 500;
}
@media (max-width: 600px) {
  .amenidades-premium-grid { grid-template-columns: 1fr 1fr; }
  .ap-label { font-size: 0.9rem; }
}

/* ─── CRO / GATILHOS (VIEWS/URGÊNCIA) ─── */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240, 90, 40, 0.1);
  color: #F05A28;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 12px;
}
.scarcity-text {
  color: #F05A28;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ─── PROVA SOCIAL E SEGURANÇA ─── */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.reviews-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.reviews-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.reviews-score {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}
.reviews-stars {
  color: #FFD700;
  font-size: 1.2rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.review-card {
  background: var(--bg-card);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
}
.review-author {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}
.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.review-text {
  font-size: 0.9rem;
  color: var(--text-base);
  line-height: 1.5;
}

/* ─── FAQ (SANFONA) ─── */
.faq-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.faq-question.active::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-answer-inner {
  padding-bottom: 20px;
  color: var(--text-base);
  line-height: 1.6;
}

/* ─── WHATSAPP FLUTUANTE (CONCIERGE) ─── */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #FFF;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-decoration: none;
  z-index: 1000;
  transition: transform 0.2s;
}
.floating-whatsapp:hover {
  transform: translateY(-3px);
  color: #FFF;
}
.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .floating-whatsapp {
    bottom: 90px;
    right: 16px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* Fix header overlap on inner pages */
#page-listing,
#page-property,
#page-checkout {
  padding-top: 88px; /* 68px header + 20px breathing room */
}
. c h e c k o u t - l a y o u t  
   d i s p l a y :   g r i d ;   g r i d - t e m p l a t e - c o l u m n s :   1 f r   4 0 0 p x ;   g a p :   4 0 p x ;    
 