:root {
  --blk: #0c1d23;
  --d1: #0e2028;
  --d2: #102029;
  --d3: #142630;
  --teal: #264E57;
  --teal2: #3a7080;
  --gold: #c38a6e;
  --goldl: #d4a484;
  --goldd: rgba(195, 138, 110, .18);
  --white: #fff;
  --gray: #888;
  --lgray: #ccc;
  --glass: rgba(255, 255, 255, .05);
  --gb: rgba(195, 138, 110, .28);
  --ff: 'Cormorant Garamond', Georgia, serif;
  --fb: 'DM Sans', system-ui, sans-serif;
  --tr: .42s cubic-bezier(.25, .46, .45, .94);
  --sp: 100px 0;
  --sps: 64px 0;
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--blk);
  color: var(--white);
  font-family: var(--fb);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: var(--fb);
}

input,
select,
textarea {
  font-family: var(--fb);
}

::selection {
  background: var(--gold);
  color: var(--blk);
}

.spbar {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  z-index: 9997;
  transition: width 0.1s;
}

.ctr {
  max-width: 1200px;
  margin: 0px auto;
  padding: 0px 28px;
}

.ctrw {
  max-width: 1440px;
  margin: 0px auto;
  padding: 0px 40px;
}

.eyebrow {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.stitle {
  font-family: var(--ff);
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
}

.stitle em {
  font-style: italic;
  color: var(--gold);
}

.ssub {
  font-size: 15px;
  font-weight: 300;
  color: #ffffff !important;
  line-height: 1.85;
  max-width: 580px;
}

.grule {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 22px 0px;
}

.grule.c {
  margin: 22px auto;
}

.thead {
  text-align: center;
  margin-bottom: 64px;
}

.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--blk);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
}

.btn-g::before {
  content: "";
  position: absolute;
  inset: 0px;
  background: var(--goldl);
  transform: translateX(-100%);
  transition: var(--tr);
}

.btn-g:hover::before {
  transform: translateX(0px);
}

.btn-g>* {
  position: relative;
  z-index: 1;
}

.btn-g:hover {
  transform: translateY(-2px);
  box-shadow: rgba(195, 138, 110, 0.3) 0px 10px 32px;
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 34px;
  border: 1px solid var(--gold);
  transition: var(--tr);
}

.btn-o:hover {
  background: var(--gold);
  color: var(--blk);
  transform: translateY(-2px);
}

.btn-t {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  width: 100%;
  transition: var(--tr);
}

.btn-t:hover {
  background: var(--teal2);
  transform: translateY(-2px);
}

#nav {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 1000;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--tr);
}

#nav.scrolled {
  background: rgba(11, 25, 31, 0.96);
  backdrop-filter: blur(20px);
  padding: 14px 40px;
  border-bottom: 1px solid rgba(195, 138, 110, 0.1);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0px;
  right: 0px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-btn {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 10px 22px;
  background: none;
  transition: var(--tr);
}

.nav-btn:hover {
  background: var(--gold);
  color: var(--blk);
}

.nav-rera-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
}

.nav-rera-line,
.nav-rera-badge .h-rera-line {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.5;
  transition: color 0.3s;
}

.nav-rera-url,
.nav-rera-badge .h-rera-url {
  color: var(--white) !important;
  text-decoration: none;
  cursor: pointer;
}

.nav-rera-badge:hover .nav-rera-line,
.nav-rera-badge:hover .h-rera-line {
  color: rgba(195, 138, 110, 0.8);
}

.nav-rera-url:hover,
.nav-rera-badge .h-rera-url:hover {
  color: var(--gold) !important;
  text-decoration: underline;
}

#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hslider {
  position: absolute;
  inset: 0px;
}

.hslide {
  position: absolute;
  inset: 0px;
  opacity: 0;
  transition: opacity 1.6s;
}

.hslide.on {
  opacity: 2;
}

.hslide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: 14s ease-in-out 0s infinite normal none running kb;
}

.hslide:nth-child(2) img {
  animation-name: kb2;
  animation-delay: -5s;
}

.hslide:nth-child(3) img {
  animation-name: kb3;
  animation-delay: -10s;
}

@keyframes kb {
  0% {
    transform: scale(1) translate(0px, 0px);
  }

  50% {
    transform: scale(1.07) translate(-1.2%, -1%);
  }

  100% {
    transform: scale(1) translate(0px, 0px);
  }
}

@keyframes kb2 {
  0% {
    transform: scale(1.06) translate(1%, 0px);
  }

  50% {
    transform: scale(1) translate(-1%, 1.2%);
  }

  100% {
    transform: scale(1.06) translate(1%, 0px);
  }
}

@keyframes kb3 {
  0% {
    transform: scale(1) translate(-1%, 1%);
  }

  50% {
    transform: scale(1.08) translate(1.2%, -1%);
  }

  100% {
    transform: scale(1) translate(-1%, 1%);
  }
}

.hov {
  position: absolute;
  inset: 0px;
  background: linear-gradient(105deg, rgba(12, 28, 34, 0.35) 0%, rgba(12, 28, 34, 0.38) 45%, rgba(12, 28, 34, 0.12) 100%);
  pointer-events: none;
}

.hovb {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 220px;
  background: linear-gradient(to top, var(--blk), transparent);
  pointer-events: none;
}

.hcontent {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0px auto;
  padding: 80px 40px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.htext {
  flex: 0 0 50%;
  max-width: 580px;
}

.h-ey {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.h-ey::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.h1 {
  font-family: var(--ff);
  font-size: clamp(46px, 6vw, 90px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 10px;
}

.h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.htag {
  font-family: var(--ff);
  font-size: clamp(15px, 2vw, 21px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 34px;
  line-height: 1.5;
}

.hmeta {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
}

.hmeta-i {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(195, 138, 110, 0.3);
  padding-left: 14px;
}

.hmeta-i .val {
  font-family: var(--ff);
  font-size: 26px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.hmeta-i .lbl {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

.hacts {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hdots {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  border: none;
  transition: 0.4s;
}

.hdot.on {
  background: var(--gold);
  width: 26px;
  border-radius: 3px;
}

#mobile-form-wrap {
  display: none;
}

@media (max-width: 768px) {
  #mobile-form-wrap {
    display: block;
  }

  #mobile-form-wrap .ftit {
    color: var(--white);
  }

  #mobile-form-wrap .hform {
    border-right: none;
    border-bottom: none;
    border-left: none;
    border-image: initial;
    border-top: 2px solid var(--gold);
  }
}

.hform {
  flex: 0 0 370px;
  background: rgba(12, 28, 34, 0.62);
  backdrop-filter: blur(22px);
  border: 1px solid var(--gb);
  padding: 38px 30px;
  position: relative;
}

.hform::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ftit {
  font-family: var(--ff);
  font-size: 23px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 5px;
}

.fsub {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1px;
  margin-bottom: 26px;
}

.fg {
  margin-bottom: 14px;
  position: relative;
}

.fg label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 7px;
}

.fg input,
.fg select {
  width: 100%;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
}

.fg input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.fg input:focus,
.fg select:focus {
  border-color: var(--gold);
}

.fg.ph {
  display: flex;
}

.fpfx {
  padding: 13px 11px;
  background: rgba(195, 138, 110, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-image: initial;
  border-right: none;
  color: var(--gold);
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

.fg select option {
  background: var(--d1);
}

.ferr {
  font-size: 10px;
  color: rgb(255, 107, 107);
  margin-top: 3px;
  display: none;
}

.frera {
  font-size: 9px;
  color: var(--gray);
  line-height: 1.5;
  margin-top: 10px;
  text-align: center;
}

.ticker {
  background: var(--teal);
  overflow: hidden;
}

.t-track {
  display: flex;
  align-items: center;
  animation: 32s linear 0s infinite normal none running tick;
  width: max-content;
}

.t-track:hover {
  animation-play-state: paused;
}

.t-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 17px 44px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.t-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--goldl);
  flex-shrink: 0;
}

@keyframes tick {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-50%);
  }
}

#intro {
  padding: var(--sp);
  background: var(--blk);
  position: relative;
  overflow: hidden;
}

#intro::before {
  content: "NEO";
  position: absolute;
  font-family: var(--ff);
  font-size: 32vw;
  font-weight: 700;
  color: rgba(195, 138, 110, 0.024);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -8px;
}

.igrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.iimg {
  position: relative;
}

.iimg img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.ibadge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 22px;
  text-align: center;
}

.ibadge .bn {
  font-family: var(--ff);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}

.ibadge .bl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.iq {
  font-family: var(--ff);
  font-size: clamp(15px, 1.75vw, 23px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1.55;
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin: 10px 0px;
}

.ifeats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.ifeat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s;
}

.ifeat:hover {
  border-color: rgba(195, 138, 110, 0.28);
}

.ifeat-ico {
  width: 30px;
  height: 30px;
  background: var(--goldd);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 13px;
}

.ifeat:hover .ifeat-ico {
  background: var(--goldd);
  border-color: var(--gold);
}

.ifeat strong {
  display: block;
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

.ifeat p {
  font-size: 13px;
  color: var(--lgray);
  line-height: 1.5;
  letter-spacing: 0.5px;
}

#stats {
  padding: 36px 0;
  background: var(--teal);
  position: relative;
  overflow: hidden;
}

#stats::after {
  content: "";
  position: absolute;
  inset: 0px;
  background: radial-gradient(at 50% 0%, rgba(195, 138, 110, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.sgrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.stat {
  background: var(--teal);
  padding: 50px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.stat:hover {
  background: rgba(38, 78, 87, 0.5);
}

.stat::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.stat:hover::before {
  opacity: 1;
}

.snum {
  font-family: var(--fb);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1px;
}

.snum sup {
  font-size: 0.38em;
  color: var(--gold);
  vertical-align: super;
}

.slbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
}

.ssub2 {
  font-size: 13px;
  color: var(--white);
  margin-top: 3px;
  letter-spacing: 0.8;
}

#usps {
  padding: var(--sp);
  background: var(--d1);
}

.ugrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.ucard {
  background: var(--d2);
  padding: 46px 34px;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
}

.ucard::after {
  content: "";
  position: absolute;
  inset: 0px;
  border: 1px solid transparent;
  transition: border-color 0.4s;
  pointer-events: none;
}

.ucard:hover {
  transform: translateY(-4px);
  background: var(--d3);
}

.ucard:hover::after {
  border-color: rgba(195, 138, 110, 0.28);
}

.ucn {
  font-family: var(--fb);
  font-size: 38px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  position: absolute;
  top: 22px;
  right: 22px;
  transition: color 0.4s;
  letter-spacing: -1px;
}

.ucard:hover .ucn {
  color: rgba(255, 255, 255, 0.1);
}

.uico {
  width: 52px;
  height: 52px;
  background: var(--goldd);
  border: 1px solid rgba(195, 138, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: var(--gold);
  transition: background 0.4s;
  font-size: 20px;
}

.ucard:hover .uico {
  background: rgba(195, 138, 110, 0.15);
}

.uname {
  font-family: var(--ff);
  font-size: 23px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 11px;
  line-height: 1.2;
}

.udesc {
  font-size: 15px;
  color: var(--lgray);
  line-height: 1.75;
}

#sky {
  padding: var(--sp);
  background: var(--blk);
}

.sky-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  min-height: 580px;
}

.sky-card {
  position: relative;
  overflow: hidden;
}

.sky-card img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform 0.8s;
}

.sky-card:hover img {
  transform: scale(1.05);
}

.sky-ov {
  position: absolute;
  inset: 0px;
  background: linear-gradient(to top, rgba(12, 28, 34, 0.92) 0%, rgba(12, 28, 34, 0.15) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 38px;
}

.sky-lv {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.sky-t {
  font-family: var(--ff);
  font-size: 34px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.15;
}

.sky-d {
  font-size: 15px;
  color: var(--white);
  line-height: 1.6;
}

#amenities {
  padding: var(--sp);
  background: var(--d1);
}

.atabs {
  display: flex;
  gap: 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 52px;
  overflow-x: auto;
  scrollbar-width: none;
}

.atabs::-webkit-scrollbar {
  display: none;
}

.atab {
  padding: 15px 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border-top: none;
  border-right: none;
  border-left: none;
  border-image: initial;
  background: none;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  white-space: nowrap;
  position: relative;
  bottom: -1px;
}

.atab.on,
.atab:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.apanel {
  display: none;
}

.apanel.on {
  display: block;
}

.agrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 2px;
}

.aitem {
  position: relative;
  overflow: hidden;
  height: 270px;
}

.aitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.aitem:hover img {
  transform: scale(1.09);
}

.aov {
  position: absolute;
  inset: 0px;
  background: linear-gradient(to top, rgba(12, 28, 34, 0.88) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  transition: background 0.4s;
}

.aitem:hover .aov {
  background: linear-gradient(to top, rgba(38, 78, 87, 0.82) 0%, rgba(38, 78, 87, 0.15) 100%);
}

.aname {
  font-family: var(--ff);
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
}

#location {
  padding: var(--sp);
  background: var(--blk);
}

.lgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.lacc-list {
  margin-top: 36px;
}

.lacc-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.lacc-trig {
  width: 100%;
  padding: 19px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.lacc-trig:hover,
.lacc-trig.on {
  color: var(--gold);
}

.aic {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: 0.3s;
  flex-shrink: 0;
  color: var(--gray);
}

.lacc-trig.on .aic {
  border-color: var(--gold);
  background: var(--goldd);
  color: var(--gold);
  transform: rotate(45deg);
}

.lacc-body {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s;
}

.lacc-body.op {
  max-height: 400px;
  padding-bottom: 18px;
}

.litems {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.litem {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.litem:last-child {
  border: none;
}

.ln {
  font-size: 15px;
  color: var(--white);
  flex: 1 1 0%;
}

.lt {
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 1px;
  white-space: nowrap;
  font-weight: 600;
}

.lmap {
  border: 1px solid rgba(195, 138, 110, 0.2);
  overflow: hidden;
  position: relative;
}

.lmap iframe {
  width: 100%;
  height: 480px;
  border: 0px;
  display: block;
  filter: grayscale(55%) invert(88%);
}

.lbadge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--teal);
  color: var(--white);
  padding: 7px 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#floorplans {
  padding: var(--sp);
  background: var(--d1);
}

.fptabs {
  display: flex;
  justify-content: center;
  gap: 0px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: fit-content;
  margin: 0px auto 46px;
}

.fptab {
  padding: 13px 30px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border-top: none;
  border-bottom: none;
  border-left: none;
  border-image: initial;
  background: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.fptab:last-child {
  border-right: none;
}

.fptab.on {
  background: var(--gold);
  color: var(--blk);
}

.fpcont {
  display: none;
}

.fpcont.on {
  display: block;
}

.fpgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fpcard {
  background: var(--d2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: border-color 0.4s;
}

.fpcard:hover {
  border-color: rgba(195, 138, 110, 0.28);
}

.fpwrap {
  position: relative;
  overflow: hidden;
}

.fpimg {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: filter 0.6s, transform 0.6s;
}

.fpcard.unlocked .fpimg {
  filter: none;
}

.fplock {
  position: absolute;
  inset: 0px;
  background: rgba(12, 28, 34, 0.58);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.4s;
}

.fpcard.unlocked .fplock {
  opacity: 0;
  pointer-events: none;
}

.fplock-ico {
  font-size: 26px;
  color: var(--gold);
}

.fplock-t {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.fpinfo {
  padding: 18px 22px;
}

.fptype {
  font-family: var(--ff);
  font-size: 21px;
  font-weight: 400;
  color: var(--white);
}

.fpsize {
  font-size: 12px;
  color: var(--white);
  margin-top: 3px;
}

.fpprice {
  font-size: 13px;
  color: var(--gold);
  margin-top: 7px;
  font-weight: 500;
}

.fpunlock {
  text-align: center;
  padding: 44px;
  background: var(--d2);
  border: 1px dashed rgba(195, 138, 110, 0.28);
  margin-top: 36px;
}

.fpunlock p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 22px;
}

.fpuf {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 10px;
  max-width: 700px;
  margin: 0px auto;
}

.fpuf input {
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
}

.fpuf input:focus {
  border-color: var(--gold);
}

.fpuf input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

#gallery {
  padding: var(--sp);
  background: var(--blk);
}

.ggrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gitem {
  overflow: hidden;
  position: relative;
}

.gitem:nth-child(1) {
  grid-area: span 2 / span 2;
}

.gitem:nth-child(6) {
  grid-column: span 2;
}

.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s;
  min-height: 190px;
}

.gitem:nth-child(1) img {
  min-height: 388px;
}

.gitem:hover img {
  transform: scale(1.07);
}

.gov {
  position: absolute;
  inset: 0px;
  background: rgba(12, 28, 34, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.gitem:hover .gov {
  opacity: 1;
}

.gzoom {
  color: var(--white);
  font-size: 22px;
}

.lightbox {
  position: fixed;
  inset: 0px;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.op {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lb-close {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--white);
  font-size: 30px;
  background: none;
  border: none;
  line-height: 1;
}

#developer {
  padding: var(--sp);
  background: var(--d1);
}

.devgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.dev-logos {
  display: flex;
  gap: 0px;
  margin-bottom: 36px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.dlogo {
  flex: 1 1 0%;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--ff);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 2px;
  text-align: center;
}

.dlogo:last-child {
  border-right: none;
}

.dlogo img {
  height: 60px;
  width: 100%;
  object-fit: contain;
  display: block;
}

.dlogo span {
  color: var(--gold);
}

.dstats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.dstat {
  text-align: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dsn {
  font-family: var(--ff);
  font-size: 34px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.dsl {
  font-size: 10px;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 5px;
}

.devimg {
  position: relative;
}

.devimg img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.devbadge {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(38, 78, 87, 0.9);
  backdrop-filter: blur(10px);
  padding: 22px;
  border-top: 1px solid rgba(195, 138, 110, 0.28);
}

.devbadge p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

#testimonials {
  padding: var(--sp);
  background: var(--blk);
  overflow: hidden;
}

.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tcard {
  background: var(--d1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 38px 32px;
  position: relative;
  transition: border-color 0.4s;
}

.tcard:hover {
  border-color: rgba(195, 138, 110, 0.28);
}

.tq {
  font-size: 52px;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.88;
  font-family: serif;
  margin-bottom: 18px;
}

.ttext {
  font-family: var(--fb);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--lgray);
  line-height: 1.75;
  margin-bottom: 24px;
}

.tstars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.tauth {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

.tconf {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1px;
  margin-top: 3px;
}

#faq {
  padding: var(--sp);
  background: var(--d1);
}

.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.fhead {
  position: sticky;
  top: 100px;
}

.flist {}

.fitem {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ftrig {
  width: 100%;
  padding: 21px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  transition: color 0.3s;
}

.ftrig:hover,
.ftrig.on {
  color: var(--gold);
}

.fplus {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  color: var(--gray);
  transition: 0.3s;
}

.ftrig.on .fplus {
  background: var(--goldd);
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(45deg);
}

.fans {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s;
}

.fans.op {
  max-height: 280px;
  padding-bottom: 18px;
}

.fans p {
  font-size: 13px;
  color: var(--white);
  line-height: 1.85;
}

#footer-cta {
  padding: var(--sp);
  background: var(--teal);
  position: relative;
  overflow: hidden;
}

#footer-cta::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(195, 138, 110, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.fcgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.fc-form {
  background: rgba(0, 0, 0, 0.22);
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

footer {
  background: rgb(3, 3, 3);
  padding: 60px 0px 0px;
  border-top: 1px solid rgba(195, 138, 110, 0.08);
}

.fgridf {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 56px;
}

.flogo {
  font-family: var(--ff);
  font-size: 34px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 14px;
}

.flogo span {
  color: var(--gold);
}

.ftagl {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 22px;
  line-height: 1.7;
}

.fsocs {
  display: flex;
  gap: 10px;
}

.fsoc {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
  transition: 0.3s;
}

.fsoc:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.fcol h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.fcol ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fcol ul a {
  font-size: 12px;
  color: var(--gray);
  transition: color 0.3s;
}

.fcol ul a:hover {
  color: var(--white);
}

.fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 22px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.frera {
  font-size: 10px;
  color: var(--gray);
  line-height: 1.5;
}

.fcopy {
  font-size: 10px;
  color: (var(--white));
}

#sideTab {
  position: fixed;
  right: -130px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  z-index: 950;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: var(--gold);
  color: var(--blk);
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 10px;
  border: none;
  border-radius: 6px 0 0 6px;
  cursor: pointer;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.2s;
  box-shadow: -3px 0 18px rgba(0, 0, 0, 0.35);
}

#sideTab.show {
  right: 0;
}

#sideTab:hover {
  background: var(--goldl);
}

#bbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: space-between;
  background: #0c1c22;
  border-top: 1px solid rgba(195, 138, 110, .18);
  padding: 10px 16px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 768px) {
  #bbar {
    display: flex;
  }
}

#bbar.show {
  transform: translateY(0);
}

.bbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.bbar-logo-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.bbar-logo-name span:first-child {
  font-family: var(--fs);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 2px;
}

.bbar-logo-name span:last-child {
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.bbn-enq {
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  border-radius: 2px;
  background: var(--gold);
  color: var(--blk);
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--tr);
}

.bbn-enq:hover {
  background: var(--goldl);
}

#popup {
  position: fixed;
  inset: 0px;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#popup.op {
  display: flex;
}

.pbdrop {
  position: absolute;
  inset: 0px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.pbox {
  position: relative;
  z-index: 1;
  background: var(--d1);
  border: 1px solid var(--gb);
  max-width: 500px;
  width: 100%;
  overflow: hidden;
}

.pimg {
  height: 190px;
  position: relative;
}

.pimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.piov {
  position: absolute;
  inset: 0px;
  background: linear-gradient(rgba(12, 28, 34, 0.25), rgba(12, 28, 34, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.piov h3 {
  font-family: var(--ff);
  font-size: 26px;
  color: var(--white);
  font-weight: 300;
}

.piov h3 em {
  color: var(--gold);
  font-style: italic;
}

.pbody {
  padding: 28px 30px;
}

.pclose {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.25s, border-color 0.25s;
  cursor: pointer;
}

.pclose:hover {
  background: rgba(195, 138, 110, 0.9);
  border-color: var(--gold);
}

.pclose svg {
  display: block;
  pointer-events: none;
}

#ty {
  position: fixed;
  inset: 0px;
  z-index: 9990;
  background: rgba(12, 28, 34, 0.97);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px;
}

#ty.op {
  display: flex;
}

.ty-ico {
  width: 76px;
  height: 76px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 30px;
  margin-bottom: 28px;
  animation: 2s ease-in-out 0s infinite normal none running pulse;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: rgba(195, 138, 110, 0.4) 0px 0px 0px 0px;
  }

  50% {
    box-shadow: rgba(195, 138, 110, 0) 0px 0px 0px 18px;
  }
}

.ty-t {
  font-family: var(--ff);
  font-size: 50px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 10px;
}

.ty-t em {
  color: var(--gold);
  font-style: italic;
}

.ty-s {
  font-size: 15px;
  color: var(--gray);
  max-width: 380px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.ty-cl {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 11px 30px;
  font-family: var(--fb);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
}

.ty-cl:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.sdiv {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(195, 138, 110, 0.28), transparent);
}

.nav-ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.nav-ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: 0.3s;
}

.nav-ham.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-ham.open span:nth-child(2) {
  opacity: 0;
}

.nav-ham.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

#mobile-nav {
  display: none;
  position: fixed;
  inset: 0px;
  background: var(--blk);
  z-index: 998;
  padding: 90px 28px 40px;
  flex-direction: column;
  gap: 0px;
  overflow-y: auto;
}

#mobile-nav.open {
  display: flex;
}

#mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

#mobile-nav ul li a {
  display: block;
  padding: 18px 0px;
  font-family: var(--ff);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

#mobile-nav ul li a:hover {
  color: var(--gold);
}

@media (max-width: 1024px) {
  .hcontent {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 120px;
  }

  .hform {
    width: 100%;
    max-width: 520px;
    flex: 0 0 auto;
  }

  .htext {
    max-width: 100%;
    flex: 0 0 auto;
    width: 100%;
  }

  .igrid,
  .devgrid,
  .fcgrid,
  .fgrid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .fcgrid {
    gap: 32px;
  }

  .fhead {
    position: static;
  }

  .sgrid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .sky-grid,
  .lgrid {
    grid-template-columns: 1fr;
  }

  .sky-card img {
    height: 360px;
  }

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

  .gitem:nth-child(1) {
    grid-column: span 2;
  }

  .tgrid {
    grid-template-columns: 1fr;
  }

  .fgridf {
    grid-template-columns: 1fr 1fr;
  }

  .devgrid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --sp: 52px 0;
  }

  #nav {
    padding: 14px 18px;
  }

  .nav-links,
  .nav-btn,
  .nav-rera-badge {
    display: none;
  }

  .nav-ham {
    display: flex;
  }

  .ctr {
    padding: 0px 18px;
  }

  .ctrw {
    padding: 0px 18px;
  }

  #hero {
    min-height: 100vh;
  }

  .hcontent {
    padding: 80px 18px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .htext {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
  }

  .h-prog-wrap {
    display: none;
  }

  .h-loc {
    gap: 7px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }

  .h-loc-pipe {
    display: none;
  }

  .h-loc-txt:last-child {
    display: none;
  }

  .h-loc-txt {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .h-pre {
    font-size: clamp(24px, 7vw, 36px);
  }

  .h1-big {
    font-size: clamp(44px, 13vw, 68px);
  }

  .h-headline {
    margin-bottom: 12px;
  }

  .h-sub-ln {
    font-size: 9.5px;
    letter-spacing: 0.4px;
    white-space: normal;
    line-height: 1.6;
  }

  .h-rule-row {
    gap: 10px;
    margin-bottom: 16px;
  }

  .h-statpanel {
    max-width: 100%;
  }

  .h-sp-i {
    padding: 10px 8px;
  }

  .h-sp-v {
    font-size: 19px;
  }

  .h-sp-l {
    font-size: 6px;
    letter-spacing: 1px;
  }

  .hacts {
    display: none;
  }

  .hmeta {
    gap: 14px;
  }

  .h1 {
    font-size: 38px;
  }

  .iimg img {
    height: 300px;
  }

  .ibadge {
    position: static;
    margin-top: 16px;
    display: inline-block;
  }

  .ibadge .bn {
    font-size: 32px;
  }

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

  .stat {
    padding: 28px 16px;
  }

  .ugrid {
    grid-template-columns: 1fr;
  }

  .ucard {
    padding: 28px 20px;
  }

  .ucn {
    font-size: 36px;
  }

  .sky-card img {
    height: 280px;
  }

  .sky-ov {
    padding: 24px 20px;
  }

  .sky-t {
    font-size: 22px;
  }

  .sky-d {
    font-size: 11px;
  }

  .atab {
    padding: 12px 16px;
    font-size: 10px;
  }

  .aitem {
    height: 200px;
  }

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

  .fptab {
    padding: 10px 16px;
    font-size: 10px;
  }

  .fpunlock {
    padding: 24px 18px;
  }

  .gitem img {
    min-height: 120px;
  }

  .gitem:nth-child(1) img {
    min-height: 180px;
  }

  .lmap iframe {
    height: 280px;
  }

  .devimg img {
    height: 300px;
  }

  .devgrid {
    gap: 32px;
  }

  .dstats {
    grid-template-columns: repeat(3, 1fr);
  }

  .tcard {
    padding: 24px 18px;
  }

  .tq {
    font-size: 36px;
  }

  .fhead {
    position: static;
    top: auto;
  }

  .fgrid {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .fc-form {
    padding: 24px 18px;
  }

  .fcgrid {
    gap: 28px;
  }

  .ftit {
    font-size: 25px;
  }

  .fgridf {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pclose {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .pbody {
    padding: 20px 18px;
  }

  #bbar {
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }

  .bbn-enq {
    font-size: 10px;
    padding: 11px 16px;
  }

  #mobile-form-wrap .hform {
    padding: 24px 18px;
  }

  .hdots {
    bottom: 16px;
  }

  .hdot {
    width: 5px;
    height: 5px;
  }

  .hdot.on {
    width: 18px;
  }

  #ty {
    padding: 20px;
  }

  .ty-t {
    font-size: 32px;
  }

  .ty-ico {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  :root {
    --sp: 44px 0;
  }

  .h1 {
    font-size: 28px;
  }

  .h1-big {
    font-size: 46px;
  }

  .h-pre {
    font-size: 26px;
  }

  .hacts {
    flex-direction: column;
  }

  .hacts .btn-g,
  .hacts .btn-o {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .h-statpanel {
    overflow-x: auto;
  }

  .fpgrid {
    grid-template-columns: 1fr;
  }

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

  .dstats {
    grid-template-columns: 1fr 1fr;
  }

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

  .ggrid {
    grid-template-columns: 1fr;
  }

  .gitem:nth-child(1) {
    grid-area: span 1 / span 1;
  }

  .ucard {
    padding: 22px 16px;
  }

  .sky-card img {
    height: 240px;
  }

  .tcard {
    padding: 20px 14px;
  }

  .stat {
    padding: 20px 10px;
  }

  .stitle {
    font-size: clamp(28px, 8vw, 42px);
  }

  .bbn {
    font-size: 9px;
    padding: 12px 4px;
  }
}

.h-rera-badge {
  position: absolute;
  top: 90px;
  right: 28px;
  z-index: 100;
  text-align: right;
  pointer-events: auto;
}

.h-rera-line {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.5;
  transition: color 0.3s;
}

.h-rera-badge:hover .h-rera-line {
  color: rgba(195, 138, 110, 0.8);
}

.h-rera-url {
  color: var(--white) !important;
  text-decoration: none;
  margin-top: 2px;
  cursor: pointer;
  pointer-events: auto;
  display: block;
}

.h-rera-url:hover {
  color: var(--gold) !important;
  text-decoration: underline;
}

@media (min-width: 769px) {
  .hero-rera-badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .h-rera-badge {
    top: auto;
    bottom: 56px;
    right: 12px;
    text-align: right;
  }

  .h-rera-line {
    font-size: 8px;
    letter-spacing: 0.5px;
  }
}

.hov2 {
  position: absolute;
  inset: 0px;
  background: radial-gradient(at 22% 55%, transparent 28%, rgba(12, 28, 34, 0.58) 100%);
  pointer-events: none;
  z-index: 1;
}

.h-vert {
  position: absolute;
  left: 18px;
  top: 0px;
  bottom: 0px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 10;
}

@media (min-width: 1200px) {
  .h-vert {
    display: flex;
  }
}

.h-vert-line {
  width: 1px;
  flex: 1 1 0%;
  max-height: 80px;
  background: linear-gradient(transparent, rgba(195, 138, 110, 0.42), transparent);
}

.h-vert-lbl {
  font-family: var(--fb);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(195, 138, 110, 0.5);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.h-prog-wrap {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.h-prog-track {
  width: 1px;
  height: 88px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.h-prog-fill {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 33.3%;
  background: var(--gold);
  transition: height 5.8s linear;
}

.h-prog-label {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.32);
  white-space: nowrap;
}

.h-loc {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.h-loc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: rgba(195, 138, 110, 0.6) 0px 0px 8px;
}

.h-loc-pipe {
  width: 1.8px;
  height: 14px;
  background: var(--white);
  flex-shrink: 0;
}

.h-loc-txt {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff !important;
}

.h-headline {
  margin-bottom: 18px;
}

.h-pre {
  font-family: var(--ff);
  font-size: clamp(36px, 4.8vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: -6px;
}

.h1-big {
  font-family: var(--ff);
  font-size: clamp(58px, 9vw, 138px);
  font-weight: 300;
  line-height: 0.88;
  margin-bottom: 0px;
}

.h1-big em {
  font-style: italic;
  color: var(--white);
  display: block;
}

.h-rule-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.h-rule-ln {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(195, 138, 110, .4));
  flex-shrink: 0;
}

.h-sub-ln {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 1.8px;
  color: #ffffff;
}

.h-statpanel {
  display: flex;
  align-items: stretch;
  margin-bottom: 36px;
  max-width: 500px;
  background: rgba(12, 28, 34, 0.44);
  backdrop-filter: blur(18px);
  border-width: 2px 1px 1px;
  border-style: solid;
  border-color: rgba(195, 138, 110, 0.48) rgba(255, 255, 255, 0.07) rgba(255, 255, 255, 0.07);
  border-image: initial;
  overflow: hidden;
}

.h-sp-i {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1 1 0%;
}

.h-sp-v {
  font-family: var(--fb);
  font-size: 28px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.5px;
}

.h-sp-v sup {
  font-size: 0.37em;
  color: var(--gold);
  vertical-align: super;
}

.h-sp-l {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--goldl);
}

.h-sp-d {
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.hf-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hf-hl {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

.h-infobar {
  position: absolute;
  bottom: 14px;
  left: 44px;
  display: flex;
  align-items: stretch;
  z-index: 10;
  background: rgba(11, 25, 31, 0.62);
  backdrop-filter: blur(16px);
  border-width: 2px 1px 1px;
  border-style: solid;
  border-color: rgba(195, 138, 110, 0.45) rgba(195, 138, 110, 0.15) rgba(195, 138, 110, 0.15);
  border-image: initial;
  max-width: calc(100% - 460px);
}

.h-ib-i {
  padding: 9px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  white-space: nowrap;
}

.h-ib-k {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(195, 138, 110, 0.75);
}

.h-ib-v {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.3px;
}

.h-ib-s {
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .h-infobar {
    max-width: calc(100% - 420px);
  }
}

@media (max-width: 1024px) {
  .h-infobar {
    display: none;
  }
}

@keyframes hIn {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.h-loc {
  animation: 0.8s ease-out 0.1s 1 normal both running hIn;
}

.h-headline {
  animation: 1.05s ease-out 0.32s 1 normal both running hIn;
}

.h-rule-row {
  animation: 0.85s ease-out 0.58s 1 normal both running hIn;
}

.h-statpanel {
  animation: 0.85s ease-out 0.78s 1 normal both running hIn;
}

.hacts {
  animation: 0.85s ease-out 0.98s 1 normal both running hIn;
}

.hform {
  animation: 1s ease-out 0.38s 1 normal both running hIn;
}

@media (max-width: 768px) {
  .h-pre {
    font-size: 30px;
  }

  .h1-big {
    font-size: 52px;
  }

  .h-statpanel {
    max-width: 100%;
  }

  .h-sp-i {
    padding: 12px 10px;
  }

  .h-sp-v {
    font-size: 22px;
  }
}

/* ─── MOBILE SLIDERS ───────────────────────────────── */
.mob-sl-clip {
  overflow: hidden;
}

.mob-sl-nav {
  display: none;
}

@media (max-width: 768px) {

  /* Floor plan tab slider */
  .fpcont {
    overflow: hidden;
  }

  #fpgrid-bhk4,
  #fpgrid-sky {
    display: flex !important;
    gap: 0 !important;
    transition: transform .4s cubic-bezier(.25, .46, .45, .94);
  }

  #fpgrid-bhk4 .fpcard,
  #fpgrid-sky .fpcard {
    flex: 0 0 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  /* Gallery slider */
  #galclip {
    overflow: hidden;
  }

  #ggrid-main {
    display: flex !important;
    gap: 0 !important;
    transition: transform .4s cubic-bezier(.25, .46, .45, .94);
  }

  #ggrid-main .gitem {
    flex: 0 0 100%;
    min-width: 0;
    grid-area: unset !important;
    grid-column: unset !important;
  }

  #ggrid-main .gitem img {
    height: 240px;
    min-height: 240px;
    object-fit: cover;
  }

  /* Testimonials slider */
  #testclip {
    overflow: hidden;
  }

  #tgrid-main {
    display: flex !important;
    gap: 0 !important;
    transition: transform .4s cubic-bezier(.25, .46, .45, .94);
  }

  #tgrid-main .tcard {
    flex: 0 0 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  /* Arrow nav */
  .mob-sl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }

  .mob-arr {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(195, 138, 110, .45);
    background: rgba(12, 28, 34, .9);
    color: var(--gold);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--tr);
    flex-shrink: 0;
    border-radius: 2px;
  }

  .mob-arr:hover {
    background: rgba(195, 138, 110, .15);
    border-color: var(--gold);
  }

  .mob-arr:disabled {
    opacity: 0.25;
    cursor: default;
  }

  .mob-sl-ct {
    font-family: var(--fb);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gray);
    min-width: 40px;
    text-align: center;
  }
}