* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Header Section CSS Start From Here */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.brand-logo img {
  display: block;
  width: auto;
  max-width: min(220px, 42vw);
  height: 40px;
  object-fit: contain;
}
/* Header Section CSS End Here */

/* Hero Section CSS Start From Here */
.hero-section {
  position: relative;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-slider-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  color: #fff;
  max-width: 90%;
  width: 900px;
  padding: 20px;
}

.hero-content h1 {
  font-family: 'Jost', sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  line-height: 1.25;
  margin: 0;
  color: #fff;
  animation: fadeInHeroTitle 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes fadeInHeroTitle {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: 0.05em;
  }
}

/* Hero Section CSS End Here */

/* Enquiry Button CSS Start From Here */
.header-cta {
  padding: 5px 20px;
  border-radius: 999px;
  background: #b88943;
  font-size: 0.82rem;
  border: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
/* Enquiry Button CSS End Here */

/* Hero Section CSS Start From Here */
.hero-section {
  position: relative;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
/* Hero Section CSS Start From Here */


/* Footer Section CSS Start From Here */
.site-footer {
  background: #B88943;
  color: #4a4a4a;
  padding: 26px 0 0;
}

.footer-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 18px;
  border-bottom: 1px solid #000000;
}

.footer-left,
.footer-right {
  display: flex;
}

.footer-logo {
  width: 170px;
  height: auto;
  object-fit: contain;
}

.footer-details p,
.footer-bottom p {
  margin: 0;
  margin-bottom: 5px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #fff;
}

.footer-right {
  align-items: end;
  text-align: center;
}
.footer-socials {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 8px;
  margin-top: 12px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #7b5b2c;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
}

.footer-bottom {
  padding: 10px 24px 14px;
  text-align: center;
}
/* Footer Section CSS End Here */


/* Popup Section CSS Start From Here */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

.modal-backdrop[hidden] {
  display: none;
}

.callback-modal {
  position: relative;
  width: min(500px, 100%);
  padding: 40px;
  background: #fcfbf7;
  color: var(--ink-dark);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background: #111;
  transform-origin: center;
}

.modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-title {
  margin: 0 0 20px;
  font-size: clamp(2.1rem, 2vw, 2.1rem);
  font-weight: 500;
  text-align: center;
  color: #b88943;
}

.callback-form {
  display: grid;
  gap: 10px;
}

.field-group {
  display: grid;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
}

.field-group input {
  width: 100%;
  padding: 10px 0 0 5px;
  border: 0;
  border-bottom: 1px solid #b88943;
  background: transparent;
  color: var(--ink-dark);
  outline: none;
}

.field-group input.is-invalid {
  border-bottom-color: #d94b4b;
}
.field-group span{
  font-size: 0.9rem;
}

.field-error {
  min-height: 16px;
  color: #d94b4b;
  font-size: 0.78rem;
  line-height: 1.3;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
}

.checkbox-row input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--accent-deep);
}

.checkbox-row span{
  font-size: 0.9rem;
}

.submit-button {
  justify-self: center;
  padding: 10px 20px;
  border: 0;
  background: #b88943;
  color: #fff;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 20px;
}

.callback-success-message {
  display: none;
  padding: 16px 18px;
  border: 1px solid rgba(155, 177, 31, 0.35);
  background: rgba(188, 213, 49, 0.12);
  color: var(--ink-dark);
  text-align: center;
}

.callback-success-message p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.callback-form.is-submitted .callback-success-message {
  display: block;
}
/* Popup Section CSS end From Here */


/* Heights Wished Section CSS Start From Here */
.heights-wished-section {
  position: relative;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url("assets/bg_image.webp") center/cover no-repeat;
  overflow: hidden;
}

.heights-wished-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 96px;
}

.heights-wished-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 54px;
}

.heights-wished-brand img {
  width: min(240px, 46vw);
  height: auto;
  object-fit: contain;
}

.heights-wished-grid {
  display: grid;
  grid-template-columns: minmax(280px, 450px) minmax(0, 1fr);
  align-items: start;
  gap: 64px;
}

.heights-wished-copy h2 {
  margin: 0 0 32px;
  color: #b98a3d;
  font-family: 'Jost', sans-serif;
  font-size: clamp(2.6rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.02;
}

.heights-wished-text {
  display: grid;
  gap: 18px;
}

.heights-wished-text p {
  margin: 0;
  color: #8c8c8c;
  font-family: 'Jost', sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.6;
}

.heights-wished-carousel-block {
  min-width: 0;
  width: calc(100% + max(24px, (100vw - 1240px) / 2));
  margin-right: calc(-1 * max(24px, (100vw - 1240px) / 2));
}

.heights-wished-carousel-window {
  overflow: hidden;
}

.heights-wished-carousel-track {
  display: flex;
  gap: 14px;
  transform: translateX(0);
  transition: transform 0.55s ease;
}

.heights-wished-slide {
  flex: 0 0 44%;
}

.heights-wished-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 0.72 / 1;
  object-fit: cover;
}

.heights-wished-controls {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.heights-wished-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid #686868;
  border-radius: 50%;
  background: transparent;
  color: #4d4d4d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.heights-wished-arrow span {
  font-size: 0.95rem;
  line-height: 1;
}
/* Heights Wished Section CSS End From Here */

/* Heights Story Section CSS Start From Here */
.heights-story-section {
  position: relative;
}

.story-split-container {
  display: flex;
  position: relative;
  width: 100%;
  background: #f5f5f5;
  align-items: flex-start;
}

.story-visual-column {
  width: 50%;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-visual-wrapper {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 0.78 / 1.38;
  border-radius: 0 0 55% 38% / 0 0 42% 30%;
  overflow: hidden;
}

.story-image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: clip-path, transform, opacity;
}

.story-image-layer.z-3 { z-index: 3; opacity: 1; }
.story-image-layer.z-2 { z-index: 2; opacity: 0; }
.story-image-layer.z-1 { z-index: 1; opacity: 0; }

.story-image-shape {
  width: 100%;
  height: 100%;
}

.story-image-shape img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.story-content-column {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.story-text-panel {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 6.8vh 10% 0;
}

.heights-story-content {
  max-width: 500px;
}

.heights-story-content h2 {
  margin: 0 0 36px;
  color: #b88944;
  font-family: 'Jost', sans-serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.heights-story-content p {
  margin: 0;
  max-width: 20em;
  color: #8a8a8a;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: 1.9;
}

/* Heights Story Section CSS End From Here */


/* Full Hero Slider Section Start */
.full-hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.fhs-track-container {
  width: 100%;
  height: 100%;
}

.fhs-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  will-change: transform;
}

.fhs-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.fhs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fhs-arrow-area {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20%;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

.fhs-arrow-left {
  left: 0;
  justify-content: flex-start;
  padding-left: 40px;
}

.fhs-arrow-right {
  right: 0;
  justify-content: flex-end;
  padding-right: 40px;
}

.fhs-arrow-area button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.35s ease, background 0.2s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fhs-arrow-area:hover button {
  opacity: 1;
}

.fhs-arrow-area button:hover {
  background: #fff;
}
/* Full Hero Slider Section End */

/* SECTION */

.amenities-section2{
    position:relative;
    padding:90px 6%;
    background:url('assets/bg_image.webp') center center/cover no-repeat;
    overflow:hidden;
}

.amenities-overlay2{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.88);
}

.amenities-container2{
    position:relative;
    z-index:2;
    max-width:1240px;
    margin:auto;
}

/* HEADING */

.amenities-heading2{
    text-align:center;
    margin-bottom:70px;
}

.amenities-heading2 h2{
    font-size: clamp(2.6rem, 3vw, 3rem);
    font-weight:500;
    color:#b88943;
    text-transform:uppercase;
    margin-bottom:25px;
}

.amenities-heading2 p{
    max-width:980px;
    margin:auto;
    color:#8d8d8d;
    font-size:16px;
    line-height:2;
}

/* GRID */
.amenities-grid2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
    position: relative;
    padding-top: 40px;
    margin-bottom: -280px; /* Pulls the next section up to hide empty space */
}

.amenity-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
    will-change: transform;
}

.amenity-column:nth-child(1) { margin-top: 40px; }
.amenity-column:nth-child(2) { margin-top: 120px; }
.amenity-column:nth-child(3) { margin-top: 80px; }

/* CARD */
.amenity-card2 {
    width: 100%;
    aspect-ratio: 0.72;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
}

.amenity-card2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.amenity-card2:hover img {
    transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width:991px){

    .amenities-grid2{
        flex-direction: column;
        height: auto;
        display: flex;
        overflow: visible;
        margin-bottom: 0;
    }

    .amenity-column {
        transform: none !important;
        margin-top: 0 !important;
    }

    .amenity-card2 {
        height: auto;
        aspect-ratio: auto;
    }

    .amenity-card2 img {
        height: 350px;
    }

    .amenity-card2:hover {
        /* No hover accordion on mobile */
    }

    .amenities-heading2 h2{
        font-size:42px;
    }

}

@media(max-width:576px){

    .amenities-section2{
        padding:60px 20px;
    }

    .amenities-grid2{
        flex-direction: column;
        height: 1000px;
    }

    .amenities-heading2 h2{
        font-size:30px;
    }

    .amenities-heading2 p{
        font-size:15px;
        line-height:1.8;
    }

    .amenity-card2{
        height: auto;
    }
    .amenity-card2 img{
        height: 250px;
    }

}


.plans-section{
    padding:90px 6%;
    background:#f4f4f4;
}

.plans-container{
    max-width:1240px;
    margin:auto;
}

.plans-heading{
    text-align:center;
    margin-bottom:50px;
}

.plans-heading h2{
    font-size: clamp(2.6rem, 3vw, 3rem);
    color:#b88943;
    font-weight:500;
    margin: 0;
}

.plans-heading p{
    color:#8c8c8c;
    font-size:18px;
}

/* TABS */

.plans-tabs{
    display:flex;
    justify-content:center;
    gap:50px;
    margin-bottom:50px;
    position:relative;
}

.plans-tabs::after{
    content:'';
    position:absolute;
    bottom:0;
    width:210px;
    height:1px;
    background:#d2d2d2;
}

.plan-tab{
    border:none;
    background:none;
    font-size:18px;
    color:#666;
    padding-bottom:12px;
    cursor:pointer;
    position:relative;
    z-index:2;
    transition: color 0.3s ease;
}

.plan-tab.active{
    color:#333;
    font-weight:600;
}

.plan-tab::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:0;
    width:0;
    height:2px;
    background:#b88943;
    transition: width 0.3s ease, left 0.3s ease;
}

.plan-tab.active::after{
    width:100%;
    left: 0;
}

/* CONTENT */

.plans-content{
    display:none;
    opacity: 0;
}

.plans-content.active{
    display:block;
    animation: fadeInTab 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadeInTab {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

.plans-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.plan-box{
    background:#e8e8e8;
    padding:30px;
    text-align:center;
}

.plan-box img{
    width:100%;
    display:block;
}

.plan-box h4{
    margin-top:20px;
    color:#8b8b8b;
    font-size:22px;
    font-weight:600;
}

/* BUTTON */

.plans-btn-wrap{
    text-align:center;
    margin-top:40px;
}

.download-btn{
    display:inline-block;
    background:#b88943;
    color:#fff;
    padding:5px 15px;
    border-radius:30px;
    text-decoration:none;
    font-size:14px;
    letter-spacing:0.5px;
    transition:0.3s;
}

.download-btn:hover{
    background:#9c7438;
}

/* RESPONSIVE */

@media(max-width:991px){

    .plans-grid{
        grid-template-columns:1fr;
    }

    .plans-heading h2{
        font-size:40px;
    }

}

@media(max-width:576px){

    .plans-section{
        padding:60px 20px;
    }

    .plans-heading h2{
        font-size:30px;
    }

    .plans-heading p{
        font-size:15px;
    }

    .plan-tab{
        font-size:15px;
    }

    .plan-box{
        padding:20px;
    }

    .plan-box h4{
        font-size:18px;
    }

}

.map-section{
    padding:0px 6% 80px;
    background:#f3f3f3;
}

.map-container{
    max-width:1240px;
    margin:auto;
}

.map-container img{
    width:100%;
    display:block;
    object-fit:cover;
}

/* MOBILE */

@media(max-width:768px){

    .map-section{
        padding:0px 20px 60px;
    }

}

/* ib height page css end from here */


@media (max-width: 900px) {
  .site-header {
    padding-top: 20px;
  }

  .intro-showcase-shell {
    width: min(100% - 20px, 1360px);
  }

  .intro-image-section {
    margin-top: -68px;
  }
   .intro-showcase-shell{
    padding: 0;
   }
  .icon-top-left {
    left: 56px;
  }

  .icon-bottom-left {
    left: 56px;
    bottom: 282px;
  }

  .icon-bottom-right {
    right: 56px;
    bottom: 220px;
  }

  .icon-left-edge {
    top: 208px;
    left: 6px;
  }

  .amenities-shell {
    width: min(100% - 32px, 1220px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 82px 0 72px;
  }

  .amenities-content {
    max-width: 100%;
  }

  .amenities-flower-wrap {
    justify-self: start;
    width: min(220px, 34vw);
  }

  .location-shell {
    width: min(100% - 32px, 1220px);
    flex-direction: column;
    gap: 40px;
  }

  .location-content,
  .location-map-wrap {
    width: 100%;
  }

  .green-life-shell {
    width: min(100% - 32px, 1280px);
    min-height: auto;
    flex-direction: column;
    gap: 18px;
    padding: 56px 0 64px;
  }

  .green-life-carousel,
  .green-life-content {
    width: 100%;
    flex: none;
  }

  .master-plan-shell {
    width: min(100% - 32px, 1360px);
  }

  .master-plan-decor-right {
    right: -20px;
  }

  .master-plan-decor-mid {
    right: 88px;
  }

  .plotted-layout-shell {
    width: 100%;
  }

  .lifestyle-marquee-section {
    padding: 62px 0 66px;
  }

  .lifestyle-marquee-track {
    gap: 32px;
  }

  .brochure-section {
    padding: 46px 0 58px;
  }

  .footer-shell {
    width: min(100% - 32px, 1120px);
    gap: 24px;
  }

  .heights-wished-shell {
    width: min(100% - 32px, 1240px);
    padding: 52px 0 72px;
  }

  .heights-wished-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .heights-wished-carousel-block {
    width: 100%;
    margin-right: 0;
  }

  .heights-story-panel-inner {
    width: min(100% - 48px, 1140px);
    gap: 42px;
  }
}


@media (max-width: 640px) {
  .site-header {
    width: min(100% - 24px, 1220px);
    gap: 14px;
  }

  .brand-logo img {
    height: 42px;
    max-width: 150px;
  }
  .hero-section{
    min-height: 80vh;
  }

  .header-cta {
    letter-spacing: 0.12em;
  }

  .header-cta {
    padding: 5px 20px;
  }

  .intro-showcase-section {
    padding-top: 40px;
  }

  .intro-brand-logo {
    width: min(188px, 58vw);
  }

  .intro-brand-block {
    margin-bottom: 28px;
  }

  .intro-brand-subtitle {
    margin-top: 6px;
    font-size: clamp(1.1rem, 5vw, 1.45rem);
  }

  .intro-card {
    width: calc(100% - 32px);
    padding: 30px 18px 30px;
  }
  .intro-card img{
    display: none;
  }

  .intro-card-copy {
    width: min(100%, 320px);
    font-size: 0.76rem;
    line-height: 1.9;
  }

  .intro-image-section {
    margin-top: -22px;
  }

  .amenities-section {
    min-height: auto;
  }

  .amenities-shell {
    width: min(100% - 24px, 1220px);
    min-height: auto;
    padding: 60px 0 52px;
    gap: 34px;
  }

  .amenities-heading {
    margin-bottom: 32px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .amenities-flower-wrap {
    width: min(180px, 50vw);
  }

  .location-section {
    padding: 56px 0 64px;
  }

  .location-shell {
    width: min(100% - 24px, 1220px);
    gap: 28px;
  }

  .location-title {
    margin-bottom: 22px;
  }

  .location-row {
    gap: 12px;
    font-size: 0.88rem;
  }

  .location-row strong {
    font-size: 0.82rem;
  }

  .green-life-shell {
    width: min(100% - 24px, 1280px);
    padding: 34px 0 46px;
    gap: 8px;
  }

  .green-life-carousel {
    aspect-ratio: 0.95 / 1;
  }

  .green-life-content h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .master-plan-section {
    padding: 42px 0 28px;
  }

  .master-plan-shell {
    width: min(100% - 24px, 1360px);
  }

  .master-plan-heading {
    gap: 10px;
    margin-bottom: 18px;
  }

  .master-plan-heading-icon {
    width: 36px;
  }

  .master-plan-decor-right {
    top: 62px;
    right: -34px;
    width: 110px;
  }

  .master-plan-decor-mid {
    top: 170px;
    right: 10px;
    width: 56px;
  }

  .master-plan-decor-bottom-left {
    bottom: 40px;
    left: 12px;
  }

  .plotted-layout-section {
    padding: 0;
  }

  .plotted-layout-shell {
    width: 100%;
  }

  .plot-hotspot {
    width: 32px;
    height: 32px;
  }

  .plot-hotspot-ring {
    width: 20px;
    height: 20px;
  }

  .plot-hotspot-core {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.32);
  }
  .plotted-layout-image{
    height: 300px;
  }
  .plot-hotspot-label{
  font-size: 0.50rem;
  }

  .plot-hotspot-line{
  position: absolute;
  inset: 0;
  width: 1px;
  height: 20px;
  border: 1px solid rgb(255, 255, 255);
  top: -5px;
  left: 20px;
}
.plot-hotspot-line::after{
  content: "";
  position: absolute;
  bottom: -5px;
  left: -2.5px;
  background-color: #fff;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

  .internal-Road-one {
  top: 40%;
  left: 33%;
}

.hotspot-park {
  top: 30%;
  left: 13%;
}

.internal-Road-two {
  top: 20%;
  left: 38%;
}

.internal-Road-three{
  top: 28%;
  left: 60%;
}

.internal-Road-four{
  top: 32%;
  left: 82%;
}

.hotspot-commercial-one {
  top: 60%;
  left: 57.5%;
}

.hotspot-commercial-two {
  top: 52%;
  left: 73%;
}

.hotspot-entrance {
  top: 68%;
  left: 48%;
}

  .lifestyle-marquee-section {
    padding: 42px 0 46px;
  }

  .lifestyle-marquee-track {
    gap: 18px;
  }

  .lifestyle-marquee-card {
    width: 72vw;
  }

  .brochure-section {
    padding: 34px 0 42px;
  }

  .brochure-shell {
    width: min(100% - 24px, 720px);
  }

  .brochure-image {
    width: 100%;
  }

  .green-life-slide .butterfly{
  position: absolute;
  bottom: -150px;
  right: 0;
  z-index: 9999;
  width: 250px;
}
.green-life-slide .parrot{
  position: absolute;
  top: -150px;
  right: 0;
  z-index: 9999;
  width: 250px;
}

  .footer-shell {
    width: min(100% - 24px, 1120px);
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }

  .footer-left,
  .footer-right {
    align-items: end;
    text-align: center;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-phone-list a {
    font-size: 0.98rem;
  }

  .footer-address {
  text-align: center;
}

.footer-socials{
  justify-content: center;
}

  .heights-wished-shell {
    width: min(100% - 24px, 1240px);
    padding: 34px 0 48px;
  }

  .heights-wished-brand {
    margin-bottom: 28px;
  }

  .heights-wished-brand img {
    width: min(190px, 56vw);
  }

  .heights-wished-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .heights-wished-text {
    gap: 14px;
  }

  .heights-wished-text p {
    font-size: 0.98rem;
  }

  .heights-wished-carousel-track {
    gap: 10px;
  }

  .heights-wished-slide {
    flex: 0 0 78%;
  }

  .heights-wished-controls {
    margin-top: 16px;
  }

  .heights-story-section {
    height: auto;
  }

  .heights-story-frame {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .heights-story-container {
    height: auto;
    transform: none !important;
    transition: none;
  }

  .heights-story-panel {
    height: auto;
    min-height: 100vh;
    padding: 42px 0;
  }

  .heights-story-panel-inner {
    width: min(100% - 24px, 1140px);
    flex-direction: column;
    gap: 26px;
  }

  .heights-story-visual {
    width: 100%;
  }

  .heights-story-shape {
    position: relative;
    top: auto;
    height: auto;
    width: min(100%, 280px);
  }

  .heights-story-content {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .heights-story-content h2 {
    margin-bottom: 16px;
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .heights-story-content p {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .floating-icon {
    opacity: 0.88;
  }

  .icon-top-left {
    top: 58px;
    left: 40px;
  }

  .icon-left-mid {
    top: 194px;
    left: 10px;
  }

  .icon-bottom-left {
    left: 28px;
    bottom: 154px;
  }

  .icon-bottom-right {
    right: 28px;
    bottom: 124px;
  }

  .icon-corner-left {
    top: 2px;
    left: -26px;
  }

  .icon-left-edge {
    top: 188px;
    left: -2px;
  }

  .icon-corner-right {
    top: 118px;
    right: -16px;
  }

  .icon-corner-top-right {
    top: -4px;
    right: 38px;
  }

  .callback-modal {
    padding: 54px 24px 36px;
  }

  .modal-close {
    top: 18px;
    right: 18px;
  }

  .checkbox-row {
    align-items: flex-start;
  }
}