/* ==========================================================================
   Jet Off-Plan — Jet Horizon luxury landing styling
   Brand source: Elementor Kit 14 (navy #1D2951, gold #BDA65C, cream #FDF8EE).
   Fonts: Playfair Display (headings), Raleway (labels), Roboto (body).
   ========================================================================== */

.jet-offplan-single,
.offplan-section,
.offplan-hero,
.offplan-facts,
.offplan-subnav,
.offplan-sticky-cta,
.offplan-modal {
	--brand-navy: #1D2951;
	--brand-navy-dark: #0E1733;
	--brand-gold: #BDA65C;
	--brand-gold-soft: #d8c690;
	--brand-cream: #FDF8EE;
	--brand-text: #1A284B;
	--brand-muted: #6b7280;
	--brand-line: #e7ddc9;

	/* Track the Elementor kit when present, fall back to the brand hexes. */
	--offplan-navy: var(--e-global-color-primary, #1D2951);
	--offplan-navy-2: var(--e-global-color-fdad94a, #0E1733);
	--offplan-gold: var(--e-global-color-secondary, #BDA65C);
	--offplan-cream: var(--e-global-color-accent, #FDF8EE);
	--offplan-text: var(--e-global-color-text, #1A284B);

	--offplan-font-head: "Playfair Display", Georgia, "Times New Roman", serif;
	--offplan-font-label: "Raleway", "Helvetica Neue", Arial, sans-serif;
	--offplan-font-body: "Roboto", "Helvetica Neue", Arial, sans-serif;
}

.jet-offplan-single {
	background: var(--offplan-cream);
	color: var(--offplan-text);
	font-family: var(--offplan-font-body);
}

.jet-offplan-single img {
	max-width: 100%;
	height: auto;
}

/* ---- Layout primitives --------------------------------------------------- */
.offplan-section {
	padding: 72px 20px;
	max-width: 1140px;
	margin: 0 auto;
	box-sizing: border-box;
}

.offplan-section__title {
	text-align: center;
	font-family: var(--offplan-font-head);
	font-weight: 600;
	font-size: clamp(26px, 3.2vw, 40px);
	line-height: 1.15;
	margin: 0 0 40px;
	color: var(--offplan-navy);
	position: relative;
	padding-bottom: 18px;
}

.offplan-section__title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 64px;
	height: 2px;
	background: var(--offplan-gold);
}

/* Scroll-reveal — hidden state applies only once JS is active, so content is
   always visible without JS and inside the Elementor editor. */
.offplan-js [data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
	will-change: opacity, transform;
}

.offplan-js [data-reveal].is-revealed {
	opacity: 1;
	transform: none;
}

/* Never hide sections inside the Elementor editor preview. */
.elementor-editor-active [data-reveal],
.elementor-editor-preview [data-reveal] {
	opacity: 1 !important;
	transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1; transform: none; transition: none; }
}

.offplan-editor-notice {
	margin: 8px;
	padding: 12px 16px;
	border: 1px dashed var(--offplan-gold);
	background: #fff8ec;
	color: #8a6d3b;
	font-size: 13px;
	border-radius: 4px;
	font-family: var(--offplan-font-body);
}

/* ---- Buttons ------------------------------------------------------------- */
.offplan-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--offplan-font-label);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 14px 30px;
	border-radius: 2px;
	border: 1.5px solid var(--offplan-gold);
	text-decoration: none;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.offplan-btn--solid {
	background: var(--offplan-gold);
	color: var(--offplan-navy);
}

.offplan-btn--solid:hover {
	background: transparent;
	color: var(--offplan-gold);
}

.offplan-btn--outline {
	background: transparent;
	color: var(--offplan-navy);
}

.offplan-btn--outline:hover {
	background: var(--offplan-gold);
	color: var(--offplan-navy);
}

.offplan-btn--whatsapp {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
}

.offplan-btn--whatsapp:hover {
	background: #25d366;
	border-color: #25d366;
	color: #fff;
}

/* "Register Interest" in the hero sits on a dark photo — make it white. */
.offplan-hero__cta .offplan-btn--outline {
	color: #fff;
	border-color: #fff;
}

.offplan-hero__cta .offplan-btn--outline:hover {
	background: #fff;
	color: var(--offplan-navy);
	border-color: #fff;
}


/* ==========================================================================
   Hero
   ========================================================================== */
.offplan-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 92vh;
	min-height: 92svh;
	background-color: var(--offplan-navy);
	color: #fff;
	overflow: hidden;
}

.offplan-hero__slides,
.offplan-hero__video {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.offplan-hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.offplan-hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1200ms ease-in-out;
	will-change: opacity;
}

.offplan-hero__slide.is-active { opacity: 1; }

.offplan-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(14, 23, 51, 0.35) 0%, rgba(14, 23, 51, 0.78) 100%);
}

.offplan-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 960px;
	padding: 48px 24px;
	text-align: center;
}

.offplan-hero__tagline {
	display: inline-block;
	font-family: var(--offplan-font-label);
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-size: 13px;
	color: var(--offplan-gold);
	margin-bottom: 18px;
}

.offplan-hero__title {
	font-family: var(--offplan-font-head);
	font-weight: 600;
	font-size: clamp(34px, 6vw, 74px);
	line-height: 1.05;
	margin: 0;
	color: #fff;
	letter-spacing: 0.01em;
}

.offplan-hero__location {
	margin: 16px 0 0;
	font-family: var(--offplan-font-label);
	font-size: 15px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand-gold-soft);
}

.offplan-hero__pin {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: 8px;
	border-radius: 50%;
	background: var(--offplan-gold);
	vertical-align: middle;
}

.offplan-hero__subtitle {
	margin: 18px auto 0;
	max-width: 720px;
	font-size: clamp(15px, 1.6vw, 19px);
	color: #ece6d8;
}

.offplan-hero__facts {
	margin-top: 26px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px 22px;
}

.offplan-hero__badge {
	font-family: var(--offplan-font-label);
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--offplan-navy);
	background: var(--offplan-gold);
	padding: 7px 16px;
	border-radius: 2px;
}

.offplan-hero__price {
	font-family: var(--offplan-font-label);
	font-size: 16px;
	letter-spacing: 0.04em;
	color: #fff;
}

.offplan-hero__price strong {
	color: var(--offplan-gold);
	font-weight: 600;
}

.offplan-hero__cta {
	margin-top: 34px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

/* Slideshow dots */
.offplan-hero__dots {
	position: absolute;
	z-index: 3;
	left: 0;
	right: 0;
	bottom: 76px;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.offplan-hero__dot {
	width: 11px;
	height: 11px;
	padding: 0;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.7);
	background: transparent;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease;
}

.offplan-hero__dot.is-active {
	background: var(--offplan-gold);
	border-color: var(--offplan-gold);
	transform: scale(1.15);
}

/* Scroll-down button */
.offplan-hero__scroll {
	position: absolute;
	z-index: 3;
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 0;
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	font-family: var(--offplan-font-label);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 11px;
}

.offplan-hero__scroll-chevron {
	width: 16px;
	height: 16px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	animation: offplan-bounce 1.8s infinite;
}

@keyframes offplan-bounce {
	0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 1; }
	50% { transform: rotate(45deg) translate(5px, 5px); opacity: 0.5; }
}

@media (prefers-reduced-motion: reduce) {
	.offplan-hero__slide { transition: none; }
	.offplan-hero__scroll-chevron { animation: none; }
}

/* ==========================================================================
   Quick Facts bar
   ========================================================================== */
.offplan-facts {
	background: var(--offplan-navy);
	padding: 0 16px;
}

.offplan-facts__bar {
	max-width: 1140px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.offplan-facts__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 26px 16px;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.offplan-facts__item:last-child { border-right: 0; }

.offplan-facts__icon {
	width: 9px;
	height: 9px;
	margin-bottom: 8px;
	background: var(--offplan-gold);
	transform: rotate(45deg);
	opacity: 0.9;
}

.offplan-facts__label {
	font-family: var(--offplan-font-label);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--brand-gold-soft);
}

.offplan-facts__value {
	font-family: var(--offplan-font-head);
	font-size: 18px;
	color: #fff;
}

/* ==========================================================================
   Sub-nav (sticky in-page navigation)
   ========================================================================== */
.offplan-subnav {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(253, 248, 238, 0.96);
	backdrop-filter: saturate(140%) blur(6px);
	border-bottom: 1px solid var(--brand-line);
}

.offplan-subnav__inner {
	max-width: 1140px;
	margin: 0 auto;
	display: flex;
	gap: 6px;
	padding: 0 12px;
	overflow-x: auto;
	scrollbar-width: none;
}

.offplan-subnav__inner::-webkit-scrollbar { display: none; }

.offplan-subnav__link {
	flex: 0 0 auto;
	padding: 16px 14px;
	font-family: var(--offplan-font-label);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--brand-muted);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}

.offplan-subnav__link:hover,
.offplan-subnav__link.is-active {
	color: var(--offplan-navy);
	border-bottom-color: var(--offplan-gold);
}

/* ---- Off-plan top bar (replaces the theme header) -------------------- */
.offplan-topbar__inner {
	align-items: center;
	gap: 20px;
	padding: 6px 16px;
	overflow: visible;
}

.offplan-topbar__brand {
	flex: 0 0 auto;
	font-family: var(--offplan-font-head);
	font-size: 19px;
	font-weight: 600;
	color: var(--offplan-navy);
	text-decoration: none;
	white-space: nowrap;
}

.offplan-topbar__nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
	gap: 2px;
	overflow-x: auto;
	scrollbar-width: none;
}

.offplan-topbar__nav::-webkit-scrollbar { display: none; }

.offplan-topbar__link { padding: 12px 10px; }

.offplan-topbar__cta {
	flex: 0 0 auto;
	display: flex;
	gap: 8px;
}

.offplan-topbar__btn {
	padding: 9px 16px;
	font-size: 11px;
}

@media ( max-width: 900px ) {
	.offplan-topbar__nav { display: none; }
}

@media ( max-width: 480px ) {
	.offplan-topbar__brand { font-size: 15px; }
	.offplan-topbar__btn { padding: 8px 12px; font-size: 10px; letter-spacing: 0.08em; }
}

/* ---- Standalone landing footer -------------------------------------- */
.offplan-footer {
	background: #1D2951;
	color: rgba( 255, 255, 255, 0.65 );
	padding: 22px 16px;
	text-align: center;
}

.offplan-footer__inner { max-width: 1140px; margin: 0 auto; }

.offplan-footer__copy {
	font-family: "Raleway", "Helvetica Neue", Arial, sans-serif;
	font-size: 12px;
	letter-spacing: 0.08em;
}

/* ==========================================================================
   Overview
   ========================================================================== */
.offplan-overview__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 48px;
	align-items: center;
}

.offplan-overview__media img {
	width: 100%;
	border-radius: 6px;
	display: block;
	box-shadow: 0 24px 60px rgba(14, 23, 51, 0.16);
}

.offplan-overview__title {
	font-family: var(--offplan-font-head);
	font-weight: 600;
	font-size: clamp(24px, 2.6vw, 34px);
	color: var(--offplan-navy);
	margin: 0 0 12px;
}

.offplan-overview__location {
	font-family: var(--offplan-font-label);
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--offplan-gold);
	margin: 0 0 18px;
}

.offplan-overview__text {
	font-size: 16px;
	line-height: 1.85;
	color: #44515e;
	margin-bottom: 26px;
}

/* ==========================================================================
   Available Units
   ========================================================================== */
.offplan-units__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 26px;
}

.offplan-units__card {
	background: #fff;
	border: 1px solid var(--brand-line);
	border-radius: 6px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offplan-units__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 44px rgba(14, 23, 51, 0.14);
}

.offplan-units__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.offplan-units__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.offplan-units__card:hover .offplan-units__media img { transform: scale(1.05); }

.offplan-units__body {
	padding: 22px;
	text-align: center;
}

.offplan-units__type {
	font-family: var(--offplan-font-head);
	font-size: 20px;
	color: var(--offplan-navy);
	margin: 0 0 8px;
}

.offplan-units__area {
	font-size: 14px;
	color: var(--brand-muted);
	margin: 0 0 10px;
}

.offplan-units__price {
	font-family: var(--offplan-font-head);
	font-size: 18px;
	color: var(--offplan-gold);
	margin: 0;
}

.offplan-units__from {
	display: block;
	font-family: var(--offplan-font-label);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--brand-muted);
}

/* ==========================================================================
   Payment plan
   ========================================================================== */
.offplan-payment__cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
	max-width: 980px;
	margin: 0 auto;
}

.offplan-payment__card {
	background: #fff;
	border: 1px solid var(--brand-line);
	color: var(--offplan-text);
	padding: 36px 22px;
	border-radius: 6px;
	text-align: center;
}

.offplan-payment__percent {
	font-family: var(--offplan-font-head);
	font-size: 46px;
	font-weight: 700;
	color: var(--offplan-gold);
	line-height: 1;
}

.offplan-payment__card .offplan-payment__label {
	margin-top: 12px;
	font-family: var(--offplan-font-label);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 13px;
	color: var(--offplan-navy);
}

.offplan-payment__card .offplan-payment__note {
	margin-top: 6px;
	color: var(--brand-muted);
	font-size: 13px;
}

.offplan-payment__table {
	width: 100%;
	border-collapse: collapse;
	max-width: 880px;
	margin: 0 auto;
}

.offplan-payment__table thead {
	background: var(--offplan-navy);
	color: #fff;
}

.offplan-payment__table th,
.offplan-payment__table td {
	padding: 16px 18px;
	text-align: left;
	border-bottom: 1px solid var(--brand-line);
	font-size: 15px;
}

.offplan-payment--table .offplan-payment__percent {
	font-size: 20px;
}

.offplan-payment__row:nth-child(even) { background: #fbf7ee; }

/* ==========================================================================
   Master plan
   ========================================================================== */
.offplan-master__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.offplan-master__item {
	position: relative;
	display: block;
	padding: 0;
	border: 1px solid var(--brand-line);
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
	cursor: zoom-in;
}

.offplan-master__img {
	width: 100%;
	display: block;
}

.offplan-master__zoom {
	position: absolute;
	right: 14px;
	bottom: 14px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(29, 41, 81, 0.82);
}

.offplan-master__zoom::before,
.offplan-master__zoom::after {
	content: "";
	position: absolute;
	background: #fff;
	left: 50%;
	top: 50%;
}

.offplan-master__zoom::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.offplan-master__zoom::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }

.offplan-master__cta {
	text-align: center;
	margin-top: 32px;
}

/* ==========================================================================
   Floor / Master plan grid (shared item styling) + filter
   ========================================================================== */
.offplan-filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: -16px 0 36px;
}

.offplan-filter__btn {
	font-family: var(--offplan-font-label);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 9px 20px;
	border: 1px solid var(--brand-line);
	border-radius: 2px;
	background: #fff;
	color: var(--brand-muted);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.offplan-filter__btn.is-active {
	background: var(--offplan-navy);
	border-color: var(--offplan-navy);
	color: #fff;
}

.offplan-plans__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.offplan-plans__item {
	border: 1px solid var(--brand-line);
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
}

.offplan-plans__media {
	display: block;
	background: #f3f1ea;
}

.offplan-plans__media img {
	width: 100%;
	height: auto;
	display: block;
}

.offplan-plans__body { padding: 22px; }

.offplan-plans__name {
	margin: 0 0 10px;
	font-family: var(--offplan-font-head);
	color: var(--offplan-navy);
	font-size: 20px;
}

.offplan-plans__meta {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	padding: 0;
	margin: 0 0 12px;
	color: var(--brand-muted);
	font-size: 14px;
}

.offplan-plans__desc {
	color: #55626e;
	font-size: 15px;
	line-height: 1.7;
}

/* ==========================================================================
   Amenities
   ========================================================================== */
.offplan-amenities__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 26px;
}

.offplan-amenities__item {
	background: #fff;
	border: 1px solid var(--brand-line);
	border-radius: 6px;
	padding: 32px 24px;
	text-align: center;
}

.offplan-amenities__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 16px;
	border-radius: 50%;
	background: var(--offplan-cream);
	border: 1px solid var(--brand-line);
}

.offplan-amenities__icon img { width: 28px; height: 28px; }

.offplan-amenities__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--offplan-gold);
}

.offplan-amenities__title {
	font-family: var(--offplan-font-head);
	font-size: 19px;
	color: var(--offplan-navy);
	margin: 0 0 8px;
}

.offplan-amenities__desc {
	font-size: 14px;
	line-height: 1.65;
	color: var(--brand-muted);
	margin: 0;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.offplan-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.offplan-gallery__item {
	display: block;
	overflow: hidden;
	border-radius: 4px;
	aspect-ratio: 4 / 3;
}

.offplan-gallery__item:nth-child(6n + 1) { grid-column: span 2; aspect-ratio: 16 / 10; }

.offplan-gallery__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.offplan-gallery__item:hover .offplan-gallery__img { transform: scale(1.05); }

/* ==========================================================================
   Map
   ========================================================================== */
.offplan-map__address {
	text-align: center;
	margin: -22px 0 28px;
	font-family: var(--offplan-font-label);
	letter-spacing: 0.06em;
	color: var(--brand-muted);
}

.offplan-map__canvas {
	width: 100%;
	height: 440px;
	border-radius: 6px;
	overflow: hidden;
	background: #e9eef2;
}

/* ==========================================================================
   Connectivity
   ========================================================================== */
.offplan-connect__list {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: 760px;
	display: grid;
	gap: 14px;
}

.offplan-connect__item {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	border: 1px solid var(--brand-line);
	border-left: 3px solid var(--offplan-gold);
	border-radius: 4px;
	padding: 18px 22px;
}

.offplan-connect__icon {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	display: inline-flex;
}

.offplan-connect__icon img { width: 24px; height: 24px; }

.offplan-connect__place {
	flex: 1;
	font-family: var(--offplan-font-head);
	font-size: 17px;
	color: var(--offplan-navy);
}

.offplan-connect__meta {
	font-family: var(--offplan-font-label);
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--offplan-gold);
	white-space: nowrap;
}

/* ==========================================================================
   Developer
   ========================================================================== */
.offplan-developer {
	background: #fff;
	max-width: none;
}

.offplan-developer > * { max-width: 1140px; margin-left: auto; margin-right: auto; }

.offplan-developer__inner {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 40px;
	align-items: center;
}

.offplan-developer__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
	border: 1px solid var(--brand-line);
	border-radius: 6px;
	background: var(--offplan-cream);
}

.offplan-developer__name {
	font-family: var(--offplan-font-head);
	font-size: 26px;
	color: var(--offplan-navy);
	margin: 0 0 14px;
}

.offplan-developer__desc {
	font-size: 16px;
	line-height: 1.8;
	color: #44515e;
	margin-bottom: 22px;
}

.offplan-developer__projects { margin-top: 44px; }

.offplan-developer__projects-title {
	font-family: var(--offplan-font-label);
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--brand-muted);
	text-align: center;
	margin: 0 0 22px;
}

.offplan-developer__projects-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 28px;
}

.offplan-developer__project img {
	max-height: 60px;
	width: auto;
	filter: grayscale(1);
	opacity: 0.7;
	transition: filter 0.3s ease, opacity 0.3s ease;
}

.offplan-developer__project img:hover { filter: none; opacity: 1; }

/* ==========================================================================
   Completion stats (navy)
   ========================================================================== */
.offplan-stats {
	background: var(--offplan-navy);
	color: #fff;
	max-width: none;
}

.offplan-stats .offplan-section__title { color: #fff; }

.offplan-stats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1000px;
	margin: 0 auto;
}

.offplan-stats__item { text-align: center; padding: 24px 12px; }

.offplan-stats__percent {
	font-family: var(--offplan-font-head);
	font-size: clamp(42px, 6vw, 64px);
	font-weight: 700;
	line-height: 1;
	color: var(--offplan-gold);
}

.offplan-stats__label {
	margin-top: 12px;
	font-family: var(--offplan-font-label);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 13px;
	color: #b9c2d4;
}

/* ==========================================================================
   Lead capture CTA (dark)
   ========================================================================== */
.offplan-lead {
	background: var(--offplan-navy-2);
	color: #fff;
	max-width: none;
	text-align: center;
}

.offplan-lead__inner { max-width: 820px; margin: 0 auto; }

.offplan-lead__heading {
	font-family: var(--offplan-font-head);
	font-weight: 600;
	font-size: clamp(28px, 4vw, 46px);
	margin: 0 0 14px;
	color: #fff;
}

.offplan-lead__subtext {
	color: #d8c690;
	font-size: 17px;
	margin: 0 auto 32px;
	max-width: 620px;
}

.offplan-lead__form { text-align: left; }

.offplan-lead__row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-bottom: 16px;
}

.offplan-lead__field input {
	width: 100%;
	box-sizing: border-box;
	padding: 15px 16px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-family: var(--offplan-font-body);
	font-size: 15px;
}

.offplan-lead__field input::placeholder { color: rgba(255, 255, 255, 0.6); }

.offplan-lead__field input:focus {
	outline: none;
	border-color: var(--offplan-gold);
	background: rgba(255, 255, 255, 0.1);
}

.offplan-lead__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.offplan-lead__submit { width: 100%; margin-top: 6px; }

.offplan-lead__feedback {
	margin: 16px 0 0;
	text-align: center;
	font-family: var(--offplan-font-label);
	font-size: 14px;
	min-height: 20px;
}

.offplan-lead__feedback.is-success { color: #7ee2a8; }
.offplan-lead__feedback.is-error { color: #ff9b9b; }
.offplan-lead__feedback.is-pending { color: #d8c690; }

.offplan-lead__form.is-submitted .offplan-lead__row,
.offplan-lead__form.is-submitted .offplan-lead__submit { opacity: 0.5; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0);
	white-space: nowrap; border: 0;
}

/* ==========================================================================
   Sticky mobile CTA
   ========================================================================== */
.offplan-sticky-cta {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 90;
	background: var(--offplan-navy);
	box-shadow: 0 -6px 22px rgba(14, 23, 51, 0.3);
}

.offplan-sticky-cta__btn {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 11px 6px;
	color: #fff;
	text-decoration: none;
	font-family: var(--offplan-font-label);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.offplan-sticky-cta__btn:last-child { border-right: 0; }
.offplan-sticky-cta__btn--enquire { background: var(--offplan-gold); color: var(--offplan-navy); }

.offplan-sticky-cta__icon {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
}

.offplan-sticky-cta__btn--enquire .offplan-sticky-cta__icon { background: rgba(29, 41, 81, 0.18); }

/* ==========================================================================
   Zoom modal
   ========================================================================== */
.offplan-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
}

.offplan-modal.is-open { display: flex; }

.offplan-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(14, 23, 51, 0.9);
}

.offplan-modal__body {
	position: relative;
	z-index: 1;
	max-width: 92vw;
	max-height: 90vh;
}

.offplan-modal__img {
	max-width: 92vw;
	max-height: 90vh;
	border-radius: 4px;
	display: block;
}

.offplan-modal__close {
	position: absolute;
	top: -16px;
	right: -16px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 0;
	background: var(--offplan-gold);
	color: var(--offplan-navy);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.offplan-overview__grid { grid-template-columns: 1fr; gap: 30px; }
	.offplan-developer__inner { grid-template-columns: 1fr; gap: 26px; text-align: center; }
	.offplan-developer__logo { max-width: 220px; margin: 0 auto; }
	.offplan-gallery__grid { grid-template-columns: repeat(2, 1fr); }
	.offplan-gallery__item:nth-child(6n + 1) { grid-column: auto; aspect-ratio: 4 / 3; }
	.offplan-stats__grid { grid-template-columns: repeat(3, 1fr); }
	.offplan-plans__grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
	.offplan-section { padding: 52px 16px; }
	.offplan-lead__row { grid-template-columns: 1fr; }
	.offplan-gallery__grid,
	.offplan-stats__grid { grid-template-columns: 1fr; }
	.offplan-connect__item { flex-wrap: wrap; }
	.offplan-sticky-cta { display: flex; }
	.jet-offplan-single { padding-bottom: 64px; } /* room for sticky CTA */
	.offplan-hero__cta .offplan-btn { flex: 1 1 100%; }
}
