:root {
  --bg-color: #ffffff;
  --text-color: #202020;
  --text-muted: rgba(32, 32, 32, 0.7);
  --accent-color: #DDC88C;
  --section-bg: #f8f9fa;
  --card-bg: #ffffff;
  --border-color: rgba(32, 32, 32, 0.1);
  --nav-bg: #202020;
  --footer-bg: #202020;
  --inverse-text: #ffffff;
  --glass-bg: rgba(32, 32, 32, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #121212;
    --text-color: #f0f0f0;
    --text-muted: rgba(240, 240, 240, 0.7);
    --section-bg: #1a1a1a;
    --card-bg: #242424;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(18, 18, 18, 0.7);
  }
}

body {
  font-family: 'DM Sans', 'Poppins', Arial, sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Accessibility: Focus Visible */
*:focus-visible {
  outline: 3px solid var(--accent-color) !important;
  outline-offset: 2px !important;
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Fluid Typography (2026 Standard) */
h1, .display-5 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem) !important;
}
h2, .section-title {
  font-size: clamp(2rem, 4vw + 1rem, 3rem) !important;
}
.overview-title {
  font-size: clamp(1.8rem, 3vw + 1rem, 2.4rem);
  letter-spacing: 5px;
}
.overview-address {
  font-size: clamp(1.2rem, 2vw + 0.5rem, 1.4rem);
}
p {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
}

.fw-black {
  font-weight: 900 !important;
}

.btn-link {
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem; /* 14px */
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 2px; /* 2026 readability standard */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px; /* 2026 Touch Target Standard */
  padding: 12px 24px;
  background: transparent !important;
  border: none !important;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-link:hover {
  color: var(--accent-color);
  text-decoration: none;
  opacity: 0.8;
  transform: translateX(4px); /* Functional motion */
}

/* Removed legacy fixed-size ID selectors that break fluid typography */
#overview h2 {
  font-family: 'Poppins', sans-serif;
}

#overview .row span {
  font-family: "DM Sans", sans-serif;
}

#overview .row p {
  font-family: "DM Sans", sans-serif;
}

#features span {
  font-family: 'DM Sans', sans-serif;
}

#video, #gallery {
  background: var(--nav-bg) !important;
}
#video h2, #video h5, #video p, #gallery h2 {
  color: var(--inverse-text) !important;
}

#gallery {
  padding-bottom: 6rem !important;
}
#gallery h2 {
  font-family: 'Poppins', sans-serif;
}

#contact {
  padding-left: 2rem;
  padding-right: 2rem;
}
#contact h2 {
  font-family: 'Poppins', sans-serif;
}

.contact-form label {
  font-family: 'Poppins', sans-serif;
}

.contact-form .form-control {
  font-family: 'DM Sans', sans-serif;
}

.contact-form .btn-submit {
  font-family: 'DM Sans', sans-serif;
}

footer h4, footer h5, footer h6 {
  font-family: 'Poppins', sans-serif;
}

footer p, footer span, footer a {
  font-family: 'DM Sans', sans-serif;
}

/* Bento Grid System for Features (2026 Trend) */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
  }
  .bento-item:nth-child(1) {
    grid-column: span 2;
  }
  .bento-item:nth-child(2) {
    grid-column: span 1;
  }
  .bento-item:nth-child(3) {
    grid-column: span 3;
  }
}

.bento-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.bento-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem); /* Fluid typography */
  margin-bottom: 1.5rem;
  color: var(--text-color);
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.bento-item ul li {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem); /* Fluid typography */
  line-height: 1.6;
}

.bento-item ul li .feature-check {
  margin-top: 0.15rem; /* Pixel-perfect vertical alignment with the first line of text */
}

/* 2026 Nested Grid for Full-Width Bento Items */
.bento-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 2rem;
}
@media (min-width: 768px) {
  .bento-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .bento-list-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Container Queries for Info Card */
.info-container {
  container-type: inline-size;
  container-name: infocard;
  width: 100%;
}

@container infocard (max-width: 400px) {
  .info {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .info .avatar {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .info .info-details {
    width: 100%;
  }
}
.overview-title {
  font-size: clamp(1.8rem, 3vw + 1rem, 2.4rem);
  letter-spacing: 2px; /* 2026 readability standard */
}

.overview-address {
  font-size: clamp(1.2rem, 2vw + 0.5rem, 1.4rem);
  font-family: 'Poppins', sans-serif;
}

.overview-location {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  opacity: 0.8;
}

.overview-cta {
  padding-bottom: 3.4rem;
}

.overview-description {
  padding: 0;
}

.overview-description p {
  font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.25rem); /* Slightly larger than body text for readability */
  line-height: 1.8;
  color: var(--text-color);
  opacity: 0.9;
}

.lifestyle-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
}

.lifestyle-description {
  font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: 1.8;
}

.media-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 500;
  letter-spacing: 1px;
}

.media-description {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  opacity: 0.8;
}

.overview-data-label {
  font-size: 0.875rem; /* 14px */
  font-weight: 600;
  letter-spacing: 2px; /* 2026 readability standard */
  color: var(--text-color);
  opacity: 0.6; /* Increased contrast separation */
  display: block;
  margin-bottom: 0.5rem;
}

.overview-data-value {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem); /* Adjusted minimum size to prevent wrapping on tiny screens */
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  margin: 0;
  white-space: nowrap; /* Prevent awkward wrapping */
}

/* Landing section styles */
.landing-for-sale {
  font-size: 0.8rem;
}

.landing-cta {
  font-size: 1.2rem;
}

/* Landing overlay styles */
.landing-overlay {
  width: 100vw;
  max-width: 100vw;
  padding: 0 20px;
  box-sizing: border-box;
}

.landing-overlay h1 {
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  hyphens: auto;
}

/* Infobox styles */
.infobox-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  padding-left: 5px;
  color: rgba(255,255,255,0.85);
  display: block;
}

/* Navbar styles */
.navbar-toggler {
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-custom {
  transform: translateY(-100%);
  height: 85px;
  background: var(--glass-bg) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-custom.is-visible {
  transform: translateY(0);
}

.bg-image {
  background: url('https://res.cloudinary.com/wwhby1qe/image/upload/f_auto,q_auto,w_1920/v1782411754/bg_hldnbt.jpg') no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100dvh; /* 2026 Standard: dvh */
  z-index: 0;
  will-change: transform;
}
#landing {
  min-height: 100dvh; /* 2026 Standard: dvh */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
main {
  position: relative;
  z-index: 2;
  background: transparent;
}
#landing .overlay-content {
  z-index: 2;
  color: #fff;
  text-shadow: 0 10px 15px rgba(32,32,32,0.3);
  width: 100vw;
  max-width: 100vw;
  padding: 0 20px;
  box-sizing: border-box;
}
#landing .overlay-content h1 {
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  hyphens: auto;
}
#landing .price {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem); /* Fluid typography for price */
  font-weight: 500;
  color: #fff;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sell-type-pill {
  background: var(--accent-color);
  color: #202020;
  border-radius: 4px; /* Slight rounding for modern feel */
  font-size: 0.875rem; /* 14px minimum for readability */
  font-weight: 700;
  letter-spacing: 2px; /* Reduced tracking for better readability */
  padding: 4px 12px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  margin-left: 1rem;
}
.btn-style1 {
  background: transparent;
  color: var(--inverse-text);
  border: 2px solid var(--accent-color);
  border-radius: 4px; /* Slight rounding to match pill */
  font-size: 1.125rem; /* 18px */
  font-weight: 700;
  letter-spacing: 2px; /* Reduced tracking for better readability */
  padding: 0 32px;
  min-height: 56px; /* 2026 Touch Target Standard + */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-style1:hover, .btn-style1:focus {
  background: var(--accent-color);
  color: #202020;
  transform: translateY(-2px); /* Micro-interaction trend */
}
.infobox {
  min-height: 120px;
  background: var(--glass-bg); /* Glassmorphism 2.0 */
  backdrop-filter: blur(16px); /* Increased blur for smoother glass effect */
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1); /* Added subtle shadow for depth */
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1.5rem 0; /* Slightly more padding */
}
.infobox span {
  font-size: 0.875rem; /* 14px */
  font-weight: 600;
  letter-spacing: 2px; /* Reduced tracking */
  padding-left: 0; /* Removed unnecessary padding */
  color: rgba(255,255,255,0.7); /* Slightly muted for hierarchy */
  display: block;
  margin-bottom: 4px;
}
.infobox p {
  font-size: 1.25rem; /* 20px for better readability */
  font-weight: 700; /* Bolder to contrast with the label */
  color: #ffffff;
  margin: 0;
}
@media (max-width: 991px) {
  .infobox .col-md-3 {
    width: 50% !important;
    margin-bottom: 1rem;
  }
  .infobox {
    height: auto;
    flex-wrap: wrap;
    padding: 1rem 0;
  }
}
@media (max-width: 767px) {
  .infobox .col-6 {
    margin-bottom: 0.5rem;
  }
  .infobox {
    padding: 0.75rem 0;
  }
}
#mainMenu {
  background: transparent !important;
  height: 85px;
  z-index: 1000;
}

@media (max-width: 991px) {
  #mainMenu {
    height: auto;
    min-height: 85px;
  }
  #mainMenu .container-fluid {
    height: auto !important;
    min-height: 85px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  #mainMenu .navbar-brand {
    height: 85px !important;
  }
  #mainMenu .navbar-collapse {
    background: rgba(32, 32, 32, 0.95);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    margin-top: 0;
    padding: 1rem;
    border-radius: 0 0 12px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    width: 100%;
    flex-basis: 100%;
  }
  #mainMenu .navbar-nav {
    height: auto !important;
    padding-bottom: 1rem;
  }
  #mainMenu .navbar-nav .nav-link,
  #mainMenu .navbar-nav .btn-style1 {
    margin-left: 0;
    margin-bottom: 0.5rem;
    width: 100%;
    justify-content: flex-start;
  }
}

/* Light mode: dark frosted glass nav when scrolled so white links/toggler stay visible on white sections */
@media (prefers-color-scheme: light) {
  #mainMenu.navbar-custom.is-visible {
    background: rgba(32, 32, 32, 0.85) !important;
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
#mainMenu .navbar-nav .nav-link {
  color: var(--inverse-text) !important;
  opacity: 0.8;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; /* 16px */
  font-weight: 500;
  margin-left: 1.5rem;
  min-height: 48px; /* 2026 Touch Target Standard */
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
#mainMenu .navbar-nav .btn-style1 {
  margin-left: 1.5rem;
  min-height: 48px; /* 2026 Touch Target Standard */
  font-size: 0.875rem; /* 14px */
  font-weight: 700;
  padding: 0 24px;
  text-transform: uppercase;
  letter-spacing: 2px; /* Reduced tracking for readability */
}
#mainMenu .navbar-nav .nav-link:hover, #mainMenu .navbar-nav .nav-link.active {
  opacity: 1;
}
.feature-check {
  display: inline-block;
  width: 28px; /* Slightly refined size */
  height: 28px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #202020;
  text-align: center;
  line-height: 28px;
  margin-right: 1rem;
  position: relative;
  aspect-ratio: 1 / 1;
  flex-shrink: 0; /* Prevents squishing on mobile */
}
.feature-check:before {
  content: '\2713';
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--bg-color); /* Adapts to dark/light mode */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Arial", sans-serif !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.improvement-item {
  font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.25rem); /* Fluid typography */
  color: var(--text-color);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color) !important;
}
.improvement-item:last-child {
  border-bottom: none !important;
}
.contact-form {
  background: var(--card-bg) !important;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}
.contact-form .form-label {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem); /* Fluid typography */
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}
.contact-form .form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  min-height: 48px; /* 2026 Touch Target Standard */
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem); /* Fluid typography for inputs */
  color: var(--text-color);
  background: var(--bg-color);
  box-shadow: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form .form-control:focus {
  box-shadow: 0 0 0 3px rgba(221, 200, 140, 0.25);
  border-color: var(--accent-color);
}
.contact-form .btn-submit {
  color: var(--text-color);
  text-transform: uppercase;
  font-size: 14px;
  height: 55px;
  padding: 0 36px;
  font-weight: bold;
  letter-spacing: 5px;
  margin-top: 20px;
}
footer {
  background: var(--footer-bg) !important;
  color: var(--inverse-text);
  padding-top: 7rem;
  padding-bottom: 8rem;
}
.footer-logo span {
  font-size: 2rem;
  font-weight: bold;
}
.footer-agent-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem); /* Fluid typography */
  font-weight: 600;
  letter-spacing: 1px;
}
.footer-agent-price {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem); /* Fluid typography */
  font-weight: 400;
  padding: 2.5rem 0 2.5rem 0; /* Balanced padding */
  opacity: 0.9;
}
.footer-agent-contact {
  font-size: 1.1rem;
}
.website-url a {
  color: #DDC88C;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}
.website-url a:hover {
  text-decoration: underline;
}
.social-link a {
  color: #fff;
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: color 0.2s;
}
.social-link a:hover {
  color: #DDC88C;
}
.copyright-cont {
  color: #8D8D8D;
  font-size: 14px;
}
.gallery-thumb-wrapper {
  aspect-ratio: 4 / 3; /* Forces all thumbnails in the grid to be the same shape */
  width: 100%;
  overflow: hidden;
  border-radius: 8px; /* Moved rounding to the wrapper */
  background: var(--section-bg);
}

.gallery-thumb {
  margin: 0 !important;
  transition: filter 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  width: 100%;
  height: 100%; /* Fill the wrapper */
  object-fit: cover; /* Center and crop to fill the aspect ratio */
}
.gallery-thumb:hover {
  filter: brightness(0.85);
  transform: scale(1.02); /* Functional motion */
}
#mapSec {
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
#mapSec .container-fluid {
  margin: 0 !important;
  padding: 0 !important;
}
.info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 0 0 2rem 0;
  padding: 2rem 2rem 2rem 2rem;
}
.info .avatar {
  width: 90px;
  height: 90px;
  overflow: hidden;
  border: 4px solid var(--accent-color); /* Thinner border for modern aesthetic */
  border-radius: 50%;
  margin-right: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-shrink: 0;
}
.info .info-details {
  width: calc(100% - 120px);
}
.info .info-details .name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.05rem, 1.5vw + 0.3rem, 1.25rem); /* Reduced to prevent wrapping with long names */
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 4px;
}
.info .info-details .email, 
.info .info-details .contact {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem); /* Fluid typography */
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 4px;
}
.info .info-details .website a .icon {
  font-size: 12px;
  margin-left: 3px;
}
@media (max-width: 767px) {
  footer {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
  .footer-agent-price {
    padding: 2rem 0 2rem 0; /* Balanced padding for mobile */
  }
  .info {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  #contact {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  #contact .info-container {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .contact-form {
    padding: 1.25rem 0.75rem;
  }
  .contact-form .cf-turnstile {
    max-width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
  }
  .contact-form .cf-turnstile > div {
    transform: scale(0.85);
    transform-origin: left center;
  }
  .contact-form .btn-submit {
    width: 100%;
  }
  #gallery {
    padding-bottom: 4rem !important;
  }
  .info .avatar {
    margin-right: 0;
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
  }
  .info .info-details {
    width: 100%;
  }
  .info .info-details .name {
    font-size: 18px;
  }
}

.section-title {
  letter-spacing: 5px;
}

@media (max-width: 767px) {
  .btn-style1 {
    padding: 0 20px;
    font-size: 1rem;
    letter-spacing: 3px;
    height: 50px;
  }
  .display-5 {
    font-size: 2.5rem;
  }
  .section-title, .overview-title {
    letter-spacing: 3px !important;
    font-size: 1.8rem !important;
  }
  .landing-overlay h1 {
    font-size: 2.2rem;
  }
  #landing {
    justify-content: center !important;
    align-items: center;
    padding-top: 85px; /* Account for navbar */
    padding-bottom: 150px; /* Account for infobox to optically center in remaining space */
  }
  #landing .overlay-content {
    margin-bottom: 0 !important;
    margin-top: 0;
  }
  #landing .overlay-content h1 {
    margin-bottom: 0.5rem;
  }
  #landing .price {
    margin-top: 0.75rem;
    margin-bottom: 1rem;
  }
  #landing .landing-cta {
    margin-bottom: 0.5rem;
  }
}

#overview {
  background: var(--bg-color) !important;
}
#improvements {
  background: var(--section-bg) !important;
}
#features {
  background: var(--bg-color) !important;
}
#lifestyle {
  background: var(--section-bg) !important;
}
#mapSec {
  background: var(--bg-color) !important;
}
.tc-secondary {
  color: var(--text-color) !important;
}
.text-muted {
  color: var(--text-muted) !important;
}
.bg-white, .bg-light {
  background-color: transparent !important;
}

.extra-field {
  position: absolute;
  left: -10000px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ==========================================================================
   MLS UNBRANDED MODE
   Hides all agent info, contact forms, and CTAs to comply with CREN rules
   ========================================================================== */
.unbranded-mls-mode #contact {
    display: none !important;
}

.unbranded-mls-mode .info-container {
    display: none !important;
}

.unbranded-mls-mode .footer-agent-contact {
    display: none !important;
}

/* Hide all "Request Viewing" buttons across the site */
.unbranded-mls-mode a[href="#contact"] {
    display: none !important;
}

/* Adjust layout if hiding the contact form leaves an empty column next to the map */
.unbranded-mls-mode #mapSec .col-lg-6 {
    width: 100% !important; 
} 