* {
  scroll-behavior: smooth !important;
}
.topbar .brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.topbar .brand-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  min-width: 0;
}

.topbar .brand-mark img {
  display: block;
  width: auto;
  height: auto;
  max-width: 150px;
  max-height: 42px;
  object-fit: contain;
}

.topbar .brand-mark small {
  display: block;
  margin-top: 6px;
  color: #c9c9c9;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar .logo {
  display: flex;
  align-items: center;
}

/* Refined location search */
.hero {
  position: relative;
  z-index: 10;
  overflow: visible;
}

.hero-inner {
  position: relative;
  z-index: 20;
}

.searchbar {
  position: relative;
  z-index: 100;
  overflow: visible;
}

.search-location.location-picker {
  position: relative;
  min-width: 0;
  z-index: 110;
}

.search-location input {
  width: 100%;
  min-width: 0;
  color: #222;
}

.search-location input::placeholder {
  color: #777;
}

.location-menu {
  top: calc(100% + 13px) !important;
  left: -18px !important;
  right: auto !important;
  width: 390px;
  max-width: min(390px, calc(100vw - 44px));
  max-height: 340px;
  padding: 8px;
  background: #fff;
  border: 1px solid #e7e5df !important;
  border-radius: 18px !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24) !important;
  overflow: auto;
}

.location-menu:before {
  content: "";
  display: block;
  padding: 8px 12px 7px;
  color: #888;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-option {
  min-height: 48px;
  border-radius: 11px !important;
  padding: 12px 13px !important;
  align-items: center !important;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.location-option:hover,
.location-option:focus {
  background: #f4f3ef !important;
  transform: translateX(2px);
}

.location-option span {
  font-size: 13px;
  color: #171717;
}

.location-option small {
  font-size: 10px;
  color: #8a8a8a;
  white-space: nowrap;
}

.location-option[data-location=""] {
  border-bottom: 1px solid #eceae5;
  border-radius: 0 0 10px 10px !important;
  margin-bottom: 5px;
  padding-bottom: 14px !important;
}

.location-empty {
  padding: 20px 14px !important;
}

/* Hide scrollbar chrome in admin sidebar while preserving wheel/touch scrolling */
.admin-nav {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.admin-nav::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

/* Lister portal */
body.lister-portal {
  background: #f3f2ed;
  color: #111;
}

.lister-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 0%, rgba(181, 154, 99, 0.1), transparent 28%),
    #f3f2ed;
}

.lister-top {
  height: 78px;
  background: #090909;
  color: #fff;
  border-bottom: 1px solid #262626;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 50;
}

.lister-top-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  text-decoration: none;
}

.lister-top-brand img {
  max-width: 125px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lister-top-brand strong {
  font:
    500 18px Georgia,
    serif;
  letter-spacing: 0.14em;
}

.lister-top-brand small {
  display: block;
  color: #aaa;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

.lister-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lister-top-actions a {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  padding: 10px 14px;
  border: 1px solid #3b3b3b;
  border-radius: 4px;
}

.lister-top-actions a.primary {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.lister-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 58px 28px 90px;
}

.lister-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
  margin-bottom: 34px;
}

.lister-intro .eyebrow {
  color: #8a7650;
}

.lister-intro h1 {
  font:
    400 46px Georgia,
    serif;
  letter-spacing: -0.03em;
  margin: 7px 0 12px;
}

.lister-intro p {
  max-width: 680px;
  color: #686761;
  line-height: 1.65;
  margin: 0;
}

.lister-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lister-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.04em;
  border-radius: 3px;
}

.lister-btn.light {
  background: #fff;
  color: #111;
  border-color: #d5d3cc;
}

.lister-btn.gold {
  background: #b67928;
  border-color: #b67928;
}

.lister-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.lister-stat {
  background: #fff;
  border: 1px solid #dfddd6;
  padding: 23px 22px;
  min-height: 118px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.035);
}

.lister-stat span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 9px;
  color: #85837c;
  margin-bottom: 10px;
}

.lister-stat strong {
  font:
    400 30px Georgia,
    serif;
}

.lister-panel {
  background: #fff;
  border: 1px solid #dfddd6;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.045);
  padding: 25px;
}

.lister-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #e7e5df;
  padding-bottom: 18px;
  margin-bottom: 4px;
}

.lister-panel-head h2 {
  font:
    400 24px Georgia,
    serif;
  margin: 0 0 5px;
}

.lister-panel-head p {
  font-size: 11px;
  color: #777;
  margin: 0;
}

.lister-table {
  width: 100%;
  border-collapse: collapse;
}

.lister-table th {
  font-size: 9px;
  color: #89877f;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: left;
  padding: 15px 10px;
  border-bottom: 1px solid #ddd;
}

.lister-table td {
  font-size: 12px;
  padding: 17px 10px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.lister-table tr:last-child td {
  border-bottom: 0;
}

.lister-title {
  font-weight: 600;
  color: #222;
}

.lister-location {
  color: #777;
}

.lister-empty {
  padding: 45px 20px;
  text-align: center;
  color: #777;
  font-size: 12px;
}

.lister-empty strong {
  display: block;
  font:
    400 25px Georgia,
    serif;
  color: #222;
  margin-bottom: 8px;
}

.lister-tip {
  margin-top: 18px;
  background: #111;
  color: #fff;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.lister-tip strong {
  font:
    400 17px Georgia,
    serif;
}

.lister-tip span {
  color: #aaa;
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .lister-intro {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .lister-top-actions a:not(.primary) {
    display: none;
  }
}

@media (max-width: 600px) {
  .topbar .brand-mark img {
    max-width: 120px;
    max-height: 36px;
  }

  .location-menu {
    left: -8px !important;
    width: 330px;
  }

  .searchbar {
    z-index: 100;
  }

  .lister-wrap {
    padding: 38px 16px 60px;
  }

  .lister-intro h1 {
    font-size: 36px;
  }

  .lister-stats {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .lister-stat {
    padding: 17px 15px;
  }

  .lister-panel {
    padding: 15px;
    overflow: hidden;
  }

  .lister-table {
    min-width: 650px;
  }

  .lister-panel {
    overflow-x: auto;
  }

  .lister-tip {
    align-items: flex-start;
    flex-direction: column;
  }
}

.location-menu:before {
  content: "Choose an area or development";
}

@media (max-width: 550px) {
  .location-menu {
    max-width: calc(100vw - 40px);
    width: 330px;
  }
}

/* Marketplace property picker */
.location-menu {
  width: 460px !important;
  max-width: min(460px, calc(100vw - 44px));
  padding: 10px !important;
}

.location-option.property-option {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 4px !important;
  text-align: left !important;
  padding: 13px 14px !important;
  min-height: 64px !important;
}

.location-option.property-option span {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-size: 13px;
  color: #111;
}

.location-option.property-option span strong {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.location-option.property-option span em {
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-left: auto;
  flex: none;
}

.location-option.property-option small {
  display: block !important;
  width: 100%;
  font-size: 10px !important;
  color: #777 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.location-option.location-all {
  margin-bottom: 7px !important;
  border-bottom: 1px solid #e9e6df !important;
  border-radius: 10px !important;
  background: #faf9f6 !important;
}

.location-empty {
  font-size: 12px !important;
  color: #555 !important;
  line-height: 1.6;
}

/* V8 — clean marketplace property picker */
.topbar .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.topbar .brand-mark {
  align-items: center;
  text-align: center;
}

.topbar .brand-mark img {
  max-width: 112px;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.topbar .brand-mark small {
  width: 100%;
  text-align: center;
  margin-top: 5px;
  line-height: 1.15;
}

.searchbar {
  position: relative;
  z-index: 100;
}

.search-location.location-picker {
  z-index: 111;
}

.location-menu {
  display: none;
  position: absolute !important;
  top: calc(100% + 12px) !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%);
  width: min(705px, calc(100vw - 32px)) !important;
  max-width: none !important;
  max-height: 460px !important;
  overflow: hidden !important;
  padding: 0 !important;
  background: #fff !important;
  border: 1px solid #e5e2db !important;
  border-radius: 22px !important;
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.28) !important;
  color: #111;
}

.location-picker.open + .location-menu {
  display: block;
}

.location-menu:before {
  display: none !important;
  content: none !important;
}

.location-menu-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid #ece9e3;
  background: linear-gradient(180deg, #fff, #fbfaf8);
}

.location-menu-head div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.location-menu-head span {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 9px;
  color: #918c82;
  font-weight: 600;
}

.location-menu-head strong {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.location-menu-head > small {
  font-size: 10px;
  color: #777;
  white-space: nowrap;
  padding-bottom: 2px;
}

.location-list {
  max-height: 370px;
  overflow-y: auto;
  padding: 8px;
}

.location-list::-webkit-scrollbar {
  width: 5px;
}

.location-list::-webkit-scrollbar-thumb {
  background: #d1cec7;
  border-radius: 10px;
}

.location-list {
  scrollbar-width: thin;
  scrollbar-color: #d1cec7 transparent;
}

.location-option {
  width: 100%;
  min-height: 66px !important;
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center !important;
  gap: 13px !important;
  padding: 11px 12px !important;
  margin: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #efede8 !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: #111 !important;
  text-align: left !important;
  cursor: pointer;
}

.location-option:last-child {
  border-bottom: 0 !important;
}

.location-option:hover,
.location-option:focus {
  background: #f7f5f1 !important;
  transform: none !important;
  outline: none;
}

.location-option-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd9d0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 17px;
  color: #222;
}

.location-option-copy {
  min-width: 0;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 4px !important;
}

.location-option-copy strong {
  font-size: 13px !important;
  font-weight: 500 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.location-option-copy small {
  display: block !important;
  color: #858078 !important;
  font-size: 10px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.location-option-arrow {
  font-size: 17px;
  color: #777;
  padding: 0 5px;
}

.location-all {
  background: #f8f6f1 !important;
  border: 1px solid #e5e0d6 !important;
  margin-bottom: 7px !important;
}

.property-option {
  grid-template-columns: 52px minmax(0, 1fr) minmax(110px, auto) !important;
}

.property-thumb {
  width: 52px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: #eeeae2;
  display: block;
}

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

.property-thumb i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e9e4da, #c9c0af);
}

.property-meta {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 4px !important;
  min-width: 110px;
}

.property-meta em {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 8px;
  color: #928d84;
}

.property-meta b {
  font-size: 11px;
  font-weight: 500;
  color: #171717;
  white-space: nowrap;
}

.location-empty {
  padding: 34px 22px !important;
  text-align: center;
  background: #faf9f7;
  margin: 0 !important;
  color: #777 !important;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.location-empty strong {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: #222;
}

.location-empty span {
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 750px) {
  .location-menu {
    width: calc(100vw - 28px) !important;
  }

  .location-menu-head {
    padding: 17px;
  }

  .location-list {
    max-height: 330px;
  }

  .property-option {
    grid-template-columns: 48px minmax(0, 1fr) !important;
  }

  .property-meta {
    display: none !important;
  }
}

/* V9 marketplace refinements */
.topbar .brand-mark img,
.portal-nav .brand-mark img,
.lister-top-brand img,
.admin-brand img {
  filter: brightness(0) invert(1);
}

.topbar .brand-mark,
.topbar .brand-mark small,
.portal-nav .brand-mark,
.portal-nav .brand-mark small {
  text-align: center;
  align-items: center;
}

.topbar .brand-mark small {
  width: 100%;
}

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

.service-grid .mini-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.service-grid .mini-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.dd-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 20px;
}

.dd-head h2 {
  margin: 5px 0 0;
}

.dd-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 24px;
}

.dd-grid .checkrow {
  height: 100%;
}

.main-mobile-nav {
  display: none;
}

.card-action {
  border: 1px solid #777;
  padding: 8px 12px;
  border-radius: 7px;
  color: #051840;
  text-decoration: none;
  font-size: 11px;
}

.editor-card .pic {
  position: relative;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 13px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
  font-size: 10px;
  z-index: 2;
}

.editor-empty {
  grid-column: 1/-1;
  padding: 50px;
  text-align: center;
  border: 1px dashed #444;
  color: #999;
}

.listing-gallery-stage {
  position: relative;
  background: #111;
}

.listing-gallery-stage > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.listing-gallery-stage button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
}

.listing-gallery-stage #lgPrev {
  left: 18px;
}

.listing-gallery-stage #lgNext {
  right: 18px;
}

.listing-gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  padding: 45px 20px 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  font-size: 12px;
}

.review-sub {
  color: #777;
  font-size: 12px;
}

.review-slider {
  max-width: 760px;
  margin: auto;
  min-height: 170px;
  position: relative;
}

.review-slide {
  display: none;
}

.review-slide.active {
  display: block;
}

.review-stars {
  letter-spacing: 3px;
  font-size: 13px;
}

.review-slide blockquote {
  margin-top: 18px;
}

.review-dots button {
  border: 0;
  background: none;
  color: #aaa;
  cursor: pointer;
}

.review-dots button.on {
  color: #111;
}

.google-review-link {
  display: inline-block;
  margin-top: 18px;
  color: #111;
  border-bottom: 1px solid #111;
  text-decoration: none;
  font-size: 11px;
}

.footer-about {
  color: #aaa;
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.footer-social a {
  font-size: 10px;
}

.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  text-decoration: none;
  z-index: 90;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  font-size: 22px;
}

.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: #090909;
  color: #fff;
  display: none;
  z-index: 90;
  cursor: pointer;
}

.back-top.show {
  display: grid;
  place-items: center;
}

.portal-hamb {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 24px;
}

.portal-mobile-nav {
  display: none;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .main-mobile-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #090909;
    border-top: 1px solid #252525;
    z-index: 80;
    padding: 18px 20px;
  }

  .main-mobile-nav.open {
    display: grid;
    gap: 0;
  }

  .main-mobile-nav a {
    color: #fff;
    text-decoration: none;
    padding: 15px 5px;
    border-bottom: 1px solid #222;
  }

  .topbar-inner {
    position: relative;
  }

  .hamb {
    display: block;
  }

  .topbar nav,
  .right a {
    display: none;
  }

  .topbar .right {
    margin-left: auto;
  }

  .portal-hamb {
    display: block;
  }

  .portal-nav .navlinks {
    display: none;
  }

  .portal-nav {
    position: relative;
  }

  .portal-mobile-nav.open {
    display: grid;
  }
}

@media (max-width: 600px) {
  .service-grid,
  .dd-grid {
    grid-template-columns: 1fr;
  }

  .service-grid .mini-card {
    min-height: 210px;
  }

  .dd-head {
    align-items: center;
  }

  .listing-gallery-stage > img {
    height: 360px;
  }

  .whatsapp-float {
    left: 15px;
    bottom: 15px;
  }

  .back-top {
    right: 15px;
    bottom: 15px;
  }

  .topbar .brand-mark img {
    max-width: 96px;
    max-height: 32px;
  }

  .topbar .brand-mark small {
    font-size: 7px;
  }

  .portal-nav .brand-mark img {
    max-width: 96px;
  }

  .portal-hamb {
    font-size: 22px;
  }

  .portal-mobile-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #090909;
    color: #fff;
    z-index: 80;
    padding: 10px 20px;
    border-top: 1px solid #252525;
  }

  .portal-mobile-nav a {
    display: block;
    padding: 14px 0;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #222;
  }

  .portal-hamb[aria-expanded="true"] + nav + .portal-mobile-nav {
    display: grid;
  }
}

.editor-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.editor-admin-option {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid #e2e0da;
  padding: 14px;
  background: #faf9f6;
  cursor: pointer;
}

.editor-admin-option > input {
  margin: 0;
}

.editor-admin-option span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.editor-admin-option strong {
  font-size: 12px;
}

.editor-admin-option small {
  font-size: 10px;
  color: #777;
}

.editor-admin-option em {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8b7651;
  font-style: normal;
}

@media (max-width: 700px) {
  .editor-admin-grid {
    grid-template-columns: 1fr;
  }
}

/* V10 — final layout refinements */
.admin-nav {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.admin-nav::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.topbar .logo,
.topbar .brand-mark,
.portal-nav .brand-mark,
.lister-top-brand {
  align-items: center !important;
  text-align: center !important;
}

.topbar .brand-mark small,
.portal-nav .brand-mark small,
.lister-top-brand small {
  display: block;
  width: 100%;
  text-align: center !important;
  margin-left: 0 !important;
}

.topbar .brand-mark img,
.portal-nav .brand-mark img,
.lister-top-brand img {
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-rows: minmax(240px, auto);
}

.dd-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 28px;
}

.main-mobile-nav {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid #333;
}

.hamb {
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 1px solid #444 !important;
  border-radius: 50%;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.hamb i {
  display: block;
  width: 18px;
  height: 1px;
  background: #fff;
  margin: auto;
}

.portal-hamb {
  width: 42px;
  height: 42px;
  border: 1px solid #444;
  border-radius: 50%;
  display: none;
  font-size: 0;
  position: relative;
}

.portal-hamb:before,
.portal-hamb:after,
.portal-hamb {
  background-color: transparent;
}

.portal-hamb:before {
  content: "☰";
  font-size: 18px;
  line-height: 40px;
  color: #fff;
}

.portal-nav .portal-hamb {
  order: 3;
}

.featured-slider-section {
  overflow: hidden;
}

.feature-slider {
  position: relative;
}

.feature-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 2px 45px 8px;
}

.feature-track::-webkit-scrollbar {
  display: none;
}

.feature-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
}

.slider-arrow {
  position: absolute;
  top: 135px;
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #777;
  background: #fff;
  color: #111;
  font-size: 24px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.feature-card .pic {
  height: 300px;
}

.feature-card .stats {
  flex-wrap: wrap;
}

.feature-card .stats aside {
  margin-left: auto;
}

.feature-card .pic em {
  z-index: 3;
}

.feature-card .gallery-prev,
.feature-card .gallery-next {
  z-index: 3;
}

.parallax-story {
  position: relative;
  height: 620px;
  overflow: hidden;
  color: #fff;
}

.parallax-story-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.parallax-story-overlay {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.parallax-story:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

.parallax-story-overlay h2 {
  font:
    400 56px Georgia,
    serif;
  margin: 12px 0;
}

.parallax-story-overlay p {
  max-width: 600px;
  line-height: 1.7;
  color: #eee;
}

.parallax-story-overlay a {
  margin-top: 20px;
  background: #fff;
  color: #111;
  padding: 13px 20px;
  text-decoration: none;
  font-size: 12px;
}

.newsletter-msg {
  color: #fff;
  font-size: 12px;
  margin: 15px 0;
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.whatsapp-float {
  display: grid;
  place-items: center;
}

.table-wrap {
  overflow-x: auto;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .dd-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .feature-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .portal-hamb {
    display: block;
  }

  .portal-nav {
    position: sticky;
  }

  .portal-nav .navlinks {
    display: none;
  }

  .portal-mobile-nav {
    position: absolute;
    top: 78px;
    left: 15px;
    right: 15px;
    background: #090909;
    border: 1px solid #333;
    border-radius: 14px;
    padding: 10px 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    z-index: 100;
  }

  .portal-mobile-nav.open {
    display: grid;
  }

  .portal-mobile-nav a {
    padding: 14px 0;
    border-bottom: 1px solid #222;
  }

  .portal-mobile-nav a:last-child {
    border-bottom: 0;
  }

  .portal-nav .brand {
    margin-right: auto;
  }

  .parallax-story {
    height: 520px;
  }

  .parallax-story-overlay h2 {
    font-size: 42px;
  }

  .slider-arrow {
    top: 130px;
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr !important;
  }

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

  .feature-card {
    flex-basis: calc(100% - 12px);
  }

  .feature-track {
    padding-left: 35px;
    padding-right: 35px;
  }

  .slider-arrow {
    width: 34px;
    height: 34px;
    top: 125px;
  }

  .slider-prev {
    left: 0;
  }

  .slider-next {
    right: 0;
  }

  .parallax-story {
    height: 480px;
  }

  .parallax-story-overlay {
    padding: 25px;
  }

  .parallax-story-overlay h2 {
    font-size: 34px;
  }

  .topbar .brand-mark img,
  .portal-nav .brand-mark img,
  .lister-top-brand img {
    max-width: 96px !important;
    max-height: 34px !important;
  }

  .hamb {
    display: flex;
  }

  .topbar-inner {
    gap: 12px;
  }

  .portal-nav {
    padding: 0 18px;
  }

  .portal-mobile-nav {
    top: 72px;
  }
}

/* V14 marketplace refinements */
.white-section h1,
.white-section h2,
.white-section h3,
.white-section h4,
.white-section p,
.white-section .section-title h2,
.white-section .journal h2 {
  color: #111;
}

.portal-main h1,
.portal-main h2,
.portal-main h3,
.portal-main h4 {
  color: #111;
}

.hero-portal h1,
.hero-portal h2,
.hero-portal h3 {
  color: #fff;
}

.tabs a {
  background: none;
  border: 0;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 0 0 13px;
  cursor: pointer;
}

.tabs a.on {
  border-bottom: 1px solid #fff;
}

.pic em,
.feature-card .pic em {
  z-index: 8;
  background: #090909;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pic em.sold,
.feature-card .pic em.sold {
  background: #fff;
  color: #111;
}

.public-card-media {
  height: 285px;
  position: relative;
  overflow: hidden;
  background: #151515;
}

.public-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    opacity 0.35s ease,
    transform 6s ease;
}

.public-card-media:hover img {
  transform: scale(1.035);
}

.image-badge,
.custom-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  padding: 7px 10px;
  border-radius: 999px;
  background: #090909;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.custom-badge {
  left: auto;
  right: 12px;
  background: #fff;
  color: #111;
  border-color: #fff;
}

.image-badge.sold-badge {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.auto-gallery-prev,
.auto-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  cursor: pointer;
  opacity: 0.85;
}

.auto-gallery-prev {
  left: 12px;
}

.auto-gallery-next {
  right: 12px;
}

.auto-gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 35px 14px 11px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.marketplace-card {
  padding: 0;
  overflow: hidden;
}

.marketplace-card .body {
  padding: 18px 18px 20px;
}

.marketplace-card .body h3 {
  margin: 7px 0 8px;
}

.marketplace-card .actions {
  margin-top: 16px;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 14px;
}

.catalog-tabs {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.catalog-tabs a {
  color: #777;
  text-decoration: none;
  font-size: 12px;
  padding-bottom: 8px;
}

.catalog-tabs a.active {
  color: #111;
  border-bottom: 1px solid #111;
}

.catalog-filter {
  font-size: 11px;
  color: #777;
}

.catalog-count {
  margin-bottom: 22px;
}

.parallax-story-bg {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
  animation: milikiParallaxDrift 18s ease-in-out infinite alternate;
  transition: transform 0.08s linear;
}

@keyframes milikiParallaxDrift {
  from {
    background-position: 50% 46%;
  }

  to {
    background-position: 50% 54%;
  }
}

.whatsapp-float,
.whatsapp-float.monochrome {
  background: #090909 !important;
  color: #fff !important;
}

.whatsapp-float svg,
.whatsapp-float.monochrome svg {
  fill: #fff !important;
}

.back-top {
  background: #090909 !important;
  color: #fff !important;
}

@media (min-width: 901px) {
  .marketplace-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .marketplace-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .topbar .hamb {
    display: grid !important;
    order: 3;
    margin-left: 0;
    width: 34px;
    height: 34px;
    padding: 7px;
    border: 1px solid #444;
    border-radius: 50%;
    place-items: center;
    background: #111;
  }

  .topbar .hamb i {
    display: block;
    width: 13px;
    height: 1px;
    background: #fff;
    margin: 2px 0;
  }

  .topbar .logo {
    order: 1;
  }

  .topbar .right {
    order: 2;
    margin-left: auto;
    display: flex;
    gap: 8px;
  }

  .topbar .right a {
    display: none;
  }

  .topbar .glass {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .topbar nav {
    display: none;
  }

  .main-mobile-nav {
    top: 76px;
  }

  .public-card-media {
    height: 300px;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-tabs {
    gap: 17px;
  }
}

@media (min-width: 701px) {
  .topbar .hamb {
    display: none !important;
  }

  .main-mobile-nav {
    display: none !important;
  }
}

/* V15 fixes */
.login-card h1 {
  color: #111 !important;
}

.login-card .eyebrow {
  color: #777 !important;
}

.feature-card .pic .status-badge,
.feature-card .pic .custom-badge,
.feature-card .pic em {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  z-index: 20 !important;
}

.feature-card .pic .custom-badge {
  left: auto !important;
  right: 12px !important;
  background: #fff !important;
  color: #111 !important;
  border: 1px solid #fff !important;
}

.feature-card .pic .status-badge.sold {
  background: #fff !important;
  color: #111 !important;
}

.feature-card .pic .status-badge:not(.sold) {
  background: #090909 !important;
  color: #fff !important;
}

.lister-signout {
  background: #fff !important;
  color: #111 !important;
  border-color: #d5d3cc !important;
}

.lister-form-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 28px 90px;
}

.lister-form-shell > h1 {
  color: #111 !important;
  font:
    400 46px Georgia,
    serif;
  margin: 8px 0 12px;
}

.lister-form-shell .panel {
  background: #fff;
  color: #111;
}

.lister-form-shell .panel h2,
.lister-form-shell .panel h3,
.lister-form-shell .panel p {
  color: #111;
}

@media (max-width: 700px) {
  .lister-form-shell {
    padding: 38px 16px 60px;
  }

  .lister-form-shell > h1 {
    font-size: 36px;
  }
}

/* V16 — enforce readable contrast by surface */
/* Light surfaces: dark text */
body.portal,
.portal-main,
.white-section,
.testimonial,
.login-wrap,
.login-card,
.panel,
.mini-card,
.stat,
.lister-page,
.lister-stat,
.lister-panel,
.public-card .body,
.map-card,
.catalog-toolbar,
.lister-form-shell .panel {
  color: #111;
}

.white-section h1,
.white-section h2,
.white-section h3,
.white-section h4,
.white-section p,
.white-section span,
.white-section strong,
.white-section label,
.testimonial h1,
.testimonial h2,
.testimonial h3,
.testimonial h4,
.testimonial p,
.login-card h1,
.login-card h2,
.login-card h3,
.login-card p,
.login-card label,
.panel h1,
.panel h2,
.panel h3,
.panel h4,
.panel p,
.panel label,
.mini-card h1,
.mini-card h2,
.mini-card h3,
.mini-card h4,
.mini-card p,
.stat h1,
.stat h2,
.stat h3,
.stat h4,
.stat p,
.lister-stat strong,
.lister-stat span,
.lister-panel h1,
.lister-panel h2,
.lister-panel h3,
.public-card .body h1,
.public-card .body h2,
.public-card .body h3,
.public-card .body p,
.map-card h1,
.map-card h2,
.map-card h3,
.map-card p {
  color: #111;
}

.panel .muted,
.mini-card .muted,
.login-card .muted,
.white-section .muted,
.portal-main .muted,
.public-card .body .eyebrow,
.catalog-filter {
  color: #666 !important;
}

/* Dark surfaces: white text */
.topbar,
.topbar-inner,
.topbar nav,
.topbar .right,
.hero,
.hero-portal,
.newsletter,
footer,
.lister-top,
.lister-tip,
.admin-nav,
.admin-top,
.dev-grid article {
  color: #fff;
}

.hero h1,
.hero-portal h1,
.hero-portal h2,
.hero-portal h3,
.newsletter h1,
.newsletter h2,
.newsletter h3,
footer h1,
footer h2,
footer h3,
footer b,
.lister-top h1,
.lister-top h2,
.lister-top h3,
.lister-tip strong,
.topbar a,
.topbar .logo,
.topbar .brand-mark small {
  color: #fff;
}

.hero-portal p,
.newsletter p,
.footer-about,
.lister-tip span {
  color: #aaa;
}

/* Keep action controls intentionally contrasted */
.btn,
.results,
.newsletter button,
.hero-property-copy a {
  color: #111;
}

.btn:not(.light):not(.gold) {
  background: #111;
  color: #fff;
}

.btn.light {
  background: #fff;
  color: #111;
}

.btn.gold {
  color: #fff;
}

/* Homepage featured badges: make them independent of card text/surface */
.feature-card .pic {
  position: relative;
  overflow: hidden;
}

.feature-card .pic .status-badge,
.feature-card .pic .custom-badge,
.feature-card .pic em {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 999 !important;
  pointer-events: none !important;
  font-style: normal !important;
  line-height: 1 !important;
}

.feature-card .pic .custom-badge {
  left: auto !important;
  right: 14px !important;
  background: #fff !important;
  color: #111 !important;
  border: 1px solid #fff !important;
}

.feature-card .pic .status-badge.sold {
  background: #fff !important;
  color: #111 !important;
  border-color: #fff !important;
}

.feature-card .pic .status-badge:not(.sold) {
  background: #090909 !important;
  color: #fff !important;
}

/* V17 service and media polish */
.service-card-image {
  margin: -20px -20px 18px;
  overflow: hidden;
  height: 180px;
  background: #e9e8e3;
}

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

.service-meta {
  display: block;
  margin: 3px 0 16px;
  font-size: 12px;
  color: #111;
}

.listing-gallery-stage > img {
  transition: opacity 0.28s ease;
}

.listing-image-row input[type="file"] {
  background: #fff;
}

/* MILIKI CONVERSION HOMEPAGE — premium first impression */
:root {
  --miliki-blue: #051840;
  --miliki-gold: #b67928;
  --miliki-ink: #0a0d12;
}

.topbar {
  position: fixed !important;
  left: 0;
  right: 0;
  top: 0;
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
  backdrop-filter: none !important;
  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 100;
}

.topbar.scrolled,
.topbar:has(+ .main-mobile-nav.open) {
  background: rgba(5, 24, 47, 0.72) !important;
  backdrop-filter: blur(18px) !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.16);
}

.hero-conversion {
  position: relative;
  min-height: 92vh;
  padding: 0 !important;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #06111f;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 38%;
  transform: scale(1.03);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 13, 25, 0.82) 0%,
      rgba(3, 13, 25, 0.48) 45%,
      rgba(3, 13, 25, 0.16) 100%
    ),
    linear-gradient(0deg, rgba(3, 13, 25, 0.55), transparent 45%);
}

.conversion-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  min-height: 92vh;
  margin: auto;
  padding: 150px 34px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy {
  max-width: 760px;
  margin-top: 25px;
}

.hero-eyebrow,
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: var(--miliki-gold);
  text-transform: uppercase;
}

.hero-copy h1 {
  font:
    400 clamp(48px, 6vw, 88px)/0.96 Georgia,
    serif !important;
  text-align: left !important;
  letter-spacing: -0.055em !important;
  margin: 18px 0 24px !important;
  padding: 0 !important;
  color: #fff !important;
}

.hero-copy h1 em {
  font-style: italic;
  color: #fff;
}

.hero-copy > p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 32px;
}

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

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding: 15px 19px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.25s;
}

.hero-cta.primary {
  background: var(--miliki-gold);
  color: #08111c;
}

.hero-cta.secondary {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(0, 0, 0, 0.08);
}

.hero-cta:hover {
  transform: translateY(-2px);
}

.hero-proof {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  letter-spacing: 0.22em;
}

.hero-proof i {
  width: 3px;
  height: 3px;
  background: var(--miliki-gold);
  border-radius: 50%;
}

.property-brief {
  background: #fff;
  color: #111;
  padding: 88px max(24px, calc((100vw - 1160px) / 2)) 92px;
  display: grid;
  grid-template-columns: 0.85fr 1.55fr;
  gap: 70px;
  align-items: center;
}

.brief-intro h2 {
  font:
    400 clamp(38px, 4vw, 58px)/1 Georgia,
    serif;
  letter-spacing: -0.04em;
  margin: 13px 0 18px;
  color: #111;
}

.brief-intro p {
  max-width: 470px;
  color: #62666d;
  line-height: 1.7;
  margin: 0;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form label span {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #70747b;
}

.lead-form input {
  height: 52px;
  border: 1px solid #d8dbe0;
  background: #fafafa;
  padding: 0 15px;
  font: inherit;
  color: #111;
  outline: none;
}

.lead-form input:focus {
  border-color: var(--miliki-blue);
  box-shadow: 0 0 0 3px rgba(7, 86, 166, 0.08);
}

.lead-form button {
  grid-column: 1/-1;
  height: 54px;
  border: 0;
  background: var(--miliki-blue);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.lead-form button b {
  margin-left: 18px;
  color: var(--miliki-gold);
}

.lead-message {
  grid-column: 1/-1;
  padding: 13px 16px;
  background: #f7eeee;
  color: #8a3030;
  font-size: 12px;
}

.lead-message.success {
  background: #eef5fb;
  color: #051840;
}

.signature-property {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  min-height: 650px;
  /* background: #0b0d10; */
  color: #fff;
}

.signature-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.signature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.signature-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(5, 7, 10, 0.65));
}

.signature-media > span {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 32px;
  padding: 8px 11px;
  background: var(--miliki-gold);
  color: #08111c;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.signature-copy {
  padding: 80px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signature-copy .eyebrow {
  color: var(--miliki-gold);
}

.signature-copy h2 {
  font:
    400 clamp(38px, 4vw, 62px)/1 Georgia,
    serif;
  margin: 17px 0 12px;
  color: #fff;
}

.signature-location {
  color: #b9bec7;
  margin: 0 0 25px;
}

.signature-copy > strong {
  font-size: 23px;
  color: #fff;
}

.signature-copy > p:not(.signature-location) {
  color: #a9afb8;
  line-height: 1.7;
  max-width: 400px;
  margin: 20px 0 28px;
}

.signature-copy > a {
  align-self: flex-start;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid var(--miliki-gold);
  padding-bottom: 9px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about {
  background: #fff;
  color: #111;
  border-bottom: 1px solid #e8e8e8;
}

.about h3,
.about p {
  color: #111;
}

.featured-slider-section,
.listing-section {
  background: #fff;
  color: #111;
}

.featured-slider-section .section-title {
  border-top-color: #ddd;
}

.featured-slider-section .section-title h2,
.featured-slider-section .section-title div span {
  color: #111;
}

.feature-card {
  background: #fff;
}

.feature-card > strong,
.feature-card > p,
.feature-card .stats {
  color: #111;
}

.back-top {
  left: 20px !important;
  right: auto !important;
  bottom: 20px !important;
}

.whatsapp-float {
  left: auto !important;
  right: 20px !important;
  bottom: 20px !important;
}

@media (max-width: 800px) {
  .conversion-inner {
    min-height: 86vh;
    padding: 130px 22px 30px;
  }

  .hero-copy h1 {
    font-size: 48px !important;
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .property-brief {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 62px 20px 68px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-form button {
    grid-column: auto;
  }

  .signature-property {
    grid-template-columns: 1fr;
  }

  .signature-media {
    min-height: 58vh;
  }

  .signature-copy {
    padding: 55px 24px 65px;
  }

  .hero-proof {
    gap: 9px;
    font-size: 7px;
  }
}

@media (max-width: 600px) {
  .hero-conversion {
    min-height: 88vh;
  }

  .hero-copy h1 {
    font-size: 43px !important;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta {
    justify-content: space-between;
  }

  .hero-proof {
    display: none;
  }

  .signature-media {
    min-height: 430px;
  }

  .signature-copy h2 {
    font-size: 42px;
  }
}

/* =========================================================
   MILIKI FINAL OVERRIDES — mobile navigation + homepage chat
   These rules intentionally come last so legacy theme layers
   cannot override the final behavior.
   ========================================================= */
@media (max-width: 700px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  .topbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 76px !important;
    z-index: 3000 !important;
  }

  .topbar-inner {
    height: 76px !important;
    position: relative !important;
    z-index: 3001 !important;
  }

  .topbar .hamb {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 4px !important;
    width: 42px !important;
    height: 42px !important;
    padding: 8px !important;
    background: var(--miliki-blue, #051840) !important;
    border: 1px solid var(--miliki-gold, #b67928) !important;
    border-radius: 8px !important;
    color: #fff !important;
    order: 3 !important;
    margin-left: 0 !important;
    flex: 0 0 42px !important;
  }

  .topbar .hamb i {
    width: 20px !important;
    height: 2px !important;
    background: #fff !important;
    display: block !important;
    margin: 0 !important;
  }

  .main-mobile-nav,
  .main-mobile-nav.open {
    position: fixed !important;
    top: 76px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-height: calc(100dvh - 76px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    box-sizing: border-box !important;
    padding: 8px 20px 22px !important;
    margin: 0 !important;
    background: #fff !important;
    color: var(--miliki-blue, #051840) !important;
    border: 0 !important;
    border-top: 3px solid var(--miliki-gold, #b67928) !important;
    border-radius: 0 !important;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28) !important;
    z-index: 2999 !important;
    transform: none !important;
  }

  .main-mobile-nav:not(.open) {
    display: none !important;
  }

  .main-mobile-nav.open {
    display: grid !important;
    gap: 0 !important;
  }

  .main-mobile-nav a {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 17px 4px !important;
    color: var(--miliki-blue, #051840) !important;
    background: #fff !important;
    border-bottom: 1px solid rgba(7, 86, 166, 0.12) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 13px !important;
  }

  .main-mobile-nav a:hover,
  .main-mobile-nav a:focus,
  .main-mobile-nav a:active {
    color: var(--miliki-gold, #b67928) !important;
    background: #fff !important;
  }

  .topbar.scrolled {
    background: rgba(7, 27, 69, 0.94) !important;
    backdrop-filter: blur(18px) !important;
  }
}

/* Homepage chatbot: always visible, independent of the page/footer. */
.miliki-contact-hub {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 5000 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.miliki-chat-launcher {
  width: 62px !important;
  height: 62px !important;
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: var(--miliki-gold, #b67928) !important;
  color: #fff !important;
  border: 2px solid #fff !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34) !important;
}

.miliki-chat-launcher .hub-icon {
  display: grid !important;
  place-items: center !important;
}

.miliki-chat-launcher .hub-icon svg {
  width: 30px !important;
  height: 30px !important;
  fill: currentColor !important;
}

.miliki-contact-menu {
  z-index: 5001 !important;
}

.miliki-chat-panel {
  z-index: 5010 !important;
  visibility: visible !important;
}

@media (max-width: 700px) {
  .miliki-contact-hub {
    right: 16px !important;
    bottom: 16px !important;
  }

  .miliki-chat-launcher {
    width: 58px !important;
    height: 58px !important;
  }

  .miliki-chat-panel {
    right: 10px !important;
    left: 10px !important;
    bottom: 84px !important;
    width: auto !important;
    max-width: none !important;
    height: min(650px, calc(100dvh - 100px)) !important;
    z-index: 5010 !important;
  }

  .miliki-contact-menu {
    right: 0 !important;
    bottom: 68px !important;
  }
}

/* Miliki sale journey */
.hero-cta.sale {
  background: rgba(212, 175, 55, 0.12) !important;
  border: 1px solid rgba(212, 175, 55, 0.75) !important;
  color: #fff !important;
}

.hero-cta.sale:hover {
  background: var(--miliki-gold) !important;
  color: #08111c !important;
}

.sell-with-miliki {
  background: #fff;
  color: #111;
  padding: 110px 7vw 100px;
  border-top: 1px solid #e8e8e8;
}

.sell-intro {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.sell-intro .eyebrow {
  color: var(--miliki-blue);
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.sell-intro h2 {
  font:
    400 clamp(42px, 5vw, 68px)/1 Georgia,
    serif;
  margin: 14px 0 18px;
  color: #101318;
}

.sell-intro p {
  max-width: 650px;
  margin: auto;
  color: #5c6570;
  line-height: 1.8;
  font-size: 15px;
}

.sell-steps {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: #dfe3e8;
  border: 1px solid #dfe3e8;
}

.sell-step {
  background: #fff;
  padding: 30px 24px 32px;
  min-height: 260px;
  position: relative;
}

.sell-step > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--miliki-gold);
  border-radius: 50%;
  color: var(--miliki-blue);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 28px;
}

.sell-step h3 {
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 13px;
  color: #111820;
}

.sell-step p {
  font-size: 12px;
  line-height: 1.75;
  color: #69727d;
  margin: 0;
}

.sell-cta {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 42px auto 0;
  padding: 15px 23px;
  background: var(--miliki-blue);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--miliki-blue);
  transition: 0.25s ease;
}

.sell-cta b {
  color: var(--miliki-gold);
  margin-left: 12px;
}

.sell-cta:hover {
  background: #051840;
  border-color: #051840;
}

@media (max-width: 1000px) {
  .sell-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-cta.sale {
    width: 100%;
    text-align: center;
  }

  .sell-with-miliki {
    padding: 75px 22px;
  }

  .sell-intro {
    margin-bottom: 40px;
  }

  .sell-steps {
    grid-template-columns: 1fr;
  }

  .sell-step {
    min-height: auto;
    padding: 25px 22px;
  }

  .sell-step > span {
    margin-bottom: 18px;
  }

  .sell-cta {
    width: 100%;
    text-align: center;
  }
}
