/* Property landing (/Property) — premium hero, cards & motion */

.planding {
  /* cohesive hero + search palette */
  --pl-navy: #1e3348;
  --pl-navy-soft: #2d4a63;
  --pl-slate: #5c6d7e;
  --pl-slate-light: #8b9aab;
  --pl-bronze: #b8895a;
  --pl-bronze-soft: #d4b896;
  --pl-cream: #faf8f5;
  --pl-cream-deep: #f0ebe4;
  --pl-surface: #fffcf9;
  --pl-surface-soft: #f5f1ec;
  --pl-border: #ddd5cb;
  --pl-border-soft: #ebe5dd;
  --pl-text: #1e3348;
  --pl-text-muted: #6b7c8c;
  --pl-primary: var(--pl-navy-soft);
  --pl-primary-dark: var(--pl-navy);
  --pl-primary-soft: var(--pl-slate);
  --pl-primary-muted: #e8eef3;
  --pl-accent: var(--pl-bronze);
  --pl-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pl-teal: var(--pl-navy-soft);
  --pl-gold: var(--pl-bronze);
  --pl-gold-light: var(--pl-bronze-soft);
  /* Search CTA — professional portal palette */
  --pl-cta-start: #0d9488;
  --pl-cta-mid: #0f766e;
  --pl-cta-end: #1e3a5f;
  --pl-cta-hover-start: #14b8a6;
  --pl-cta-hover-end: #1d4ed8;
  --pl-focus-ring: #2dd4bf;
  --pl-focus-glow: rgba(45, 212, 191, 0.38);
  --pl-search-border: rgba(15, 118, 110, 0.28);
  --pl-search-border-focus: rgba(13, 148, 136, 0.55);
}

.planding .landing-hero-banner.planding-hero-banner {
  min-height: min(64vh, 560px);
  display: flex;
  align-items: center;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(160deg, #2a4055 0%, #3d5a73 40%, #4a6b85 100%);
  box-shadow: 0 20px 48px rgba(30, 51, 72, 0.15);
  overflow: hidden;
}

/* vivid building photo — override site.css dark filter */
.planding .landing-hero-bg-img.planding-hero-bg-img {
  filter: saturate(1.2) contrast(1.06) brightness(1.08);
  opacity: 1;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: planding-hero-kenburns 22s ease-in-out infinite alternate;
  transition: opacity 0.8s ease;
}

.planding .landing-hero-bg-img.planding-hero-bg-img--fade {
  opacity: 0.55;
}

.planding .landing-hero-scrim.planding-hero-scrim {
  background:
    radial-gradient(ellipse 90% 75% at 50% 48%, rgba(18, 32, 48, 0.45) 0%, rgba(18, 32, 48, 0.62) 55%, rgba(12, 22, 34, 0.78) 100%),
    linear-gradient(180deg, rgba(15, 28, 42, 0.35) 0%, rgba(15, 28, 42, 0.5) 100%);
}

@keyframes planding-hero-kenburns {
  from { transform: scale(1.06); }
  to { transform: scale(1.12); }
}

.planding-hero-skyline {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, transparent 0%, #000 35%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 35%);
}

.planding-hero-skyline__glow {
  position: absolute;
  inset: 10% 15% 0;
  background: radial-gradient(ellipse at center, rgba(184, 137, 90, 0.12) 0%, transparent 70%);
  filter: blur(18px);
}

.planding-hero-skyline__buildings {
  position: absolute;
  inset: auto 0 0;
  height: 100%;
}

.planding-hero-building {
  position: absolute;
  bottom: 0;
  left: var(--bl, 10%);
  width: var(--bw, 5%);
  height: var(--bh, 30%);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #f7f4ef 0%, #d8dde3 52%, #a8b4c0 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 -6px 20px rgba(30, 51, 72, 0.12);
  transform-origin: bottom center;
  animation: planding-building-rise 1.1s var(--pl-ease) var(--bd, 0.1s) both;
}

.planding-hero-building::before {
  content: "";
  position: absolute;
  inset: 12% 18% auto;
  height: 58%;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(148, 163, 184, 0.35) 0,
      rgba(148, 163, 184, 0.35) 2px,
      transparent 2px,
      transparent 9px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(148, 163, 184, 0.28) 0,
      rgba(148, 163, 184, 0.28) 2px,
      transparent 2px,
      transparent 11px
    );
  opacity: 0.55;
}

.planding-hero-building--tower {
  background: linear-gradient(180deg, #fff 0%, #e2e8f0 45%, #94a3b8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 -12px 32px rgba(100, 116, 139, 0.28);
}

.planding-hero-building--tower::after {
  content: "";
  position: absolute;
  top: -6%;
  left: 42%;
  width: 16%;
  height: 8%;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, var(--pl-bronze-soft), var(--pl-bronze));
}

@keyframes planding-building-rise {
  from {
    opacity: 0;
    transform: scaleY(0.4);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

.planding-hero-inner {
  flex: 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: clamp(0.65rem, 2vw, 1.1rem) 0 !important;
}

.planding-hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: min(60rem, 97vw);
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* solid panel — headline + search readable over photo */
.planding-hero-panel {
  position: relative;
  width: 100%;
  padding: clamp(0.65rem, 1.6vw, 0.9rem) clamp(1rem, 2.5vw, 1.35rem);
  border-radius: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 32px 80px rgba(8, 16, 28, 0.35),
    0 12px 32px rgba(8, 16, 28, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: planding-fade-up 0.75s var(--pl-ease) both;
}

.planding-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(30, 51, 72, 0.06);
}

.planding-hero-panel .planding-hero-main {
  width: 100%;
  margin-top: 0.25rem;
}

/* main background block — search + property flex together */
.planding-hero-main {
  width: 100%;
  padding: clamp(0.35rem, 1vw, 0.5rem);
  border-radius: 14px;
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.planding-hero-canvas--search {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.planding-hero-canvas__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 12% 8%, rgba(184, 137, 90, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 88% 12%, rgba(45, 74, 99, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse 80% 45% at 50% 100%, rgba(30, 51, 72, 0.05) 0%, transparent 60%);
}

.planding-hero-canvas__shine {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  pointer-events: none;
}

.planding-hero-panel .planding-hero-head,
.planding-hero-panel .planding-search-shell,
.planding-hero-panel .planding-hero-foot {
  width: 100%;
}

.planding-hero-panel .planding-hero-head {
  margin-bottom: 0.1rem;
}

.planding-hero-panel .planding-hero-foot {
  margin-top: 0.4rem;
  padding-top: 0.35rem;
  border-top: 1px solid #eef2f6;
}

.planding-hero-canvas--search .planding-search-console {
  position: relative;
  z-index: 1;
}

.planding-hero-head {
  width: 100%;
  animation: planding-fade-up 0.7s var(--pl-ease) 0.05s both;
}

.planding-hero-foot {
  width: 100%;
  animation: planding-fade-up 0.8s var(--pl-ease) 0.25s both;
}

.planding-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pl-navy);
  background: rgba(232, 238, 243, 0.9);
  border: 1px solid var(--pl-border-soft);
  margin-bottom: 0.3rem;
}

.planding-hero-eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pl-navy-soft);
}

.planding-hero-title {
  margin: 0 0 0.25rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--pl-text);
  animation: planding-fade-up 0.75s var(--pl-ease) 0.1s both;
}

.planding-hero-title em {
  font-style: normal;
  color: var(--pl-bronze);
}

.planding-hero-lead {
  margin: 0 auto;
  max-width: 32rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #4a5d6e;
}

.planding-hero-trust-item {
  font-size: 0.78rem;
  color: #4a5d6e;
}

.planding-hero-trust-dot {
  background: var(--pl-bronze);
}

.planding-hero-microcopy {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  color: #6b7c8c;
}

.planding-search-shell {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin: 0;
  gap: 0;
}

/* Search orbit — hanging property cards around the console */
.planding-search-orbit {
  position: relative;
  width: 100%;
  padding: 1.65rem clamp(3.25rem, 8vw, 4.75rem) 1.5rem;
  margin: 0;
}

.planding-search-orbit__glow {
  position: absolute;
  inset: 14% 4% 18%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 62% 48% at 50% 48%, rgba(184, 137, 90, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 78% 55% at 50% 58%, rgba(45, 74, 99, 0.08) 0%, transparent 68%);
  animation: planding-orbit-glow 5s ease-in-out infinite;
}

.planding-search-orbit__spark {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: var(--pl-bronze);
  box-shadow: 0 0 8px rgba(184, 137, 90, 0.45);
  opacity: 0;
  animation: planding-spark-drift 6s ease-in-out infinite;
}

.planding-search-orbit__spark--1 {
  top: 22%;
  left: 18%;
  animation-delay: 0.2s;
}

.planding-search-orbit__spark--2 {
  top: 30%;
  right: 16%;
  animation-delay: 1.4s;
}

.planding-search-orbit__spark--3 {
  bottom: 24%;
  left: 42%;
  width: 4px;
  height: 4px;
  animation-delay: 2.6s;
}

.planding-hang-card {
  position: absolute;
  z-index: 2;
  width: clamp(6.75rem, 14vw, 8.25rem);
  text-decoration: none;
  color: var(--pl-text);
  opacity: 0;
  animation: planding-hang-drop 0.75s var(--pl-ease) var(--pl-hang-delay, 0.2s) forwards;
  transition: opacity 0.28s ease, filter 0.28s ease;
}

.planding-hang-card--tl {
  top: 0.1rem;
  left: 0.15rem;
}

.planding-hang-card--tr {
  top: 0.1rem;
  right: 0.15rem;
}

.planding-hang-card--bl {
  bottom: 0.1rem;
  left: 0.15rem;
}

.planding-hang-card--br {
  bottom: 0.1rem;
  right: 0.15rem;
}

.planding-hang-card__string {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(184, 137, 90, 0.55), rgba(184, 137, 90, 0.08));
  pointer-events: none;
}

.planding-hang-card--tl .planding-hang-card__string,
.planding-hang-card--tr .planding-hang-card__string {
  top: -14px;
}

.planding-hang-card--bl .planding-hang-card__string,
.planding-hang-card--br .planding-hang-card__string {
  top: -12px;
}

.planding-hang-card__inner {
  display: flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.28rem 0.32rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow:
    0 2px 10px rgba(30, 51, 72, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transform-origin: top center;
  animation: planding-hang-sway var(--pl-hang-dur, 2.8s) ease-in-out var(--pl-hang-delay, 0.2s) infinite;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.planding-hang-card--bl .planding-hang-card__inner,
.planding-hang-card--br .planding-hang-card__inner {
  transform-origin: bottom center;
}

.planding-hang-card:hover .planding-hang-card__inner {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.03);
  border-color: var(--pl-bronze-soft);
  box-shadow: 0 6px 18px rgba(30, 51, 72, 0.12);
}

.planding-hang-card__thumb {
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 7px;
  background-size: cover;
  background-position: center;
}

.planding-hang-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.06rem;
  min-width: 0;
}

.planding-hang-card__badge {
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.08rem 0.28rem;
  border-radius: 999px;
  color: var(--pl-navy-soft);
  background: rgba(232, 238, 243, 0.95);
}

.planding-hang-card__title {
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--pl-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 4.5rem;
}

.planding-hang-card__price {
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 600;
  color: var(--pl-bronze);
}

.planding-search-orbit .planding-hero-canvas--search {
  position: relative;
  z-index: 3;
}

.planding-hero-main.is-search-active .planding-hang-card {
  opacity: 0.55;
  filter: saturate(0.82);
}

.planding-hero-main.is-search-active .planding-hang-card__inner {
  animation-play-state: paused;
}

.planding-hero-main.is-search-active .planding-search-orbit__glow {
  opacity: 1;
  animation-duration: 4s;
}

.planding-hero-main.is-search-active .planding-search-bar-wrap {
  border-color: var(--pl-search-border-focus);
  box-shadow:
    0 16px 42px rgba(15, 118, 110, 0.18),
    0 0 0 5px var(--pl-focus-glow),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}

.planding-hero-main:not(.is-search-active) .planding-hang-card {
  opacity: 0.86;
}

.planding-hero-main:not(.is-search-active) .planding-property-flex .planding-mini-card {
  opacity: 0.86;
  filter: saturate(0.94);
}

@keyframes planding-orbit-glow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes planding-spark-drift {
  0%, 100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.6);
  }
  20% { opacity: 0.65; }
  50% {
    opacity: 0.45;
    transform: translate(6px, -10px) scale(1);
  }
  80% { opacity: 0.2; }
}

@keyframes planding-hang-drop {
  0% {
    opacity: 0;
    transform: translateY(-14px) scale(0.9);
  }
  65% {
    opacity: 1;
    transform: translateY(3px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes planding-hang-sway {
  0%, 100% {
    transform: rotate(calc(var(--pl-hang-tilt, 3deg) * 0.4)) translateY(0);
  }
  33% {
    transform: rotate(var(--pl-hang-tilt, 3deg)) translateY(3px);
  }
  66% {
    transform: rotate(calc(var(--pl-hang-tilt, 3deg) * -0.65)) translateY(1px);
  }
}

/* property cards — flex row inside main background */
.planding-property-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.4rem;
  width: 100%;
  margin-top: 0.3rem;
  padding-top: 0.3rem;
  border-top: 1px solid #e2e8f0;
}

.planding-search-console {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  animation: none;
}

.planding-filter-rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.3rem 0.65rem;
  margin-bottom: 0.25rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #e8eef3;
  opacity: 0.92;
}

.planding-filter-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
}

.planding-filter-group__label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pl-slate-light);
  margin: 0;
  white-space: nowrap;
}

.planding-filter-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}

.planding-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-width: 2.1rem;
  min-height: 1.55rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--pl-navy);
  background: var(--pl-surface-soft);
  border: 1px solid var(--pl-border-soft);
  transition: transform 0.22s var(--pl-ease), background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.planding-chip i {
  font-size: 0.8rem;
  color: var(--pl-slate);
}

.planding-chip:hover {
  color: var(--pl-navy);
  background: #fff;
  transform: translateY(-1px);
  border-color: var(--pl-bronze-soft);
}

.planding-chip--rent i,
.planding-chip--sale i,
.planding-chip--pg i {
  color: var(--pl-slate);
}

.planding-chip--bhk span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(232, 238, 243, 0.95);
  color: var(--pl-navy-soft);
}

.planding-search-bar-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 100%;
  margin: 0.1rem auto 0;
  padding: clamp(0.45rem, 1.1vw, 0.6rem) clamp(0.45rem, 1vw, 0.55rem) clamp(0.4rem, 0.95vw, 0.5rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 16px;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 52%, #f0fdfa 100%);
  border: 1px solid var(--pl-search-border);
  box-shadow:
    0 12px 36px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 1px 0 rgba(13, 148, 136, 0.08) inset;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.planding-search-bar-wrap__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
  font-size: clamp(0.78rem, 1.6vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #334155;
}

.planding-search-bar-wrap__label i {
  color: var(--pl-cta-mid);
  font-size: 1.05em;
}

.planding-search-bar {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 2.55rem;
  border-radius: 12px;
  overflow: visible;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: #fff;
  box-shadow:
    0 2px 10px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.planding-search-bar--hero:focus-within {
  border-color: var(--pl-search-border-focus);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 4px var(--pl-focus-glow),
    0 10px 30px rgba(15, 118, 110, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.planding-search-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 0.85rem;
  color: var(--pl-cta-mid);
  font-size: 1.05rem;
  background: linear-gradient(180deg, #f0fdfa 0%, #ecfeff 100%);
  border-right: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 10px 0 0 10px;
}

.planding-search-bar__input {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: none !important;
  background: transparent !important;
  color: var(--pl-navy) !important;
  font-size: clamp(0.92rem, 1.6vw, 1rem);
  font-weight: 500;
  line-height: 1.3;
  padding: 0.42rem 0.65rem;
  min-height: 2.55rem;
  box-shadow: none !important;
}

.planding-search-bar__input::placeholder {
  color: var(--pl-slate-light);
  font-weight: 400;
}

.planding-search-bar__input:focus {
  outline: none;
}

.planding-search-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.35rem);
  z-index: 30;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(184, 137, 90, 0.28);
  box-shadow: 0 16px 40px rgba(30, 51, 72, 0.16);
  max-height: 18rem;
  overflow-y: auto;
}

.planding-search-suggestions__item,
.portal-search-suggestions__item.property-search-suggestions__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--pl-navy);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  animation: propertySuggestIn 0.32s ease both;
  animation-delay: var(--suggest-delay, 0s);
}

.planding-search-suggestions__item:hover,
.planding-search-suggestions__item.is-active,
.portal-search-suggestions__item.property-search-suggestions__item:hover,
.portal-search-suggestions__item.property-search-suggestions__item.is-active {
  background: linear-gradient(135deg, rgba(184, 137, 90, 0.14) 0%, rgba(45, 74, 99, 0.08) 100%);
  color: var(--pl-navy);
  transform: translateX(2px);
}

.planding .pac-container {
  display: none !important;
}

.planding-maps-auth-error {
  margin: 0.55rem 0 0;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(180, 70, 50, 0.35);
  background: rgba(255, 244, 240, 0.95);
  color: #7a2e1f;
  font-size: 0.82rem;
  line-height: 1.45;
}

.planding-search-bar__input:focus-visible {
  outline: none;
}

.planding-search-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0 1.45rem;
  min-height: 2.55rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0 10px 10px 0;
  font-weight: 700;
  font-size: clamp(0.84rem, 1.5vw, 0.92rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f8fafc;
  background: linear-gradient(145deg, var(--pl-cta-start) 0%, var(--pl-cta-mid) 46%, var(--pl-cta-end) 100%);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.22s var(--pl-ease),
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(15, 23, 42, 0.18),
    0 6px 20px rgba(13, 148, 136, 0.38);
}

.planding-search-bar__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, transparent 48%);
  pointer-events: none;
}

.planding-search-bar__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.32) 50%, transparent 62%);
  transform: translateX(-130%);
  animation: planding-btn-shine 4.2s ease-in-out infinite;
  pointer-events: none;
}

.planding-search-bar__btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: linear-gradient(145deg, var(--pl-cta-hover-start) 0%, var(--pl-cta-mid) 44%, var(--pl-cta-hover-end) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(15, 23, 42, 0.2),
    0 12px 28px rgba(13, 148, 136, 0.45);
}

.planding-search-bar__btn:focus {
  outline: none;
}

.planding-search-bar__btn:focus-visible {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: linear-gradient(145deg, #2dd4bf 0%, var(--pl-cta-start) 40%, #2563eb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 0 0 3px #fff,
    0 0 0 6px var(--pl-focus-ring),
    0 14px 32px rgba(13, 148, 136, 0.48);
}

.planding-search-bar__btn:active {
  transform: translateY(0);
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(145deg, #0f766e 0%, #115e59 50%, #1e3348 100%);
  box-shadow:
    inset 0 3px 10px rgba(15, 23, 42, 0.32),
    0 3px 12px rgba(13, 148, 136, 0.28);
}

.planding-search-bar--hero:has(.planding-search-bar__btn:focus-visible) {
  border-color: var(--pl-search-border-focus);
  box-shadow:
    0 0 0 4px var(--pl-focus-glow),
    0 10px 30px rgba(15, 118, 110, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Mini property cards — flex inside main background */
.planding-property-flex .planding-mini-card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1 1 calc(16.66% - 0.4rem);
  min-width: 8.75rem;
  max-width: none;
  width: auto;
  padding: 0.32rem 0.35rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--pl-text);
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 6px rgba(30, 51, 72, 0.05);
  opacity: 0;
  transform: translateY(6px);
  animation: planding-mini-enter 0.55s var(--pl-ease) var(--pl-mini-delay, 0.3s) forwards;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.planding-property-flex .planding-mini-card:hover {
  border-color: var(--pl-bronze-soft);
  box-shadow: 0 4px 14px rgba(30, 51, 72, 0.1);
  animation-play-state: paused;
  transform: translateY(-2px);
}

.planding-property-flex .planding-mini-card__thumb {
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.planding-mini-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  min-width: 0;
  text-align: left;
}

.planding-mini-card__badge {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.1rem 0.35rem;
  border-radius: 999px;
}

.planding-mini-card__badge--rent,
.planding-mini-card__badge--sale,
.planding-mini-card__badge--pg {
  color: var(--pl-navy-soft);
  background: rgba(232, 238, 243, 0.95);
}

.planding-mini-card__title {
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--pl-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.planding-mini-card__price {
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 600;
  color: var(--pl-bronze);
}

@keyframes planding-console-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes planding-glow-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.06); }
}

@keyframes planding-mini-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes planding-mini-float {
  0%, 100% { transform: translateY(0) rotate(var(--pl-mini-rotate, 0deg)); }
  50% { transform: translateY(-8px) rotate(calc(var(--pl-mini-rotate, 0deg) * -0.5)); }
}

@keyframes planding-strip-in {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.planding-hero-main.is-search-active .planding-property-flex .planding-mini-card {
  opacity: 0.88;
  filter: saturate(0.96);
}


/* Stats strip */
.planding-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin: -2.75rem auto 2.25rem;
  max-width: 940px;
  position: relative;
  z-index: 3;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .planding-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.planding-stat {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 1.15rem 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid transparent;
  background: #fff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.1);
  transform: translateY(22px) scale(0.95);
  transition:
    transform 0.55s var(--pl-ease),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.planding-stats.is-visible .planding-stat {
  transform: translateY(0) scale(1);
}

.planding-stats.is-visible .planding-stat:nth-child(1) { transition-delay: 0.06s; }
.planding-stats.is-visible .planding-stat:nth-child(2) { transition-delay: 0.14s; }
.planding-stats.is-visible .planding-stat:nth-child(3) { transition-delay: 0.22s; }
.planding-stats.is-visible .planding-stat:nth-child(4) { transition-delay: 0.3s; }

.planding-stat__shine {
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 62%
  );
  transform: translateX(-120%) rotate(8deg);
  pointer-events: none;
  opacity: 0;
}

.planding-stats.is-visible .planding-stat__shine {
  opacity: 1;
  animation: planding-stat-shine 4.5s ease-in-out infinite;
}

.planding-stat:nth-child(2) .planding-stat__shine { animation-delay: 0.6s; }
.planding-stat:nth-child(3) .planding-stat__shine { animation-delay: 1.2s; }
.planding-stat:nth-child(4) .planding-stat__shine { animation-delay: 1.8s; }

.planding-stat:hover {
  transform: translateY(-6px) scale(1.02);
}

.planding-stat__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 14px;
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  color: #fff;
  transition: transform 0.35s var(--pl-ease), box-shadow 0.35s ease;
}

.planding-stats.is-visible .planding-stat__icon {
  animation: planding-stat-icon-float 3.2s ease-in-out infinite;
}

.planding-stat:nth-child(2) .planding-stat__icon { animation-delay: 0.35s; }
.planding-stat:nth-child(3) .planding-stat__icon { animation-delay: 0.7s; }
.planding-stat:nth-child(4) .planding-stat__icon { animation-delay: 1.05s; }

.planding-stat:hover .planding-stat__icon {
  transform: scale(1.08) rotate(-4deg);
}

.planding-stat__value {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.15rem;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.planding-stat__label {
  position: relative;
  z-index: 1;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Listings — emerald */
.planding-stat--listings {
  background: linear-gradient(155deg, #ffffff 0%, #ecfdf5 48%, #d1fae5 100%);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow:
    0 16px 40px rgba(16, 185, 129, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.planding-stat--listings:hover {
  box-shadow:
    0 22px 48px rgba(16, 185, 129, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.planding-stat--listings .planding-stat__icon {
  background: linear-gradient(135deg, #34d399 0%, #059669 100%);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.38);
}

.planding-stat--listings .planding-stat__value {
  background-image: linear-gradient(135deg, #047857 0%, #10b981 100%);
}

.planding-stat--listings .planding-stat__label {
  color: #0f766e;
}

/* Localities — sapphire */
.planding-stat--localities {
  background: linear-gradient(155deg, #ffffff 0%, #eff6ff 48%, #dbeafe 100%);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow:
    0 16px 40px rgba(59, 130, 246, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.planding-stat--localities:hover {
  box-shadow:
    0 22px 48px rgba(59, 130, 246, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.planding-stat--localities .planding-stat__icon {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.planding-stat--localities .planding-stat__value {
  background-image: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
}

.planding-stat--localities .planding-stat__label {
  color: #1e40af;
}

/* Verified — bronze gold */
.planding-stat--verified {
  background: linear-gradient(155deg, #ffffff 0%, #fffbeb 48%, #fde68a 100%);
  border-color: rgba(217, 119, 6, 0.35);
  box-shadow:
    0 16px 40px rgba(217, 119, 6, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.planding-stat--verified:hover {
  box-shadow:
    0 22px 48px rgba(217, 119, 6, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.planding-stat--verified .planding-stat__icon {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.35);
}

.planding-stat--verified .planding-stat__value {
  background-image: linear-gradient(135deg, #b45309 0%, #f59e0b 100%);
}

.planding-stat--verified .planding-stat__label {
  color: #92400e;
}

/* Favourites — rose */
.planding-stat--favourites {
  background: linear-gradient(155deg, #ffffff 0%, #fff1f2 48%, #fecdd3 100%);
  border-color: rgba(244, 63, 94, 0.32);
  box-shadow:
    0 16px 40px rgba(244, 63, 94, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.planding-stat--favourites:hover {
  box-shadow:
    0 22px 48px rgba(244, 63, 94, 0.21),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.planding-stat--favourites .planding-stat__icon {
  background: linear-gradient(135deg, #fb7185 0%, #e11d48 100%);
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.34);
  animation-name: planding-stat-heart-pulse;
}

.planding-stat--favourites .planding-stat__value {
  background-image: linear-gradient(135deg, #be123c 0%, #f43f5e 100%);
}

.planding-stat--favourites .planding-stat__label {
  color: #be123c;
}

@keyframes planding-stat-shine {
  0%, 72%, 100% { transform: translateX(-120%) rotate(8deg); }
  38% { transform: translateX(120%) rotate(8deg); }
}

@keyframes planding-stat-icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes planding-stat-heart-pulse {
  0%, 100% { transform: scale(1); }
  35% { transform: scale(1.06); }
  55% { transform: scale(0.98); }
}

/* Corridor + category sections */
.planding-section {
  margin-bottom: 2.5rem;
}

.planding-section__head {
  margin-bottom: 1.25rem;
}

.planding-section__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pl-teal);
  margin-bottom: 0.35rem;
}

.planding-section__title {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.planding-section__lead {
  font-size: 0.9rem;
  color: #64748b;
  max-width: 36rem;
  margin-bottom: 0;
}

.planding-corridor-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.planding-corridor-chip {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: #334155;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.2s ease;
}

.planding-corridor-chip:hover {
  color: #0f766e;
  border-color: rgba(13, 148, 136, 0.35);
  background: rgba(13, 148, 136, 0.06);
  transform: translateY(-2px);
}

.planding-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .planding-category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.planding-category-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.15rem 1rem;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(160deg, #fff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s var(--pl-ease), box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  position: relative;
}

.planding-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cat-accent, var(--pl-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--pl-ease);
}

.planding-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(13, 148, 136, 0.25);
  color: inherit;
}

.planding-category-card:hover::before {
  transform: scaleX(1);
}

.planding-category-card--rent { --cat-accent: #10b981; }
.planding-category-card--sale { --cat-accent: #f59e0b; }
.planding-category-card--pg { --cat-accent: #8b5cf6; }
.planding-category-card--bhk { --cat-accent: #3b82f6; }

.planding-category-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  font-size: 1.15rem;
  background: rgba(15, 23, 42, 0.05);
  color: var(--cat-accent, var(--pl-teal));
}

.planding-category-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.planding-category-card__text {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

/* Featured grid */
.planding-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .planding-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .planding-featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.planding-featured-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s var(--pl-ease), box-shadow 0.35s ease;
}

.planding-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.planding-featured-card__media {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.planding-featured-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--pl-ease);
}

.planding-featured-card:hover .planding-featured-card__img {
  transform: scale(1.06);
}

.planding-featured-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  color: #fff;
}

.planding-featured-card__badge--rent { background: linear-gradient(135deg, #059669, #0d9488); }
.planding-featured-card__badge--sale { background: linear-gradient(135deg, #ea580c, #f59e0b); }

.planding-featured-card__body {
  padding: 1rem 1.1rem 1.15rem;
}

.planding-featured-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.planding-featured-card__loc {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 0.65rem;
}

.planding-featured-card__price {
  font-size: 1rem;
  font-weight: 800;
  color: #0d9488;
}

.planding-featured-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1d4ed8;
  text-decoration: none;
}

.planding-featured-card__cta:hover {
  color: #1e40af;
}

/* Enhanced value cards */
.planding-value-card {
  position: relative;
  padding: 1.35rem 1.25rem 1.25rem 3.5rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.planding-value-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pl-primary-soft), var(--pl-primary));
  transform: scaleX(0);
  transition: transform 0.35s var(--pl-ease);
}

.planding-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.planding-value-card:hover::after {
  transform: scaleX(1);
}

.planding-value-card__icon {
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: var(--pl-teal);
}

.planding-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--pl-ease), transform 0.65s var(--pl-ease);
}

.planding-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes planding-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes planding-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes planding-btn-shine {
  0%, 75%, 100% { transform: translateX(-120%); }
  40% { transform: translateX(120%); }
}

@keyframes planding-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .planding .landing-hero-bg-img.planding-hero-bg-img {
    animation: none;
    transform: scale(1.06);
  }

  .planding-hero-main,
  .planding-hero-head,
  .planding-hero-foot,
  .planding-hero-badge,
  .planding-hero-title,
  .planding-search-shell,
  .planding-search-console,
  .planding-hero-building {
    animation: none;
  }

  .planding-mini-card {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .planding-hang-card {
    opacity: 1;
    animation: none;
  }

  .planding-hang-card__inner {
    animation: none;
  }

  .planding-search-orbit__glow,
  .planding-search-orbit__spark {
    animation: none;
    opacity: 0.6;
  }

  .planding-search-bar__btn::after {
    animation: none;
  }

  .planding-reveal {
    opacity: 1;
    transform: none;
  }

  .planding-stat,
  .planding-stats.is-visible .planding-stat {
    transform: none;
    transition: none;
  }

  .planding-stat__shine,
  .planding-stats.is-visible .planding-stat__icon {
    animation: none;
  }
}

@media (max-width: 991.98px) {
  .planding-search-orbit {
    padding: 1.5rem 3rem 1.4rem;
  }

  .planding-hang-card {
    width: 7rem;
  }

  .planding-hang-card__title {
    max-width: 3.75rem;
  }

  .planding-property-flex .planding-mini-card {
    flex: 1 1 calc(33.33% - 0.4rem);
    min-width: 8.25rem;
  }
}

@media (max-width: 767.98px) {
  .planding-search-orbit {
    padding: 0;
  }

  .planding-hang-card,
  .planding-search-orbit__glow,
  .planding-search-orbit__spark {
    display: none;
  }

  .planding-property-flex {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 0.35rem;
    padding-bottom: 0.2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .planding-property-flex .planding-mini-card {
    flex: 0 0 8.5rem;
    min-width: 8.5rem;
    scroll-snap-align: start;
  }
}

@media (max-width: 575.98px) {
  .planding-hero-stack {
    max-width: 100%;
    padding: 0 0.35rem;
  }

  .planding-hero-panel {
    padding: 0.85rem 0.75rem;
    border-radius: 18px;
  }

  .planding-hero-main {
    padding: 0.35rem 0.4rem;
  }

  .planding-hero-canvas--search {
    padding: 0;
  }

  .planding-filter-rail {
    gap: 0.4rem;
    margin-bottom: 0.35rem;
    padding-bottom: 0.35rem;
  }

  .planding-search-bar {
    min-height: 2.5rem;
  }

  .planding-search-bar-wrap {
    padding: 0.4rem 0.4rem 0.38rem;
  }

  .planding-search-bar__input {
    font-size: 0.92rem;
    padding: 0.38rem 0.5rem;
    min-height: 2.5rem;
  }

  .planding-search-bar__btn {
    padding: 0 1rem;
    min-height: 2.5rem;
    font-size: 0.8rem;
  }

  .planding-search-bar__btn span {
    display: inline;
  }
}

@media (min-width: 992px) {
  .planding-hero-stack {
    max-width: 62rem;
  }

  .planding-search-bar {
    min-height: 2.7rem;
  }

  .planding-search-bar-wrap {
    padding: 0.45rem 0.4rem 0.4rem;
  }

  .planding-search-bar__input {
    min-height: 2.7rem;
    font-size: 1rem;
    padding: 0.48rem 0.75rem;
  }

  .planding-search-bar__btn {
    min-height: 2.7rem;
    padding: 0 1.55rem;
    font-size: 0.94rem;
  }

  .planding-property-flex .planding-mini-card {
    flex: 1 1 calc(16.66% - 0.4rem);
  }
}
