/*
Theme Name: PC Estate Theme
Theme URI: #
Author: Priyanka Hazra
Author URI: #
Description: Premium Real Estate WordPress Theme built for Properti Connect.
Version: 1.0.0
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 8.0
License: GPL v2 or later
Text Domain: pcestate
Tags: custom-theme, real-estate, responsive
*/

/* ---------- Reset ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
ul,
ol {
	margin: 0;
}

ul {
	padding: 0;
	list-style: none;
}

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

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

button {
	font: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

input {
	font: inherit;
}

:root {
	--color-primary: #33415A;
	/* slate navy — from the Properti Connect logo wordmark/outline */
	--color-primary-dark: #232D3F;
	--color-secondary: #E8590C;
	/* warm orange accent — from the logo's puzzle-piece palette */
	--color-secondary-light: #F2874A;
	--color-dark: #1A222E;
	--color-text: #3d3d3d;
	--color-muted: #6f6f6f;
	--color-light-bg: #F5F6F8;
	--color-white: #ffffff;
	--font-heading: 'Poppins', -apple-system, 'Segoe UI', Arial, sans-serif;
	--font-body: 'Inter', -apple-system, 'Segoe UI', Arial, sans-serif;
	--container-width: 1200px;
	--radius: 10px;
	--transition: 0.25s ease;
}

body {
	font-family: var(--font-body);
	color: var(--color-text);
	line-height: 1.6;
	background: var(--color-white);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-heading);
	color: var(--color-dark);
	line-height: 1.25;
	font-weight: 700;
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

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

/* ---------- Buttons ---------- */
.btn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 28px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.95rem;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	white-space: nowrap;
}

.btn-primary {
	background: var(--color-primary);
	color: var(--color-white);
}

.btn-primary:hover,
.btn-primary:focus {
	background: var(--color-primary-dark);
}

.btn-sm {
	padding: 8px 18px;
	font-size: 0.85rem;
	border-radius: 40px;
}

.btn-outline-light {
	border: 1px solid rgba(255, 255, 255, 0.6);
	color: var(--color-white);
}

.btn-outline-light:hover {
	background: rgba(255, 255, 255, 0.15);
}

.btn-link {
	color: var(--color-primary);
	font-weight: 600;
	padding: 13px 6px;
}

.btn-link:hover {
	color: var(--color-primary-dark);
	text-decoration: underline;
}

.eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-secondary);
	margin-bottom: 10px;
}

/* =============================================================
   TOP BAR
   ============================================================= */
.top-bar {
	background: var(--color-dark);
	color: var(--color-white);
	font-size: 0.85rem;
}

.top-bar-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 8px;
	padding-bottom: 8px;
}

.top-bar-contact {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.top-bar-link {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.85);
}

.top-bar-link:hover {
	color: var(--color-secondary);
}

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background: var(--color-white);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.site-header-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 14px;
	padding-bottom: 14px;
	gap: 20px;
}

.site-branding img {
	max-height: 62px;
	width: auto;
}

.site-logo-fallback {
	max-height: 58px;
	width: auto;
	display: block;
}

.site-title-link {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 1.4rem;
	color: var(--color-primary);
}

.footer-logo-card {
	display: inline-block;
	background: var(--color-white);
	border-radius: 12px;
	padding: 10px 16px;
	margin-bottom: 18px;
}

.footer-logo-fallback {
	max-height: 56px;
	width: auto;
	display: block;
}

.primary-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
}

.primary-menu li a {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--color-dark);
	position: relative;
	padding: 6px 0;
}

.primary-menu li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--color-primary);
	-webkit-transition: width var(--transition);
	-o-transition: width var(--transition);
	transition: width var(--transition);
}

.primary-menu li a:hover::after,
.primary-menu li.current-menu-item a::after {
	width: 100%;
}

.menu-toggle {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 5px;
	padding: 6px;
}

.menu-toggle-bar {
	width: 24px;
	height: 2px;
	background: var(--color-dark);
	display: block;
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
	position: relative;
	min-height: 620px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: var(--color-primary);
	background-size: cover;
	background-position: center;
	color: var(--color-white);
	text-align: center;
	padding: 90px 0;
	overflow: hidden;
}

.hero-bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: 0;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		-webkit-linear-gradient(left, rgba(20, 25, 35, 0.55) 0%, rgba(20, 25, 35, 0) 22%, rgba(20, 25, 35, 0) 78%, rgba(20, 25, 35, 0.55) 100%),
		-webkit-linear-gradient(bottom, rgba(51, 65, 90, 0.65), rgba(51, 65, 90, 0.35));
	background:
		-o-linear-gradient(left, rgba(20, 25, 35, 0.55) 0%, rgba(20, 25, 35, 0) 22%, rgba(20, 25, 35, 0) 78%, rgba(20, 25, 35, 0.55) 100%),
		-o-linear-gradient(bottom, rgba(51, 65, 90, 0.65), rgba(51, 65, 90, 0.35));
	background:
		linear-gradient(90deg, rgba(20, 25, 35, 0.55) 0%, rgba(20, 25, 35, 0) 22%, rgba(20, 25, 35, 0) 78%, rgba(20, 25, 35, 0.55) 100%),
		linear-gradient(0deg, rgba(51, 65, 90, 0.65), rgba(51, 65, 90, 0.35));
}

.hero-inner {
	position: relative;
	z-index: 2;
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}

.hero-title {
	font-size: clamp(2rem, 5vw, 3.2rem);
	color: var(--color-white);
	margin-bottom: 18px;
}

.hero-subtitle {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.85);
	max-width: 560px;
	margin: 0 auto 36px;
}

.hero-search {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	background: var(--color-white);
	border-radius: 16px;
	padding: 10px;
	max-width: 780px;
	margin: 0 auto 10px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.hero-search-field {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 150px;
	flex: 1 1 150px;
	background: var(--color-light-bg);
	border-radius: 10px;
	padding: 4px 12px;
}

.hero-search-location {
	-webkit-box-flex: 2;
	-ms-flex: 2 1 220px;
	flex: 2 1 220px;
}

.icon-search::before {
	content: "🔍";
}

.icon-pin::before {
	content: "📍";
}

.hero-search-input,
.hero-search-select {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	border: none;
	outline: none;
	padding: 12px 4px;
	color: var(--color-dark);
	background: transparent;
	min-width: 0;
	font-size: 0.92rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.hero-search-btn {
	flex-shrink: 0;
}

.projects-filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	background: var(--color-light-bg);
	border-radius: var(--radius);
	padding: 18px;
	margin-bottom: 34px;
	align-items: center;
}

.projects-filter-bar .hero-search-select {
	background: var(--color-white);
	border-radius: 8px;
	padding: 10px 14px;
	border: 1px solid #e3e6ec;
	flex: 1 1 180px;
	color: var(--color-dark);
}

/* =============================================================
   POPULAR LOCATIONS
   ============================================================= */
.locations-section {
	position: relative;
	padding: 90px 0;
	background-color: #fffdf8;
	background-image: url("../images/abstract-bg.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
}

.locations-grid {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 26px;
}

.location-card {
	display: block;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--color-light-bg);
	box-shadow: 0 8px 20px rgb(232 89 12 / 57%);
	-webkit-transition: -webkit-transform var(--transition);
	transition: transform var(--transition);
}

.location-card:hover {
	-webkit-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	transform: translateY(-6px);
}

.location-card-img {
	height: 190px;
	background-color: #dfe3ea;
	background-size: cover;
	background-position: center;
	background-image: -webkit-linear-gradient(135deg, #e2e6ee, #cfd5e0);
	background-image: -o-linear-gradient(135deg, #e2e6ee, #cfd5e0);
}

.location-card-body {
	padding: 18px 20px;
}

.location-card-body h3 {
	font-size: 1.05rem;
	margin-bottom: 6px;
}

.location-card-body span {
	color: var(--color-muted);
	font-size: 0.88rem;
}

/* =========================================================
   PROJECT CATEGORY SECTION
   ========================================================= */

/* =========================================
   PROJECT CATEGORY
========================================= */


/* =========================================
   CATEGORY + LATEST PROPERTY
========================================= */

.pcestate-category-section {
	padding: 80px 0;
	background: #fff;
}

.pcestate-category-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: 60px;
	align-items: center;
}

/* LEFT SIDE */

.pcestate-category-content {
	min-width: 0;
}

.pcestate-category-heading {
	margin-bottom: 30px;
}

.pcestate-section-eyebrow {
	display: block;
	margin-bottom: 10px;
	color: #E8590C;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.pcestate-category-title-wrap h2,
.pcestate-category-heading h2 {
	margin: 0;
	color: #33415A;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.15;
}

.pcestate-category-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.pcestate-category-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 46px;
	padding: 10px 24px;

	border: 1px solid #d8dee8;
	border-radius: 30px;

	background: #fff;
	color: #33415A;

	font-size: 15px;
	font-weight: 500;
	text-decoration: none;

	transition:
		background-color 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.pcestate-category-button:hover {
	background: #E8590C;
	border-color: #E8590C;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(232, 89, 12, 0.15);
}


/* =========================================
   LATEST PROPERTY
========================================= */

.pcestate-latest-property {
	width: 100%;
}

.pcestate-latest-heading {
	margin-bottom: 16px;
}

.pcestate-latest-heading span {
	display: block;
	margin-bottom: 5px;

	color: #E8590C;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

.pcestate-latest-heading h3 {
	margin: 0;

	color: #33415A;
	font-size: 24px;
	font-weight: 700;
}


/* CARD */

.pcestate-latest-card {
	display: block;
	overflow: hidden;

	border: 1px solid #e3e7ed;
	border-radius: 16px;

	background: #fff;
	color: inherit;
	text-decoration: none;

	box-shadow: 0 8px 25px rgba(51, 65, 90, 0.08);

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.pcestate-latest-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(51, 65, 90, 0.14);
}


/* IMAGE */

.pcestate-latest-image {
	position: relative;
	height: 210px;
	overflow: hidden;
	background: #f1f3f6;
}

.pcestate-latest-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;

	transition: transform 0.4s ease;
}

.pcestate-latest-card:hover .pcestate-latest-image img {
	transform: scale(1.04);
}


/* BADGE */

.pcestate-latest-badge {
	position: absolute;
	top: 14px;
	left: 14px;

	display: inline-flex;
	align-items: center;

	padding: 6px 12px;

	border-radius: 20px;

	background: #E8590C;
	color: #fff;

	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .5px;
}


/* IMAGE FALLBACK */

.pcestate-latest-no-image {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;

	background: #f3f5f7;
	color: #8a94a5;

	font-size: 13px;
}


/* INFO */

.pcestate-latest-info {
	padding: 20px;
}

.pcestate-latest-info h4 {
	margin: 0 0 8px;

	color: #33415A;

	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}

.pcestate-latest-location {
	display: flex;
	align-items: center;
	gap: 6px;

	margin: 0 0 14px;

	color: #737d8d;
	font-size: 13px;
}

.pcestate-latest-location .icon-pin {
	display: inline-block;
}


/* DETAILS */

.pcestate-latest-details {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;

	margin-bottom: 15px;
}

.pcestate-latest-details span {
	padding: 5px 9px;

	border-radius: 5px;

	background: #f3f5f7;
	color: #596579;

	font-size: 12px;
}


/* PRICE */

.pcestate-latest-price {
	margin-bottom: 12px;

	color: #E8590C;
	font-size: 18px;
	font-weight: 700;
}


/* VIEW */

.pcestate-latest-view {
	display: inline-block;

	color: #33415A;
	font-size: 13px;
	font-weight: 700;

	transition: color 0.2s ease;
}

.pcestate-latest-card:hover .pcestate-latest-view {
	color: #E8590C;
}


/* NO PROPERTY */

.pcestate-no-latest-property {
	padding: 30px;

	border: 1px solid #e3e7ed;
	border-radius: 16px;

	background: #fafbfc;
	color: #7b8493;

	text-align: center;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

	.pcestate-category-layout {
		grid-template-columns: minmax(0, 1fr) 330px;
		gap: 35px;
	}

	.pcestate-category-heading h2 {
		font-size: 34px;
	}

	.pcestate-latest-image {
		height: 190px;
	}

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

	.pcestate-category-section {
		padding: 60px 0;
	}

	.pcestate-category-layout {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.pcestate-category-heading h2 {
		font-size: 32px;
	}

	.pcestate-latest-property {
		max-width: 500px;
		width: 100%;
		margin: 0 auto;
	}

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

	.pcestate-category-section {
		padding: 50px 0;
	}

	.pcestate-category-heading h2 {
		font-size: 28px;
	}

	.pcestate-category-buttons {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.pcestate-category-button {
		width: 100%;
		padding: 10px 12px;
		font-size: 14px;
	}

	.pcestate-latest-image {
		height: 200px;
	}

	.pcestate-latest-info {
		padding: 17px;
	}

	.pcestate-latest-info h4 {
		font-size: 18px;
	}

}



/* =============================================================
   HERO — lifestyle photo + rating badge (shown below the search bar)
   ============================================================= */
.hero-photo-wrap {
	margin-top: 34px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.hero-photo {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.hero-rating {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 14px;
	background: rgba(255, 255, 255, 0.12);
	padding: 10px 20px;
	border-radius: 50px;
	margin-top: 18px;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}

.hero-rating-badge {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hero-rating-badge .stars {
	color: var(--color-secondary);
	letter-spacing: 1px;
}

.hero-rating-caption {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.8);
}

/* =============================================================
   ABOUT US — two overlapping images + description
   ============================================================= */
.about-section {
	position: relative;
	padding: 90px 0;
	background-color: #fffdf8;
	background-image: url("../images/abstract-bg.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
}

.about-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.about-media {
	position: relative;
	flex: 1 1 420px;
	min-height: 420px;
}

.about-img {
	border-radius: var(--radius);
	object-fit: cover;
}

.about-img-main {
	width: 100%;
	height: 420px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-img-overlap {
	position: absolute;
	width: 55%;
	height: 220px;
	right: -6%;
	bottom: -40px;
	border: 6px solid var(--color-white);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.about-img-placeholder {
	background: -webkit-linear-gradient(135deg, #eee, #ddd);
	background: -o-linear-gradient(135deg, #eee, #ddd);
	background: linear-gradient(135deg, #eee, #ddd);
}

.about-content {
	flex: 1 1 420px;
}

.about-content h2 {
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	margin-bottom: 18px;
}

.about-content p {
	color: var(--color-muted);
	margin-bottom: 24px;
}

.about-since {
	display: inline-block;
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
	border-radius: 50px;
	padding: 8px 22px;
	margin-bottom: 26px;
}

.about-actions {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/* =============================================================
   STATS STRIP
   ============================================================= */
.stats-strip {
	background: var(--color-light-bg);
	padding: 46px 0;
}

.stats-strip-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}

.stat-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	flex: 1 1 160px;
	gap: 10px;
}

.stat-icon {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--color-primary);
	position: relative;
	display: block;
}

.stat-icon::after {
	content: "★";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	font-size: 1.1rem;
}

.stat-text {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--color-dark);
	max-width: 180px;
}

/* =============================================================
   CTA BANNER (Handholding / brochure download)
   ============================================================= */
.cta-banner {
	position: relative;
	background-color: var(--color-light-bg);
	background-size: cover;
	background-position: center;
	padding: 90px 0;
}

.cta-overlay {
	position: absolute;
	inset: 0;
	background: rgba(20, 25, 35, 0.35);
}

.cta-inner {
	position: relative;
	z-index: 2;
}

.cta-card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	background: var(--color-white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
	max-width: 980px;
	margin: 0 auto;
}

.cta-card-img {
	flex: 1 1 360px;
	min-height: 260px;
	object-fit: cover;
	width: 100%;
}

.cta-card-img-placeholder {
	background: -webkit-linear-gradient(135deg, #e2e6ee, #cfd5e0);
	background: -o-linear-gradient(135deg, #e2e6ee, #cfd5e0);
	background: linear-gradient(135deg, #e2e6ee, #cfd5e0);
}

.cta-card-body {
	flex: 1 1 360px;
	padding: 44px 40px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.cta-card-body h2 {
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	margin-bottom: 14px;
}

.cta-card-body p {
	color: var(--color-muted);
	margin-bottom: 24px;
}

/* =============================================================
   WHY CHOOSE US — icon-card grid with optional section background
   ============================================================= */
.why-section {
	padding: 100px 0;
	position: relative;
	padding: 90px 0;
	background-color: #fffdf8;
	background-image: url("../images/abstract-bg.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
}

.why-section-overlay {
	position: absolute;
	inset: 0;
	background: rgba(246, 247, 248, 0.93);
}

.why-section-inner {
	position: relative;
	z-index: 2;
}

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

@supports not (display: grid) {
	.why-grid {
		display: flex;
		flex-wrap: wrap;
	}

	.why-grid .why-card {
		flex: 1 1 250px;
	}
}

.why-card {
	background: var(--color-light-bg);
	border-radius: var(--radius);
	padding: 34px 26px;
	text-align: center;
	-webkit-transition: -webkit-transform var(--transition), box-shadow var(--transition);
	transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
	-webkit-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	transform: translateY(-6px);
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

.why-card-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: var(--color-primary);
	display: block;
	position: relative;
}

.why-card-icon::after {
	content: "◆";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-secondary);
}

.why-card h3 {
	font-size: 1.05rem;
	margin-bottom: 12px;
}

.why-card p {
	color: var(--color-muted);
	font-size: 0.92rem;
}

/* =============================================================
   DEVELOPER PARTNERS
   ============================================================= */
.partners-section {
	padding: 80px 0;
	background: var(--color-light-bg);
}

.partners-grid {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.partner-item {
	background: var(--color-white);
	border-radius: var(--radius);
	padding: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-height: 90px;
}

.partner-item img {
	max-height: 46px;
	width: auto;
	-webkit-filter: grayscale(40%);
	filter: grayscale(40%);
}

.partner-name-fallback {
	font-weight: 700;
	color: var(--color-muted);
	font-size: 0.9rem;
}

.partner-item-placeholder {
	background: -webkit-linear-gradient(135deg, #eef0f4, #e2e5ec);
	background: -o-linear-gradient(135deg, #eef0f4, #e2e5ec);
	background: linear-gradient(135deg, #eef0f4, #e2e5ec);
}

/* =============================================================
   PC ASSIST
   ============================================================= */
/* .assist-section {
	padding: 90px 0;
	background: var(--color-white);
}

.assist-grid {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 26px;
}

@supports not (display: grid) {
	.assist-grid {
		display: flex;
		flex-wrap: wrap;
	}

	.assist-grid .assist-card {
		flex: 1 1 300px;
	}
}

.assist-card {
	background: var(--color-light-bg);
	border-radius: var(--radius);
	padding: 40px;
	border-top: 4px solid var(--color-secondary);
}

.assist-card h3 {
	font-size: 1.3rem;
	margin-bottom: 12px;
}

.assist-card p {
	color: var(--color-muted);
	margin-bottom: 18px;
} */


.assist-section {
	padding: 100px 0;
	background: #f8f9fb;
}

.assist-wrapper {
	display: flex;
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
	min-height: 500px;
}

/*============================
LEFT PANEL
=============================*/

.assist-tabs {
	width: 340px;
	background: #33415A;
	display: flex;
	flex-direction: column;
	padding: 20px 0;
}

.assist-tab {
	appearance: none;
	-webkit-appearance: none;
	background: transparent;
	border: none;
	outline: none;
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	padding: 24px 35px;
	cursor: pointer;
	text-align: left;
	position: relative;
	transition: .35s ease;
	border-left: 5px solid transparent;
}

.assist-tab:hover {
	background: rgba(255, 255, 255, .08);
}

.assist-tab.active {
	background: #fff;
	color: #33415A;
	border-left: 5px solid #E8590C;
}

.assist-tab.active::after {
	content: "";
	position: absolute;
	right: -12px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 24px;
	height: 24px;
	background: #fff;
}

/*============================
RIGHT PANEL
=============================*/

.assist-content {
	flex: 1;
	padding: 70px;
	background: #fff;
	position: relative;
}

.assist-panel {
	display: none;
	animation: assistFade .45s ease;
}

.assist-panel.active {
	display: block;
}

.assist-panel h3 {
	font-size: 38px;
	line-height: 1.3;
	color: #33415A;
	margin-bottom: 20px;
}

.assist-panel p {
	color: #6b7280;
	line-height: 1.9;
	max-width: 700px;
	margin-bottom: 40px;
	font-size: 16px;
}

/*============================
BUTTON
=============================*/

.assist-panel .btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: #E8590C;
	color: #fff;
	text-decoration: none;
	padding: 16px 34px;
	border-radius: 14px;
	font-weight: 600;
	transition: .35s;
}

.assist-panel .btn-primary:hover {
	background: #33415A;
	transform: translateY(-4px);
	box-shadow: 0 15px 35px rgba(51, 65, 90, .25);
}

/*============================
Animation
=============================*/

@keyframes assistFade {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: none;
	}

}

/*============================
Tablet
=============================*/

@media (max-width:991px) {

	.assist-wrapper {
		flex-direction: column;
	}

	.assist-tabs {
		width: 100%;
		flex-direction: row;
		overflow-x: auto;
		padding: 0;
	}

	.assist-tab {
		flex: 1;
		white-space: nowrap;
		padding: 18px;
		text-align: center;
		border-left: none;
		border-bottom: 4px solid transparent;
	}

	.assist-tab.active {
		border-left: none;
		border-bottom: 4px solid #E8590C;
	}

	.assist-tab.active::after {
		display: none;
	}

	.assist-content {
		padding: 45px;
	}

	.assist-panel h3 {
		font-size: 30px;
	}

}

/*============================
Mobile
=============================*/

@media (max-width:576px) {
	.assist-section {
		padding: 70px 0;
	}

	.assist-content {
		padding: 30px 24px;
	}

	.assist-panel h3 {
		font-size: 24px;
	}

	.assist-panel p {
		font-size: 15px;
	}

	.assist-panel .btn-primary {
		width: 100%;
	}

	.assist-tabs {
		display: block;
	}

	.assist-tab {
		display: block;
		width: 100%;
		text-align: left;
		border-bottom: 1px solid rgba(255, 255, 255, .08);
	}

	.assist-tab.active {
		border-left: 4px solid #E8590C;
		border-bottom: 1px solid rgba(255, 255, 255, .08);
	}
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials-section {
	position: relative;
	padding: 90px 0;
	background-color: #fffdf8;
	background-image: url("../images/abstract-bg.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
}

.testimonials-grid {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 26px;
}

.testimonial-card {
	background: var(--color-white);
	border-radius: var(--radius);
	padding: 30px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-quote {
	color: var(--color-text);
	font-style: italic;
	margin-bottom: 20px;
}

.testimonial-author {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
}

.testimonial-avatar {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--color-primary);
	color: var(--color-white);
	font-weight: 700;
	flex-shrink: 0;
}

.testimonial-author strong {
	display: block;
	font-size: 0.92rem;
}

.testimonial-role {
	color: var(--color-muted);
	font-size: 0.8rem;
}

.section-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 46px;
}

.section-head h2 {
	font-size: clamp(1.7rem, 3vw, 2.2rem);
	margin-bottom: 10px;
}

.section-head p {
	color: var(--color-muted);
}

/* =============================================================
   LATEST POSTS / GENERIC POST GRID
   ============================================================= */
.latest-posts {
	padding: 90px 0;
	background: var(--color-light-bg);
}

.posts-grid {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
}

.post-card {
	background: var(--color-white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.post-card-thumb img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.post-card h3,
.post-card h2 {
	font-size: 1.1rem;
	padding: 18px 18px 0;
}

.post-card p {
	padding: 10px 18px 20px;
	color: var(--color-muted);
	font-size: 0.9rem;
}

.page-header-simple {
	background: var(--color-light-bg);
	padding: 50px 0;
}

.page-content {
	padding: 60px 0;
}

.pagination {
	margin-top: 30px;
	text-align: center;
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
	position: relative;
	background-color: var(--color-dark);
	background-size: cover;
	background-position: center;
	color: rgba(255, 255, 255, 0.75);
	padding-top: 80px;
}

.footer-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.85);
}

.footer-inner {
	position: relative;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	padding-bottom: 50px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col {
	flex: 1 1 200px;
}

.footer-col-brand {
	flex: 1 1 280px;
}

.footer-col h4 {
	color: var(--color-white);
	font-size: 1rem;
	margin-bottom: 18px;
}

.footer-logo-text {
	color: var(--color-white);
	font-family: var(--font-heading);
	font-size: 1.3rem;
	font-weight: 800;
	margin-bottom: 14px;
}

.footer-about-text {
	font-size: 0.9rem;
	margin-bottom: 20px;
}

.footer-menu li {
	margin-bottom: 12px;
}

.footer-menu li a {
	font-size: 0.9rem;
}

.footer-menu li a:hover {
	color: var(--color-secondary);
}

.footer-socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
}

.footer-social-link {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.footer-social-link:hover {
	background: var(--color-primary);
}

.footer-bottom {
	position: relative;
	z-index: 2;
	padding: 22px 0;
}

.footer-bottom-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 0.82rem;
}

.footer-legal a:hover {
	color: var(--color-secondary);
}

.footer-legal span {
	margin: 0 8px;
	opacity: 0.5;
}

/* =============================================================
   FLOATING BUTTONS
   ============================================================= */
.whatsapp-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25D366;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	z-index: 900;
	-webkit-transition: -webkit-transform var(--transition);
	transition: transform var(--transition);
}

.whatsapp-float:hover {
	-webkit-transform: scale(1.08);
	-ms-transform: scale(1.08);
	transform: scale(1.08);
}

.icon-whatsapp::before {
	content: "💬";
	font-size: 1.5rem;
}

.back-to-top {
	position: fixed;
	right: 24px;
	bottom: 92px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--color-primary);
	color: var(--color-white);
	font-size: 1.1rem;
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 900;
	opacity: 0.9;
}

.back-to-top.is-visible {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.property-archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
}

/*==============================
PROPERTY OVERVIEW
==============================*/

.property-overview {
	padding: 70px 0;
}

.overview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 25px;
	margin-top: 35px;
}

.overview-card {
	background: #fff;
	border-radius: 14px;
	padding: 28px;
	border: 1px solid #ececec;
	transition: .35s;
	box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.overview-card:hover {
	transform: translateY(-6px);
	border-color: #E8590C;
}

.overview-card span {
	display: block;
	font-size: 14px;
	color: #777;
	margin-bottom: 12px;
}

.overview-card strong {
	display: block;
	font-size: 19px;
	color: #33415A;
	font-weight: 700;

}

.property-archive-card {
	display: block;
	background: var(--color-white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	transition: transform var(--transition);
}

.property-archive-card:hover {
	transform: translateY(-6px);
}

.property-archive-card-img {
	position: relative;
	height: 200px;
	background-color: #dfe3ea;
	background-size: cover;
	background-position: center;
	background-image: linear-gradient(135deg, #e2e6ee, #cfd5e0);
}

.property-archive-card-body {
	padding: 20px;
}

.property-archive-card-body h3 {
	font-size: 1.05rem;
	margin-bottom: 6px;
}

.property-archive-location {
	color: var(--color-muted);
	font-size: 0.85rem;
	margin-bottom: 12px;
}

.property-archive-meta {
	display: flex;
	gap: 14px;
	margin-bottom: 12px;
}

.property-archive-meta span {
	font-size: 0.82rem;
	color: var(--color-dark);
	font-weight: 600;
}

.property-archive-price {
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--color-primary);
}

.property-status-badge {
	display: inline-block;
	background: var(--color-secondary);
	color: var(--color-white);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 5px 12px;
	border-radius: 50px;
}

.property-archive-card-img .property-status-badge {
	position: absolute;
	top: 14px;
	left: 14px;
}

.property-gallery {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 6px;
	max-width: var(--container-width);
	margin: 0 auto 40px;
	padding: 0 20px;
}

.property-gallery-main {
	height: 420px;
	border-radius: var(--radius);
	background-color: #dfe3ea;
	background-size: cover;
	background-position: center;
}

.property-gallery-placeholder {
	background-image: linear-gradient(135deg, #e2e6ee, #cfd5e0);
}

.property-gallery-thumbs {
	display: flex;
	flex-direction: column;
	gap: 6px;
	height: 420px;
}

.property-gallery-thumb {
	flex: 1;
	border-radius: var(--radius);
	background-color: #dfe3ea;
	background-size: cover;
	background-position: center;
}

.property-layout {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	padding-bottom: 90px;
	align-items: flex-start;
}

.property-main {
	flex: 2 1 500px;
}

.property-back-link {
	display: inline-block;
	color: var(--color-primary);
	font-weight: 600;
	margin-bottom: 20px;
}

.property-back-link:hover {
	text-decoration: underline;
}

.property-title-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 24px;
	margin-bottom: 24px;
	border-bottom: 1px solid #e7e9ee;
}

.property-title-row h1 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin: 10px 0 8px;
}

.property-location {
	color: var(--color-muted);
	display: flex;
	align-items: center;
	gap: 6px;
}

.property-price {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--color-primary);
	white-space: nowrap;
}

.property-key-details {
	margin-bottom: 30px;
}

.property-key-details h2,
.property-amenities h2 {
	font-size: 1.2rem;
	margin-bottom: 16px;
}

.property-key-details-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.property-key-item {
	background: var(--color-light-bg);
	border-radius: var(--radius);
	padding: 14px 20px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 140px;
}

.property-key-item span {
	font-size: 0.78rem;
	color: var(--color-muted);
}

.property-key-item strong {
	font-size: 0.98rem;
	color: var(--color-dark);
}

.property-description {
	color: var(--color-text);
	margin-bottom: 34px;
	line-height: 1.7;
}

.property-location-advantages {
	margin: 70px 0;
}

.property-location-advantages h2 {
	color: #33415A;
	font-size: 32px;
	margin-bottom: 35px;
	position: relative;
}

.property-location-advantages h2:after {
	content: "";
	width: 70px;
	height: 4px;
	background: #E8590C;
	display: block;
	margin-top: 12px;
	border-radius: 20px;
}

.property-specifications {

	margin: 80px 0;

}

.property-specifications h2 {

	font-size: 34px;

	color: #33415A;

	margin-bottom: 40px;

	position: relative;

}

.property-specifications h2:after {

	content: "";

	display: block;

	width: 70px;

	height: 4px;

	background: #E8590C;

	margin-top: 12px;

	border-radius: 30px;

}

.spec-item {

	border: 1px solid #eee;

	margin-bottom: 15px;

	border-radius: 12px;

	overflow: hidden;

	background: #fff;

	box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

}

.spec-header {

	width: 100%;

	padding: 20px 25px;

	display: flex;

	justify-content: space-between;

	align-items: center;

	background: #fff;

	border: none;

	cursor: pointer;

	font-size: 18px;

	font-weight: 600;

	color: #33415A;

}

.spec-header:hover {

	background: #33415A;

	color: #fff;

}

.spec-icon {

	font-size: 26px;

	font-weight: bold;

}

.spec-content {
	display: none;
	padding: 25px;
}

.spec-content ul {
	margin: 0;
	padding-left: 18px;
}

.spec-content li {
	margin-bottom: 12px;
	line-height: 1.7;
}

.property-archive-grid.is-loading {
	opacity: 0.5;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.results-status {
	font-size: 0.9rem;
	color: var(--color-muted);
	margin-bottom: 16px;
}


/* 
***LOCATION CSS 
*/

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

.location-card {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
	transition: .35s;
}

.location-card:hover {
	transform: translateY(-5px);
}

.location-icon {
	width: 10px;
	height: 10px;
	background: #E8590C;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 18px;
	flex-shrink: 0;
}

.location-card span:last-child {
	color: #33415A;
	font-weight: 600;
	font-size: 16px;
}

.property-amenities {
	margin-bottom: 34px;
}

.property-amenities-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 10px 20px;
}

.property-amenities-list li {
	position: relative;
	padding-left: 22px;
	color: var(--color-text);
	font-size: 0.92rem;
}

.property-amenities-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--color-secondary);
	font-weight: 700;
}

.property-map {
	border-radius: var(--radius);
	overflow: hidden;
}

.property-map iframe {
	width: 100%;
	height: 340px;
	border: 0;
	display: block;
}

.property-sidebar {
	flex: 1 1 280px;
	position: sticky;
	top: 110px;
}

.property-sidebar-card {
	background: var(--color-light-bg);
	border-radius: var(--radius);
	padding: 30px;
	text-align: center;
}

.property-sidebar-price {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 18px;
}

.property-enquire-btn {
	width: 100%;
	margin-bottom: 14px;
}

.property-call-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: var(--color-dark);
	font-weight: 600;
	margin-bottom: 14px;
}

.property-floorplan-link {
	display: block;
}

.property-overview {
	margin: 60px 0;
}

.property-overview h2 {
	font-size: 34px;
	color: #33415A;
	margin-bottom: 35px;
	font-weight: 700;
	position: relative;
}

.property-overview h2:after {
	content: '';
	width: 70px;
	height: 4px;
	background: #E8590C;
	display: block;
	margin-top: 12px;
	border-radius: 20px;
}

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

.overview-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
	transition: .35s;
}

.overview-item:hover {
	transform: translateY(-5px);
}

.overview-item i {
	color: #E8590C;
	font-size: 20px;
}

.overview-item span {
	color: #33415A;
	font-size: 16px;
	font-weight: 500;
}

/*======================================
PROPERTY STICKY NAV
======================================*/

.property-sticky-nav {
	position: sticky;
	top: 80px;
	z-index: 999;
	background: #fff;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
	border-bottom: 1px solid #ececec;
}

.property-sticky-nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow-x: auto;
	white-space: nowrap;
	scrollbar-width: none;
}

.property-sticky-nav ul::-webkit-scrollbar {
	display: none;
}

.property-sticky-nav li {
	flex: none;
}

.property-sticky-nav a {
	display: block;
	padding: 18px 12px;
	color: #33415A;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: .3s;
	border-bottom: 3px solid transparent;
}

.property-sticky-nav a:hover {
	color: #E8590C;
}

.property-sticky-nav a.active {
	color: #E8590C;
	border-color: #E8590C;
}

.property-floor-plans {
	margin: 90px 0;
}

.master-plan-wrapper {
	margin-bottom: 60px;
}

.master-plan-wrapper h3 {
	color: #33415A;
	margin-bottom: 20px;
}

.master-plan-image {
	width: 100%;
	border-radius: 12px;
	display: block;
}

.floor-plan-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.floor-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
	transition: .35s;
}

.floor-card:hover {
	transform: translateY(-6px);
}

.floor-card img {
	width: 100%;
	display: block;
}

.floor-card h4 {
	padding: 20px;
	color: #33415A;
	text-align: center;
}

.related-projects {

	margin-top: 90px;

	padding: 80px 0;

	border-top: 1px solid #eee;

}

.related-project-grid {

	display: grid;

	grid-template-columns: repeat(3, 1fr);

	gap: 30px;

	margin-top: 40px;

}

.related-card {

	background: #fff;

	border-radius: 18px;

	overflow: hidden;

	box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

	transition: .35s;

}

.related-card:hover {

	transform: translateY(-10px);

}

.related-card img {

	width: 100%;

	height: 230px;

	object-fit: cover;

	display: block;

}

.related-content {

	padding: 22px;

}

.related-content h3 {

	font-size: 22px;

	color: #33415A;

	margin-bottom: 10px;

}

.related-location {

	color: #666;

	margin-bottom: 18px;

}

.related-meta {
	display: flex;
	justify-content: space-between;

	font-weight: 600;

	margin-bottom: 20px;

}

.related-btn {
	color: #E8590C;
	font-weight: 700;
}


/*=========================================
ABOUT US PAGE
===========================================*/
.about-hero {
	position: relative;
	min-height: 620px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.about-overlay {

	position: absolute;

	top: 0;

	left: 0;

	width: 100%;

	height: 100%;

	background:

		linear-gradient(90deg,

			rgba(24, 34, 51, .82),

			rgba(24, 34, 51, .45),

			rgba(24, 34, 51, .25));

}

.about-hero-content {
	position: relative;
	z-index: 2;
	max-width: 760px;
	color: #fff;
}

.hero-label {
	display: inline-block;
	padding: 8px 18px;
	border-radius: 50px;
	background: rgba(232, 89, 12, 0.15);
	color: #E8590C;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.hero-label::after {
	content: "";
	width: 50px;
	height: 2px;
	background: #E8590C;
	display: inline-block;
	margin-left: 12px;
	vertical-align: middle;
}

.about-hero h1 {
	font-size: 58px;
	line-height: 1.2;
	margin-bottom: 20px;
	font-weight: 700;
	color: #fff;
}

.about-hero p {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 25px;
	color: #fff;
}

/*---------------------------------
Story
----------------------------------*/

.about-story {
	padding: 110px 0;
	background: white;
}

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

.story-images {
	position: relative;
}

.story-main-image img {
	width: 100%;
	border-radius: 25px;
	display: block;
}

.experience-card {
	position: absolute;
	right: -25px;
	bottom: 35px;
	background: var(--secondary);
	color: #000;
	padding: 28px;
	width: 170px;
	text-align: center;
	border-radius: 18px;
	box-shadow: 0 15px 35px rgb(131 72 0 / 60%);
}

.experience-card h2 {
	font-size: 42px;
	margin-bottom: 8px;
}

.section-tag {
	color: var(--secondary);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.story-content h2 {
	font-size: 42px;
	color: var(--primary);
	margin: 18px 0;
}

.story-content p {
	color: #666;
	line-height: 1.9;
	margin-bottom: 30px;
}

.story-list {
	list-style: none;
	padding: 0;
	margin: 0 0 35px;
}

.story-list li {
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.story-list i {
	color: var(--secondary);
}

/*---------------------------------
Button
----------------------------------*/

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* background: var(--secondary); */
	color: white;
	padding: 15px 36px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
}

.btn-primary:hover {
	/* background: var(--primary); */
	transform: translateY(-3px);
}

/*---------------------------------
Timeline
----------------------------------*/

.company-timeline {
	background: var(--light);
	padding: 110px 0;
}

.section-head {
	text-align: center;
	margin-bottom: 70px;
}

.section-head span {
	color: var(--secondary);
	font-weight: 700;
	text-transform: uppercase;

}

.section-head h2 {
	font-size: 42px;
	color: var(--primary);
	margin-top: 15px;
}

.timeline-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 25px;
}

.timeline-item {
	background: white;
	padding: 35px;
	border-radius: 20px;
	text-align: center;
	transition: .3s;
	box-shadow: 0 8px 25px rgb(177 109 8 / 64%);
}

.timeline-item:hover {
	transform: translateY(-8px);
}

.timeline-year {
	width: 75px;
	height: 75px;
	border-radius: 50%;
	background: var(--secondary);
	/* color: white; */
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;

}

/*---------------------------------
Mission
----------------------------------*/

.mission-section {
	padding: 110px 0;
}

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

.mission-card {

	background: white;

	border-radius: 25px;

	padding: 45px;

	box-shadow: 0 15px 35px rgba(0, 0, 0, .06);

	transition: .3s;

}

.mission-card:hover {

	transform: translateY(-10px);

}

.mission-card .icon {
	width: 70px;
	height: 70px;
	background: var(--secondary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 28px;
	margin-bottom: 25px;
}

.mission-card h3 {
	color: var(--primary);
	margin-bottom: 18px;
}

.mission-card p {
	color: #666;
	line-height: 1.8;
}


.about-hero-content {
	position: relative;
	z-index: 2;
	max-width: 760px;
	padding: 55px;
}


/* 
** CONTACT US PAGE CSS 
** 
*/

/* ==========================================
   CONTACT HERO
========================================== */

.contact-hero {
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: center;
	padding: 140px 0 100px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.contact-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(51, 65, 90, 0.65);
	/* #33415A overlay */
}

.contact-hero-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
}

.contact-hero-label {
	display: inline-block;
	padding: 8px 18px;
	border-radius: 50px;
	background: rgba(232, 89, 12, 0.15);
	color: #E8590C;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.contact-hero-title {
	color: #ffffff;
	font-size: 52px;
	line-height: 1.2;
	margin-bottom: 20px;
}

.contact-hero-desc {
	color: rgba(255, 255, 255, 0.85);
	font-size: 18px;
	line-height: 1.8;
	max-width: 600px;
}

/* Decorative line */

.contact-hero-label::after {
	content: "";
	width: 50px;
	height: 2px;
	background: #E8590C;
	display: inline-block;
	margin-left: 12px;
	vertical-align: middle;
}

/* Mobile */

@media(max-width:768px) {

	.contact-hero {
		min-height: 350px;
		padding: 120px 0 80px;
	}

	.contact-hero-title {
		font-size: 34px;
	}

	.contact-hero-desc {
		font-size: 16px;
	}
}

.contact-page {
	padding: 90px 0;
	background: #fff;
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 70px;
	align-items: center;
}

.contact-details h2 {
	color: #33415A;
	font-size: 42px;
	margin-bottom: 20px;
}

.contact-details p {
	color: #666;
	line-height: 1.8;
}

.contact-card {
	display: flex;
	gap: 20px;
	padding: 25px;
	margin-top: 25px;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
	transition: .35s;
}

.contact-card:hover {
	transform: translateY(-6px);
}

.contact-icon {
	width: 15px;
	height: 15px;
	background: #E8590C;
	border-radius: 10%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 30px;
	flex-shrink: 0;
}

.contact-map {
	position: relative;
}

.map-decoration {
	position: absolute;
	width: 100%;
	height: 100%;
	border: 3px solid #E8590C;
	border-radius: 30px;
	top: 18px;
	left: 18px;
	z-index: 0;
}

.map-frame {
	position: relative;
	z-index: 5;
	background: #fff;
	padding: 14px;
	border-radius: 30px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.map-frame iframe {
	width: 100%;
	height: 600px;
	border: none;
	border-radius: 22px;
}

.map-frame {
	transition: .4s;
}

.map-frame:hover {
	transform: translateY(-8px);
}

*/
/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 991px) {
	.assist-grid {
		grid-template-columns: 1fr;
	}

	.about-inner {
		gap: 40px;
	}

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

@media (max-width: 782px) {
	.top-bar-contact {
		gap: 12px;
	}

	.main-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--color-white);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
		max-height: 0;
		overflow: hidden;
		-webkit-transition: max-height var(--transition);
		-o-transition: max-height var(--transition);
		transition: max-height var(--transition);
	}

	.main-navigation.is-open {
		max-height: 400px;
	}

	.primary-menu {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 0;
		padding: 10px 20px;
	}

	.primary-menu li a {
		display: block;
		padding: 12px 0;
	}

	.menu-toggle {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
	}

	.hero {
		min-height: 520px;
		padding: 60px 0;
	}

	.hero-search {
		flex-wrap: wrap;
		border-radius: 18px;
		padding: 12px;
	}

	.hero-search-field,
	.hero-search-location {
		flex: 1 1 100%;
	}

	.hero-search-btn {
		width: 100%;
	}

	.about-img-overlap {
		position: static;
		width: 100%;
		height: 260px;
		margin-top: 20px;
		border: none;
	}

	.category-tabs {
		flex-wrap: wrap;
		border-radius: 14px;
	}

	.cta-card {
		flex-direction: column;
	}

	.cta-card-img {
		min-height: 200px;
	}

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

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

	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.property-gallery {
		grid-template-columns: 1fr;
	}

	.property-gallery-thumbs {
		flex-direction: row;
		height: auto;
	}

	.property-gallery-thumb {
		height: 90px;
	}

	.property-layout {
		flex-direction: column;
	}

	.property-sidebar {
		position: static;
		width: 100%;
	}
}

@media(max-width:1200px) {

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

}

@media(max-width:992px) {

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

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

	.about-hero h1 {
		font-size: 42px;
	}

}

@media(max-width:768px) {
	.timeline-grid {
		grid-template-columns: 1fr;
	}

	.about-hero {
		min-height: 430px;
	}

	.about-hero h1 {
		font-size: 34px;
	}

	.story-content h2 {
		font-size: 30px;
	}

	.section-head h2 {
		font-size: 30px;
	}

	.experience-card {
		position: relative;
		right: 0;
		bottom: 0;
		margin-top: 25px;
	}
}

@media(max-width:991px) {
	.overview-grid {
		grid-template-columns: 1fr;
	}

	.property-overview h2 {
		font-size: 28px;
	}
}

@media(max-width:576px) {
	.overview-item {
		padding: 15px;
	}

	.property-overview {
		margin: 40px 0;
	}
}

@media(max-width:768px) {
	.location-grid {
		grid-template-columns: 1fr;
	}

	.property-location-advantages h2 {
		font-size: 26px;
	}

	.location-card {
		padding: 16px;
	}
}


@media(max-width:768px) {
	.property-specifications h2 {
		font-size: 28px;
	}

	.spec-header {
		font-size: 16px;
		padding: 18px;
	}

	.spec-content {
		padding: 20px;
	}
}

@media(max-width:991px) {
	.property-sticky-nav {
		top: 70px;
	}

	.property-sticky-nav ul {
		justify-content: flex-start;
		padding: 0 15px;
	}

	.property-sticky-nav a {
		padding: 16px 14px;
		font-size: 14px;
	}

}

@media(max-width:768px) {
	.floor-plan-grid {
		grid-template-columns: 1fr;
	}
}

@media(max-width:991px) {

	.related-project-grid {

		grid-template-columns: repeat(2, 1fr);

	}

}

@media(max-width:767px) {

	.related-project-grid {
		grid-template-columns: 1fr;
	}

}



/* CONTACT PAGE CSS */
@media(max-width:991px) {
	.contact-wrapper {
		grid-template-columns: 1fr;
	}

	.map-frame iframe {
		height: 420px;
	}

	.contact-details {
		margin-bottom: 40px;
	}
}