/* ============================================================
   THE ZERO BANG TAO — WordPress Scoped Stylesheet
   All selectors scoped under .zbt to avoid WP theme conflicts
   ============================================================ */

/* ──────────────── SCOPED RESET & VARIABLES ──────────────── */
.zbt {
  --zbt-accent: #856C4E;
  --zbt-accent-light: #D9C291;
  --zbt-accent-bg: rgba(133, 108, 78, 0.06);
  --zbt-bg-primary: #FDFBF7;
  --zbt-bg-secondary: #F5F0E8;
  --zbt-text-primary: #1C1C1C;
  --zbt-text-body: #4A4A4A;
  --zbt-text-muted: #8A8A7A;
  --zbt-white: #fff;
  --zbt-font-heading: 'Josefin Sans', sans-serif;
  --zbt-font-body: 'Montserrat', sans-serif;
  --zbt-font-mono: 'JetBrains Mono', monospace;
  --zbt-border-subtle: rgba(133, 108, 78, 0.05);
  --zbt-border-light: rgba(133, 108, 78, 0.06);
  --zbt-border-medium: rgba(133, 108, 78, 0.12);
  --zbt-radius-sm: 8px;
  --zbt-radius-md: 12px;
  --zbt-radius-lg: 16px;
  --zbt-radius-xl: 20px;
  --zbt-container-max: 1240px;
  --zbt-section-padding-x: 20px;
  --zbt-section-padding: 76px 20px;
  --zbt-sticky-offset: 80px;

  background: var(--zbt-bg-primary);
  color: var(--zbt-text-primary);
  font-family: var(--zbt-font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

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

.zbt ::selection {
  background: var(--zbt-accent-light);
  color: var(--zbt-accent);
}

.zbt img {
  max-width: 100%;
  display: block;
  border: none;
  height: auto;
}

.zbt a {
  text-decoration: none;
  color: inherit;
  background: none;
  box-shadow: none;
}

.zbt button {
  font-family: var(--zbt-font-body);
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  line-height: inherit;
}

.zbt h1, .zbt h2, .zbt h3, .zbt h4, .zbt h5, .zbt h6 {
  font-family: var(--zbt-font-heading);
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: normal;
  color: inherit;
}

.zbt p {
  margin: 0;
  padding: 0;
}

.zbt select,
.zbt input,
.zbt textarea {
  font-family: var(--zbt-font-body);
  border-radius: 0;
  -webkit-appearance: none;
}

.zbt ul, .zbt ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ──────────────── LAYOUT ──────────────── */
.zbt .container {
  max-width: var(--zbt-container-max);
  margin: 0 auto;
}

.zbt .text-center {
  text-align: center;
}

/* ──────────────── LAZY IMAGE ──────────────── */
.zbt .lazy-img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #E8E0D4, #D8D0C4);
}

.zbt .lazy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.5s;
}

.zbt .lazy-img img.loaded {
  opacity: 1;
}

/* ──────────────── SECTION TYPOGRAPHY ──────────────── */
.zbt .section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--zbt-accent-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.zbt .section-title {
  font-family: var(--zbt-font-heading);
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 300;
  color: var(--zbt-accent);
  margin: 0 0 6px;
}

.zbt .section-subtitle {
  color: var(--zbt-text-muted);
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ──────────────── BUTTONS ──────────────── */
.zbt .btn-primary {
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  background: var(--zbt-accent);
  color: #F5F0E8;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--zbt-font-body);
  box-shadow: 0 4px 20px rgba(133, 108, 78, 0.2);
  transition: transform 0.2s;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.zbt .btn-primary:hover {
  transform: translateY(-2px);
}

.zbt .btn-outline {
  padding: 15px 26px;
  border-radius: 10px;
  border: 1.5px solid var(--zbt-accent);
  background: rgba(255, 255, 255, 0.5);
  color: var(--zbt-accent);
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--zbt-font-body);
  backdrop-filter: blur(8px);
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.zbt .btn-outline:hover {
  background: var(--zbt-accent);
  color: #F5F0E8;
}

/* ──────────────── SCROLL REVEAL ──────────────── */
.zbt .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.zbt .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────── NAVIGATION ──────────────── */
.zbt .main-nav {
  position: relative;
  z-index: 999;
  background: rgba(253, 251, 247, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--zbt-border-light);
  padding: 0 var(--zbt-section-padding-x);
  transition: box-shadow 0.2s ease;
}

.zbt .main-nav.is-stuck {
  position: fixed;
  top: var(--zbt-sticky-offset);
  left: 0;
  right: 0;
  width: 100%;
}

.zbt.nav-is-stuck {
  padding-top: 56px;
}

.zbt .nav-inner {
  max-width: var(--zbt-container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 20px;
}

.zbt .nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.zbt .nav-brand img {
  height: 26px;
}

.zbt .nav-brand span {
  font-family: var(--zbt-font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--zbt-accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.45;
}

.zbt .nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.zbt .nav-link {
  background: none;
  border: none;
  color: #4A4A4A;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--zbt-font-body);
  padding: 4px 0;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
}

.zbt .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--zbt-accent-light);
  transition: width 0.25s;
}

.zbt .nav-link:hover::after {
  width: 100%;
}

.zbt .nav-cta {
  padding: 8px 18px;
  border: none;
  border-radius: 8px;
  background: var(--zbt-accent);
  color: #F5F0E8;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--zbt-font-body);
  margin-left: 4px;
}

.zbt .mobile-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 5px;
}

.zbt .mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--zbt-accent);
  display: block;
  border-radius: 1px;
  transition: 0.3s;
}

.zbt .mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.zbt .mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.zbt .mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.zbt .mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0 16px;
  animation: zbt-fadeDown 0.25s;
}

.zbt .mobile-menu.open {
  display: flex;
}

.zbt .mobile-menu button,
.zbt .mobile-menu a {
  background: none;
  border: none;
  padding: 10px 0;
  color: var(--zbt-text-primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--zbt-font-body);
  text-align: left;
  text-decoration: none;
  display: block;
}

.zbt .mobile-menu .mobile-cta {
  margin-top: 6px;
  padding: 13px;
  border: none;
  border-radius: 10px;
  background: var(--zbt-accent);
  color: #F5F0E8;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--zbt-font-body);
  text-align: center;
}

/* ──────────────── HERO ──────────────── */
.zbt .hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.zbt .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.zbt .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.zbt .hero-slide.active {
  opacity: 1;
}

.zbt .hero-slide .lazy-img {
  width: 100%;
  height: 100%;
}

.zbt .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(253, 251, 247, 0.97) 0%, rgba(253, 251, 247, 0.9) 42%, rgba(253, 251, 247, 0.25) 100%);
}

.zbt .hero-grid {
  max-width: var(--zbt-container-max);
  margin: 0 auto;
  padding: 28px var(--zbt-section-padding-x) 40px;
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.zbt .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(217, 194, 145, 0.12);
  border: 1px solid rgba(217, 194, 145, 0.25);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 11px;
  font-weight: 600;
  color: var(--zbt-accent);
}

.zbt .hero-badge img {
  height: 16px;
}

.zbt .hero-sold-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(220, 80, 20, 0.08);
  border: 1px solid rgba(220, 80, 20, 0.18);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 11px;
  font-weight: 700;
  color: #c2410c;
}

.zbt .hero h1 {
  font-family: var(--zbt-font-heading);
  font-size: clamp(30px, 4.8vw, 50px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--zbt-accent);
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}

.zbt .hero h1 span {
  color: var(--zbt-accent-light);
}

.zbt .hero-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--zbt-text-body);
  max-width: 520px;
  margin: 0 0 22px;
}

.zbt .hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 18px;
  margin-bottom: 26px;
}

.zbt .hero-stat {
  border-left: 2px solid var(--zbt-accent-light);
  padding-left: 12px;
}

.zbt .hero-stat-value {
  font-family: var(--zbt-font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--zbt-accent);
}

.zbt .hero-stat-label {
  font-size: 11px;
  color: var(--zbt-text-muted);
  font-weight: 500;
}

.zbt .eia-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--zbt-border-medium);
  border-radius: 14px;
  padding: 12px 20px;
  margin-bottom: 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.zbt .eia-badge img {
  height: 36px;
}

.zbt .eia-badge-title {
  font-family: var(--zbt-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--zbt-accent);
}

.zbt .eia-badge-sub {
  font-size: 11px;
  color: var(--zbt-text-muted);
}

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

.zbt .hero-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.zbt .hero-thumb {
  width: 60px;
  height: 42px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--zbt-border-medium);
  cursor: pointer;
  opacity: 0.55;
  transition: all 0.3s;
  flex-shrink: 0;
}

.zbt .hero-thumb.active {
  border-color: var(--zbt-accent-light);
  opacity: 1;
}

.zbt .hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zbt .hero-form-desktop {
  display: block;
}

.zbt .hero-form-mobile {
  display: none;
  margin-top: 28px;
}

/* ──────────────── STATS BAR ──────────────── */
.zbt .stats-bar {
  background: var(--zbt-accent);
  padding: 34px var(--zbt-section-padding-x);
}

.zbt .stats-grid {
  max-width: var(--zbt-container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.zbt .stat-value {
  font-family: var(--zbt-font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--zbt-accent-light);
}

.zbt .stat-label {
  font-size: 12px;
  color: #fff;
  margin-top: 2px;
}

/* ──────────────── AWARDS ──────────────── */
.zbt .awards {
  background: var(--zbt-bg-secondary);
  padding: 34px var(--zbt-section-padding-x);
  border-bottom: 1px solid var(--zbt-border-subtle);
}

.zbt .awards .container {
  max-width: 1100px;
}

.zbt .awards-label {
  text-align: center;
  margin-bottom: 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--zbt-text-muted);
  text-transform: uppercase;
}

.zbt .badge-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.zbt .badge-card {
  background: var(--zbt-white);
  border-radius: var(--zbt-radius-md);
  padding: 18px 12px;
  border: 1px solid var(--zbt-border-subtle);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.zbt .badge-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.zbt .badge-card img {
  height: 32px;
  max-width: 80%;
  object-fit: contain;
}

.zbt .badge-card-title {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--zbt-accent);
}

.zbt .badge-card-sub {
  font-size: 9.5px;
  color: var(--zbt-text-muted);
  margin-top: 1px;
}

/* ──────────────── INVESTMENT ──────────────── */
.zbt .investment {
  padding: 86px var(--zbt-section-padding-x);
  background: var(--zbt-bg-primary);
}

.zbt .investment-box {
  background: var(--zbt-white);
  border-radius: var(--zbt-radius-xl);
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--zbt-border-subtle);
  margin-bottom: 48px;
  box-shadow: 0 4px 24px rgba(133, 108, 78, 0.04);
}

.zbt .timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  padding: 0 10px;
  margin-bottom: 40px;
}

.zbt .timeline-step {
  display: flex;
  align-items: flex-start;
  flex: 1;
  position: relative;
}

.zbt .timeline-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.zbt .timeline-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--zbt-white);
  border: 2px solid var(--zbt-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(217, 194, 145, 0.15);
}

.zbt .timeline-icon.done {
  background: var(--zbt-accent);
  border-color: var(--zbt-accent);
  box-shadow: 0 4px 16px rgba(133, 108, 78, 0.2);
}

.zbt .timeline-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(133, 108, 78, 0.22);
}

.zbt .timeline-icon svg {
  width: 22px;
  height: 22px;
  color: var(--zbt-accent-light);
  stroke-width: 1.8;
}

.zbt .timeline-icon.done svg {
  color: #F5F0E8;
}

.zbt .timeline-date {
  font-family: var(--zbt-font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--zbt-accent-light);
  margin-bottom: 3px;
}

.zbt .timeline-date.done {
  color: var(--zbt-accent);
}

.zbt .timeline-label {
  font-size: 11.5px;
  color: var(--zbt-text-muted);
  text-align: center;
  max-width: 120px;
  line-height: 1.35;
}

.zbt .timeline-line {
  position: absolute;
  top: 26px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: #E8E0D4;
  z-index: 1;
}

.zbt .timeline-line.done {
  background: var(--zbt-accent);
}

.zbt .investment-details {
  border-top: 1px solid var(--zbt-border-light);
  padding-top: 28px;
}

.zbt .inv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.zbt .inv-grid p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--zbt-text-body);
  margin: 0;
}

.zbt .inv-grid p.larger {
  font-size: 15px;
  margin-bottom: 16px;
}

.zbt .inv-callout {
  background: var(--zbt-bg-secondary);
  border-radius: var(--zbt-radius-md);
  padding: 14px 18px;
  border-left: 3px solid var(--zbt-accent-light);
}

.zbt .inv-callout p {
  font-size: 12px;
  font-weight: 600;
  color: var(--zbt-accent);
  line-height: 1.5;
}

.zbt .inv-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.zbt .inv-card {
  background: var(--zbt-white);
  border-radius: var(--zbt-radius-lg);
  padding: 26px 22px;
  border: 1px solid var(--zbt-border-subtle);
  height: 100%;
  transition: transform 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}

.zbt .inv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(133, 108, 78, 0.08);
}

.zbt .inv-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.zbt .inv-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--zbt-accent);
  stroke-width: 1.8;
}

.zbt .inv-card h3 {
  font-family: var(--zbt-font-heading);
  font-size: 19px;
  font-weight: 300;
  color: var(--zbt-accent);
  margin: 0 0 3px;
}

.zbt .inv-card-sub {
  font-size: 12.5px;
  color: var(--zbt-accent-light);
  font-weight: 600;
  margin-bottom: 10px;
}

.zbt .inv-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #5A5A5A;
  margin: 0;
  flex: 1;
}

/* ──────────────── SUSTAINABILITY ──────────────── */
.zbt .sustainability {
  padding: var(--zbt-section-padding);
  background: var(--zbt-accent);
  position: relative;
  overflow: hidden;
}

.zbt .sustainability .section-title {
  color: #F5F0E8;
}

.zbt .sustainability .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14.5px;
  max-width: 620px;
}

.zbt .sustainability-orb {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 194, 145, 0.05) 0%, transparent 70%);
}

.zbt .eco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.zbt .eco-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 20px;
  border: 1px solid rgba(217, 194, 145, 0.18);
  text-align: center;
}

.zbt .eco-card-value {
  font-family: var(--zbt-font-heading);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: var(--zbt-accent-light);
  line-height: 1.1;
}

.zbt .eco-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #F5F0E8;
  margin-top: 10px;
}

.zbt .eco-card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}

.zbt .eco-features {
  max-width: 480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 0;
}

.zbt .eco-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  padding-left: 20px;
}

.zbt .eco-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--zbt-accent-light);
  flex-shrink: 0;
}

/* ──────────────── FACILITIES ──────────────── */
.zbt .facilities {
  padding: var(--zbt-section-padding);
  background: var(--zbt-bg-secondary);
}

.zbt .fac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.zbt .fac-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--zbt-white);
  border: 1px solid var(--zbt-border-light);
  height: 100%;
  transition: transform 0.35s, box-shadow 0.35s;
}

.zbt .fac-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(133, 108, 78, 0.08);
}

.zbt .fac-card-img {
  position: relative;
  overflow: hidden;
}

.zbt .fac-card-img .lazy-img {
  width: 100%;
  height: 100%;
}

.zbt .fac-card-img.featured {
  height: 220px;
}

.zbt .fac-card-img.secondary {
  height: 180px;
}

.zbt .fac-card-body {
  padding: 16px 18px 20px;
}

.zbt .fac-card-body.secondary {
  padding: 14px 18px 18px;
}

.zbt .fac-card h4 {
  font-family: var(--zbt-font-heading);
  font-size: 18px;
  font-weight: 300;
  color: var(--zbt-accent);
  margin: 0 0 5px;
}

.zbt .fac-card h4.secondary {
  font-size: 17px;
  margin-bottom: 4px;
}

.zbt .fac-card p {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--zbt-text-muted);
  margin: 0;
}

.zbt .fac-card p.secondary {
  font-size: 12px;
  line-height: 1.5;
}

.zbt .amenity-bar {
  background: var(--zbt-white);
  border-radius: 14px;
  padding: 20px 28px;
  border: 1px solid var(--zbt-border-light);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.zbt .amenity-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--zbt-accent);
  font-weight: 500;
}

.zbt .amenity-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--zbt-accent-light);
  flex-shrink: 0;
}

/* ──────────────── UNITS ──────────────── */
.zbt .units {
  padding: var(--zbt-section-padding);
  background: var(--zbt-bg-primary);
}

.zbt .units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.zbt .unit-card {
  border-radius: var(--zbt-radius-lg);
  overflow: hidden;
  border: 1px solid var(--zbt-border-light);
  background: var(--zbt-white);
  transition: transform 0.35s, box-shadow 0.35s;
}

.zbt .unit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(133, 108, 78, 0.1);
}

.zbt .unit-card.featured {
  border: 2px solid var(--zbt-accent-light);
}

.zbt .unit-popular-tag {
  background: var(--zbt-accent-light);
  color: var(--zbt-accent);
  text-align: center;
  padding: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.zbt .unit-card-img {
  position: relative;
}

.zbt .unit-card-img .lazy-img {
  width: 100%;
  height: 190px;
}

.zbt .unit-card-body {
  padding: 22px;
}

.zbt .unit-type {
  font-family: var(--zbt-font-heading);
  font-size: 21px;
  font-weight: 600;
  color: var(--zbt-accent);
}

.zbt .unit-size {
  font-size: 12px;
  color: var(--zbt-text-muted);
  margin-bottom: 10px;
}

.zbt .unit-price {
  font-family: var(--zbt-font-heading);
  font-size: 26px;
  font-weight: 400;
  color: var(--zbt-accent);
  margin-bottom: 4px;
}

.zbt .unit-yield {
  font-size: 12px;
  color: var(--zbt-accent-light);
  font-weight: 600;
  margin-bottom: 10px;
}

.zbt .unit-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--zbt-text-body);
  margin: 0 0 16px;
}

.zbt .unit-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 400;
  font-family: var(--zbt-font-body);
  cursor: pointer;
}

.zbt .unit-btn.primary {
  background: var(--zbt-accent);
  color: #F5F0E8;
}

.zbt .unit-btn.accent {
  background: var(--zbt-accent-light);
  color: var(--zbt-accent);
}

.zbt .unit-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zbt .floor-plans {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.zbt .floor-plans > div {
  border-radius: var(--zbt-radius-lg);
  overflow: hidden;
  border: 1px solid var(--zbt-border-light);
}

.zbt .floor-plans .lazy-img {
  width: 100%;
  height: 100%;
}

.zbt .payment-cta {
  margin-top: 36px;
  background: linear-gradient(135deg, #856C4E 0%, #6B563E 100%);
  border-radius: var(--zbt-radius-lg);
  padding: 36px clamp(24px, 4vw, 48px);
  text-align: center;
}

.zbt .payment-cta h3 {
  font-family: var(--zbt-font-heading);
  font-size: 24px;
  font-weight: 300;
  color: #F5F0E8;
  margin: 0 0 8px;
}

.zbt .payment-reserve {
  display: inline-block;
  background: rgba(217, 194, 145, 0.15);
  border: 1px solid rgba(217, 194, 145, 0.3);
  border-radius: 10px;
  padding: 10px 24px;
  margin-bottom: 16px;
}

.zbt .payment-reserve span {
  font-size: 13px;
  color: #fff;
}

.zbt .payment-reserve strong {
  font-family: var(--zbt-font-mono);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.zbt .payment-cta p {
  font-size: 14px;
  color: #fff;
  margin: 0 0 20px;
}

.zbt .payment-cta-btn {
  padding: 14px 32px;
  border: 1.5px solid var(--zbt-accent-light);
  border-radius: 10px;
  background: transparent;
  color: var(--zbt-accent-light);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--zbt-font-body);
  transition: all 0.2s;
}

.zbt .payment-cta-btn:hover {
  background: var(--zbt-accent-light);
  color: #3A2A1A;
}

/* ──────────────── GALLERY ──────────────── */
.zbt .gallery-section {
  padding: var(--zbt-section-padding);
  background: var(--zbt-bg-secondary);
}

.zbt .gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 195px;
  gap: 10px;
}

.zbt .gal-item {
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--zbt-radius-md);
  position: relative;
}

.zbt .gal-item.tall {
  grid-row: span 2;
}

.zbt .gal-item .lazy-img {
  width: 100%;
  height: 100%;
  border-radius: var(--zbt-radius-md);
}

.zbt .gal-item img {
  transition: transform 0.5s ease !important;
}

.zbt .gal-item:hover img {
  transform: scale(1.06) !important;
}

.zbt .gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  border-radius: var(--zbt-radius-md);
}

.zbt .gal-item:hover .gal-overlay {
  opacity: 1;
}

.zbt .gal-overlay span {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.zbt .gal-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.zbt .gal-video:hover video {
  transform: scale(1.06);
}

.zbt .gal-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.zbt .gal-video-play svg {
  width: 22px;
  height: 22px;
  padding: 15px 13px 15px 17px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  box-sizing: content-box;
  transition: transform 0.3s ease, background 0.3s ease;
}

.zbt .gal-video:hover .gal-video-play svg {
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.6);
}

/* ──────────────── LOCATION ──────────────── */
.zbt .location {
  padding: var(--zbt-section-padding);
  background: var(--zbt-accent);
}

.zbt .loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.zbt .location .section-label {
  color: var(--zbt-accent-light);
}

.zbt .location .section-title {
  color: #F5F0E8;
}

.zbt .location-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 22px;
}

.zbt .location-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.zbt .location-item {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zbt .location-item-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.zbt .location-item-dist {
  font-size: 12px;
  color: var(--zbt-accent-light);
  font-weight: 500;
  font-family: var(--zbt-font-mono);
}

.zbt .location-highlights {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.zbt .location-highlight {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(217, 194, 145, 0.1);
  border-radius: var(--zbt-radius-xl);
  padding: 6px 14px;
  border: 1px solid rgba(217, 194, 145, 0.15);
}

.zbt .location-highlight svg {
  width: 14px;
  height: 14px;
  color: var(--zbt-accent-light);
  stroke-width: 2;
}

.zbt .location-highlight span {
  font-size: 11px;
  font-weight: 600;
  color: var(--zbt-accent-light);
}

.zbt .location-image {
  border-radius: var(--zbt-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(217, 194, 145, 0.1);
}

.zbt .location-image .lazy-img {
  width: 100%;
  height: 400px;
}

/* ──────────────── LIMOUSINE ──────────────── */
.zbt .limousine {
  padding: 48px var(--zbt-section-padding-x);
  background: linear-gradient(135deg, #F5F0E8 0%, #EDE6D8 100%);
  border-top: 1px solid rgba(217, 194, 145, 0.15);
  border-bottom: 1px solid rgba(217, 194, 145, 0.15);
}

.zbt .limo-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.zbt .limo-grid h3 {
  font-family: var(--zbt-font-heading);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 300;
  color: var(--zbt-accent);
  margin: 0 0 6px;
}

.zbt .limo-grid h3 span {
  color: var(--zbt-accent-light);
}

.zbt .limo-grid p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--zbt-text-body);
  margin: 0;
}

.zbt .limo-cta {
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  background: var(--zbt-accent);
  color: #F5F0E8;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--zbt-font-body);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.zbt .limo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(133, 108, 78, 0.2);
}

/* ──────────────── REVIEWS ──────────────── */
.zbt .reviews {
  padding: var(--zbt-section-padding);
  background: var(--zbt-bg-primary);
}

.zbt .rev-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.zbt .rev-card {
  background: var(--zbt-white);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(133, 108, 78, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.zbt .rev-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(133, 108, 78, 0.06);
}

.zbt .rev-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}

.zbt .rev-stars span {
  color: #F59E0B;
  font-size: 14px;
}

.zbt .rev-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--zbt-text-body);
  margin: 0 0 14px;
  font-style: italic;
}

.zbt .rev-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.zbt .rev-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--zbt-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zbt-accent-light);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--zbt-font-heading);
}

.zbt .rev-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--zbt-text-primary);
}

.zbt .rev-source {
  font-size: 10.5px;
  color: var(--zbt-text-muted);
}

/* ──────────────── DEVELOPER ──────────────── */
.zbt .developer {
  padding: var(--zbt-section-padding);
  background: var(--zbt-bg-secondary);
}

.zbt .cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.zbt .cred-card {
  background: var(--zbt-white);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(133, 108, 78, 0.04);
}

.zbt .cred-card-value {
  font-family: var(--zbt-font-heading);
  font-size: 32px;
  font-weight: 400;
  color: var(--zbt-accent);
  margin-bottom: 4px;
}

.zbt .cred-card-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--zbt-text-primary);
  margin-bottom: 6px;
}

.zbt .cred-card-desc {
  font-size: 12px;
  color: var(--zbt-text-muted);
}

.zbt .construction-img {
  margin-top: 28px;
  border-radius: var(--zbt-radius-lg);
  overflow: hidden;
  position: relative;
}

.zbt .construction-img .lazy-img {
  width: 100%;
  height: 320px;
}

.zbt .construction-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 20, 10, 0.85) 0%, rgba(30, 20, 10, 0.5) 30%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.zbt .construction-overlay-label {
  color: var(--zbt-accent-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.zbt .construction-overlay-title {
  color: #fff;
  font-size: 18px;
  font-family: var(--zbt-font-heading);
  font-weight: 300;
}

/* ──────────────── FAQ ──────────────── */
.zbt .faq {
  padding: var(--zbt-section-padding);
  background: var(--zbt-bg-primary);
}

.zbt .faq .container {
  max-width: 720px;
}

.zbt .faq-item {
  border-radius: 14px;
  border: 1px solid var(--zbt-border-light);
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  margin-bottom: 6px;
  box-shadow: none;
  transition: all 0.3s;
}

.zbt .faq-item.active {
  border-color: var(--zbt-border-medium);
  background: var(--zbt-white);
  box-shadow: 0 4px 16px rgba(133, 108, 78, 0.06);
}

.zbt .faq-question {
  width: 100%;
  padding: 18px 22px;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--zbt-font-body);
  text-align: left;
  transition: background 0.2s;
}

.zbt .faq-question:hover {
  background: rgba(133, 108, 78, 0.03);
}

.zbt .faq-question span:first-child {
  font-size: 15px;
  font-weight: 500;
  color: var(--zbt-text-primary);
  padding-right: 14px;
}

.zbt .faq-toggle {
  font-size: 20px;
  color: var(--zbt-accent-light);
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
  font-weight: 300;
}

.zbt .faq-item.active .faq-toggle {
  color: var(--zbt-accent);
  transform: rotate(45deg);
}

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

.zbt .faq-item.active .faq-answer {
  max-height: 200px;
}

.zbt .faq-answer-inner {
  padding: 0 22px 18px;
  border-top: 1px solid var(--zbt-border-light);
}

.zbt .faq-answer-inner p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--zbt-text-body);
  margin: 14px 0 0;
}

/* ──────────────── CONTACT CTA ──────────────── */
.zbt .contact-cta {
  padding: var(--zbt-section-padding);
  background: linear-gradient(165deg, #856C4E 0%, #6B563E 100%);
  position: relative;
  overflow: hidden;
}

.zbt .contact-orb {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 194, 145, 0.06) 0%, transparent 70%);
}

.zbt .contact-inner {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.zbt .contact-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.zbt .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  animation: zbt-pulse 2s infinite;
}

.zbt .contact-cta .section-title {
  color: #F5F0E8;
  margin-bottom: 8px;
}

.zbt .contact-cta .section-subtitle {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}

/* ──────────────── LEAD FORM ──────────────── */
.zbt .lead-form {
  border-radius: var(--zbt-radius-xl);
  padding: 30px 26px;
  backdrop-filter: blur(20px);
  text-align: left;
}

.zbt .lead-form[data-variant="light"] {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(133, 108, 78, 0.1);
}

.zbt .lead-form[data-variant="dark"] {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(217, 194, 145, 0.35);
}

.zbt .lead-form h3 {
  font-family: var(--zbt-font-heading);
  font-size: 21px;
  font-weight: 300;
  margin: 0 0 4px;
}

.zbt .lead-form[data-variant="light"] h3 {
  color: var(--zbt-accent);
}

.zbt .lead-form[data-variant="dark"] h3 {
  color: #fff;
}

.zbt .form-subtitle {
  font-size: 11px;
  margin: 0 0 18px;
  line-height: 1.5;
}

.zbt .lead-form[data-variant="light"] .form-subtitle {
  color: var(--zbt-text-muted);
}

.zbt .lead-form[data-variant="dark"] .form-subtitle {
  color: #d5d0c0;
}

.zbt .form-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zbt .form-fields select,
.zbt .form-fields input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--zbt-font-body);
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.4;
  height: auto;
}

.zbt .lead-form[data-variant="light"] .form-fields select,
.zbt .lead-form[data-variant="light"] .form-fields input {
  background: rgba(133, 108, 78, 0.035);
  border: 1px solid rgba(133, 108, 78, 0.14);
  color: var(--zbt-text-primary);
}

.zbt .lead-form[data-variant="dark"] .form-fields select,
.zbt .lead-form[data-variant="dark"] .form-fields input {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.zbt .lead-form[data-variant="dark"] .form-fields input::placeholder,
.zbt .lead-form[data-variant="dark"] .form-fields select {
  color: rgba(255, 255, 255, 0.7);
}

.zbt .lead-form .form-fields select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%238A8A7A' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.zbt .lead-form .field-error {
  border-color: rgba(239, 68, 68, 0.6) !important;
}

.zbt .agent-label {
  font-size: 12px;
  margin-bottom: 6px;
}

.zbt .lead-form[data-variant="light"] .agent-label {
  color: var(--zbt-text-muted);
}

.zbt .lead-form[data-variant="dark"] .agent-label {
  color: #d5d0c0;
}

.zbt .agent-options {
  display: flex;
  gap: 8px;
}

.zbt .agent-btn {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--zbt-font-body);
  transition: all 0.2s;
}

.zbt .lead-form[data-variant="light"] .agent-btn {
  background: rgba(133, 108, 78, 0.035);
  border: 1px solid rgba(133, 108, 78, 0.14);
  color: var(--zbt-text-muted);
}

.zbt .lead-form[data-variant="light"] .agent-btn.selected {
  border-color: var(--zbt-accent);
  background: rgba(133, 108, 78, 0.06);
  color: var(--zbt-text-primary);
  font-weight: 600;
}

.zbt .lead-form[data-variant="dark"] .agent-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.7);
}

.zbt .lead-form[data-variant="dark"] .agent-btn.selected {
  border-color: var(--zbt-accent-light);
  background: rgba(217, 194, 145, 0.15);
  color: #fff;
  font-weight: 600;
}

.zbt .form-error-msg {
  color: #ef4444;
  font-size: 12px;
  margin: 2px 0 0;
  text-align: center;
  display: none;
}

.zbt .form-error-msg.visible {
  display: block;
}

.zbt .form-submit {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--zbt-font-body);
  cursor: pointer;
  letter-spacing: 0.4px;
  transition: transform 0.2s, box-shadow 0.2s;
  line-height: 1;
}

.zbt .lead-form[data-variant="light"] .form-submit {
  background: var(--zbt-accent);
  color: #F5F0E8;
}

.zbt .lead-form[data-variant="dark"] .form-submit {
  background: var(--zbt-accent-light);
  color: #3A2A1A;
}

.zbt .form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.zbt .form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.zbt .form-note {
  font-size: 11px;
  margin: 10px 0 0;
  text-align: center;
}

.zbt .lead-form[data-variant="light"] .form-note {
  color: var(--zbt-text-muted);
}

.zbt .lead-form[data-variant="dark"] .form-note {
  color: #d5d0c0;
}

.zbt .form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.zbt .form-success.visible {
  display: block;
}

.zbt .form-success h3 {
  font-family: var(--zbt-font-heading);
  font-size: 24px;
  font-weight: 300;
  color: var(--zbt-accent);
  margin: 0 0 8px;
}

.zbt .form-success p {
  color: var(--zbt-text-muted);
  font-size: 14px;
  margin: 0;
}

/* ──────────────── INTL-TEL-INPUT OVERRIDES ──────────────── */
.zbt .iti { width: 100%; }

.zbt .iti .iti__selected-country {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 0px 0px 0px;
  border-radius: 10px 0 0 10px;
}

.zbt .iti .iti__selected-country:hover,
.zbt .iti .iti__selected-country:focus {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.zbt .iti .iti__selected-dial-code {
  font-size: 14px;
  font-family: var(--zbt-font-body);
}

.zbt .iti__selected-country-primary {
  padding: 0 var(--iti-arrow-padding) 0 var(--iti-spacer-horizontal) !important;
  gap: 5px;
}

.zbt .iti__selected-country-primary:hover {
  border-radius: 10px;
  background-color: none !important;
}

.zbt .iti__selected-country-primary:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background-color: none !important;
}

.zbt .lead-form[data-variant="light"] .iti .iti__selected-dial-code { color: var(--zbt-text-muted); }
.zbt .lead-form[data-variant="light"] .iti .iti__arrow {
  border-top-color: var(--zbt-text-muted);
}

.zbt .lead-form[data-variant="dark"] .iti .iti__selected-dial-code { color: rgba(255,255,255,0.65); }
.zbt .lead-form[data-variant="dark"] .iti .iti__arrow {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.4);
  margin-left: 4px;
}

.zbt .iti .iti__dropdown-content {
  border-radius: 10px !important;
  border: 1px solid rgba(133,108,78,0.12) !important;
  overflow: hidden;
  margin-top: 4px;
  background: #f7f4ef !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
}

.zbt .iti .iti__search-input {
  background: #f7f4ef !important;
  border: none !important;
  border-bottom: 1px solid rgba(133,108,78,0.08) !important;
  outline: none !important;
  box-shadow: none !important;
  color: var(--zbt-text-primary) !important;
  font-family: var(--zbt-font-body);
  font-size: 13px;
  padding: 10px 12px;
}

.zbt .iti .iti__search-input:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  border-bottom: 1px solid rgba(133,108,78,0.08) !important;
}

.zbt .iti .iti__search-input::placeholder { color: var(--zbt-text-muted) !important; }

.zbt .iti .iti__country-list {
  background: #f7f4ef !important;
  scrollbar-width: thin;
}

.zbt .iti .iti__country {
  padding: 8px 12px !important;
  font-size: 13px;
  font-family: var(--zbt-font-body);
  color: var(--zbt-text-primary) !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
}

.zbt .iti .iti__country:hover,
.zbt .iti .iti__country--highlight {
  background: rgba(133,108,78,0.06) !important;
}

.zbt .iti .iti__divider { border-bottom: 1px solid rgba(133,108,78,0.08) !important; margin: 0 !important; padding: 0 !important; }

.zbt .iti .iti__dial-code { color: var(--zbt-text-muted) !important; }

.zbt .lead-form[data-variant="dark"] .iti .iti__dropdown-content {
  border-color: rgba(255,255,255,0.15) !important;
  background: #2a2418 !important;
}

.zbt .lead-form[data-variant="dark"] .iti .iti__search-input {
  background: #33291d !important;
  border-bottom-color: rgba(255,255,255,0.1) !important;
  color: #fff !important;
}

.zbt .lead-form[data-variant="dark"] .iti .iti__search-input::placeholder { color: rgba(255,255,255,0.4) !important; }

.zbt .lead-form[data-variant="dark"] .iti .iti__country-list { background: #2a2418 !important; }

.zbt .lead-form[data-variant="dark"] .iti .iti__country { color: rgba(255,255,255,0.75) !important; }

.zbt .lead-form[data-variant="dark"] .iti .iti__country:hover,
.zbt .lead-form[data-variant="dark"] .iti .iti__country--highlight {
  background: rgba(217,194,145,0.15) !important;
  color: #fff !important;
}

.zbt .lead-form[data-variant="dark"] .iti .iti__dial-code { color: rgba(255,255,255,0.4) !important; }

.grecaptcha-badge { visibility: hidden !important; }

/* ──────────────── WHATSAPP FAB ──────────────── */
.zbt .wa-fab {
  position: fixed;
  bottom: 76px;
  right: 20px;
  z-index: 997;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.zbt .wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.zbt .wa-fab svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ──────────────── STICKY MOBILE CTA ──────────────── */
.zbt .sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(133, 108, 78, 0.95);
  backdrop-filter: blur(12px);
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
  border-top: 1px solid rgba(217, 194, 145, 0.15);
}

.zbt .sticky-mobile-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

.zbt .sticky-cta-info .price {
  color: #F5F0E8;
  font-size: 13px;
  font-weight: 600;
}

.zbt .sticky-cta-info .sold-tag {
  color: var(--zbt-accent-light);
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
}

.zbt .sticky-cta-info .roi {
  color: var(--zbt-accent-light);
  font-size: 11px;
}

.zbt .sticky-cta-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  background: var(--zbt-accent-light);
  color: var(--zbt-accent);
  font-size: 13px;
  font-weight: 400;
  font-family: var(--zbt-font-body);
  cursor: pointer;
}

/* ──────────────── LIGHTBOX ──────────────── */
.zbt .lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.zbt .lightbox.active {
  display: flex;
}

.zbt .lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
}

.zbt .lightbox-prev,
.zbt .lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}

.zbt .lightbox-prev:hover,
.zbt .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.zbt .lightbox-prev {
  left: 16px;
}

.zbt .lightbox-next {
  right: 16px;
}

.zbt .lightbox img,
.zbt .lightbox video {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--zbt-radius-sm);
  cursor: default;
}

.zbt .lightbox-caption {
  position: absolute;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-family: var(--zbt-font-body);
}

/* ──────────────── ANIMATIONS ──────────────── */
@keyframes zbt-fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zbt-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* ──────────────── RESPONSIVE ──────────────── */
@media (max-width: 860px) {
  .zbt .nav-links { display: none !important; }
  .zbt .mobile-toggle { display: flex !important; }
  .zbt .hero-bg { display: none !important; }
  .zbt .hero-thumbs { display: none !important; }
  .zbt .hero-form-desktop { display: none !important; }
  .zbt .hero-form-mobile { display: block !important; }
  .zbt .hero-grid { grid-template-columns: 1fr !important; }
  .zbt .hero-stats { grid-template-columns: 1fr 1fr !important; gap: 14px 18px !important; }
  .zbt .hero-thumbs { gap: 6px !important; }
  .zbt .hero-thumb { width: 48px !important; height: 34px !important; }
  .zbt .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .zbt .inv-grid { grid-template-columns: 1fr !important; }
  .zbt .inv-cards { grid-template-columns: 1fr 1fr !important; }
  .zbt .timeline { flex-direction: column !important; align-items: center !important; gap: 8px !important; }
  .zbt .timeline-step { flex: none !important; width: 100% !important; }
  .zbt .timeline-line { display: none !important; }
  .zbt .eco-grid { grid-template-columns: 1fr 1fr !important; }
  .zbt .fac-grid { grid-template-columns: 1fr !important; }
  .zbt .units-grid { grid-template-columns: 1fr !important; }
  .zbt .floor-plans { grid-template-columns: 1fr !important; }
  .zbt .gal-grid { grid-template-columns: 1fr 1fr !important; }
  .zbt .loc-grid { grid-template-columns: 1fr !important; }
  .zbt .rev-grid { grid-template-columns: 1fr !important; }
  .zbt .cred-grid { grid-template-columns: 1fr !important; }
  .zbt .limo-grid { grid-template-columns: 1fr !important; text-align: center; justify-items: center; }
  .zbt .badge-grid { grid-template-columns: repeat(6, 1fr) !important; }
  .zbt .badge-grid .badge-card:nth-child(1) { grid-column: 1 / 3; }
  .zbt .badge-grid .badge-card:nth-child(2) { grid-column: 3 / 5; }
  .zbt .badge-grid .badge-card:nth-child(3) { grid-column: 5 / 7; }
  .zbt .badge-grid .badge-card:nth-child(4) { grid-column: 1 / 4; }
  .zbt .badge-grid .badge-card:nth-child(5) { grid-column: 4 / 7; }
  .zbt .eco-features { display: grid !important; grid-template-columns: 1fr 1fr !important; max-width: 480px !important; margin: 0 auto !important; gap: 10px 0 !important; }
  .zbt .eco-features .eco-feature { padding-left: 20px; }
  .zbt .location-list { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .zbt .badge-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .zbt .badge-grid .badge-card:nth-child(1) { grid-column: 1 / 3; }
  .zbt .badge-grid .badge-card:nth-child(2) { grid-column: 3 / 5; }
  .zbt .badge-grid .badge-card:nth-child(3) { grid-column: 1 / 3; }
  .zbt .badge-grid .badge-card:nth-child(4) { grid-column: 3 / 5; }
  .zbt .badge-grid .badge-card:nth-child(5) { grid-column: 2 / 4; }
  .zbt .eco-grid { grid-template-columns: 1fr !important; }
  .zbt .inv-cards { grid-template-columns: 1fr !important; }
}

@media (min-width: 861px) {
  .zbt .mobile-toggle { display: none !important; }
  .zbt .hero-form-mobile { display: none !important; }
}
