*,
::before,
::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

:root {
	--gold: #C9A96E;
	--gold-dark: #cfa274;
	--white: #fff;
	--off-white: #f5f0e8;
	--dark: #111;
	--font-display: PlayfairDisplay, Georgia, serif;
	--font-ui: Inter, sans-serif
}

@font-face {
	font-family: 'PlayfairDisplay';
	src: url(../fonts/PlayfairDisplay-Medium.ttf) format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap
}

@font-face {
	font-family: 'Inter';
	src: url(../fonts/Inter_24pt-Regular.ttf) format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap
}

html {
	scroll-behavior: smooth
}

body {
	font-family: var(--font-ui);
	background: var(--dark);
	color: var(--white);
	overflow-x: hidden
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #fff;
	height: 70px;
	box-shadow: 0 1px 4px #00000014
}

.nav-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px;
	height: 100%;
	display: grid;
	grid-template-columns: 200px 1fr 200px;
	align-items: center
}

.nav-logo {
	display: flex;
	align-items: center;
	justify-self: start;
	cursor: pointer
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2px
}

.nav-links a {
	font-size: 14.3px;
	font-weight: 400;
	color: #333;
	text-decoration: none;
	padding: 5px 8px;
	white-space: nowrap;
	border-radius: 3px;
	transition: color .2s
}

.nav-links a:hover {
	color: var(--gold)
}

.nav-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px
}

.nav-phone {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	font-weight: 500;
	color: #222;
	text-decoration: none;
	white-space: nowrap;
	transition: color .2s
}

.nav-phone i {
	color: var(--gold);
	font-size: 14px
}

.nav-phone:hover {
	color: var(--gold)
}

.hamburger {
	display: none;
	background: none;
	border: none;
	color: #333;
	font-size: 20px;
	cursor: pointer;
	padding: 4px
}

.hero {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow: hidden
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(100deg, #0009 0%, #00000059 55%, #0000001a 100%)
}

.hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1320px;
	margin: 70px auto 0;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	flex: 1;
	min-height: calc(100vh - 70px)
}

.hero-content {
	flex: 1;
	max-width: 580px
}

.hero-badge {
	display: inline-block;
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: 2.5px;
	color: #111;
	background: #fff;
	padding: 6px 20px;
	border-radius: 30px;
	margin-bottom: 5px
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(40px, 4.8vw, 66px);
	font-weight: 700;
	line-height: 1.1;
	color: var(--white);
	margin-bottom: 20px
}

.hero-tagline {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	color: #fff;
	max-width: 460px;
	margin-bottom: 28px
}

.hero-price-strip {
	display: flex;
	align-items: center;
	gap: 0;
	margin-bottom: 16px;
	width: fit-content
}

.hero-price-left {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 22px;
	border: 1px solid #ffffff1f;
	border-radius: 8px 0 0 8px;
	overflow: hidden;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px)
}

.hero-price-left::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, #142d1ea6 0%, #142d1ea6 70%, #142d1e00 100%);
	z-index: -1
}

.hero-rupee-icon {
	font-size: 34px;
	color: var(--white);
	flex-shrink: 0
}

.hero-price-left div {
	display: flex;
	flex-direction: column;
	gap: 2px
}

.hero-starting {
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	letter-spacing: .5px;
	text-transform: uppercase
}

.hero-price-amt {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 700;
	color: var(--white);
	line-height: 1.1
}

.hero-price-divider {
	width: 1px;
	height: 52px;
	background: #fff3;
	flex-shrink: 0
}

.hero-price-right {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 16px 22px;
	background: transparent;
	border: none
}

.hero-bhk-title {
	font-family: var(--font-display);
	font-size: 25px;
	font-weight: 700;
	color: var(--white);
	line-height: 1.1
}

.hero-bhk-sub {
	font-size: 20px;
	font-weight: 300;
	color: #fff;
	letter-spacing: .5px
}

.hero-one-percent {
	display: flex;
	align-items: center;
	gap: 0;
	background: transparent;
	border: none;
	border-radius: 0;
	margin-bottom: 20px;
	width: fit-content
}

.hero-op-img {
	padding: 10px 8px 10px 0;
	display: flex;
	align-items: center
}

.hero-op-img img {
	height: 55px;
	width: auto;
	object-fit: contain;
	display: block
}

.hero-op-divider {
	width: 1px;
	height: 44px;
	background: #ffffff4d;
	flex-shrink: 0
}

.hero-op-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 10px 0 10px 16px
}

.hero-op-text span {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	line-height: 1.5;
	white-space: nowrap
}

.hero-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	color: #fff;
	line-height: 1.5
}

.hero-meta i {
	color: var(--gold);
	font-size: 18px;
	flex-shrink: 0
}

.hero-form-wrap {
	flex-shrink: 0;
	width: 100%;
	max-width: 400px
}

.form-card {
	background: #4d5456bf;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid #ffffff40;
	border-radius: 24px;
	padding: 35px 30px;
	box-shadow: 0 20px 50px #00000059 inset 0 1px 0 #ffffff26
}

.form-title {
	font-family: var(--font-display);
	font-size: 27px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 8px;
	line-height: 1.18
}

.form-sub {
	font-size: 14px;
	font-weight: 300;
	color: #fff9;
	line-height: 1.65;
	margin-bottom: 18px
}

.form-group {
	margin-bottom: 9px
}

.form-group input,
.form-group select {
	width: 100%;
	height: 42px;
	padding: 0 18px;
	background: #fff;
	border: none;
	border-radius: 4px;
	color: #111;
	font-size: 14px;
	outline: none
}

.form-group input::placeholder {
	color: #666;
	opacity: 1
}

.form-group input:focus,
.form-group select:focus {
	box-shadow: 0 0 0 2px #fff3
}

.form-group select {
	color: #666;
	appearance: none;
	-webkit-appearance: none
}

.form-group select.selected {
	color: #111
}

.form-group select option {
	background: #fff;
	color: #111
}

.captcha-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-bottom: 9px
}

.captcha-question {
	flex-shrink: 0;
	padding: 0 14px;
	height: 42px;
	line-height: 42px;
	background: #ffffff26;
	border-radius: 4px;
	color: var(--white);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
	white-space: nowrap
}

.captcha-input {
	flex: 1;
	min-width: 0;
	height: 42px;
	padding: 0 14px;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	outline: none;
	text-align: center
}

.captcha-refresh {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border: 1px solid #ffffff40;
	border-radius: 4px;
	background: transparent;
	color: #fff9;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	transition: color 0.2s, border-color .2s
}

.captcha-refresh:hover {
	color: #fff;
	border-color: #ffffff80
}

.select-wrap {
	position: relative
}

.select-wrap .select-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	color: #666;
	font-size: 11px;
	pointer-events: none
}

.form-btn {
	width: 100%;
	height: 42px;
	margin-top: 4px;
	background: #c9a06a;
	color: #fff;
	border: none;
	border-radius: 3px;
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: background 0.2s, transform .15s
}

.form-btn:hover {
	background: #b98f58
}

.form-btn:active {
	transform: scale(0.985)
}

.form-disclaimer {
	margin-top: 14px;
	font-size: 13px;
	line-height: 1.5;
	color: #fffc
}

.form-success {
	margin-top: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
	color: #7ecf8e;
	font-size: 13px
}

.form-success i {
	font-size: 17px
}

.hidden {
	display: none !important
}

.btn-loader {
	display: inline-flex;
	align-items: center
}

.hero-badge,
.hero-title,
.hero-tagline,
.hero-price-strip,
.hero-one-percent,
.hero-meta,
.hero-form-wrap {
	opacity: 0
}

.hero-badge {
	transform: translateY(30px)
}

.hero-title {
	transform: translateY(36px)
}

.hero-tagline {
	transform: translateY(32px)
}

.hero-price-strip {
	transform: translateY(28px)
}

.hero-one-percent {
	transform: translateY(28px)
}

.hero-meta {
	transform: translateY(24px)
}

.hero-form-wrap {
	transform: translateX(60px)
}

.hero-badge.hero-in,
.hero-title.hero-in,
.hero-tagline.hero-in,
.hero-price-strip.hero-in,
.hero-one-percent.hero-in,
.hero-meta.hero-in,
.hero-form-wrap.hero-in {
	opacity: 1;
	transform: none;
	transition: opacity .85s cubic-bezier(0.16, 1, 0.3, 1), transform .85s cubic-bezier(0.16, 1, 0.3, 1)
}

.stats-bar {
	background: #f9f8f6;
	border-top: 1px solid #e8e4de;
	border-bottom: 1px solid #e8e4de
}

.stats-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.stat-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 32px 20px;
	text-align: center
}

.stat-label {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 2px;
	color: #605f5f;
	text-transform: uppercase
}

.stat-value {
	font-size: 20px;
	font-weight: 500;
	color: #000
}

.stat-divider {
	width: 1px;
	height: 40px;
	background: #ddd;
	flex-shrink: 0
}

.concept-section {
	background: #fff;
	padding: 100px 0
}

.concept-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 80px
}

.concept-left {
	flex: 1;
	max-width: 550px
}

.concept-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 3px;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 18px
}

.concept-heading {
	font-family: var(--font-display);
	font-size: clamp(30px, 3.2vw, 44px);
	font-weight: 700;
	line-height: 1.18;
	color: #1a1a1a;
	margin-bottom: 28px
}

.concept-para {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	color: #555;
	margin-bottom: 18px
}

.concept-btns {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 36px;
	flex-wrap: wrap
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 24px;
	background: #1e2a2a;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 3px;
	transition: background .2s
}

.btn-primary:hover {
	background: #2d3e3e
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 20px;
	border: 1.5px solid #1e2a2a;
	color: #1e2a2a;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 3px;
	transition: background 0.2s, color .2s
}

.btn-outline:hover {
	background: #1e2a2a;
	color: #fff
}

.concept-right {
	flex: 1;
	max-width: 520px;
	overflow: hidden
}

.concept-img {
	width: 100%;
	height: 580px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
	transition: transform .7s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .7s cubic-bezier(0.16, 1, 0.3, 1)
}

.concept-img:hover {
	transform: scale(1.03) translateY(-6px);
	box-shadow: 0 28px 60px #00000038
}

.pricing-section {
	background: #f7f5f4;
	padding: 100px 0 120px
}

.pricing-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 60px
}

.pricing-header {
	text-align: center;
	margin-bottom: 60px
}

.pricing-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 3px;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 14px
}

.pricing-heading {
	font-family: var(--font-display);
	font-size: clamp(32px, 3.5vw, 50px);
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 12px;
	line-height: 1.15
}

.pricing-sub {
	font-size: 16px;
	font-weight: 300;
	color: #777
}

.pricing-swiper {
	overflow: hidden !important;
	padding: 32px 0 52px !important
}

.pricing-swiper .swiper-wrapper {
	align-items: stretch
}

.pricing-swiper .swiper-slide {
	height: auto;
	display: flex
}

.price-card {
	background: #fff;
	border: 1px solid #e5e0d8;
	border-radius: 4px;
	padding: 32px 24px 28px;
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	transition: border-color 0.25s, box-shadow .25s;
	overflow: hidden;
	z-index: 0
}

.price-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, #C9A96E 0%, #b8944f 100%);
	transform: translateY(100%);
	transition: transform .55s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: -1
}

.price-card:hover::after {
	transform: translateY(0%)
}

.price-card:hover .card-tag {
	color: #ffffffbf
}

.price-card:hover .card-title {
	color: #fff
}

.price-card:hover .card-sqft {
	color: #ffffffa6
}

.price-card:hover .price-amt {
	color: #fff
}

.price-card:hover .price-onwards {
	color: #ffffffa6
}

.price-card:hover .popular-badge {
	background: #fff;
	color: #C9A96E
}

.price-card:hover {
	border-color: #C9A96E;
	box-shadow: 0 12px 40px #c9a96e4d
}

.card-tag,
.card-title,
.card-sqft,
.price-amt,
.price-onwards {
	transition: color .4s ease
}

.price-card.popular {
	border: 1.5px solid var(--gold)
}

.price-card.is-active {
	border-color: var(--gold);
	box-shadow: 0 8px 40px #c9a96e2e
}

.price-card.is-active .card-btn:not(.card-btn--dark) {
	background: #1e2a2a;
	color: #fff;
	border-color: #1e2a2a
}

.popular-badge {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gold);
	color: #000;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1.5px;
	padding: 15px 18px;
	border-radius: 0 0 4px 4px;
	white-space: nowrap;
	text-transform: uppercase
}

.popular-badge.dynamic-badge {
	display: none
}

.price-card.is-active .popular-badge {
	display: block
}

.card-tag {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 2.5px;
	color: var(--gold);
	text-transform: uppercase;
	display: block;
	margin-top: 20px;
	margin-bottom: 10px
}

.price-card.popular .card-tag {
	margin-top: 28px
}

.card-title {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.2;
	margin-bottom: 6px
}

.card-sqft {
	font-size: 13px;
	color: #888
}

.card-price-wrap {
	margin-top: auto;
	padding-top: 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px
}

.price-amt {
	font-family: var(--font-display);
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #1a1a1a;
	line-height: 1
}

.price-onwards {
	font-size: 12px;
	color: #888
}

.card-btn {
	display: block;
	width: 100%;
	margin-top: 20px;
	padding: 13px;
	text-align: center;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 1.8px;
	text-decoration: none;
	text-transform: uppercase;
	border: 1.5px solid #1a1a1a;
	color: #1a1a1a;
	border-radius: 3px;
	transition: background 0.2s, color .2s
}

.card-btn:hover {
	background: #1a1a1a;
	color: #fff
}

.card-btn--dark {
	background: #1e2a2a;
	color: #fff;
	border-color: #1e2a2a
}

.card-btn--dark:hover {
	background: #2d3e3e;
	border-color: #2d3e3e
}

.pricing-swiper .swiper-pagination-bullet {
	background: #bbb;
	opacity: 1;
	width: 8px;
	height: 8px
}

.pricing-swiper .swiper-pagination-bullet-active {
	background: var(--gold)
}

.highlights-section {
	background: #f7f5f4;
	padding: 90px 0
}

.highlights-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	gap: 80px
}

.highlights-img {
	flex-shrink: 0;
	width: 42%;
	max-width: 560px;
	overflow: hidden
}

.highlights-img img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
	transition: transform .7s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .7s cubic-bezier(0.16, 1, 0.3, 1)
}

.highlights-img img:hover {
	transform: scale(1.03) translateY(-6px);
	box-shadow: 0 28px 60px #00000038
}

.highlights-content {
	flex: 1
}

.highlights-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 3px;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 14px
}

.highlights-heading {
	font-family: var(--font-display);
	font-size: clamp(26px, 3vw, 42px);
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.2;
	margin-bottom: 28px
}

.highlights-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px
}

.highlights-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 16px;
	font-weight: 400;
	color: #444;
	line-height: 1.6
}

.highlights-list li::before {
	content: '';
	flex-shrink: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--gold);
	margin-top: 7px
}

.amenities-section {
	background: #fff;
	padding: 90px 0
}

.amenities-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px
}

.amenities-header {
	margin-bottom: 40px
}

.amenities-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 3px;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 10px
}

.amenities-heading {
	font-family: var(--font-display);
	font-size: clamp(28px, 3vw, 44px);
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 10px;
	line-height: 1.2
}

.amenities-sub {
	font-size: 16px;
	font-weight: 300;
	color: #555;
	line-height: 1.6;
	max-width: 480px
}

.amenities-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid #e0dbd2;
	border-radius: 4px;
	overflow: hidden
}

.amenity-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 40px 20px;
	border-right: 1px solid #e0dbd2;
	border-bottom: 1px solid #e0dbd2;
	background: #f7f5f4;
	transition: background .2s
}

.amenity-item:nth-child(4n) {
	border-right: none
}

.amenity-item:nth-last-child(-n+4) {
	border-bottom: none
}

.amenity-item:hover {
	background: #fff
}

.amenity-item i {
	font-size: 28px;
	transition: transform .25s ease
}

.amenity-item:hover i {
	transform: scale(1.18)
}

.amenity-item span {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	color: #555;
	text-transform: uppercase;
	text-align: center
}

.amenity-item:nth-child(1) i {
	color: #3b9fd4
}

.amenity-item:nth-child(2) i {
	color: #e05c2a
}

.amenity-item:nth-child(3) i {
	color: #6dbf82
}

.amenity-item:nth-child(4) i {
	color: #a06fd4
}

.amenity-item:nth-child(5) i {
	color: #d4a020
}

.amenity-item:nth-child(6) i {
	color: #e05c7a
}

.amenity-item:nth-child(7) i {
	color: #c07840
}

.amenity-item:nth-child(8) i {
	color: #3ba89a
}

@media (max-width: 1100px) {
	.nav-container {
		padding: 0 24px;
		grid-template-columns: 180px 1fr 180px
	}

	.nav-links a {
		padding: 5px 6px;
		font-size: 11.5px
	}

	.hero-inner {
		padding: 0 24px
	}

	.pricing-container {
		padding: 0 40px
	}
}

@media (max-width: 900px) {
	.nav-container {
		grid-template-columns: 1fr auto auto
	}

	.nav-links {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background: #fff;
		flex-direction: column;
		align-items: flex-start;
		padding: 16px 24px 24px;
		gap: 0;
		border-top: 1px solid #eee;
		transform: translateY(-110%);
		opacity: 0;
		transition: transform .28s ease, opacity .22s ease;
		z-index: 999;
		box-shadow: 0 4px 20px #0000001a
	}

	.nav-links.open {
		transform: translateY(0);
		opacity: 1
	}

	.nav-links a {
		font-size: 15px;
		padding: 12px 4px;
		width: 100%;
		border-bottom: 1px solid #f0f0f0;
		color: #333
	}

	.hamburger {
		display: block
	}

	.hero-inner {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 32px;
		min-height: calc(100vh - 70px);
		padding: 40px 24px
	}

	.hero-content {
		max-width: 100%
	}

	.hero-form-wrap {
		max-width: 100%;
		width: 100%
	}

	.hero-op-text span {
		white-space: normal
	}

	.stats-container {
		flex-wrap: wrap;
		padding: 0 24px;
		gap: 0
	}

	.stat-item {
		flex: 0 0 50%;
		padding: 24px 16px;
		border-bottom: 1px solid #e8e4de
	}

	.stat-divider {
		display: none
	}

	.concept-container {
		flex-direction: column;
		gap: 48px;
		padding: 0 24px
	}

	.concept-left {
		max-width: 100%
	}

	.concept-right {
		max-width: 100%;
		width: 100%
	}

	.concept-img {
		height: 320px
	}

	.concept-section {
		padding: 70px 0
	}

	.pricing-section {
		padding: 70px 0 80px
	}

	.pricing-container {
		padding: 0 24px
	}

	.highlights-container {
		flex-direction: column;
		gap: 36px;
		padding: 0 24px
	}

	.highlights-img {
		width: 100%;
		max-width: 100%
	}

	.highlights-img img {
		height: 280px
	}

	.highlights-section {
		padding: 60px 0
	}

	.amenities-container {
		padding: 0 24px
	}

	.amenities-section {
		padding: 60px 0
	}

	.amenities-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.amenity-item:nth-child(4n) {
		border-right: 1px solid #e0dbd2
	}

	.amenity-item:nth-child(2n) {
		border-right: none
	}

	.amenity-item:nth-last-child(-n+4) {
		border-bottom: 1px solid #e0dbd2
	}

	.amenity-item:nth-last-child(-n+2) {
		border-bottom: none
	}
}

@media (max-width: 480px) {
	.navbar {
		height: 60px
	}

	.nav-container {
		padding: 0 16px
	}

	.nav-phone span {
		display: none
	}

	.nav-links {
		top: 60px
	}

	.hero-inner {
		margin-top: 60px;
		min-height: calc(100vh - 60px);
		padding: 40px 16px
	}

	.hero-title {
		font-size: 36px
	}

	.form-card {
		padding: 26px 18px 20px
	}

	.hero-price-strip {
		width: 100%
	}

	.hero-one-percent {
		width: 100%
	}

	.hero-op-text span {
		font-size: 12px;
		white-space: normal
	}

	.hero-price-amt {
		font-size: 18px
	}

	.stats-container {
		padding: 0 16px
	}

	.stat-item {
		flex: 0 0 100%
	}

	.concept-container {
		padding: 0 16px
	}

	.concept-section {
		padding: 50px 0
	}

	.concept-img {
		height: 240px
	}

	.concept-btns {
		flex-direction: column;
		align-items: flex-start
	}

	.btn-primary,
	.btn-outline {
		width: 100%;
		justify-content: center
	}

	.pricing-container {
		padding: 0 16px
	}

	.pricing-section {
		padding: 50px 0 60px
	}

	.highlights-container {
		padding: 0 16px
	}

	.highlights-img img {
		height: 220px
	}

	.highlights-section {
		padding: 50px 0
	}

	.amenities-container {
		padding: 0 16px
	}

	.amenities-section {
		padding: 50px 0
	}

	.amenities-grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

.floorplan-section {
	background: #fff;
	padding: 90px 0 100px
}

.floorplan-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px
}

.floorplan-header {
	text-align: center;
	margin-bottom: 52px
}

.floorplan-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 3px;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 14px
}

.floorplan-heading {
	font-family: var(--font-display);
	font-size: clamp(28px, 3.2vw, 46px);
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.2
}

.floorplan-swiper {
	overflow: hidden !important;
	padding-bottom: 48px !important
}

.fp-card {
	border: 1px solid #e8e4de;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
	padding: 24px;
	position: relative
}

.fp-label {
	position: absolute;
	bottom: 16px;
	left: 16px;
	background: #1a2e2ae0;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border-left: 3px solid var(--gold);
	border-radius: 3px;
	padding: 8px 14px;
	display: flex;
	flex-direction: column;
	gap: 3px;
	pointer-events: none
}

.fp-label-type {
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2
}

.fp-label-sub {
	font-size: 11px;
	font-weight: 400;
	color: var(--gold);
	letter-spacing: .5px
}

.fp-card img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain
}

.fp-pagination .swiper-pagination-bullet {
	background: #bbb;
	opacity: 1;
	width: 8px;
	height: 8px
}

.fp-pagination .swiper-pagination-bullet-active {
	background: var(--gold)
}

.fp-card {
	cursor: zoom-in
}

.fp-lightbox-backdrop {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: #000000e0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .35s ease
}

.fp-lightbox-backdrop.fp-open {
	opacity: 1;
	pointer-events: all
}

.fp-lightbox-inner {
	position: relative;
	max-width: 900px;
	width: 100%;
	transform: translateY(40px) scale(0.96);
	transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.fp-lightbox-backdrop.fp-open .fp-lightbox-inner {
	transform: translateY(0) scale(1)
}

.fp-lightbox-inner img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	object-fit: contain;
	max-height: 85vh
}

.fp-lightbox-close {
	position: absolute;
	top: -14px;
	right: -14px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: none;
	color: #111;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 16px #0000004d;
	transition: background 0.2s, transform .2s;
	z-index: 1
}

.fp-lightbox-close:hover {
	background: var(--gold);
	color: #fff;
	transform: scale(1.08)
}

@media (max-width: 900px) {
	.floorplan-container {
		padding: 0 24px
	}

	.floorplan-section {
		padding: 60px 0 70px
	}
}

@media (max-width: 480px) {
	.floorplan-container {
		padding: 0 16px
	}

	.floorplan-section {
		padding: 50px 0 60px
	}
}

.location-section {
	background: #f5f3ef;
	padding: 90px 0
}

.location-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: stretch;
	gap: 60px
}

.location-left {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center
}

.location-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 3px;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 16px
}

.location-heading {
	font-family: var(--font-display);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.2;
	margin-bottom: 20px
}

.location-para {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	color: #666;
	margin-bottom: 32px
}

.location-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	margin-bottom: 36px
}

.location-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	border-bottom: 1px solid #e2ddd6;
	gap: 12px
}

.location-list li:first-child {
	border-top: 1px solid #e2ddd6
}

.loc-left {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 400;
	color: #2a2a2a
}

.loc-left i {
	color: var(--gold);
	font-size: 14px;
	flex-shrink: 0
}

.loc-right {
	font-size: 13px;
	font-weight: 400;
	color: #888;
	white-space: nowrap
}

.loc-btn {
	display: inline-block;
	padding: 14px 30px;
	background: #1e2a2a;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 3px;
	width: fit-content;
	transition: background .2s
}

.loc-btn:hover {
	background: #2d3e3e
}

.location-right {
	flex: 1;
	border: 1px solid #3ba2ca;
	min-height: 500px
}

.location-right iframe {
	width: 100%;
	height: 100%;
	min-height: 500px;
	border: 0;
	display: block;
	border-radius: 4px
}

@media (max-width: 900px) {
	.location-container {
		flex-direction: column;
		padding: 0 24px;
		gap: 36px
	}

	.location-section {
		padding: 60px 0
	}

	.location-right,
	.location-right iframe {
		min-height: 360px
	}
}

@media (max-width: 480px) {
	.location-container {
		padding: 0 16px
	}

	.location-section {
		padding: 50px 0
	}

	.location-right,
	.location-right iframe {
		min-height: 280px
	}
}

.gallery-section {
	background: #f9f8f6;
	padding: 90px 0 100px
}

.gallery-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px
}

.gallery-header {
	margin-bottom: 40px
}

.gallery-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 3px;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 12px
}

.gallery-heading {
	font-family: var(--font-display);
	font-size: clamp(28px, 3vw, 44px);
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.2
}

.gallery-row-top {
	display: flex;
	gap: 10px;
	height: 570px;
	margin-bottom: 10px
}

.gallery-big {
	flex: 1.6
}

.gallery-col-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px
}

.gallery-col-right .gallery-item {
	flex: 1
}

.gallery-row-bottom {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	height: 280px
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	cursor: pointer;
	height: 100%
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.gallery-item:hover img {
	transform: scale(1.06)
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, #00000085 0%, transparent 55%);
	display: flex;
	align-items: flex-end;
	padding: 20px;
	opacity: 0;
	transition: opacity .35s ease
}

.gallery-item:hover .gallery-overlay {
	opacity: 1
}

.gallery-overlay span {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff
}

@media (max-width: 900px) {
	.gallery-container {
		padding: 0 24px
	}

	.gallery-section {
		padding: 60px 0 70px
	}

	.gallery-row-top {
		height: 320px
	}

	.gallery-row-bottom {
		height: 200px
	}
}

@media (max-width: 600px) {
	.gallery-container {
		padding: 0 16px
	}

	.gallery-section {
		padding: 50px 0 60px
	}

	.gallery-row-top {
		flex-direction: column;
		height: auto
	}

	.gallery-big {
		height: 260px;
		flex: none
	}

	.gallery-col-right {
		flex-direction: row;
		height: 180px
	}

	.gallery-row-bottom {
		grid-template-columns: 1fr;
		height: auto
	}

	.gallery-row-bottom .gallery-item {
		height: 200px
	}
}

.about-section {
	background: #f5f3ef;
	padding: 90px 0
}

.about-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: flex-start;
	gap: 60px
}

.about-left {
	flex: 1
}

.about-heading {
	font-family: var(--font-display);
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 20px;
	line-height: 1.2
}

.about-para {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	color: #555;
	margin-bottom: 36px;
	max-width: 520px
}

.about-stats {
	display: flex;
	gap: 48px
}

.about-stat {
	display: flex;
	flex-direction: column;
	gap: 6px
}

.stat-num {
	font-family: var(--font-display);
	font-size: 36px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1
}

.stat-lbl {
	font-size: 9.5px;
	font-weight: 500;
	letter-spacing: 2px;
	color: #888;
	text-transform: uppercase
}

.about-right {
	flex: 1
}

.channel-card {
	background: #fff;
	border: 1px solid #e8e4de;
	border-radius: 6px;
	padding: 36px 32px
}

.channel-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 2.5px;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 14px
}

.channel-heading {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 14px;
	line-height: 1.2
}

.channel-para {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	color: #555;
	margin-bottom: 20px
}

.channel-rera {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	color: #888;
	text-transform: uppercase
}

.contact-section {
	background: #1a2e2a;
	padding: 90px 0
}

.contact-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: flex-start;
	gap: 80px
}

.contact-left {
	flex: 1
}

.contact-eyebrow {
	display: inline-block;
	font-size: 9.5px;
	font-weight: 500;
	letter-spacing: 3px;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 16px
}

.contact-heading {
	font-family: var(--font-display);
	font-size: clamp(32px, 3.5vw, 52px);
	font-weight: 700;
	color: #fff;
	line-height: 1.15;
	margin-bottom: 18px
}

.contact-para {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.8;
	color: #ffffffa6;
	margin-bottom: 36px;
	max-width: 400px
}

.contact-info-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-bottom: 24px
}

.contact-info-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	color: #ffffffd9
}

.contact-info-list li i {
	color: var(--gold);
	font-size: 15px;
	margin-top: 2px;
	flex-shrink: 0
}

.contact-info-list li a {
	color: #ffffffd9;
	text-decoration: none;
	transition: color .2s
}

.contact-info-list li a:hover {
	color: var(--gold)
}

.contact-hours {
	font-size: 12.5px;
	color: #ffffff73;
	letter-spacing: .3px
}

.contact-right {
	flex-shrink: 0;
	width: 100%;
	max-width: 520px
}

.contact-form-card {
	background: #fff;
	border-radius: 8px;
	padding: 36px 32px
}

.cf-title {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 6px
}

.cf-sub {
	font-size: 13px;
	font-weight: 300;
	color: #777;
	margin-bottom: 20px;
	line-height: 1.6
}

.cf-group {
	margin-bottom: 10px
}

.cf-group input,
.cf-group select {
	width: 100%;
	height: 44px;
	padding: 0 16px;
	border: 1px solid #e0dbd4;
	border-radius: 4px;
	font-size: 13.5px;
	color: #111;
	outline: none;
	background: #fff;
	transition: border-color .2s
}

.cf-group input::placeholder {
	color: #aaa
}

.cf-group input:focus,
.cf-group select:focus {
	border-color: var(--gold)
}

.cf-icon-wrap {
	position: relative
}

.cf-field-icon {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gold);
	font-size: 13px;
	pointer-events: none
}

.cf-captcha-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-bottom: 10px
}

.cf-captcha-row .captcha-question {
	background: #f0ebe3;
	color: #1a1a1a;
	height: 44px;
	line-height: 44px;
	padding: 0 16px;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	white-space: nowrap;
	flex-shrink: 0
}

.cf-captcha-row .captcha-input {
	flex: 1;
	min-width: 0;
	height: 44px;
	padding: 0 12px;
	border: 1px solid #e0dbd4;
	border-radius: 4px;
	font-size: 14px;
	text-align: center;
	outline: none
}

.cf-captcha-row .captcha-input:focus {
	border-color: var(--gold)
}

.cf-captcha-row .captcha-refresh {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border: 1px solid #e0dbd4;
	border-radius: 4px;
	background: #f8f6f3;
	color: #888;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	transition: color 0.2s, border-color .2s
}

.cf-captcha-row .captcha-refresh:hover {
	color: #1a1a1a;
	border-color: var(--gold)
}

.cf-select-wrap {
	position: relative
}

.cf-select-arrow {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #aaa;
	font-size: 11px;
	pointer-events: none
}

.cf-group select {
	appearance: none;
	-webkit-appearance: none;
	color: #aaa
}

.cf-group select.selected {
	color: #111
}

.cf-btn {
	width: 100%;
	height: 46px;
	margin-top: 4px;
	background: #1a2e2a;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s
}

.cf-btn:hover {
	background: #2d4a44
}

.cf-disclaimer {
	margin-top: 14px;
	font-size: 11px;
	line-height: 1.6;
	color: #999
}

.cf-success {
	margin-top: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
	color: #4caf80;
	font-size: 13px
}

.footer {
	background: #0f1e1b;
	padding: 48px 0 0
}

.footer-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px
}

.footer-top {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	padding-bottom: 36px;
	border-bottom: 1px solid #ffffff14
}

.footer-brand {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 14px
}

.footer-disclaimer {
	font-size: 11.5px;
	font-weight: 300;
	line-height: 1.75;
	color: #ffffff61;
	max-width: 480px
}

.footer-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px
}

.footer-rera {
	font-size: 11px;
	color: #ffffff73;
	letter-spacing: .3px
}

.footer-social {
	margin-top: 12px;
	display: flex;
	gap: 14px
}

.footer-wa {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 500;
	color: #25d366;
	text-decoration: none;
	transition: opacity .2s
}

.footer-wa:hover {
	opacity: .75;
	color: #25d366
}

.footer-wa i {
	font-size: 16px
}

.footer-links {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 14px
}

.footer-links a {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 1.5px;
	color: #fff6;
	text-decoration: none;
	text-transform: uppercase;
	transition: color .2s
}

.footer-links a:hover {
	color: var(--gold)
}

.footer-links span {
	color: #fff3;
	font-size: 10px
}

.footer-bottom {
	padding: 18px 0;
	text-align: center
}

.footer-bottom p {
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 1.5px;
	color: #ffffff47;
	text-transform: uppercase
}

.float-btns {
	position: fixed;
	bottom: 28px;
	right: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 999
}

.float-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 4px 16px #00000038;
	transition: transform 0.2s, box-shadow .2s
}

.float-btn:hover {
	transform: scale(1.08);
	box-shadow: 0 6px 20px #00000047
}

.float-wa {
	background: #25d366
}

.float-call {
	background: var(--gold)
}

@media (max-width: 900px) {
	.about-container {
		flex-direction: column;
		padding: 0 24px;
		gap: 40px
	}

	.about-section {
		padding: 60px 0
	}

	.contact-container {
		flex-direction: column;
		padding: 0 24px;
		gap: 40px
	}

	.contact-section {
		padding: 60px 0
	}

	.contact-right {
		max-width: 100%;
		width: 100%
	}

	.footer-container {
		padding: 0 24px
	}

	.footer-top {
		flex-direction: column
	}

	.footer-right {
		align-items: flex-start
	}
}

@media (max-width: 480px) {
	.about-container {
		padding: 0 16px
	}

	.about-section {
		padding: 50px 0
	}

	.about-stats {
		gap: 28px
	}

	.contact-container {
		padding: 0 16px
	}

	.contact-section {
		padding: 50px 0
	}

	.contact-form-card {
		padding: 24px 18px
	}

	.footer-container {
		padding: 0 16px
	}
}

.gb-modal-backdrop {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: #0009;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease
}

.gb-modal-backdrop.gb-open {
	opacity: 1;
	pointer-events: all
}

.gb-modal {
	background: #1e2426eb;
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid #ffffff26;
	border-radius: 20px;
	padding: 40px 36px 32px;
	width: 100%;
	max-width: 420px;
	position: relative;
	box-shadow: 0 24px 60px #00000080;
	transform: translateY(18px);
	transition: transform .28s ease
}

.gb-modal-backdrop.gb-open .gb-modal {
	transform: translateY(0)
}

.gb-modal-close {
	position: absolute;
	top: 16px;
	right: 18px;
	background: #ffffff14;
	border: 1px solid #ffffff1f;
	color: #ffffffb3;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.2s, color .2s;
	line-height: 1
}

.gb-modal-close:hover {
	background: #ffffff29;
	color: #fff
}

.gb-modal-title {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 6px;
	line-height: 1.2;
	padding-right: 20px
}

.gb-modal-sub {
	font-size: 13.5px;
	font-weight: 300;
	color: #ffffff8c;
	line-height: 1.6;
	margin-bottom: 20px
}

.gb-group {
	margin-bottom: 9px;
	position: relative
}

.gb-group input,
.gb-group select {
	width: 100%;
	height: 42px;
	padding: 0 16px;
	background: #fff;
	border: none;
	border-radius: 4px;
	color: #111;
	font-size: 14px;
	font-family: var(--font-ui);
	outline: none;
	transition: box-shadow .18s
}

.gb-group input::placeholder {
	color: #888;
	opacity: 1
}

.gb-group select {
	appearance: none;
	-webkit-appearance: none;
	color: #888;
	cursor: pointer
}

.gb-group select.selected,
.gb-group select:focus {
	color: #111
}

.gb-group select option {
	color: #111;
	background: #fff
}

.gb-captcha-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-bottom: 9px
}

.field-error {
	flex: 0 0 100%;
	width: 100%
}

.gb-captcha-row .captcha-question {
	flex-shrink: 0;
	background: #f0ebe3;
	color: #1a1a1a;
	height: 42px;
	line-height: 42px;
	padding: 0 14px;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	white-space: nowrap
}

.gb-captcha-row .captcha-input {
	flex: 1;
	min-width: 0;
	height: 42px;
	padding: 0 12px;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	text-align: center;
	outline: none
}

.gb-captcha-row .captcha-refresh {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border: 1px solid #0000001f;
	border-radius: 4px;
	background: transparent;
	color: #888;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	transition: color 0.2s, border-color .2s
}

.gb-captcha-row .captcha-refresh:hover {
	color: #111;
	border-color: #888
}

.gb-select-wrap .gb-select-arrow {
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(-50%);
	color: #888;
	font-size: 11px;
	pointer-events: none
}

.gb-modal-btn {
	width: 100%;
	height: 44px;
	margin-top: 4px;
	background: var(--gold);
	color: #fff;
	border: none;
	border-radius: 3px;
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: background 0.2s, transform .15s
}

.gb-modal-btn:hover {
	background: #b98f58
}

.gb-modal-btn:active {
	transform: scale(0.985)
}

.gb-disclaimer {
	margin-top: 13px;
	font-size: 11.5px;
	line-height: 1.55;
	color: #ffffff73
}

.gb-success {
	margin-top: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
	color: #7ecf8e;
	font-size: 13px
}

.gb-success i {
	font-size: 16px
}

@media (max-width: 480px) {
	.gb-modal {
		padding: 32px 20px 24px;
		border-radius: 16px
	}

	.gb-modal-title {
		font-size: 22px
	}
}

/* ─── REVEAL ANIMATION FIX ─── */
/* 
  Problem था: opacity:0 + translateY(50px) से sections completely black/invisible थे
  Fix: will-change add किया performance के लiye, transitions smoother किए
*/

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .75s cubic-bezier(0.22, 1, 0.36, 1),
              transform .75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.reveal-left,
.reveal.reveal-right {
  transform: translateY(30px);
  transition: opacity .75s cubic-bezier(0.22, 1, 0.36, 1),
              transform .75s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 901px) {
  .reveal.reveal-left  { transform: translateX(-45px); }
  .reveal.reveal-right { transform: translateX(45px); }
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(0.22, 1, 0.36, 1),
              transform .7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-stagger.is-visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s;    will-change:auto; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:.08s;  will-change:auto; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:.16s;  will-change:auto; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:.24s;  will-change:auto; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:.32s;  will-change:auto; }
.reveal-stagger.is-visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:.40s;  will-change:auto; }
.reveal-stagger.is-visible > *:nth-child(7) { opacity:1; transform:none; transition-delay:.48s;  will-change:auto; }
.reveal-stagger.is-visible > *:nth-child(8) { opacity:1; transform:none; transition-delay:.56s;  will-change:auto; }

.reveal-d1 { transition-delay: .10s !important; }
.reveal-d2 { transition-delay: .20s !important; }
.reveal-d3 { transition-delay: .30s !important; }
.reveal-d4 { transition-delay: .40s !important; }
.reveal-d5 { transition-delay: .50s !important; }

/* Reduce motion — सब instantly visible */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }
}

/* Floor plan swiper fix — slide transition smooth */
.floorplan-swiper .swiper-slide {
  transition: transform 0.7s ease, opacity 0.7s ease;
}


.walkthrough-section {
	background: #fff;
	padding: 90px 0 100px
}

.walkthrough-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px
}

.walkthrough-header {
	margin-bottom: 48px
}

.walkthrough-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 3px;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 14px
}

.walkthrough-heading {
	font-family: var(--font-display);
	font-size: clamp(30px, 3.5vw, 44px);
	font-weight: 700;
	color: #000;
	line-height: 1.15
}

.walkthrough-sub {
	font-size: 16px;
	font-weight: 300;
	color: #ffffff8c;
	line-height: 1.7;
	max-width: 500px;
	margin: 0 auto
}

.walkthrough-video-wrap {
	position: relative;
	width: 100%;
	padding-bottom: 45.25%;
	height: 0;
	overflow: hidden;
	border: 1px solid #ffffff1a
}

.walkthrough-video-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0
}

@media (max-width: 900px) {
	.walkthrough-container {
		padding: 0 24px
	}

	.walkthrough-section {
		padding: 60px 0 70px
	}
}

@media (max-width: 480px) {
	.walkthrough-container {
		padding: 0 16px
	}

	.walkthrough-section {
		padding: 50px 0 60px
	}
}