:root {
  --dd-blue: #0B4F9F;
  --dd-blue-2: #1668C7;
  --dd-navy: #071A33;
  --dd-muted: #65758B;
  --dd-soft: #F3F8FF;
  --dd-border: #DCE8F7;
  --dd-white: #ffffff;
  --dd-shadow: 0 22px 60px rgba(7, 26, 51, 0.10);
  --dd-shadow-sm: 0 14px 35px rgba(7, 26, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dd-navy);
  background: #ffffff;
  overflow-x: hidden;
  letter-spacing: normal;
  word-spacing: normal;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* Navbar */
.dd-navbar {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 232, 247, 0.85);
  box-shadow: 0 8px 24px rgba(7, 26, 51, 0.04);
}

.site-logo {
  max-height: 64px;
  width: auto;
  display: block;
}

.navbar-nav .nav-link {
  color: #28415f;
  font-weight: 800;
  font-size: 15px;
  margin: 0 3px;
  padding: 10px 12px !important;
  border-radius: 12px;
  transition: 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--dd-blue);
  background: #eef6ff;
}

.btn-dd {
  background: linear-gradient(135deg, var(--dd-blue), var(--dd-blue-2));
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 12px 20px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(11, 79, 159, 0.22);
  transition: 0.25s ease;
}

.btn-dd:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(11, 79, 159, 0.30);
}

.btn-outline-dd {
  border: 1px solid var(--dd-border);
  color: var(--dd-blue);
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 20px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-outline-dd:hover {
  background: var(--dd-soft);
  color: var(--dd-blue);
  transform: translateY(-2px);
}

/* Hero */
.hero-section {
  padding: 72px 0 64px;
  background:
    radial-gradient(circle at 12% 18%, #E6F2FF 0, transparent 34%),
    radial-gradient(circle at 85% 8%, #D8ECFF 0, transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #F7FBFF 100%);
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EAF4FF;
  color: var(--dd-blue);
  border: 1px solid #CFE5FF;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 20px;
}

.hero-section h1 {
  font-size: clamp(42px, 5.5vw, 74px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -2.6px;
  margin-bottom: 22px;
  color: var(--dd-navy);
  word-break: normal;
  overflow-wrap: normal;
}

.hero-text {
  color: var(--dd-muted);
  font-size: 19px;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 0;
  word-break: normal;
  overflow-wrap: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-visual-card {
  background: #ffffff;
  border: 1px solid var(--dd-border);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--dd-shadow);
  position: relative;
}

.hero-property-image {
  min-height: 430px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(7, 26, 51, 0.12), rgba(11, 79, 159, 0.64)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1300&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.floating-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--dd-border);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(7, 26, 51, 0.16);
  padding: 16px 18px;
}

.floating-card span {
  display: block;
  color: var(--dd-muted);
  font-size: 13px;
  font-weight: 700;
}

.floating-card strong {
  display: block;
  color: var(--dd-blue);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.floating-card-top {
  top: 36px;
  left: -28px;
}

.floating-card-bottom {
  right: -22px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.floating-card-bottom strong {
  color: var(--dd-navy);
  font-size: 16px;
}

.floating-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #EAF4FF;
  color: var(--dd-blue);
  font-size: 25px;
}

/* Search Card */
.home-search-card {
  position: relative;
  z-index: 5;
  margin-top: 34px;
  background: #ffffff;
  border: 1px solid var(--dd-border);
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 18px 50px rgba(7, 26, 51, 0.10);
}

.form-label {
  color: var(--dd-navy);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 7px;
}

.form-control,
.form-select {
  border-radius: 14px;
  border-color: var(--dd-border);
  padding: 13px 14px;
  color: var(--dd-navy);
  font-weight: 600;
  box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--dd-blue);
}

.autocomplete-wrap {
  position: relative;
}

.autocomplete-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  display: none;
  max-height: 240px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid var(--dd-border);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(7, 26, 51, 0.14);
  padding: 6px;
}

.autocomplete-list.is-open {
  display: block;
}

.autocomplete-item {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 10px;
  color: var(--dd-navy);
  cursor: pointer;
  font-weight: 700;
  padding: 10px 12px;
  text-align: left;
}

.autocomplete-item:hover,
.autocomplete-item:focus {
  background: #EAF4FF;
  color: var(--dd-blue);
  outline: none;
}

/* Sections */
.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--dd-soft);
}

.section-badge {
  display: inline-block;
  background: #EAF4FF;
  color: var(--dd-blue);
  border: 1px solid #CFE5FF;
  padding: 7px 13px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 15px;
}

.section-title {
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 900;
  letter-spacing: -1.3px;
  color: var(--dd-navy);
  margin-bottom: 0;
  line-height: 1.12;
  word-break: normal;
  overflow-wrap: normal;
}

.section-text {
  color: var(--dd-muted);
  font-size: 17px;
  line-height: 1.75;
  word-break: normal;
  overflow-wrap: normal;
}

.large-text {
  font-size: 22px;
  color: var(--dd-navy);
  font-weight: 800;
  line-height: 1.55;
}

/* Who Section */
.who-section {
  background: #ffffff;
}

/* Benefits */
.benefit-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--dd-border);
  border-radius: 26px;
  padding: 32px 28px;
  box-shadow: var(--dd-shadow-sm);
  transition: 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--dd-shadow);
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, #EAF4FF, #ffffff);
  border: 1px solid #D7E9FF;
  display: grid;
  place-items: center;
  color: var(--dd-blue);
  font-size: 28px;
  margin-bottom: 20px;
}

.benefit-card h5 {
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--dd-navy);
  font-size: 18px;
  line-height: 1.28;
  word-break: normal;
  overflow-wrap: normal;
}

.benefit-card p {
  color: var(--dd-muted);
  line-height: 1.75;
  margin: 0;
  font-size: 15.5px;
  word-break: normal;
  overflow-wrap: normal;
}

/* Steps */
.step-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--dd-border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--dd-shadow-sm);
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dd-blue), var(--dd-blue-2));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.step-card h5 {
  font-weight: 900;
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.3;
}

.step-card p {
  color: var(--dd-muted);
  line-height: 1.7;
  margin: 0;
  font-size: 15.5px;
  word-break: normal;
  overflow-wrap: normal;
}

/* CTA */
.section-cta-spacing {
  padding-top: 20px;
}

.cta-banner {
  background: linear-gradient(135deg, var(--dd-blue), #073C82);
  border-radius: 34px;
  padding: 48px 46px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-banner:after {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  right: -85px;
  top: -90px;
}

.cta-banner h2 {
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin-bottom: 10px;
  word-break: normal;
  overflow-wrap: normal;
}

.cta-banner p {
  opacity: 0.86;
  font-size: 18px;
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.cta-actions .btn {
  min-width: 150px;
  padding: 13px 20px;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

/* Footer */
.footer {
  background: #071A33;
  color: #DDEBFF;
  padding: 54px 0 26px;
}

.footer-logo {
  max-height: 58px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer h6 {
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 16px;
}

.footer a {
  display: block;
  color: #DDEBFF;
  opacity: 0.86;
  margin-bottom: 9px;
  font-weight: 600;
}

.footer a:hover {
  opacity: 1;
  color: #ffffff;
}

.footer-text {
  color: #AFC2DC;
  line-height: 1.7;
  word-break: normal;
  overflow-wrap: normal;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #AFC2DC;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1199px) {
  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 9px 9px !important;
  }

  .site-logo {
    max-height: 56px;
  }

  .cta-actions {
    justify-content: flex-start;
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding-top: 18px;
  }

  .navbar-collapse .btn-dd {
    width: 100%;
    margin-top: 8px;
  }

  .navbar-nav .nav-link {
    margin: 2px 0;
  }

  .hero-section {
    padding: 58px 0 44px;
  }

  .hero-visual-card {
    margin-top: 24px;
  }

  .hero-property-image {
    min-height: 330px;
  }

  .floating-card {
    display: none;
  }

  .home-search-card {
    margin-top: 28px;
  }

  .section {
    padding: 62px 0;
  }

  .cta-banner {
    padding: 38px 26px;
  }

  .cta-actions {
    justify-content: flex-start;
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .dd-navbar {
    padding: 10px 0;
  }

  .site-logo {
    max-height: 44px;
  }

  .hero-section h1 {
    letter-spacing: -1.8px;
  }

  .hero-text,
  .section-text {
    font-size: 16px;
    line-height: 1.68;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .home-search-card {
    border-radius: 22px;
    padding: 16px;
  }

  .section-title {
    letter-spacing: -0.8px;
  }

  .large-text {
    font-size: 19px;
  }

  .benefit-card,
  .step-card {
    padding: 24px;
  }

  .cta-banner {
    border-radius: 26px;
    padding: 34px 22px;
  }

  .cta-actions {
    justify-content: stretch;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .cta-actions .btn {
    width: 100%;
    min-width: auto;
  }

  .footer-logo {
    max-height: 46px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Inner Pages */
.page-hero {
  padding: 72px 0 58px;
  background:
    radial-gradient(circle at 12% 18%, #E6F2FF 0, transparent 34%),
    radial-gradient(circle at 85% 8%, #D8ECFF 0, transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #F7FBFF 100%);
}

.page-title {
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 18px;
  color: var(--dd-navy);
}

.page-lead {
  color: var(--dd-muted);
  font-size: 19px;
  line-height: 1.75;
  max-width: 760px;
}

.dd-panel,
.filter-sidebar,
.form-card,
.property-card,
.detail-info {
  background: #ffffff;
  border: 1px solid var(--dd-border);
  border-radius: 26px;
  box-shadow: var(--dd-shadow-sm);
}

.dd-panel,
.filter-sidebar,
.form-card,
.detail-info {
  padding: 30px;
}

.dd-panel h3,
.dd-panel h4,
.form-card h3,
.form-card h4,
.filter-sidebar h5 {
  font-weight: 900;
  color: var(--dd-navy);
}

.page-hero-card {
  background: #ffffff;
  border: 1px solid var(--dd-border);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--dd-shadow-sm);
}

.page-hero-card h3 {
  color: var(--dd-navy);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}

.content-card,
.process-card,
.bond-benefit-card,
.application-card,
.profession-card,
.redirect-card,
.dealroom-feature-card {
  background: #ffffff;
  border: 1px solid var(--dd-border);
  border-radius: 26px;
  box-shadow: var(--dd-shadow-sm);
}

.content-card,
.application-card,
.redirect-card {
  padding: 34px;
}

.process-card,
.bond-benefit-card,
.profession-card,
.dealroom-feature-card {
  height: 100%;
  padding: 28px;
}

.process-card h3,
.bond-benefit-card h3,
.profession-card h3,
.dealroom-feature-card h3 {
  color: var(--dd-navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 10px;
}

.network-card {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, #EAF4FF, #ffffff);
  border: 1px solid #D7E9FF;
  display: grid;
  place-items: center;
  color: var(--dd-blue);
  font-size: 28px;
  margin-bottom: 18px;
}

.profession-card {
  transition: 0.25s ease;
}

.profession-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--dd-shadow);
}

.profession-card h3 {
  margin-bottom: 0;
  font-size: 17px;
}

.process-card p,
.bond-benefit-card p,
.dealroom-feature-card p {
  color: var(--dd-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.redirect-card {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  padding: 46px;
}

.redirect-card h2 {
  color: var(--dd-navy);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.redirect-card p {
  color: var(--dd-muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

.redirect-icon {
  width: 82px;
  height: 82px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--dd-blue), var(--dd-blue-2));
  color: #ffffff;
  font-size: 38px;
  box-shadow: 0 16px 34px rgba(11, 79, 159, 0.24);
}

.external-link-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--dd-muted);
  background: #F3F8FF;
  border: 1px solid var(--dd-border);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 800;
}

.external-link-note i {
  color: var(--dd-blue);
}

.dealroom-feature-card {
  transition: 0.25s ease;
}

.dealroom-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--dd-shadow);
}

.deal-room-hero .page-lead {
  color: var(--dd-navy);
  font-size: 24px;
  font-weight: 900;
}

.deal-room-badge {
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.deal-room-title {
  max-width: 760px;
}

.deal-room-card {
  max-width: 980px;
}

.deal-room-feature {
  min-height: 100%;
}

.deal-room-quote {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 46px;
  background: linear-gradient(135deg, var(--dd-blue), #073C82);
  color: #ffffff;
  box-shadow: var(--dd-shadow);
}

.deal-room-quote i {
  display: block;
  font-size: 42px;
  opacity: 0.8;
  margin-bottom: 16px;
}

.deal-room-quote p {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.8px;
}

.deal-room-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--dd-border);
  border-radius: 999px;
  background: #F8FBFF;
  color: var(--dd-navy);
  font-weight: 900;
  line-height: 1.35;
  padding: 13px 16px;
}

.deal-room-pill + .deal-room-pill {
  margin-top: 12px;
}

.deal-room-pill i {
  color: var(--dd-blue);
  flex: 0 0 auto;
}

.deal-room-cta {
  max-width: 920px;
}

.bond-benefit-card {
  transition: 0.25s ease;
}

.bond-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--dd-shadow);
}

.text-muted-dd {
  color: var(--dd-muted);
}

.search-panel {
  background: #ffffff;
  border: 1px solid var(--dd-border);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--dd-shadow-sm);
  margin-bottom: 42px;
}

.filter-card {
  background: #ffffff;
  border: 1px solid var(--dd-border);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--dd-shadow-sm);
}

.results-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.form-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}

.form-card-header .section-badge {
  margin-bottom: 8px;
}

.form-card-header .section-title {
  font-size: clamp(25px, 2.4vw, 34px);
}

.mini-stat {
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--dd-border);
  border-radius: 22px;
  padding: 20px;
}

.mini-stat strong {
  display: block;
  color: var(--dd-navy);
  font-weight: 900;
  line-height: 1.2;
}

.property-card {
  height: 100%;
  overflow: hidden;
  transition: 0.25s ease;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--dd-shadow);
}

.property-img,
.property-image,
.gallery-main,
.thumb {
  background-size: cover;
  background-position: center;
}

.property-img,
.property-image {
  min-height: 220px;
  position: relative;
}

.property-badge {
  position: absolute;
  right: 16px;
  top: 184px;
  background: #ffffff;
  color: var(--dd-blue);
  border: 1px solid var(--dd-border);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 900;
}

.property-body {
  padding: 24px;
}

.price {
  color: var(--dd-blue);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.2;
}

.location,
.property-location {
  color: var(--dd-muted);
  font-weight: 700;
}

.features,
.property-features,
.commercial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.features span,
.property-features span,
.commercial-meta span,
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #EAF4FF;
  color: var(--dd-blue);
  border: 1px solid #CFE5FF;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 800;
}

.whatsapp-modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: #EAF4FF;
  color: var(--dd-blue);
  border: 1px solid #CFE5FF;
  font-size: 36px;
}

.property-detail-hero {
  padding: 54px 0 42px;
  background:
    radial-gradient(circle at 12% 18%, #E6F2FF 0, transparent 34%),
    radial-gradient(circle at 85% 8%, #D8ECFF 0, transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #F7FBFF 100%);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dd-blue);
  background: #EAF4FF;
  border: 1px solid #CFE5FF;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 24px;
}

.back-link:hover {
  color: var(--dd-blue);
  background: #DDEFFF;
}

.detail-price {
  color: var(--dd-blue);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
}

.detail-title {
  color: var(--dd-navy);
  font-size: clamp(36px, 4.4vw, 62px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.06;
  margin-bottom: 16px;
}

.detail-location {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--dd-muted);
  font-size: 17px;
  font-weight: 800;
}

.detail-location i {
  color: var(--dd-blue);
}

.detail-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-lg-end;
}

.detail-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--dd-blue);
  border: 1px solid var(--dd-border);
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(7, 26, 51, 0.06);
}

.property-gallery {
  background: #ffffff;
  border: 1px solid var(--dd-border);
  border-radius: 30px;
  padding: 16px;
  box-shadow: var(--dd-shadow-sm);
}

.main-property-image,
.gallery-thumb,
.compact-property-image {
  background-size: cover;
  background-position: center;
}

.main-property-image {
  min-height: 520px;
  border-radius: 24px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.gallery-thumb {
  min-height: 126px;
  border-radius: 18px;
  border: 1px solid var(--dd-border);
}

.detail-card,
.enquiry-card,
.compact-property-card {
  background: #ffffff;
  border: 1px solid var(--dd-border);
  border-radius: 26px;
  box-shadow: var(--dd-shadow-sm);
}

.detail-card {
  padding: 30px;
  margin-bottom: 24px;
}

.detail-card-title {
  color: var(--dd-navy);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
}

.feature-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  gap: 10px;
  color: var(--dd-muted);
  line-height: 1.65;
  font-weight: 600;
}

.feature-list i {
  color: var(--dd-blue);
  flex: 0 0 auto;
  margin-top: 3px;
}

.enquiry-card {
  padding: 30px;
}

.enquiry-card h3 {
  color: var(--dd-navy);
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 10px;
}

.enquiry-note {
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  background: #F3F8FF;
  border: 1px solid var(--dd-border);
  color: var(--dd-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.sticky-card {
  position: sticky;
  top: 105px;
}

.compact-property-card {
  height: 100%;
  display: flex;
  gap: 16px;
  padding: 14px;
  color: var(--dd-navy);
  transition: 0.25s ease;
}

.compact-property-card:hover {
  color: var(--dd-navy);
  transform: translateY(-4px);
  box-shadow: var(--dd-shadow);
}

.compact-property-image {
  width: 108px;
  min-height: 92px;
  border-radius: 18px;
  flex: 0 0 auto;
}

.compact-property-card strong {
  display: block;
  color: var(--dd-blue);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
}

.compact-property-card span {
  display: block;
  color: var(--dd-muted);
  font-weight: 800;
  line-height: 1.35;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dd-blue), var(--dd-blue-2));
  color: #ffffff;
  display: inline-grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 12px;
}

.consent-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--dd-border);
  border-radius: 18px;
  padding: 16px;
  background: #F8FBFF;
  color: var(--dd-muted);
  font-weight: 700;
  line-height: 1.55;
}

.consent-box .form-check-input {
  margin-top: 5px;
  flex: 0 0 auto;
}

.simple-listing-card .external-link-note {
  margin-top: 24px;
}

.gallery-main {
  min-height: 460px;
  border-radius: 28px;
  border: 1px solid var(--dd-border);
  box-shadow: var(--dd-shadow-sm);
}

.thumb {
  min-height: 130px;
  border-radius: 20px;
  border: 1px solid var(--dd-border);
}

.dd-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dd-list li {
  display: flex;
  gap: 10px;
  color: var(--dd-muted);
  line-height: 1.65;
}

.dd-list i {
  color: var(--dd-blue);
  flex: 0 0 auto;
  margin-top: 3px;
}

@media (max-width: 991px) {
  .page-hero {
    padding: 58px 0 44px;
  }

  .page-title {
    letter-spacing: -1.4px;
  }

  .gallery-main {
    min-height: 340px;
  }

  .filter-sidebar {
    position: static !important;
  }

  .results-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-feature-row {
    justify-content: flex-start;
  }

  .main-property-image {
    min-height: 380px;
  }

  .sticky-card {
    position: static;
  }
}

@media (max-width: 575px) {
  .page-title {
    font-size: 36px;
    letter-spacing: -1.3px;
  }

  .page-lead {
    font-size: 17px;
  }

  .dd-panel,
  .page-hero-card,
  .content-card,
  .process-card,
  .bond-benefit-card,
  .application-card,
  .profession-card,
  .redirect-card,
  .dealroom-feature-card,
  .filter-sidebar,
  .form-card,
  .detail-info,
  .property-body {
    padding: 22px;
  }

  .search-panel {
    border-radius: 22px;
    padding: 16px;
  }

  .property-grid {
    grid-template-columns: 1fr;
  }

  .form-card-header {
    gap: 12px;
  }

  .redirect-card .hero-actions,
  .page-hero .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .redirect-card .hero-actions .btn,
  .page-hero .hero-actions .btn {
    width: 100%;
  }

  .property-detail-hero {
    padding: 42px 0 34px;
  }

  .detail-title {
    letter-spacing: -1.2px;
  }

  .property-gallery {
    border-radius: 24px;
    padding: 12px;
  }

  .main-property-image {
    min-height: 260px;
    border-radius: 18px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-thumb {
    min-height: 96px;
    border-radius: 16px;
  }

  .detail-card,
  .enquiry-card {
    padding: 22px;
  }

  .compact-property-card {
    align-items: center;
  }

  .gallery-main {
    min-height: 260px;
    border-radius: 22px;
  }

  .thumb {
    min-height: 90px;
    border-radius: 16px;
  }
}

.autocomplete-wrap {
  position: relative;
}

.location-suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 1050;
  background: #fff;
  border: 1px solid rgba(16, 33, 69, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(16, 33, 69, 0.14);
  overflow: hidden;
}

.location-suggestions.is-open {
  display: block;
}

.location-suggestion-item {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 12px 14px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #102145;
}

.location-suggestion-item:hover,
.location-suggestion-item:focus {
  background: #f4f8ff;
  outline: none;
}

.location-suggestion-item span {
  font-weight: 700;
}

.location-suggestion-item small {
  color: #6c7a95;
}
