.cnhr-home,
.cnhr-home * {
  box-sizing: border-box;
}

.cnhr-home {
  color: #1f1f1f;
  font-family: "Libre Franklin", sans-serif;
  overflow: hidden;
}

.cnhr-section {
  margin: 100px auto 0;
}

/* The finder is inserted directly after the hero, so it must not inherit the
   inter-section gap used between later homepage sections. */
#cnhr-home > .cnhr-section:first-child {
  margin-top: 0;
}

.cnhr-section--soft {
  background: #fff8f5;
  padding: 100px 0;
}

.cnhr-container {
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 15px;
  width: 100%;
}

.cnhr-section-head {
  align-items: end;
  display: grid;
  gap: 55px;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .55fr);
}

.cnhr-section-head--title-only {
  display: block;
}

.cnhr-heading {
  color: #111;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -.5px;
  line-height: 50px;
  margin: 0;
  text-align: left;
}

.cnhr-heading span {
  color: #fc4102;
}

.cnhr-intro {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

.cnhr-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.cnhr-button {
  align-items: center;
  border: 1px solid #fc4102;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.cnhr-button i {
  margin-right: 7px;
}

.cnhr-button:hover,
.cnhr-button:focus-visible {
  transform: translateY(-1px);
}

.cnhr-button--primary {
  background: #fc4102;
  color: #fff;
}

.cnhr-button--primary:hover,
.cnhr-button--primary:focus-visible {
  background: #e73b00;
  color: #fff;
}

.cnhr-button--secondary {
  background: #fff;
  color: #fc4102;
}

.cnhr-button--secondary:hover,
.cnhr-button--secondary:focus-visible {
  background: #fff4ef;
  color: #e73b00;
}

.cnhr-hero-actions .cnhr-button--secondary {
  background: rgba(255, 255, 255, .96);
}

.cnhr-hero-actions .cnhr-button {
  width: 190px;
}

.cnhr-finder-panel {
  background: #fff;
  border: 1px solid rgba(252, 65, 2, .08);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(252, 65, 2, .1);
  margin-top: 40px;
  padding: 30px;
}

.cnhr-finder-form {
  align-items: end;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
}

.cnhr-field label {
  color: #282828;
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cnhr-field select {
  appearance: auto;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 12px;
  color: #333;
  font: inherit;
  font-size: 15px;
  height: 50px;
  padding: 0 13px;
  width: 100%;
}

.cnhr-field select:disabled {
  background: #f6f6f6;
  color: #999;
  cursor: not-allowed;
}

.cnhr-field select:focus {
  border-color: #fc4102;
  box-shadow: 0 0 0 3px rgba(252, 65, 2, .1);
  outline: 0;
}

.cnhr-finder-message {
  color: #555;
  font-size: 14px;
  line-height: 1.55;
  margin: 18px 0 0;
  text-align: center;
}

.cnhr-finder-results {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.cnhr-card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.cnhr-card-grid--all {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cnhr-card {
  background: #fff;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(252, 65, 2, .1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s cubic-bezier(.4, 0, .2, 1);
}

.cnhr-card:focus-visible {
  outline: 3px solid rgba(252, 65, 2, .32);
  outline-offset: 4px;
}

.cnhr-card:hover {
  box-shadow: 0 16px 48px rgba(252, 65, 2, .18);
  transform: translateY(-8px) scale(1.01);
}

.cnhr-card-media {
  background: #f1f1f1;
  display: block;
  overflow: hidden;
  position: relative;
}

.cnhr-card-media img {
  display: block;
  height: 260px;
  object-fit: cover;
  transition: transform .4s ease;
  width: 100%;
}

.cnhr-card:hover .cnhr-card-media img {
  transform: scale(1.06);
}

.cnhr-card-grid--all .cnhr-card-media img {
  height: 200px;
}

.cnhr-card-status {
  background: rgba(32, 33, 51, .86);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .45px;
  left: 14px;
  padding: 7px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 14px;
}

.cnhr-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 22px 22px;
}

.cnhr-card h3 {
  color: #1a1a2e;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.2px;
  line-height: 28px;
  margin: 0;
}

.cnhr-property-number {
  color: #fc4102;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  margin: 3px 0 0;
  text-transform: uppercase;
}

.cnhr-card-location {
  align-items: center;
  color: #707070;
  display: flex;
  font-size: 13.5px;
  gap: 7px;
  margin: 10px 0 0;
}

.cnhr-card-location i {
  color: #fc4102;
}

.cnhr-card-price {
  color: #fc4102;
  font-size: 20px;
  font-weight: 700;
  margin: 16px 0 0;
}

.cnhr-card-price span {
  color: #777;
  font-size: 12px;
  font-weight: 400;
}

.cnhr-card-price--match {
  font-size: 18px;
}

.cnhr-card-rooms,
.cnhr-card-includes {
  color: #666;
  font-size: 13px;
  line-height: 1.5;
  margin: 9px 0 0;
}

.cnhr-card-includes {
  background: linear-gradient(135deg, #fff5f2, #fff9f7);
  border: 1px solid rgba(252, 65, 2, .08);
  border-radius: 12px;
  margin-top: 14px;
  padding: 11px 10px;
  text-align: center;
}

.cnhr-card-actions {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin-top: auto;
  padding-top: 18px;
}

.cnhr-card-actions .cnhr-button {
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.25;
  min-height: 50px;
  padding: 9px 8px;
  width: 100%;
}

.cnhr-floating-call {
  align-items: center;
  background: #fc4102;
  border: 3px solid #fff;
  border-radius: 50%;
  bottom: 112px;
  box-sizing: border-box;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  color: #fff;
  display: flex;
  font-size: 23px;
  height: 60px;
  justify-content: center;
  position: fixed;
  right: 40px;
  text-decoration: none;
  transition: transform .2s ease;
  width: 60px;
  z-index: 9999;
}

.cnhr-floating-call:hover,
.cnhr-floating-call:focus-visible {
  color: #fff;
  transform: scale(1.08);
}

.cn679-route .cnhr-floating-call {
  display: none;
}

.cnhr-area-layout {
  align-items: start;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  margin-top: 40px;
}

.cnhr-area-tabs {
  display: grid;
  gap: 10px;
}

.cnhr-area-tab {
  background: #fff;
  border: 1px solid #eadfd9;
  border-radius: 12px;
  color: #333;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  min-height: 50px;
  padding: 12px 16px;
  text-align: left;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.cnhr-area-tab.is-active,
.cnhr-area-tab:hover,
.cnhr-area-tab:focus-visible {
  border-color: #fc4102;
  color: #fc4102;
  transform: translateX(4px);
}

.cnhr-area-tab.is-active {
  background: #fff;
  box-shadow: inset 4px 0 0 #fc4102;
}

.cnhr-area-result {
  background: #fff;
  border: 1px solid rgba(252, 65, 2, .08);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(252, 65, 2, .1);
  min-height: 440px;
  padding: 30px;
}

.cnhr-area-kicker {
  color: #fc4102;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .7px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.cnhr-area-result h3 {
  color: #1a1a2e;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -.3px;
  line-height: 1.3;
  margin: 0;
}

.cnhr-area-highlights {
  display: flex;
  flex-wrap: wrap;
  column-gap: 22px;
  row-gap: 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.cnhr-area-highlights li {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #474747;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  min-height: 0;
  padding: 0;
  white-space: nowrap;
}

.cnhr-area-highlights li::before {
  background: #fc4102;
  border-radius: 50%;
  content: "";
  flex: 0 0 auto;
  height: 6px;
  margin-right: 8px;
  width: 6px;
}

.cnhr-area-sectors {
  color: #333;
  font-size: 13px;
  font-weight: 600;
  margin: 18px 0 0;
}

.cnhr-area-properties {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}

.cnhr-area-property {
  align-items: center;
  background: #fff8f5;
  border-radius: 16px;
  color: #1a1a2e;
  display: grid;
  gap: 15px;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  padding: 11px;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.cnhr-area-property:hover,
.cnhr-area-property:focus-visible {
  background: #fff0eb;
  color: #1a1a2e;
  transform: translateY(-1px);
}

.cnhr-area-property img {
  border-radius: 11px;
  height: 68px;
  object-fit: cover;
  width: 84px;
}

.cnhr-area-property-copy strong,
.cnhr-area-property-copy span {
  display: block;
}

.cnhr-area-property-copy strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.cnhr-area-property-copy span {
  color: #777;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 5px;
}

.cnhr-area-property-copy .cnhr-area-distance {
  color: #d93a04;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  margin-top: 7px;
}

.cnhr-area-property b {
  color: #fc4102;
  font-size: 18px;
  padding-right: 4px;
}

.cnhr-empty {
  background: #fff;
  border: 1px dashed #e6b3a1;
  border-radius: 14px;
  color: #666;
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  text-align: center;
}

body.cnhr-modal-open {
  overflow: hidden;
}

.cnhr-lead-overlay,
.cnhr-lead-overlay * {
  box-sizing: border-box;
}

.cnhr-lead-overlay {
  background: rgba(20, 14, 12, .72);
  display: grid;
  inset: 0;
  padding: 20px;
  place-items: center;
  position: fixed;
  z-index: 120000;
}

.cnhr-lead-overlay[hidden],
.cnhr-lead-form[hidden],
.cnhr-lead-field[hidden],
.cnhr-lead-success[hidden] {
  display: none;
}

.cnhr-lead-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .3);
  color: #202033;
  font-family: "Libre Franklin", sans-serif;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  width: min(720px, 100%);
}

.cnhr-lead-head {
  align-items: start;
  background: #fff8f5;
  border-bottom: 1px solid #f0ddd7;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 22px 24px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.cnhr-lead-kicker {
  color: #fc4102;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  margin: 0;
  text-transform: uppercase;
}

.cnhr-lead-head h2 {
  color: #202033;
  font-size: 25px;
  font-weight: 650;
  line-height: 1.2;
  margin: 4px 0 0;
}

.cnhr-lead-close {
  align-items: center;
  background: #fff;
  border: 1px solid #e7d7d2;
  border-radius: 50%;
  color: #202033;
  cursor: pointer;
  display: flex;
  flex: 0 0 44px;
  font: inherit;
  font-size: 25px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.cnhr-lead-form {
  padding: 24px;
}

.cnhr-lead-property-summary {
  background: #fff8f5;
  border: 1px solid #f0d7cf;
  border-radius: 12px;
  color: #4d4d55;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 20px;
  padding: 15px 16px;
}

.cnhr-lead-property-summary strong {
  color: #202033;
  font-weight: 700;
}

.cnhr-lead-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cnhr-lead-field--wide {
  grid-column: 1 / -1;
}

.cnhr-lead-field label {
  color: #303039;
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 7px;
}

.cnhr-lead-field input,
.cnhr-lead-field select {
  background: #fff;
  border: 1px solid #dfd5d1;
  border-radius: 10px;
  color: #202033;
  font: inherit;
  font-size: 15px;
  min-height: 50px;
  padding: 0 13px;
  width: 100%;
}

.cnhr-lead-field input:focus,
.cnhr-lead-field select:focus {
  border-color: #fc4102;
  outline: 3px solid rgba(252, 65, 2, .12);
}

.cnhr-lead-submit {
  margin-top: 18px;
  width: 100%;
}

.cnhr-lead-submit:disabled {
  cursor: wait;
  opacity: .66;
}

.cnhr-lead-note,
.cnhr-lead-message {
  color: #696972;
  font-size: 12px;
  line-height: 1.55;
  margin: 11px 0 0;
  text-align: center;
}

.cnhr-lead-message {
  color: #b42318;
  font-size: 13px;
  font-weight: 600;
}

.cnhr-lead-success {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 48px 36px 38px;
  text-align: center;
}

.cnhr-lead-success-icon {
  align-items: center;
  background: #fff1eb;
  border-radius: 50%;
  color: #fc4102;
  display: flex;
  font-size: 36px;
  font-weight: 700;
  height: 86px;
  justify-content: center;
  width: 86px;
}

.cnhr-lead-success h2 {
  color: #202033;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  margin: 24px 0 0;
}

.cnhr-lead-success-copy {
  color: #5f5f68;
  font-size: 16px;
  line-height: 1.65;
  margin: 12px auto 0;
  max-width: 520px;
}

.cnhr-lead-success-details {
  background: #fff8f5;
  border-radius: 16px;
  display: grid;
  gap: 7px;
  margin-top: 26px;
  padding: 20px;
  width: 100%;
}

.cnhr-lead-success-details strong,
.cnhr-lead-success-details span {
  display: block;
}

.cnhr-lead-success-details strong {
  color: #202033;
  font-size: 16px;
}

.cnhr-lead-success-details span {
  color: #696972;
  font-size: 13px;
}

.cnhr-lead-success-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin-top: 26px;
  width: min(100%, 420px);
}

@media (max-width: 991px) {
  .cnhr-section-head {
    gap: 32px;
  }

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

  .cnhr-finder-form .cnhr-button {
    width: 100%;
  }

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

  .cnhr-area-layout {
    gap: 24px;
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  [class*="WhatsappFloat_float"] {
    bottom: 20px !important;
    height: 56px !important;
    right: 20px !important;
    width: 56px !important;
  }

  .cnhr-floating-call {
    bottom: 88px;
    font-size: 21px;
    height: 56px;
    right: 20px;
    width: 56px;
  }

  .cnhr-section {
    margin-top: 40px;
  }

  .cnhr-section--soft {
    padding: 60px 0;
  }

  .cnhr-section-head {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .cnhr-heading {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 28px;
    text-align: center;
  }

  .cnhr-intro {
    font-size: 14px;
    line-height: 1.55;
    margin: 8px auto 0;
    max-width: 560px;
    padding: 0 6px;
    text-align: center;
  }

  .cnhr-hero-actions {
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 16px;
    width: min(100%, 345px);
  }

  .cnhr-hero-actions .cnhr-button {
    flex: 1;
    font-size: 13px;
    min-height: 44px;
    padding: 9px 11px;
  }

  .cnhr-finder-panel {
    border-radius: 16px;
    margin-top: 22px;
    padding: 18px;
  }

  .cnhr-finder-form {
    gap: 13px;
    grid-template-columns: 1fr;
  }

  .cnhr-field select {
    font-size: 14px;
  }

  .cnhr-finder-results,
  .cnhr-card-grid,
  .cnhr-card-grid--all {
    display: flex;
    gap: 14px;
    margin-left: -15px;
    margin-right: -15px;
    overflow-x: auto;
    padding: 2px 15px 18px;
    scroll-padding-left: 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .cnhr-finder-results::-webkit-scrollbar,
  .cnhr-card-grid::-webkit-scrollbar {
    display: none;
  }

  .cnhr-card-grid .cnhr-card,
  .cnhr-finder-results .cnhr-card {
    flex: 0 0 min(84vw, 330px);
    scroll-snap-align: start;
  }

  .cnhr-card-body {
    padding: 17px;
  }

  .cnhr-card h3 {
    font-size: 18px;
  }

  .cnhr-card-media img,
  .cnhr-card-grid--all .cnhr-card-media img {
    height: 200px;
  }

  .cnhr-card:hover {
    box-shadow: 0 4px 16px rgba(252, 65, 2, .12);
    transform: none;
  }

  .cnhr-card-actions {
    gap: 8px;
  }

  .cnhr-card-actions .cnhr-button {
    font-size: 12px;
  }

  .cnhr-lead-overlay {
    align-items: end;
    padding: 0;
  }

  .cnhr-lead-modal {
    border-radius: 20px 20px 0 0;
    max-height: 94dvh;
    width: 100%;
  }

  .cnhr-lead-head {
    padding: 18px;
  }

  .cnhr-lead-head h2 {
    font-size: 22px;
  }

  .cnhr-lead-form {
    padding: 18px 18px calc(22px + env(safe-area-inset-bottom));
  }

  .cnhr-lead-grid {
    gap: 13px;
    grid-template-columns: 1fr;
  }

  .cnhr-lead-field--wide {
    grid-column: auto;
  }

  .cnhr-lead-success {
    padding: 34px 18px calc(26px + env(safe-area-inset-bottom));
  }

  .cnhr-lead-success-icon {
    font-size: 30px;
    height: 72px;
    width: 72px;
  }

  .cnhr-lead-success h2 {
    font-size: 24px;
    margin-top: 18px;
  }

  .cnhr-lead-success-copy {
    font-size: 14px;
  }

  .cnhr-lead-success-actions {
    gap: 9px;
  }

  .cnhr-area-layout {
    margin-top: 24px;
  }

  .cnhr-area-tabs {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
    overflow-x: auto;
    padding: 0 15px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .cnhr-area-tabs::-webkit-scrollbar {
    display: none;
  }

  .cnhr-area-tab {
    flex: 0 0 min(72vw, 260px);
    scroll-snap-align: start;
  }

  .cnhr-area-tab.is-active,
  .cnhr-area-tab:hover,
  .cnhr-area-tab:focus-visible {
    transform: none;
  }

  .cnhr-area-result {
    min-height: 0;
    padding: 20px 15px;
  }

  .cnhr-area-result h3 {
    font-size: 20px;
  }

  .cnhr-area-highlights {
    column-gap: 18px;
    row-gap: 9px;
    margin-top: 14px;
  }

  .cnhr-area-highlights li {
    flex: 0 0 auto;
    font-size: 12px;
    min-height: 0;
  }

  .cnhr-area-property {
    gap: 11px;
    grid-template-columns: 72px minmax(0, 1fr) auto;
  }

  .cnhr-area-property img {
    height: 62px;
    width: 72px;
  }

  .cnhr-area-property-copy strong {
    font-size: 14px;
  }

  .cnhr-area-property-copy span {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cnhr-button,
  .cnhr-card,
  .cnhr-card-media img,
  .cnhr-area-property,
  .cnhr-area-tab {
    transition: none;
  }
}

/* 2026-08-30 homepage refinements: scoped to the existing Cloud Nine theme. */
.cnhr-card-grid--all {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cnhr-card-grid--all .cnhr-card-media img {
  aspect-ratio: 1.42;
  height: auto;
}

.cnhr-card-amenities {
  align-items: center;
  background: #fff8f5;
  border: 1px solid #f6ddd4;
  border-radius: 14px;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
  min-height: 58px;
  padding: 10px 8px;
}

.cnhr-card-amenity {
  align-items: center;
  color: #333;
  display: flex;
  font-size: 13px;
  font-weight: 500;
  gap: 8px;
  justify-content: center;
  white-space: nowrap;
}

.cnhr-card-amenity img {
  display: block;
  height: 23px;
  object-fit: contain;
  width: 23px;
}

.cnhr-homes-toolbar {
  align-items: center;
  display: none;
  justify-content: space-between;
  margin: 22px 0 16px;
}

.cnhr-homes-toolbar p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.cnhr-homes-toolbar strong {
  color: #202033;
  font-size: 14px;
}

.cnhr-homes-toolbar span {
  color: #777;
  font-size: 11px;
}

.cnhr-homes-controls {
  display: flex;
  gap: 8px;
}

.cnhr-homes-control {
  align-items: center;
  background: #fff;
  border: 1px solid #eadfd9;
  border-radius: 50%;
  color: #202033;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 20px;
  height: 42px;
  justify-content: center;
  padding: 0;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
  width: 42px;
}

.cnhr-homes-control:hover,
.cnhr-homes-control:focus-visible {
  border-color: #fc4102;
  color: #fc4102;
  outline: 0;
  transform: translateY(-1px);
}

body.cnhr-homepage-active [class*="WhatsappFloat_float"] {
  display: none !important;
}

.cnhr-floating-contact {
  bottom: 28px;
  display: grid;
  gap: 12px;
  position: fixed;
  right: 34px;
  z-index: 9999;
}

.cnhr-floating-contact__action {
  align-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
  color: #fff;
  display: inline-flex;
  font-size: 23px;
  height: 60px;
  justify-content: center;
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease;
  width: 60px;
}

.cnhr-floating-contact__action span {
  display: none;
}

.cnhr-floating-contact__action:hover,
.cnhr-floating-contact__action:focus-visible {
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
  color: #fff;
  outline: 0;
  transform: translateY(-2px) scale(1.04);
}

.cnhr-floating-contact__call {
  background: #fc4102;
}

.cnhr-floating-contact__whatsapp {
  background: #25b96f;
}

.cnhr-expert-section [class*="Home_contactForm"] {
  align-items: stretch;
  background: #fff8f5;
  border: 1px solid #f2e2dc;
  border-radius: 28px;
  box-shadow: 0 12px 38px rgba(44, 31, 25, .08);
  overflow: hidden;
}

.cnhr-expert-section [class*="ContactForm_contactImg"],
.cnhr-expert-section [class*="ContactForm_contactImg"] img {
  height: 100%;
}

.cnhr-expert-section [class*="ContactForm_contactImg"] img {
  display: block;
  object-fit: cover;
  width: 100%;
}

.cnhr-expert-section [class*="ContactForm_contactFormContainer"] {
  display: flex;
  padding: 38px;
}

.cnhr-expert-section [class*="ContactForm_contactFormDiv"] {
  margin: auto 0;
  width: 100%;
}

.cnhr-expert-section [class*="ContactForm_mainHeading"] h2 {
  color: #202033;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.35px;
  line-height: 1.35;
  margin-bottom: 24px;
}

.cnhr-expert-section .cnhr-expert-form input,
.cnhr-expert-section .cnhr-expert-form select {
  background-color: #fff;
  border: 1px solid #eadfd9;
  border-radius: 12px;
  min-height: 50px;
}

.cnhr-expert-section .cnhr-expert-form input:focus,
.cnhr-expert-section .cnhr-expert-form select:focus {
  border-color: #fc4102;
  box-shadow: 0 0 0 3px rgba(252, 65, 2, .1);
  outline: 0;
}

.cnhr-expert-section .cnhr-expert-submit {
  background: #fc4102 !important;
  border: 1px solid #fc4102 !important;
  border-radius: 12px !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  min-height: 50px;
  width: 100%;
}

@media (max-width: 991px) {
  .cnhr-card-grid--all {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cnhr-expert-section [class*="ContactForm_contactFormContainer"] {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  body.cnhr-homepage-active {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .cnhr-homes-toolbar {
    display: flex;
  }

  #our-homes-across-gurgaon .cnhr-card-grid {
    margin-top: 0;
    scroll-behavior: smooth;
  }

  .cnhr-card-amenities {
    min-height: 56px;
  }

  .cnhr-card-amenity {
    font-size: 13px;
    gap: 7px;
  }

  .cnhr-floating-contact {
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid #eee3df;
    bottom: 0;
    box-shadow: 0 -8px 28px rgba(20, 20, 20, .1);
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    left: 0;
    padding: 10px max(14px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-right));
    right: 0;
  }

  .cnhr-floating-contact__action {
    border: 0;
    border-radius: 13px;
    box-shadow: none;
    font-size: 17px;
    gap: 9px;
    height: 54px;
    width: 100%;
  }

  .cnhr-floating-contact__action span {
    display: inline;
    font-size: 14px;
    font-weight: 700;
  }

  .cnhr-floating-contact__action:hover,
  .cnhr-floating-contact__action:focus-visible {
    box-shadow: none;
    transform: none;
  }

  .cnhr-expert-section [class*="Home_contactForm"] {
    border-radius: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .cnhr-expert-section [class*="ContactForm_contactFormContainer"] {
    padding: 24px 18px;
  }

  .cnhr-expert-section [class*="ContactForm_mainHeading"] h2 {
    font-size: 23px;
    line-height: 1.35;
    margin-bottom: 18px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cnhr-homes-control,
  .cnhr-floating-contact__action {
    transition: none;
  }
}
