/*----------------------------------------------------------------------------------------
* Author : Awaiken
* Template Name : Jivux - Real Estate HTML Template
* File : CSS File
* Version : 1.0
*---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Property Type css
06. Featured Property css
07. About us css
08. How It Works css
09. Why Choose us css
10. Infobar css
11. Property By City css
12. Latest Posts css
13. Footer css
14. About us Page css
15. Listing Page css
16. Property Single Page css
17. Blog Archive Page css
18. Post Single css
19. Contact us page css
20. FAQ page css
21. Page Not Found Page css
22. Agents page css
23. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/****    01. Global Variables    ****/
/************************************/

:root {
	--primary-color: #2A3847;
	--secondary-color: #F6F8FF;
	--text-color: #646262;
	--white-color: #ffffff;
	--dark-color: #333333;
	--accent-color: #11b6e4/*#ED7D3A*/;
	--divider-color: #DDE4FF;
	--gray-divider: #DDDBDB;
	--overlay-color: #2F3D7E80;
	--dark-overlay-color: #2F3D7Eaa;
	--error-color: rgb(230, 87, 87);
	--accent-font: 'Sora', sans-serif;
	--default-font: 'Inter', sans-serif;
}

/************************************/
/**** 	   02. General css		 ****/
/************************************/

body {
	font-size: 16px;
	font-weight: 400;
	font-family: var(--default-font);
	color: var(--text-color);
	line-height: 1.6em;
}

p {
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--accent-font);
	margin-top: 0;
	font-weight: 700;
	color: var(--primary-color);
}

figure {
	display: block;
	margin: 0;
	width: 100%;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

::-webkit-scrollbar-track {
	background-color: #f1f1f1;
	border-left: 1px solid #ededed;
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--accent-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
	pointer-events: none;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
	position: relative;
	z-index: 1;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.form-control {
	width: 100%;
	box-shadow: none;
	outline: 0;
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	font-family: var(--default-font);
	font-size: 14px;
	color: var(--primary-color);
	padding: 14px 20px;
}

.form-control:focus {
	box-shadow: none;
	outline: 0;
	border-color: var(--divider-color);
}

select.form-control {
	background-image: url(../images/icon-dropdown.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
}

.help-block.with-errors ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.help-block.with-errors ul li {
	font-size: 14px;
	color: var(--error-color);
	line-height: 1.2em;
	margin-top: 2px;
}

.btn-default {
	display: inline-block;
	background: var(--accent-color);
	color: var(--white-color);
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 500;
	padding: 14px 30px;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	border: none;
	outline: 0;
	box-shadow: none;
	transition: 0.2s transform;
}

.btn-default:before {
	content: '';
	position: absolute;
	width: 0;
	height: 104%;
	top: 50%;
	left: 50%;
	background: var(--primary-color);
	opacity: 0;
	z-index: -1;
	transform: translateX(-51%) translateY(-51%);
	transition: all 0.4s;
	border-radius: 5px;
}

.btn-default:hover::before {
	width: 106%;
	opacity: 1;
}

.btn-default.btn-border {
	background: none;
	color: var(--accent-color);
	padding: 12px 30px;
	border: 2px solid var(--accent-color);
}

.btn-default.btn-border:before {
	background: var(--accent-color);
}

.btn-default.btn-border:hover {
	color: var(--white-color);
}

#magic-cursor {
	position: absolute;
	width: 10px !important;
	height: 10px !important;
	pointer-events: none;
	z-index: 1000000;
}

#ball {
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 10px !important;
	height: 10px !important;
	background: var(--accent-color);
	border-radius: 50%;
	pointer-events: none;
	opacity: 1 !important;
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 100px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h3 {
	display: inline-block;
	text-align: center;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 2px;
	color: var(--dark-color);
	position: relative;
	padding: 2px 0 2px 40px;
	margin-bottom: 15px;
	z-index: 2;
}

.section-title h3:before {
	content: '';
	display: block;
	width: 30px;
	height: 20px;
	position: absolute;
	left: 0;
	top: 0;
	background: url(../images/logoicons/Log-04.png) no-repeat left center ;
	background-size: cover;
	z-index: -1;
}

.section-title h1,
.section-title h2 {
	font-size: 50px;
	color: var(--primary-color);
	font-weight: 700;
	line-height: 1.2em;
	margin-bottom: 0;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
	position: relative;
	background: var(--white-color);
	border-radius: 30px;
	border-bottom: 1px solid transparent;
	z-index: 100;
}

header.main-header .header-sticky {
	padding: 25px 0;
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	padding: 15px 0;
	border-radius: 0;
	border-bottom: 1px solid #16330010;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	border-bottom: 1px solid #16330010;
	transform: translateY(0);
	background: var(--white-color);
}

.navbar {
	padding: 0;
}

.navbar-brand {
	padding: 0;
}

.main-menu {
	font-family: var(--default-font);
	justify-content: flex-end;
}

.main-menu ul {
	align-items: center;
}

.main-menu ul li {
	margin-left: 30px;
	position: relative;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul ul li.submenu>a:after {
	position: absolute;
	right: 12px;
	transform: rotate(-90deg);
}

.main-menu ul li a {
	font-size: 16px;
	font-weight: 500;
	font-family: var(--accent-font);
	padding: 12px 6px !important;
	color: var(--primary-color);
}

.main-menu ul li.highlighted-menu a {
	display: block;
	background: var(--accent-color);
	color: var(--white-color);
	padding: 13px 15px !important;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	transition: 0.2s transform ease-in-out;
}

.main-menu ul li.highlighted-menu a::before {
	content: '';
	position: absolute;
	width: 0;
	height: 104%;
	top: 50%;
	left: 50%;
	background: var(--primary-color);
	opacity: 0;
	z-index: -1;
	transform: translateX(-51%) translateY(-51%);
	transition: all 0.4s;
}

.main-menu ul li.highlighted-menu a:hover::before {
	width: 106%;
	opacity: 1;
}

.main-menu ul li.highlighted-menu a:hover::after {
	transform: translate(0, 0);
}

.main-menu ul li.highlighted-menu a:hover {
	color: var(--white-color);
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 8px 0;
	margin: 0;
	list-style: none;
	width: 220px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--accent-color);
	transition: all .3s ease-in-out;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--white-color);
	padding: 8px 20px !important;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
}

.main-menu ul ul li a:hover {
	color: var(--white-color);
	background: #ffffff20;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 15px;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 6px 0 0;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 5px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	margin: 4px auto !important;
}

.slicknav_menu {
	padding: 0;
	background: var(--accent-color);
	border-radius: 5px;
}

.slicknav_nav {
	padding-top: 5px;
	padding-bottom: 5px;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	font-size: 16px;
	font-weight: 400;
	padding: 4px 15px;
	font-family: var(--accent-font);
	color: var(--white-color);
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f105';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
}

/************************************/
/**** 	    04. Hero css		 ****/
/************************************/

.hero {
	position: relative;
}

.hero .hero-section {
	margin: 0 40px;
	overflow: hidden;
	border-radius: 20px;
	background: url(../images/hero.jpg) no-repeat center center;
	background-size: cover;
	padding: 100px 0 312px;
	position: relative;
}

.hero .hero-section:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--overlay-color);
	z-index: 1;
}

.hero-content {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.hero-content .section-title {
	margin-bottom: 30px;
}

.hero-content .section-title h3 {
	color: var(--accent-color);
}

.hero-content .section-title h3:before {
	background-image: url(../images/logoicons/Log-04.png);
}

.hero-content .section-title h1 {
	color: var(--white-color);
	font-size: 70px;
}

.hero-content-body p {
	color: var(--white-color);
}

.hero-content-footer {
	margin-top: 40px;
}

.hero-content-footer .btn-default {
	margin: 0 10px;
}

.hero-content-footer .btn-default.btn-border {
	border-color: var(--white-color);
	color: var(--white-color);
}

.hero-content-footer .btn-default.btn-border:hover {
	border-color: var(--accent-color);
}

.hero.hero-video .hero-section {
	background: none;
}

.hero-video .hero-section .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero-video .hero-section .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-video .hero-section .hero-bg-video iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-slider .hero-section {
	padding: 0;
}

.hero-slider .hero-section {
	background: none;
}

.hero-slider .hero-section:before {
	display: none;
}

.hero-slider .hero-section .hero-slide {
	padding: 100px 0 312px;
	position: relative;
}

.hero-slider .hero-section .hero-slide .hero-slide-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.hero-slider .hero-section .hero-slide .hero-slide-image:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--overlay-color);
	z-index: 1;
}

.hero-slider .hero-section .hero-slide .hero-slide-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-slider .hero-section .hero-slide .hero-content {
	z-index: 4;
	position: relative;
}

.hero-slider .hero-carousel .hero-button-prev,
.hero-slider .hero-carousel .hero-button-next {
	width: 50px;
	height: 50px;
	background: var(--accent-color) url(../images/arrow-right.svg) no-repeat center center;
	background-size: 50% auto;
	position: absolute;
	top: 50%;
	z-index: 2;
	border-radius: 5px;
	margin-top: -25px;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.hero-slider:hover .hero-carousel .hero-button-prev,
.hero-slider:hover .hero-carousel .hero-button-next {
	opacity: 1;
}

.hero-slider .hero-carousel .hero-button-prev:hover,
.hero-slider .hero-carousel .hero-button-next:hover {
	background-color: var(--primary-color);
}

.hero-slider .hero-carousel .hero-button-prev {
	left: 30px;
	transform: rotate(180deg);
}

.hero-slider .hero-carousel .hero-button-next {
	right: 30px;
}

.hero .hero-search-form-section {
	position: absolute;
	z-index: 10;
	bottom: 100px;
	width: 100%;
	padding: 0 15px;
}

.hero-video .hero-search-form {
	margin: 0;
}

.hero-search-form {
	background-color: var(--white-color);
	padding: 30px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
}

.search-heading {
	display: none;
}

.search-heading h4 {
	margin-bottom: 0;
	position: relative;
	font-size: 18px;
	text-align: center;
}

.hero-search-form .form-control {
	width: 100%;
	box-shadow: none;
	outline: 0;
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	font-family: var(--default-font);
	font-size: 14px;
	color: var(--primary-color);
	padding: 14px 20px;
}

.hero-search-form select.form-control {
	background-image: url(../images/icon-dropdown.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
}

.hero-search-form .btn-default {
	width: 100%;
	padding: 13px 20px;
}

/******************************************/
/****   	 05. Property Type css 	   ****/
/******************************************/

.property-types {
	padding: 100px 0;
}

.property-type-item {
	background: var(--secondary-color);
	padding: 30px;
	border-radius: 20px;
}

.property-type-item .icon-box {
	width: 70px;
	height: 70px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.3s ease-out;
}

.property-type-item:hover .icon-box {
	background: var(--accent-color);
}

.property-type-item h3 {
	font-size: 22px;
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 6px;
}

.property-type-item p {
	margin: 0;
}

.property-type-slider .swiper-pagination {
	position: relative;
	bottom: 0;
	margin-top: 30px;
}

.property-type-slider .swiper-pagination .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
	background: var(--primary-color);
	transition: all 0.3s;
}

/******************************************/
/****   06. Featured Property css      ****/
/******************************************/

.featured-property {
	background: var(--secondary-color);
	padding: 100px 0;
}

.property-item {
	background: var(--secondary-color);
	border-radius: 20px;
	overflow: hidden;
}

.featured-property .property-item {
	background-color: var(--white-color);
}

.property-item .property-header {
	position: relative;
	overflow: hidden;
}

.property-item .property-header figure img {
	width: 100%;
	transition: all 0.5s ease-out;
}

.property-item:hover .property-header figure img {
	transform: scale(1.2);
}

.property-item:hover .property-header figure:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.property-item:hover .property-header figure:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.property-item .property-header .property-label {
	position: absolute;
	top: 20px;
	left: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.property-item .property-header .property-label .label {
	background: var(--primary-color);
	color: var(--white-color);
	font-family: var(--accent-font);
	font-size: 13px;
	font-weight: 500;
	padding: 4px 12px;
	border-radius: 5px;
	display: inline-block;
}

.property-item .property-header .property-label .label.golden-visa {
	background: var(--accent-color);
}

.property-item .property-header .property-label .label.status-available {
	background: #27ae60;
}

.property-item .property-header .property-label .label.status-sold {
	background: #e74c3c;
}

.property-item .property-header .property-label .label.status-under_offer {
	background: #f39c12;
}

.property-item .property-header .property-label .label.status-under_construction {
	background: #f39c12;
}

.property-item .property-header .property-label .label.state-under_construction {
	background: #f39c12;
}

.property-item .property-header .property-label .label.state-ready {
	background: #27ae60;
}

.property-item .property-header .property-label .label.label-golden-visa {
	background: var(--accent-color);
	min-width: 130px;
	text-align: center;
}

.property-item .property-header .property-label .label.label-tag {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.75);
	color: var(--white-color);
}

.property-item .property-body {
	padding: 30px 30px 25px 30px;
}

.property-item .property-body h3 {
	font-size: 22px;
	font-weight: 600;
	color: var(--dark-color);
}

.property-item .property-body p {
	margin-bottom: 0;
}

.property-item .property-meta {
	display: flex;
	flex-wrap: wrap;
	margin-top: 25px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--gray-divider);
}

.property-item .property-meta .property-meta-item {
	width: 48%;
	margin-right: 4%;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.property-item .property-meta .property-meta-item:nth-of-type(2n + 2) {
	margin-right: 0;
}

.property-item .property-meta .property-meta-item .icon-box {
	width: 22px;
	margin-right: 10px;
}

.property-item .property-meta .property-tag {
	font-family: var(--accent-font);
	font-size: 12px;
	font-weight: 500;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: 5px;
	padding: 3px 10px;
	display: inline-block;
	line-height: 1.4;
}

.property-item .property-footer {
	padding: 0 30px 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.property-item .property-footer .property-price {
	margin-bottom: 0;
	font-weight: 600;
	font-size: 18px;
	color: var(--dark-color);
}

.property-item .property-footer .btn-default {
	font-size: 14px;
	padding: 10px 20px;
}

/* --- Property card sub-classes --- */

.property-item .property-img {
	overflow: hidden;
}

.property-item .property-img img {
	width: 100%;
	transition: all 0.5s ease-out;
}

.property-item:hover .property-img img {
	transform: scale(1.08);
}

.property-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 8px;
}

.property-title a {
	color: var(--dark-color);
}

.property-title a:hover {
	color: var(--accent-color);
}

.property-location {
	font-size: 14px;
	color: var(--text-color);
	margin-bottom: 0;
}

.property-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-right: 15px;
	margin-bottom: 10px;
	font-size: 14px;
	color: var(--text-color);
}

.property-meta-item .icon-box {
	width: 22px;
	color: var(--primary-color);
	text-align: center;
	flex-shrink: 0;
}

.property-price .price-label {
	display: block;
	font-size: 12px;
	color: var(--text-color);
	font-weight: 400;
	margin-bottom: 2px;
}

.property-price .price-value {
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: var(--accent-color);
}

.btn-sm {
	font-size: 13px;
	padding: 8px 18px;
}

.property-slider .swiper-pagination {
	position: relative;
	bottom: 0;
	margin-top: 50px;
}

.property-slider .swiper-pagination .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
	background: var(--primary-color);
	transition: all 0.3s;
}

/******************************************/
/****   	 07. About us css   	   ****/
/******************************************/

.about-us {
	padding: 100px 0;
}

.about-images {
	position: relative;
	padding-left: 84px;
	padding-top: 32px;
	background: url(../images/icon-about-dot.svg) no-repeat top left;
}

.about-image img {
	width: 100%;
	border-radius: 20px;
}

.about-video {
	width: 45%;
	position: absolute;
	bottom: 30px;
	left: 0;
	z-index: 1;
	border-radius: 20px;
	overflow: hidden;
}

.about-video figure img {
	width: 100%;
	border: 4px solid var(--white-color);
	border-radius: 20px;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.video-play-button a {
	display: inline-block;
	position: relative;
	font-size: 50px;
	height: 50px;
	border-radius: 50%;
	text-align: center;
}

.video-play-button a img {
	width: 50px;
}

.video-play-button a:before {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 2px solid var(--secondary-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1s infinite linear;
}

.video-play-button a:after {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 2px solid var(--secondary-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.about-content {
	padding-top: 32px;
	padding-left: 10px;
}

.about-us .section-title {
	text-align: left;
	margin-bottom: 20px;
}

.about-content-body ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.about-content-body ul li {
	font-size: 18px;
	font-weight: 500;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 48%;
	margin-right: 4%;
	margin-bottom: 25px;
}

.about-content-body ul li:nth-child(2n + 2) {
	margin-right: 0;
}

.about-content-body ul li .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--secondary-color);
	border-radius: 50%;
	margin-right: 15px;
}

.about-content-body ul li span {
	display: block;
	width: calc(100% - 75px);
}

/******************************************/
/****   	 08. How It Works css  	   ****/
/******************************************/

.how-it-works {
	padding: 100px 0;
	background: var(--secondary-color);
}

.how-it-works .row {
	align-items: stretch;
}

.how-it-work-item {
	text-align: center;
	background: var(--white-color);
	padding: 30px;
	border-radius: 20px;
	height: 100%;
}

.how-it-work-item .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background: var(--primary-color);
	border-radius: 50%;
	margin: 0 auto 25px;
	transition: all 0.3s ease-out;
}

.how-it-work-item:hover .icon-box {
	background: var(--accent-color);
}

.how-it-work-item h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--dark-color);
	font-weight: 600;
}

.how-it-work-item p {
	margin-bottom: 0;
}

/******************************************/
/****     09. Why Choose us css   	   ****/
/******************************************/

.why-choose-us {
	padding: 100px 0 50px;
}

.why-choose-us .section-title {
	text-align: left;
	margin-bottom: 20px;
}

.why-choose-us-body ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.why-choose-us-body ul li {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	padding-left: 34px;
	margin-bottom: 15px;
}

.why-choose-us-body ul li:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: var(--secondary-color) url(../images/icon-checkmark.svg) no-repeat center center;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 2px;
}

.why-choose-us-body .btn-default {
	margin-top: 20px;
}

.why-choose-us-images {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	padding-bottom: 30px;
}

.why-choose-us-image1,
.why-choose-us-image2 {
	width: 48%;
}

.why-choose-us-image2 {
	margin-bottom: 30px;
}

.why-choose-us-image1 img,
.why-choose-us-image2 img {
	width: 100%;
	border-radius: 20px;
}

.exclusive-agents {
	background: var(--secondary-color);
	padding: 30px;
	border-radius: 20px;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	text-align: center;
	min-width: 248px;
	animation: moveobject 2s infinite linear alternate;
}

.exclusive-agents h5 {
	font-size: 18px;
	font-weight: 600;
}

@keyframes moveobject {
	50% {
		left: 45%;
	}
}

/******************************************/
/****    	  10. Infobar css   	   ****/
/******************************************/

.infobar-cta {
	padding: 50px 0 100px;
}

.infobar-box {
	background-color: var(--secondary-color);
	padding: 40px 50px;
	border-radius: 20px;
}

.cta-content h2 {
	font-size: 40px;
	font-weight: 700;
}

.cta-content p {
	margin-bottom: 0;
}

.cta-button {
	text-align: right;
}

.cta-button .btn-default {
	margin-left: 10px;
}

.cta-button .btn-default i {
	margin-right: 10px;
}

/******************************************/
/****   11. Property By City css 	   ****/
/******************************************/

.property-by-city {
	padding: 100px 0;
	background: var(--secondary-color);
}

.location-item {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}

.location-item .location-image img {
	width: 100%;
	transition: all 0.5s ease-out;
}

.location-item .location-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 30px;
	background: var(--overlay-color);
}

.location-item .location-content .location-header h3 {
	font-size: 22px;
	font-weight: 500;
	color: var(--white-color);
}

.location-item .location-content .location-header p {
	color: var(--white-color);
	font-size: 16px;
}

.location-item .location-content .location-footer {
	position: absolute;
	left: 30px;
	bottom: 10px;
	opacity: 0;
	transition: all 0.3s ease-out;
}

.location-item:hover .location-content .location-footer {
	bottom: 25px;
	opacity: 1;
}

.location-item:hover .location-image img {
	transform: scale(1.2);
}

/******************************************/
/****   	12. Latest Posts css   	   ****/
/******************************************/

.latest-posts {
	padding: 100px 0;
}

.post-item .post-featured-image {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
}

.post-item .post-featured-image figure img {
	width: 100%;
	transition: all 0.4s ease-out;
}

.post-item .post-featured-image .post-read-more {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--overlay-color);
	opacity: 0;
	transition: all 0.3s ease-out;
}

.post-item .post-featured-image .post-read-more .btn-default {
	top: 20px;
	opacity: 0;
	transition: all 0.3s ease-out;
}

.post-item:hover .post-featured-image .post-read-more {
	opacity: 1;
}

.post-item:hover .post-featured-image .post-read-more .btn-default {
	top: 0;
	opacity: 1;
}

.post-item:hover .post-featured-image figure img {
	transform: scale(1.2);
}

.post-item .post-body .post-category ul {
	padding: 0;
	margin: 0 0 4px;
	list-style: none;
}

.post-item .post-body .post-category ul li a {
	color: var(--text-color);
}

.post-item .post-body h3 {
	margin-bottom: 0;
}

.post-item .post-body h3 a {
	font-size: 22px;
	font-weight: 600;
	color: var(--dark-color);
}

/******************************************/
/****   	 	13. Footer css   	   ****/
/******************************************/

footer.footer {
	background: var(--primary-color);
	margin: 70px 40px 0;
	padding: 0 0 80px;
	border-radius: 20px;
	isolation: isolate;
}

.newsletter-box {
	background: var(--secondary-color);
	padding: 30px 50px;
	border-radius: 20px;
	margin-top: -70px;
	margin-bottom: 80px;
}

.newsletter-title h2 {
	font-size: 40px;
}

.newsletter-title p {
	margin-bottom: 0;
}

.newsletter-form .row>* {
	padding-left: 0;
	padding-right: 0;
}

.newsletter-form .form-control {
	background-color: var(--white-color);
	font-family: var(--default-font);
	padding: 0;
	border: none;
	height: 56px;
	padding: 0 20px;
	border-radius: 5px 0 0 5px;
	box-shadow: none;
	outline: 0;
}

.newsletter-form .btn-default {
	outline: 0;
	width: 100%;
	border-radius: 0;
	height: 56px;
}

.footer-about {
	padding-right: 80px;
}

.footer-about .footer-logo {
	margin-bottom: 30px;
}

.footer-about-content p {
	color: var(--white-color);
}

.footer-social-links ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-social-links ul li {
	display: inline-block;
	margin-right: 8px;
}

.footer-social-links ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	font-size: 18px;
	border-radius: 5px;
	background: var(--accent-color);
	color: var(--white-color);
	transition: all 0.3s ease-out;
}

.footer-social-links ul li a:hover {
	background-color: var(--secondary-color);
	color: var(--primary-color);
}

.footer-subsidiary-note {
	margin-top: 20px;
}

.footer-subsidiary-note p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--white-color);
	opacity: 0.95;
}

.footer-contact-info h3,
.footer-quick-links h3,
.footer-appointment h3 {
	font-size: 22px;
	color: var(--accent-color);
	margin-bottom: 30px;
}

.footer-info-box {
	position: relative;
	padding-left: 30px;
	margin-bottom: 25px;
}

.footer-info-box .icon-box {
	position: absolute;
	top: 0;
	left: 0;
}

.footer-info-box p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-quick-links ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-quick-links ul li {
	margin-bottom: 8px;
}

.footer-quick-links ul li a {
	color: var(--white-color);
	position: relative;
	padding-left: 20px;
	transition: all 0.3s ease-out;
}

.footer-quick-links ul li a:hover {
	color: var(--accent-color);
}

.footer-quick-links ul li a:before {
	content: '';
	display: block;
	position: absolute;
	top: 4px;
	left: 0;
	width: 14px;
	height: 14px;
	background: url(../images/icon-menu-item.svg) no-repeat left center;
}

.footer-appointment .footer-appointment-content p {
	color: var(--white-color);
}

.footer-appointment .footer-appointment-content .btn-default:before {
	background: var(--secondary-color);
}

.footer-appointment .footer-appointment-content .btn-default:hover {
	color: var(--primary-color);
}

.footer-copyright-links {
	padding: 20px 0;
}

.footer-copyright p {
	margin: 0;
}

.footer-policy-links {
	text-align: right;
}

.footer-policy-links ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-policy-links ul li {
	display: inline-block;
	margin-left: 16px;
	position: relative;
	padding-left: 20px;
}

.footer-policy-links ul li:before {
	content: '';
	display: block;
	width: 1px;
	height: 15px;
	background: var(--text-color);
	position: absolute;
	top: 5px;
	left: 0;
}

.footer-policy-links ul li:first-child {
	padding-left: 0;
}

.footer-policy-links ul li:first-child:before {
	display: none;
}

.footer-policy-links ul li a {
	color: var(--text-color);
	transition: all 0.4s ease-out;
}

.footer-policy-links ul li a:hover {
	color: var(--accent-color);
}

/******************************************/
/****     14. About us Page css 	   ****/
/******************************************/

.page-header {
	padding: 150px 0;
	background: url(../images/hero.jpg) no-repeat center center;
	background-size: cover;
	position: relative;
	margin: 0 40px;
	border-radius: 20px;
	overflow: hidden;
}

.page-header:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--overlay-color);
}

.page-header-box {
	text-align: center;
}

.page-header-box h1 {
	font-size: 70px;
	font-weight: 600;
	color: var(--white-color);
}

.page-header-box .breadcrumb {
	justify-content: center;
	margin-bottom: 0;
}

.page-header-box ol li.breadcrumb-item {
	color: var(--white-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.photo-gallery {
	padding: 100px 0 20px;
}

.gallery-item {
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 30px;
}

.gallery-item figure img {
	aspect-ratio: 1/1;
	object-fit: cover;
	object-position: center center;
	transition: all 0.5s ease-out;
}

.gallery-item:hover figure img {
	transform: scale(1.2);
}

.testimonials {
	padding: 100px 0;
	background: var(--secondary-color);
}

.testimonial-slide {
	background: var(--white-color);
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	margin-bottom: 80px;
	transition: all 0.4s ease-in-out;
}

.testimonial-slide .testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-slide .testimonial-author-info h3 {
	font-size: 16px;
	font-family: var(--default-font);
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 15px;
}

.testimonial-slide .testimonial-author-info figure {
	max-width: 100px;
	margin: 0 auto -80px;
	overflow: hidden;
	border-radius: 50%;
	background-color: var(--secondary-color);
}

.testimonial-slide .testimonial-author-info figure img {
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 50%;
	border: 6px solid var(--secondary-color);
}

.testimonial-slider .swiper-slide-active .testimonial-slide {
	background: var(--primary-color);
}

.testimonial-slider .swiper-slide-active .testimonial-slide .testimonial-content,
.testimonial-slider .swiper-slide-active .testimonial-slide .testimonial-author-info h3 {
	color: var(--white-color);
}

.testimonial-slider .swiper-pagination {
	position: relative;
	bottom: 0;
	margin-top: 30px;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
	background: var(--primary-color);
	transition: all 0.3s;
}

.stat-counter {
	padding: 100px 0;
}

.counter-item {
	background: var(--secondary-color);
	text-align: center;
	padding: 30px;
	border-radius: 20px;
}

.counter-item .icon-box {
	margin: 0 auto 25px;
	width: 80px;
	height: 80px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.counter-item:hover .icon-box {
	background-color: var(--accent-color);
}

.counter-item .icon-box img {
	max-width: 50%;
}

.counter-item h3 {
	font-size: 28px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 5px;
}

.counter-item p {
	margin-bottom: 0;
}

.our-partners {
	background: var(--secondary-color);
	padding: 100px 0;
}

.client-logo {
	background: var(--white-color);
	border-radius: 20px;
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	padding: 40px 30px;
}

.our-agents {
	padding: 100px 0;
}

.agent-item .agent-header {
	margin-bottom: 30px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}

.agent-item .agent-header .agent-image img {
	width: 100%;
	transition: all 0.5s ease-in-out;
}

.agent-item .agent-header .agent-social-links {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -30px;
	opacity: 0;
	transition: all 0.4s ease-out;
	z-index: 2;
}

.agent-item:hover .agent-header .agent-image img {
	transform: scale(1.1);
}

.agent-item:hover .agent-header .agent-image figure:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.agent-item:hover .agent-header .agent-social-links {
	bottom: 0;
	opacity: 1;
}

.agent-item .agent-header .agent-social-links ul {
	padding: 0 20px 30px;
	margin: 0;
	list-style: none;
	text-align: center;
}

.agent-item .agent-header .agent-social-links ul li {
	display: inline-block;
	margin: 0 2px;
}

.agent-item .agent-header .agent-social-links ul li a {
	width: 38px;
	height: 38px;
	font-size: 18px;
	border-radius: 5px;
	background: var(--accent-color);
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-out;
}

.agent-item .agent-header .agent-social-links ul li a:hover {
	background-color: var(--primary-color);
}

.agent-item .agent-body {
	text-align: center;
}

.agent-item .agent-body h3 {
	font-size: 22px;
	color: var(--dark-color);
	font-weight: 600;
}

.agent-item .agent-body p {
	margin-bottom: 0;
}

/******************************************/
/****   	 15. Listing Page css  	   ****/
/******************************************/

.page-property-listing {
	padding: 100px 0;
}

.page-property-listing .property-item {
	margin-bottom: 30px;
}

.property-listing-page {
	padding: 100px 0;
}

.filter-active-bar {
	background: var(--secondary-color);
	padding: 10px 15px;
	border-radius: 8px;
	border: 1px solid var(--divider-color);
}

.post-pagination {
	margin-top: 30px;
	text-align: center;
}

.post-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.post-pagination ul li a,
.post-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: var(--secondary-color);
	margin: 0 4px;
	border-radius: 5px;
	font-family: var(--accent-font);
	font-weight: 700;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.post-pagination ul li.active a,
.post-pagination ul li a:hover {
	background: var(--accent-color);
	color: var(--white-color);
}

.property-sidebar {
	padding-left: 30px;
}

.property-category-box {
	background: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
	margin-bottom: 30px;
}

.property-category-box h3 {
	font-size: 22px;
	color: var(--dark-color);
	font-weight: 600;
	margin-bottom: 15px;
}

.property-category-box ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.property-category-box ul li {
	border-bottom: 1px solid var(--divider-color);
	padding: 10px 0;
}

.property-category-box ul li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.property-category-box ul li a {
	display: block;
	font-weight: 600;
	color: var(--text-color);
	position: relative;
	padding-left: 20px;
	transition: all 0.3s ease-in-out;
}

.property-category-box ul li a:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: url(../images/icon-list.svg) no-repeat left center;
	position: absolute;
	left: 0;
	top: 2px;
}

.property-category-box ul li a:hover,
.property-category-box ul li a.active {
	color: var(--accent-color);
}

.property-category-box ul li a.active {
	font-weight: 700;
}

.property-category-box ul li a.active:before {
	filter: brightness(0) saturate(100%) invert(52%) sepia(97%) saturate(400%) hue-rotate(1deg);
}

/* ── Filter Sidebar Redesign ─────────────────────────────────────────────── */

.filter-section-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--primary-color);
	opacity: 0.55;
	margin: 22px 0 9px;
}

.filter-section-label:first-of-type {
	margin-top: 0;
}

/* Search input */
.filter-search-wrap {
	position: relative;
}

.filter-search-wrap .filter-search-icon {
	position: absolute;
	left: 13px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-color);
	opacity: 0.45;
	font-size: 13px;
	pointer-events: none;
}

.filter-input {
	width: 100%;
	height: 46px;
	padding: 0 14px 0 38px;
	font-size: 14px;
	font-weight: 500;
	color: var(--dark-color);
	background: var(--white-color);
	border: 1.5px solid var(--divider-color);
	border-radius: 10px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.filter-input::placeholder {
	color: var(--text-color);
	opacity: 0.5;
}

.filter-input:focus {
	outline: none;
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(17, 182, 228, 0.12);
}

/* Custom select */
.filter-select {
	appearance: none;
	-webkit-appearance: none;
	width: 100%;
	height: 46px;
	padding: 0 40px 0 14px;
	font-size: 14px;
	font-weight: 500;
	color: var(--dark-color);
	background-color: var(--white-color);
	border: 1.5px solid var(--divider-color);
	border-radius: 10px;
	cursor: pointer;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23646262' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 13px center;
	background-size: 16px 16px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.filter-select:hover {
	border-color: var(--accent-color);
}

.filter-select:focus {
	outline: none;
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(17, 182, 228, 0.12);
}

/* Price row (min + max side by side) */
.filter-price-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

/* Type pills */
.filter-type-pills {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.filter-type-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 15px;
	border-radius: 20px;
	border: 1.5px solid var(--divider-color);
	font-size: 13px;
	font-weight: 600;
	color: var(--text-color);
	background: var(--white-color);
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	white-space: nowrap;
}

.filter-type-pill i {
	font-size: 12px;
}

.filter-type-pill:hover {
	border-color: var(--accent-color);
	color: var(--accent-color);
	text-decoration: none;
}

.filter-type-pill.active {
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--white-color);
}

/* Toggle rows (checkboxes) */
.filter-toggles {
	border-top: 1px solid var(--divider-color);
	margin-bottom: 20px;
}

.filter-toggle-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid var(--divider-color);
	cursor: pointer;
}

.filter-toggle-label {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 14px;
	font-weight: 500;
	color: var(--dark-color);
	cursor: pointer;
	user-select: none;
}

.filter-toggle-label i {
	color: var(--accent-color);
	font-size: 14px;
	width: 16px;
	text-align: center;
}

/* iOS-style toggle switch */
.filter-switch {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 22px;
	flex-shrink: 0;
}

.filter-switch input {
	opacity: 0;
	width: 0;
	height: 0;
	position: absolute;
}

.filter-switch-track {
	position: absolute;
	inset: 0;
	background: var(--divider-color);
	border-radius: 11px;
	cursor: pointer;
	transition: background 0.22s ease;
}

.filter-switch-track::before {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	left: 3px;
	top: 3px;
	background: #fff;
	border-radius: 50%;
	transition: transform 0.22s ease;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.filter-switch input:checked + .filter-switch-track {
	background: var(--accent-color);
}

.filter-switch input:checked + .filter-switch-track::before {
	transform: translateX(18px);
}

/* Custom select dropdown */
.custom-select-wrap {
	position: relative;
}

.custom-select-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	height: 46px;
	padding: 0 13px;
	background: var(--white-color);
	border: 1.5px solid var(--divider-color);
	border-radius: 10px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	color: var(--dark-color);
	transition: border-color 0.2s, box-shadow 0.2s;
	user-select: none;
}

.custom-select-trigger:hover,
.custom-select-wrap.cs-open .custom-select-trigger {
	border-color: var(--accent-color);
}

.custom-select-wrap.cs-open .custom-select-trigger {
	border-radius: 10px 10px 0 0;
	box-shadow: 0 0 0 3px rgba(17, 182, 228, 0.12);
}

.cs-trigger-label {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.cs-trigger-label.cs-placeholder {
	color: var(--text-color);
	opacity: 0.5;
}

.cs-chevron {
	flex-shrink: 0;
	font-size: 12px;
	color: var(--text-color);
	opacity: 0.5;
	transition: transform 0.2s ease;
}

.custom-select-wrap.cs-open .cs-chevron {
	transform: rotate(180deg);
	opacity: 0.8;
}

.cs-dropdown {
	display: none;
	position: absolute;
	top: calc(100% - 2px);
	left: 0;
	right: 0;
	background: var(--white-color);
	border: 1.5px solid var(--accent-color);
	border-top: none;
	border-radius: 0 0 10px 10px;
	z-index: 200;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(42, 56, 71, 0.13);
	min-width: 160px;
}

.custom-select-wrap.cs-open .cs-dropdown {
	display: block;
}

.custom-select-wrap.cs-error .custom-select-trigger {
	border-color: #dc3545;
}

/* ── Mobile filter drawer ──────────────────────────────────────────────────── */
.mobile-filter-bar {
	gap: 12px;
}

.mobile-filter-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--accent-color, #c8a96e);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.2s;
}
.mobile-filter-btn:hover { opacity: 0.88; }

.mobile-filter-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: var(--accent-color, #c8a96e);
	border-radius: 50%;
	width: 20px;
	height: 20px;
	font-size: 11px;
	font-weight: 700;
	margin-left: 2px;
}

.mobile-filter-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.45);
	z-index: 1049;
	transition: opacity 0.25s;
}
.mobile-filter-backdrop.active { display: block; }

.mobile-filter-drawer-header {
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255,255,255,0.12);
	margin-bottom: 4px;
}

.mobile-filter-close-btn {
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
	color: inherit;
	padding: 4px 8px;
	opacity: 0.7;
	transition: opacity 0.15s;
}
.mobile-filter-close-btn:hover { opacity: 1; }

@media (max-width: 991px) {
	#filterSidebar {
		display: none;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		max-height: 85dvh;
		overflow-y: auto;
		z-index: 1050;
		padding: 24px 20px 32px !important;
		margin: 0 !important;
		border-radius: 20px 20px 0 0;
		box-shadow: 0 -6px 40px rgba(0,0,0,0.18);
		-webkit-overflow-scrolling: touch;
		background: var(--secondary-color);
	}
	#filterSidebar.mobile-filters-open {
		display: block;
		animation: mobileFilterSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
	}
	@keyframes mobileFilterSlideUp {
		from { transform: translateY(100%); }
		to   { transform: translateY(0); }
	}
	#filterSidebar .property-category-box {
		margin-bottom: 0;
		border-radius: 0;
		padding: 0;
		background: transparent;
	}
}

/* ── End mobile filter drawer ─────────────────────────────────────────────── */

.cs-option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	font-size: 13.5px;
	font-weight: 500;
	color: var(--text-color);
	cursor: pointer;
	border-bottom: 1px solid var(--divider-color);
	transition: background 0.15s, color 0.15s;
}

.cs-option:last-child {
	border-bottom: none;
}

.cs-option:hover {
	background: var(--secondary-color);
	color: var(--dark-color);
}

.cs-option.cs-selected {
	color: var(--accent-color);
	font-weight: 600;
	background: rgba(17, 182, 228, 0.05);
}

.cs-option-icon {
	width: 17px;
	text-align: center;
	font-size: 12px;
	flex-shrink: 0;
	color: var(--text-color);
	opacity: 0.4;
}

.cs-option.cs-selected .cs-option-icon {
	opacity: 1;
	color: var(--accent-color);
}

.cs-option-text {
	flex: 1;
}

.cs-check {
	flex-shrink: 0;
	font-size: 11px;
	color: var(--accent-color);
	opacity: 0;
	transition: opacity 0.15s;
}

.cs-option.cs-selected .cs-check {
	opacity: 1;
}

/* ─────────────────────────────────────────────────────────────────────────── */

.need-help-box {
	position: relative;
	text-align: center;
	border-radius: 20px;
	overflow: hidden;
	background: var(--primary-color);
	padding: 40px 30px;
}

/* Legacy: image-based variant still works when .need-help-img is present */
.need-help-box:has(.need-help-img):after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--dark-overlay-color);
}

.need-help-box .need-help-img img {
	width: 100%;
	transition: all 0.5s ease-in-out;
}

.need-help-box:hover .need-help-img img {
	transform: scale(1.2);
}

.need-help-box .need-help-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	z-index: 2;
	padding: 40px 30px;
}

.need-help-box .need-help-content h3 {
	color: var(--white-color);
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 30px;
	width: 100%;
}

/* Plain card variant (no .need-help-img) */
.need-help-box>h3 {
	color: var(--white-color);
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
}

.need-help-box>p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	margin-bottom: 24px;
}

.need-help-box .btn-default {
	background: var(--accent-color);
	color: var(--white-color);
}

/* Override the global ::before sweep (--primary-color) so hover text stays visible */
.need-help-box .btn-default:before,
.need-help-box .btn-default.btn-border:before {
	background: var(--white-color);
}

.need-help-box .btn-default:hover {
	background: var(--white-color);
	color: var(--primary-color);
}

.need-help-box .btn-border {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.5);
	color: var(--white-color);
}

.need-help-box .btn-border:hover {
	background: var(--white-color);
	color: var(--primary-color);
	border-color: var(--white-color);
}

.need-help-box--sticky {
	position: sticky;
	top: 100px;
}

/******************************************/
/****   16. Property Single Page css   ****/
/******************************************/

.page-property-single {
	padding: 100px 0;
}

.porperty-single-sidebar {
	padding-left: 30px;
	height: 100%;
}

.property-info-box {
	background: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
	margin-bottom: 40px;
}

.property-info-box h3 {
	font-size: 22px;
	color: var(--dark-color);
	font-weight: 600;
	margin-bottom: 20px;
}

.property-info-item {
	position: relative;
	padding: 14px 0 14px 32px;
	border-bottom: 1px solid var(--gray-divider);
}

.property-info-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.property-info-item .icon-box {
	position: absolute;
	top: 14px;
	left: 0;
}

.property-info-item .icon-box img {
	max-height: 20px;
}

.property-info-item p {
	margin: 0;
}

.property-inquiry-box {
	background: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
	position: sticky;
	top: 100px;
}

.property-inquiry-box h3 {
	font-size: 22px;
	color: var(--dark-color);
	font-weight: 600;
	margin-bottom: 20px;
}

.property-inquiry-form .form-control {
	background: var(--white-color);
}

.property-inquiry-form .btn-default {
	width: 100%;
}

.property-photos-slider {
	border-radius: 20px;
	overflow: hidden;
}

.property-photo-item {
	border-radius: 20px;
	overflow: hidden;
}

.property-photos-slider .swiper-arrow-prev,
.property-photos-slider .swiper-arrow-next {
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	color: var(--white-color);
	position: absolute;
	top: 50%;
	z-index: 1;
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}

.property-photos-slider .swiper-arrow-prev {
	left: 20px;
}

.property-photos-slider .swiper-arrow-next {
	right: 20px;
}

.property-photos-slider .swiper-arrow-prev:hover,
.property-photos-slider .swiper-arrow-next:hover {
	background-color: var(--primary-color);
}

.property-single-subtitle {
	margin-bottom: 30px;
}

.property-single-subtitle h3 {
	font-size: 36px;
	color: var(--primary-color);
	margin: 0;
}

.property-overview {
	margin-top: 50px;
	background: var(--secondary-color);
	padding: 40px 40px 10px 40px;
	border-radius: 20px;
}

.property-overview-box {
	display: flex;
	flex-wrap: wrap;
}

.property-overview-box .property-overview-item {
	width: calc(33.33% - 20px);
	margin-right: 30px;
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.property-overview-box .property-overview-item:nth-of-type(3n + 3) {
	margin-right: 0;
}

.property-overview-box .property-overview-item .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: var(--primary-color);
	border-radius: 5px;
	margin-right: 15px;
}

.property-overview-box .property-overview-item .property-overview-content {
	width: calc(100% - 75px);
}

.property-overview-box .property-overview-item .property-overview-content h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 6px;
}

.property-overview-box .property-overview-item .property-overview-content p {
	margin: 0;
}

.about-property {
	background-color: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
	margin-top: 50px;
}

.about-property-cta .btn-border {
	margin-right: 15px;
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.about-property-cta .btn-border.btn-default:before {
	background-color: var(--primary-color);
}

.property-amenities {
	background: var(--secondary-color);
	padding: 40px 40px 20px 40px;
	border-radius: 20px;
	margin-top: 50px;
}

.property-amenities-box ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.property-amenities-box ul li {
	width: calc(33.33% - 20px);
	font-size: 18px;
	font-weight: 500;
	margin-right: 20px;
	margin-bottom: 20px;
	position: relative;
	padding-left: 30px;
}

.property-amenities-box ul li:before {
	content: '';
	display: block;
	position: absolute;
	top: 2px;
	left: 0;
	width: 20px;
	height: 20px;
	background: url(../images/icon-checkbox.svg) no-repeat left center;
}

.property-map-location {
	background: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
	margin-top: 50px;
}

.property-map-iframe iframe {
	width: 100%;
	height: 300px;
	border-radius: 20px;
}

/* --- Project-specific property single page classes --- */

.property-single-page {
	padding: 100px 0;
}

.property-single-page .badge {
	background-color: #ffffff;
	color: #808080;
}

.overview-grid {
	display: flex;
	flex-wrap: wrap;
}

.overview-item {
	width: calc(33.33% - 20px);
	margin-right: 20px;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.overview-item:nth-of-type(3n) {
	margin-right: 0;
}

.overview-item .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	min-width: 55px;
	background: var(--primary-color);
	border-radius: 5px;
	color: var(--white-color);
	font-size: 18px;
}

.overview-detail {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.overview-detail .label {
	font-size: 13px;
	color: var(--text-color);
	font-weight: 500;
}

.overview-detail .value {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
}

.property-description {
	font-size: 16px;
	color: var(--text-color);
	line-height: 1.8em;
}

.golden-visa-badge {
	display: inline-flex;
	align-items: center;
	background: var(--primary-color);
	color: var(--white-color);
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 14px;
}

.property-cta-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
}

.amenities-list {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.amenities-list li {
	width: calc(50% - 10px);
	margin-right: 20px;
	margin-bottom: 12px;
	font-size: 15px;
	font-weight: 500;
	color: var(--dark-color);
}

.amenities-list li:nth-child(2n) {
	margin-right: 0;
}

/* ── Property gallery ────────────────────────────────────────── */
.property-gallery-section{
	position: relative;
}

.property-main-img-wrap{
	display: block;
	overflow: hidden;
	border-radius: 10px;
}

.property-main-img{
	margin: 0;
	width: 100%;
	height: 460px;
	overflow: hidden;
}

.property-main-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.property-main-img-wrap:hover .property-main-img img{
	transform: scale(1.03);
}

.main-img-overlay{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px 24px 20px;
	background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, transparent 100%);
	border-radius: 0 0 10px 10px;
}

.main-img-title{
	color: #fff;
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 4px;
	text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.main-img-subtitle{
	color: rgba(255,255,255,0.85);
	font-size: 14px;
	font-weight: 500;
}

.gallery-count-badge{
	position: absolute;
	top: 14px;
	right: 14px;
	background: rgba(0,0,0,0.55);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 20px;
	backdrop-filter: blur(4px);
	pointer-events: none;
}

.gallery-thumb-strip{
	display: flex;
	gap: 6px;
	overflow-x: auto;
	scrollbar-width: none;
}

.gallery-thumb-strip::-webkit-scrollbar{
	display: none;
}

.gallery-thumb-item{
	flex: 0 0 calc(16.66% - 5px);
	min-width: 80px;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	display: block;
}

.gallery-thumb-item figure{
	margin: 0;
	height: 72px;
}

.gallery-thumb-item figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-thumb-item:hover figure img{
	transform: scale(1.08);
}

.thumb-more-overlay{
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.50);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	border-radius: 6px;
}

/* ── Overview: full-width item ───────────────────────────────── */
.overview-item--full {
	width: 100%;
	margin-right: 0;
}

/* ── Highlights grid ─────────────────────────────────────────── */
.highlights-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	padding: 0;
}

.highlight-item {
	width: calc(50% - 10px);
	font-size: 15px;
	font-weight: 500;
	color: var(--dark-color);
	display: flex;
	align-items: center;
}

/* ── Nearest landmarks list ──────────────────────────────────── */
.landmarks-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.landmarks-list li {
	padding: 8px 0;
	border-bottom: 1px solid var(--divider-color);
	font-size: 15px;
	color: var(--dark-color);
	display: flex;
	align-items: center;
}

.landmarks-list li:last-child {
	border-bottom: 0;
}

.landmark-distance {
	font-size: 13px;
}

/* ── Videos grid ─────────────────────────────────────────────── */
.videos-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* ── Payment plan list ───────────────────────────────────────── */
.payment-plan-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.payment-plan-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--divider-color);
	font-size: 15px;
}

.payment-plan-list li:last-child {
	border-bottom: 0;
}

.payment-plan-list .payment-key {
	color: var(--text-color);
	font-weight: 500;
}

.payment-plan-list .payment-val {
	font-weight: 600;
	color: var(--primary-color);
}

/* ── Location map ────────────────────────────────────────────── */
.map-wrapper {
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--divider-color);
}

.info-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0;
	border-bottom: 1px solid var(--divider-color);
	gap: 10px;
}

.info-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.info-item.price-item {
	flex-direction: column;
	align-items: flex-start;
	padding-bottom: 18px;
}

.info-label {
	font-size: 13px;
	color: var(--text-color);
	font-weight: 500;
}

.info-value {
	font-size: 15px;
	font-weight: 600;
	color: var(--primary-color);
	text-align: right;
}

.info-item.price-item .info-value {
	font-size: 24px;
	color: var(--accent-color);
	text-align: left;
}

.golden-visa-row {
	color: var(--primary-color);
	font-weight: 600;
	font-size: 14px;
}

/******************************************/
/****  	  17. Blog Archive Page css    ****/
/******************************************/

.blog-archive-page {
	padding: 100px 0;
}

.blog-archive-page .post-item {
	margin-bottom: 40px;
}

/******************************************/
/****   	 18. Post Single css  	   ****/
/******************************************/

.post-meta ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.post-meta ul li {
	display: inline-block;
	color: var(--white-color);
}

.post-meta ul li:after {
	content: '/';
	margin-left: 10px;
	margin-right: 6px;
}

.post-meta ul li:last-child::after {
	display: none;
}

.post-meta ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.post-meta ul li a:hover {
	color: var(--accent-color);
}

.blog-single-page {
	padding: 100px 0 50px;
}

.post-sidebar {
	padding-left: 20px;
}

.search-box-widget {
	background: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
	margin-bottom: 40px;
}

.search-form .form-control {
	background: var(--white-color);
	border-right: none;
}

.search-form .btn-default {
	border-radius: 0 5px 5px 0;
	padding: 14px 20px;
}

.category-box-widget {
	background: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
	margin-bottom: 40px;
}

.category-box-widget h3 {
	font-size: 22px;
	color: var(--dark-color);
	font-weight: 600;
	margin-bottom: 15px;
}

.category-box-widget ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.category-box-widget ul li {
	border-bottom: 1px solid var(--divider-color);
	padding: 10px 0;
}

.category-box-widget ul li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.category-box-widget ul li a {
	display: block;
	font-weight: 600;
	color: var(--text-color);
	position: relative;
	padding-left: 20px;
	transition: all 0.3s ease-in-out;
}

.category-box-widget ul li a:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: url(../images/icon-list.svg) no-repeat left center;
	position: absolute;
	left: 0;
	top: 2px;
}

.category-box-widget ul li a:hover {
	color: var(--accent-color);
}

.recent-posts-widget {
	background: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
	margin-bottom: 40px;
}

.recent-posts-widget h3 {
	font-size: 22px;
	color: var(--dark-color);
	font-weight: 600;
	margin-bottom: 25px;
}

.recent-post-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.recent-post-item:last-child {
	margin-bottom: 0;
}

.recent-post-item .post-image {
	width: 36%;
}

.recent-post-item .post-image img {
	aspect-ratio: 1/0.8;
	object-fit: cover;
	border-radius: 6px;
}

.recent-post-item .post-info {
	width: 60%;
}

.recent-post-item .post-info p.meta {
	margin: 0 0 8px;
	color: var(--text-color);
}

.recent-post-item .post-info p.meta a {
	color: inherit;
}

.recent-post-item .post-info h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--dark-color);
	margin: 0;
}

.recent-post-item .post-info h4 a {
	color: inherit;
}

.popular-tags-widget {
	background: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
}

.popular-tags-widget h3 {
	font-size: 22px;
	color: var(--dark-color);
	font-weight: 600;
	margin-bottom: 25px;
}

.tag-clouds ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.tag-clouds ul li {
	display: inline-block;
	margin-right: 6px;
	margin-bottom: 10px;
}

.tag-clouds ul li a {
	display: block;
	background: var(--white-color);
	padding: 10px 16px;
	color: var(--text-color);
	border-radius: 5px;
	border: 1px solid var(--divider-color);
	transition: all 0.3s ease-in-out;
}

.tag-clouds ul li a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.post-featured-image {
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 30px;
}

.post-entry {
	background: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
	margin-bottom: 30px;
}

.post-entry a {
	color: var(--primary-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	margin: 1em 0 0.6em;
}

.post-entry h1 {
	font-size: 36px;
}

.post-entry h2 {
	font-size: 30px;
}

.post-entry h3 {
	font-size: 26px;
}

.post-entry h4 {
	font-size: 22px;
}

.post-entry h5 {
	font-size: 18px;
}

.post-entry h6 {
	font-size: 16px;
}

.post-entry blockquote {
	border-left: 4px solid var(--accent-color);
	padding-left: 20px;
	margin-left: 20px;
}

.post-entry blockquote p {
	font-size: 18px;
	font-weight: 600;
}

.post-entry ul {
	list-style: none;
	padding: 0;
	margin: 0 0 1.7em;
}

.post-entry ul li {
	padding-left: 30px;
	position: relative;
	margin-bottom: 12px;
}

.post-entry ul li:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: url(../images/icon-checkbox.svg) no-repeat center center;
	position: absolute;
	left: 0;
	top: 2px;
}

.post-content .post-tags {
	font-size: 20px;
	color: var(--primary-color);
	font-weight: 700;
	font-family: var(--accent-font);
}

.post-content .post-tags a {
	display: inline-block;
	color: var(--white-color);
	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 500;
	background: var(--accent-color);
	padding: 8px 20px;
	border-radius: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.post-content .post-tags a:hover {
	background: var(--primary-color);
}

.post-social-sharing ul {
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: right;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-left: 5px;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	color: var(--white-color);
	width: 40px;
	height: 40px;
	font-size: 16px;
	border-radius: 5px;
	transition: all 0.3s ease-out;
}

.post-social-sharing ul li a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.related-posts {
	padding: 50px 0 100px;
}

/* Units table — property show page */
.units-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.units-table th,
.units-table td {
	padding: 8px 10px;
	text-align: center;
	border-bottom: 1px solid var(--divider-color);
	white-space: nowrap;
}

.units-table thead th {
	background: var(--secondary-color);
	font-weight: 600;
	color: var(--text-color);
	font-size: 0.85rem;
	text-align: center;
	cursor: default;
}

.units-table tbody tr:hover {
	background: var(--secondary-color);
}

.units-table td:last-child {
	text-align: right;
}

/******************************************/
/**** 	 19. Contact us page css	   ****/
/******************************************/

.contact-details {
	padding: 100px 0;
}

.contact-detail-item {
	background: var(--secondary-color);
	padding: 40px 60px 50px;
	border-radius: 20px;
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.contact-detail-item .icon-box {
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	background: var(--primary-color);
	border-radius: 50px;
}

.contact-detail-item h3 {
	font-size: 22px;
	font-weight: 600;
	color: var(--dark-color);
}

.contact-detail-item p {
	margin: 0;
}

.contact-detail-item .contact-address {
	min-height: 52px;
	margin-bottom: 8px;
}

.contact-detail-item .contact-phone,
.contact-detail-item .contact-email {
	margin: 0;
}

.contact-inquiry-box {
	background: var(--secondary-color);
	padding: 100px 0;
}

.contact-form .form-control {
	background: var(--white-color);
}

.google-location-map {
	padding: 100px 0;
}

.google-map-box iframe {
	border-radius: 20px;
	width: 100%;
	height: 450px;
}

/******************************************/
/**** 	 		20. FAQ page css	   ****/
/******************************************/

.faqs-page {
	padding: 50px 0 0 0 ;
}

.faq-accordion .accordion-item {
	background: var(--secondary-color);
	margin-bottom: 20px;
	border: none;
	border-radius: 10px;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion-item .accordion-header .accordion-button {
	box-shadow: none;
	outline: 0;
	border: none;
	background: none;
	font-size: 18px;
	font-weight: 500;
	padding: 18px 20px;
	color: var(--dark-color);
}

.faq-accordion .accordion-item .accordion-button::after {
	content: '';
	width: 20px;
	height: 20px;
	display: block;
	background: url(../images/icon-faq.svg) no-repeat center center;
	transform: rotate(0deg);
	transition: transform 0.3s ease;
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed)::after {
	transform: rotate(180deg);
}

.faq-accordion .accordion-body {
	padding-top: 10px;
	color: var(--text-color);
}

.faq-accordion .accordion-body p:last-child {
	margin-bottom: 0;
}

/******************************************/
/**** 	21. Page Not Found Page css	   ****/
/******************************************/

.not-found-page {
	padding: 100px 0;
}

.page-not-found-box {
	text-align: center;
}

.page-not-found-box h2 {
	font-size: 36px;
	margin-top: 40px;
	margin-bottom: 30px;
}

/******************************************/
/**** 	 	22. Agents page css	       ****/
/******************************************/

.agents-page {
	padding: 100px 0 60px;
}

.agents-page .agent-item {
	margin-bottom: 40px;
}

/******************************************/
/****   	 23. Responsive css   	   ****/
/******************************************/

@media only screen and (max-width: 1360px) {

	.hero .hero-section,
	.page-header,
	.gv-hero {
		margin: 0 15px;
	}

	footer.footer {
		margin: 70px 15px 0;
	}
}

@media only screen and (max-width: 1302px) {
	.main-menu ul li {
		margin-left: 12px;
	}

	.main-menu ul li a {
		font-size: 14px;
	}

	.navbar-brand img {
		width: 170px;
	}
}

@media only screen and (max-width: 1024px) {
	.main-menu ul li {
		margin-left: 18px;
	}
}

@media only screen and (max-width: 991px) {
	#magic-cursor {
		display: none !important;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.section-title {
		margin-bottom: 40px;
	}

	.section-title h1,
	.section-title h2 {
		font-size: 36px;
	}

	.main-menu ul li {
		margin: 0 10px;
	}

	header.main-header {
		border-radius: 20px;
	}

	header.main-header .header-sticky {
		padding: 20px 0;
	}

	header.main-header .header-sticky.active .slicknav_menu {
		border-radius: 0;
	}

	.hero .hero-section {
		padding: 60px 0;
	}

	.hero.hero-slider .hero-section {
		padding: 0;
	}

	.hero-slider .hero-section .hero-slide {
		padding: 60px 20px;
	}

	.hero-slider .hero-carousel .hero-button-prev,
	.hero-slider .hero-carousel .hero-button-next {
		opacity: 1;
		width: 36px;
		height: 36px;
	}

	.hero-slider .hero-carousel .hero-button-prev {
		left: 10px;
	}

	.hero-slider .hero-carousel .hero-button-next {
		right: 10px;
	}

	.hero .hero-search-form-section {
		position: relative;
		bottom: 0;
		border: 1px solid var(--divider-color);
		border-radius: 20px;
		margin-top: 40px;
		padding: 30px 15px 15px 15px;
		background: var(--secondary-color);
		width: auto;
		margin-left: 15px;
		margin-right: 15px;
	}

	.search-heading {
		display: block;
		margin-bottom: 20px;
	}

	.hero-search-form {
		padding: 0;
		background: transparent;
	}

	.hero-search-form .form-control {
		margin-bottom: 15px;
		background: var(--white-color);
	}

	.section-title h1 {
		font-size: 36px;
	}

	.hero-content .section-title h1 {
		font-size: 56px;
	}

	.property-types {
		padding: 60px 0;
	}

	.featured-property {
		padding: 60px 0;
	}

	.property-slider .swiper-pagination {
		margin-top: 30px;
	}

	.about-us {
		padding: 60px 0;
	}

	.about-images {
		margin-bottom: 30px;
	}

	.about-content {
		padding: 0;
	}

	.how-it-works {
		padding: 60px 0 30px;
	}

	.how-it-work-item {
		margin-bottom: 30px;
	}

	.why-choose-us {
		padding: 60px 0 30px;
	}

	.why-choose-us-images {
		margin-bottom: 30px;
	}

	.infobar-cta {
		padding: 30px 0 60px;
	}

	.cta-content {
		text-align: center;
		margin-bottom: 30px;
	}

	.cta-button {
		text-align: center;
	}

	.cta-button .btn-default {
		margin: 0 4px;
	}

	.property-by-city {
		padding: 60px 0 30px;
	}

	.location-item {
		margin-bottom: 30px;
	}

	.latest-posts {
		padding: 60px 0 30px;
	}

	.post-item {
		margin-bottom: 30px;
	}

	.newsletter-box {
		padding: 30px 40px;
		margin-bottom: 50px;
	}

	.newsletter-title {
		text-align: center;
		margin-bottom: 30px;
	}

	.mega-footer {
		padding: 0 10px;
	}

	.footer-about {
		padding: 0;
		margin-bottom: 40px;
	}

	.footer-contact-info h3,
	.footer-quick-links h3,
	.footer-appointment h3 {
		margin-bottom: 20px;
	}

	.footer-info-box {
		margin-bottom: 20px;
	}

	.footer-contact-info {
		margin-bottom: 40px;
		padding-right: 50px;
	}

	.footer-quick-links {
		margin-bottom: 40px;
	}

	footer.footer {
		padding-bottom: 50px;
	}

	.page-header {
		padding: 60px 0;
	}

	.page-header-box h1 {
		font-size: 36px;
	}

	.photo-gallery {
		padding: 60px 0 0;
	}

	.testimonial-slider {
		margin-left: -15px;
		margin-right: -15px;
	}

	.testimonials {
		padding: 60px 0;
	}

	.stat-counter {
		padding: 60px 0 30px;
	}

	.counter-item {
		margin-bottom: 30px;
	}

	.our-partners {
		padding: 60px 0 30px;
	}

	.client-logo {
		margin-bottom: 30px;
	}

	.our-agents {
		padding: 60px 0 30px;
	}

	.agent-item {
		margin-bottom: 30px;
	}

	.page-property-listing {
		padding: 60px 0;
	}

	.property-sidebar {
		padding: 0;
		margin-top: 40px;
	}

	.post-pagination {
		margin-top: 10px;
	}

	.page-property-single {
		padding: 60px 0;
	}

	.property-overview,
	.about-property,
	.property-amenities,
	.property-map-location {
		margin-top: 30px;
	}

	.porperty-single-sidebar {
		padding: 0;
		margin-top: 50px;
	}

	.property-inquiry-box {
		position: initial;
	}

	.blog-archive-page {
		padding: 60px 0;
	}

	.blog-single-page {
		padding: 60px 0 30px;
	}

	.post-sidebar {
		padding: 0;
		margin-top: 40px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.search-box-widget,
	.category-box-widget,
	.recent-posts-widget {
		margin-bottom: 30px;
	}

	.related-posts {
		padding: 30px 0 60px;
	}

	.contact-details {
		padding: 60px 0;
	}

	.contact-detail-item {
		padding: 30px 20px;
	}

	.contact-detail-item .icon-box {
		width: 70px;
		height: 70px;
		margin: 0 auto 20px;
	}

	.contact-detail-item .icon-box img {
		max-width: 40%;
	}

	.contact-inquiry-box {
		padding: 60px 0;
	}

	.google-location-map {
		padding: 60px 0;
	}

	.faqs-page {
		padding: 30px 0 0 0 ;
	}

	.not-found-page {
		padding: 60px 0;
	}

	.agents-page {
		padding: 60px 0 20px;
	}
}

@media only screen and (max-width: 767px) {

	.btn-default {
		padding: 10px 20px;
	}

	.btn-default.btn-border {
		padding: 8px 20px;
	}

	.section-title h1,
	.section-title h2 {
		font-size: 26px;
	}

	header.main-header .header-sticky {
		padding: 20px 0;
	}

	header.main-header .header-sticky.active {
		padding: 10px 0;
	}

	.navbar-brand img {
		max-height: 60px;
	}

	.hero .hero-section {
		padding: 40px 0;
	}

	.hero-slider .hero-section .hero-slide {
		padding: 40px 20px 80px;
	}

	.hero-slider .hero-carousel .hero-button-prev,
	.hero-slider .hero-carousel .hero-button-next {
		top: auto;
		bottom: 20px;
	}

	.hero-slider .hero-carousel .hero-button-prev {
		left: 38%;
	}

	.hero-slider .hero-carousel .hero-button-next {
		right: 38%;
	}

	.hero .hero-search-form-section {
		padding: 20px 5px;
	}

	.search-heading {
		display: block;
	}

	.section-title h1 {
		font-size: 28px;
	}

	.hero-content .section-title h1 {
		font-size: 28px;
	}

	.hero-content-footer {
		margin-top: 20px;
	}

	.btn-default {
		font-size: 14px;
	}

	.hero-content-footer .btn-default {
		margin: 0 4px;
	}

	.property-types {
		padding: 50px 0;
	}

	.property-type-item {
		text-align: center;
	}

	.property-type-item .icon-box {
		margin-left: auto;
		margin-right: auto;
	}

	.property-type-item h3 {
		font-size: 20px;
	}

	.property-type-slider .swiper-pagination {
		margin-top: 20px;
	}

	.property-type-slider .swiper-pagination .swiper-pagination-bullet {
		width: 12px;
		height: 12px;
	}

	.featured-property {
		padding: 50px 0;
	}

	.property-item .property-header .property-label .label {
		font-size: 12px;
		padding: 3px 10px;
	}

	.property-item .property-body h3 {
		font-size: 20px;
	}

	.property-item .property-body {
		padding: 20px;
	}

	.property-item .property-footer {
		padding: 0 20px 20px;
	}

	.property-item .property-footer .property-price {
		font-size: 16px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-images {
		padding-top: 20px;
		padding-left: 40px;
		background-size: 100px auto;
	}

	.about-content {
		padding-top: 0;
	}

	.about-content-body ul li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 15px;
	}

	.about-content-body ul li .icon-box {
		width: 36px;
		height: 36px;
	}

	.about-content-body ul li .icon-box img {
		max-width: 50%;
	}

	.about-content-body ul li span {
		font-size: 16px;
	}

	.about-content-body .btn-default {
		margin-top: 10px;
	}

	.how-it-works {
		padding: 50px 0 20px;
	}

	.how-it-work-item .icon-box {
		width: 60px;
		height: 60px;
	}

	.how-it-work-item .icon-box img {
		max-width: 50%;
	}

	.how-it-work-item h3 {
		font-size: 20px;
	}

	.why-choose-us {
		padding: 50px 0 30px;
	}

	.why-choose-us-body ul li {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.exclusive-agents {
		padding: 20px;
	}

	.exclusive-agents h5 {
		font-size: 16px;
	}

	.infobar-cta {
		padding: 30px 0 50px;
	}

	.infobar-box {
		padding: 30px 20px;
	}

	.cta-content h2 {
		font-size: 26px;
		margin-bottom: 10px;
	}

	.property-by-city {
		padding: 50px 0 20px;
	}

	.location-item .location-content .location-header h3 {
		font-size: 20px;
	}

	.latest-posts {
		padding: 50px 0 20px;
	}

	.post-item .post-body h3 a {
		font-size: 20px;
	}

	.newsletter-title {
		margin-bottom: 20px;
	}

	.newsletter-title h2 {
		font-size: 26px;
	}

	.newsletter-box {
		padding: 20px 30px;
	}

	.newsletter-form .form-control {
		border-radius: 5px;
		margin-bottom: 10px;
	}

	.newsletter-form .btn-default {
		border-radius: 5px;
	}

	.footer-contact-info h3,
	.footer-quick-links h3,
	.footer-appointment h3 {
		font-size: 20px;
	}

	.footer-contact-info {
		padding: 0;
	}

	.footer-copyright {
		text-align: center;
		margin-bottom: 15px;
	}

	.footer-policy-links {
		text-align: center;
	}

	.footer-policy-links ul li {
		margin-left: 10px;
		margin-right: 10px;
	}

	.page-header-box h1 {
		font-size: 26px;
	}

	.photo-gallery {
		padding: 50px 0 0;
	}

	.testimonials {
		padding: 50px 0;
	}

	.testimonial-slider {
		margin-left: 0;
		margin-right: 0;
	}

	.testimonial-slider .swiper-pagination {
		margin-top: 0px;
	}

	.stat-counter {
		padding: 50px 0 20px;
	}

	.our-partners {
		padding: 50px 0 20px;
	}

	.client-logo {
		padding: 30px 20px;
	}

	.our-agents {
		padding: 50px 0 20px;
	}

	.agent-item .agent-header {
		margin-bottom: 20px;
	}

	.agent-item .agent-body h3 {
		font-size: 20px;
	}

	.page-property-listing {
		padding: 50px 0;
	}

	.property-listing-page {
		padding: 50px 0;
	}

	.property-category-box {
		padding: 30px;
	}

	.property-category-box h3 {
		font-size: 20px;
	}

	.filter-price-row {
		grid-template-columns: 1fr;
	}

	.need-help-box .need-help-content h3,
	.need-help-box>h3 {
		font-size: 20px;
	}

	.need-help-box {
		padding: 30px 20px;
	}

	.page-property-single {
		padding: 50px 0;
	}

	.property-photos-slider .swiper-arrow-prev,
	.property-photos-slider .swiper-arrow-next {
		width: 40px;
		height: 40px;
	}

	.property-overview,
	.about-property,
	.property-amenities,
	.property-map-location {
		padding: 20px;
	}

	.property-single-subtitle {
		margin-bottom: 20px;
	}

	.property-single-subtitle h3 {
		font-size: 26px;
	}

	.property-overview-box .property-overview-item {
		width: calc(50% - 15px);
	}

	.property-overview-box .property-overview-item:nth-of-type(3n + 3) {
		margin-right: 30px;
	}

	.property-overview-box .property-overview-item:nth-of-type(2n + 2) {
		margin-right: 0;
	}

	.property-overview-box .property-overview-item .icon-box {
		width: 40px;
		height: 40px;
		margin-right: 10px;
	}

	.property-overview-box .property-overview-item .icon-box img {
		max-width: 50%;
	}

	.property-overview-box .property-overview-item .property-overview-content {
		width: calc(100% - 50px);
	}

	.property-overview-box .property-overview-item .property-overview-content h3 {
		font-size: 16px;
		margin-bottom: 2px;
	}

	.property-overview-box .property-overview-item .property-overview-content p {
		font-size: 14px;
	}

	.property-amenities-box ul li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}

	.property-info-box {
		padding: 30px;
	}

	.property-inquiry-box {
		padding: 30px;
	}

	.property-single-page {
		padding: 50px 0;
	}

	.overview-item {
		width: calc(50% - 10px);
	}

	.overview-item:nth-of-type(3n) {
		margin-right: 20px;
	}

	.overview-item:nth-of-type(2n) {
		margin-right: 0;
	}

	.amenities-list li {
		width: 100%;
		margin-right: 0;
	}

	.blog-archive-page {
		padding: 50px 0;
	}

	.blog-archive-page .post-item {
		margin-bottom: 30px;
	}

	.blog-single-page {
		padding: 50px 0 30px;
	}

	.post-entry {
		padding: 20px;
	}

	.post-entry blockquote {
		margin-left: 0;
	}

	.post-entry blockquote p {
		font-size: 16px;
	}

	.post-entry h1 {
		font-size: 26px;
	}

	.post-entry h2 {
		font-size: 24px;
	}

	.post-entry h3 {
		font-size: 22px;
	}

	.post-entry h4 {
		font-size: 20px;
	}

	.post-entry h5 {
		font-size: 16px;
	}

	.post-entry h6 {
		font-size: 14px;
	}

	.post-content .post-tags a {
		padding: 8px 10px;
	}

	.search-box-widget,
	.category-box-widget,
	.recent-posts-widget,
	.popular-tags-widget {
		padding: 30px;
	}

	.tag-clouds ul li a {
		padding: 8px 10px;
	}

	.related-posts {
		padding: 30px 0 20px;
	}

	.contact-details {
		padding: 50px 0 20px;
	}

	.contact-detail-item {
		margin-bottom: 30px;
	}

	.contact-detail-item h3 {
		font-size: 20px;
	}

	.contact-inquiry-box,
	.google-location-map {
		padding: 50px 0;
	}

	.faqs-page {
		padding: 20px 0 0 0 ;
	}

	.faq-accordion .accordion-item .accordion-header .accordion-button {
		font-size: 16px;
	}

	.not-found-page {
		padding: 50px 0;
	}

	.page-not-found-box h2 {
		font-size: 22px;
	}

	.agents-page {
		padding: 50px 0 10px;
	}
}

/* ── WhatsApp floating button ────────────────────────────── */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
}
.wa-float i {
    font-size: 1.3rem;
}

/* Hide floating elements when mobile filter drawer is open */
body.mobile-filter-active .wa-float {
    display: none !important;
}

/* Aspect-ratio constraints to prevent CLS on image containers */
.property-item .property-img {
    aspect-ratio: 5 / 3;
    overflow: hidden;
}
.post-item .post-featured-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.fa-x-twitter:before { content: "\e61b"; }

.icon-x-twitter {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z'/%3E%3C%2Fsvg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z'/%3E%3C%2Fsvg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}

.icon-facebook {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'/%3E%3C%2Fsvg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'/%3E%3C%2Fsvg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}

.icon-instagram {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C%2Fsvg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C%2Fsvg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}

.icon-linkedin {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z'/%3E%3C%2Fsvg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z'/%3E%3C%2Fsvg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}

.icon-youtube {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z'/%3E%3C%2Fsvg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z'/%3E%3C%2Fsvg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}

/******************************************/
/****   Golden Visa Page Components    ****/
/******************************************/

/* Facts Strip */
.gv-facts-strip {
    background-color: var(--primary-color);
    padding: 20px 0;
	margin: 40px 40px;
	border-radius: 25px;
}

.gv-fact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.gv-fact-item:last-child {
    border-right: none;
}

.gv-fact-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    font-family: var(--accent-font);
}

.gv-fact-label {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 10px;
    text-align: center;
}

/* Intro Section — 2-column split */
.gv-intro-section {
    padding: 100px 0;
    background: #fff;
}

.gv-intro-section p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.gv-intro-cta {
    margin-top: 36px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Intro highlights panel */
.gv-intro-highlights {
    background: var(--primary-color);
    border-radius: 16px;
    padding: 40px;
    color: #fff;
}

.gv-intro-highlights h4 {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.gv-intro-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gv-intro-highlights ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.5;
}

.gv-intro-highlights ul li:last-child {
    border-bottom: none;
}

.gv-intro-highlights ul li i {
    color: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 16px;
}

/* Benefits — Icon Cards */
.gv-benefits-section {
    padding: 100px 0;
    background: #fff;
}

.gv-benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gv-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.gv-benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.gv-benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.gv-benefit-card p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Requirements Comparison — 3 tiers */
.gv-requirements-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.gv-req-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.gv-req-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.11);
}

.gv-req-standard {
    border-top: 5px solid var(--primary-color);
}

.gv-req-mid {
    border-top: 5px solid var(--accent-color);
    transform: scale(1.03);
    position: relative;
    box-shadow: 0 8px 32px rgba(17,182,228,0.15);
}

.gv-req-premium {
    border-top: 5px solid #c9a227;
}

.gv-req-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--accent-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 0 0 10px 10px;
    line-height: 1;
}

.gv-req-header {
    margin-bottom: 28px;
}

.gv-req-price {
    display: block;
    font-size: 40px;
    font-weight: 800;
    font-family: var(--accent-font);
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.gv-req-mid .gv-req-price {
    color: var(--accent-color);
}

.gv-req-premium .gv-req-price {
    color: #c9a227;
}

.gv-req-header h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.gv-req-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}

.gv-req-card .btn-default {
    margin-top: auto;
    align-self: stretch;
    text-align: center;
    display: block;
}

.gv-req-card ul li {
    padding: 10px 0 10px 22px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-color);
    font-size: 14px;
    position: relative;
}

.gv-req-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.gv-req-note {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.8;
    font-style: italic;
}

/* Linear step items (no card) */
.gv-step-item {
    text-align: center;
    padding: 0 16px;
}

/* Step Numbers */
.gv-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    font-family: var(--accent-font);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.gv-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(var(--accent-color-rgb, 180, 140, 80), 0.1);
    margin: 0 auto 16px;
}

.gv-step-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.gv-step-item p {
    margin-bottom: 0;
    font-size: 15px;
    color: var(--text-color);
}

/* Process connector line */
.gv-process-row {
    position: relative;
    align-items: flex-start;
}

.gv-process-row::before {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 2px;
    background: var(--accent-color);
    opacity: 0.2;
    z-index: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .gv-req-mid {
        transform: scale(1);
    }

    .gv-process-row::before {
        display: none;
    }

    .gv-step-item {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .gv-facts-strip {
        padding: 36px 0;
    }

    .gv-fact-number {
        font-size: 36px;
    }

    .gv-fact-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 16px 10px;
    }

    .gv-fact-item:last-child {
        border-bottom: none;
    }

    .gv-intro-section {
        padding: 60px 0;
    }

    .gv-intro-highlights {
        margin-top: 10px;
        padding: 30px;
    }

    .gv-benefits-section {
        padding: 60px 0;
    }

    .gv-requirements-section {
        padding: 60px 0;
    }

    .gv-req-price {
        font-size: 32px;
    }
}

/* Post inline banner (mid-content blog banner) */
.post-inline-banner {
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

.post-inline-banner a {
    display: block;
}

.post-inline-banner img {
    display: block;
    width: 100%;
}

/* ===================================================
   Golden Visa — Custom Hero with Form
   =================================================== */
.gv-hero {
    padding: 120px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    margin: 0 40px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 40px;
    border-radius: 20px;
    overflow: hidden;
}

.gv-hero::before {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: var(--overlay-color);
}

.gv-hero .container {
    position: relative;
    z-index: 1;
}

.gv-hero-text h1 {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.gv-hero-text .breadcrumb {
    margin-bottom: 0;
}

.gv-hero-text .breadcrumb-item,
.gv-hero-text .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.gv-hero-text .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

.gv-hero-text .breadcrumb-item.active {
    color: #fff;
}

.gv-hero-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.gv-hero-form-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.gv-hero-form-subtitle {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.75;
    margin-bottom: 20px;
}

.gv-hero-form-wrap .form-control {
    background: var(--secondary-color);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--primary-color);
    transition: border-color 0.2s;
}

.gv-hero-form-wrap .form-control:focus {
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: none;
    outline: none;
}

.gv-hero-form-wrap .form-check-label {
    color: var(--text-color);
    font-size: 12px;
    line-height: 1.5;
}

.gv-hero-form-wrap .form-check-label a {
    color: var(--accent-color);
}

.gv-hero-form-wrap .btn-default {
    padding: 14px 20px;
    font-size: 15px;
}

@media (max-width: 991px) {
    .gv-hero {
        padding: 80px 0;
        margin: 0 15px;
        background-attachment: scroll !important;
        background-position: center center !important;
    }

    .gv-hero-text h1 {
        font-size: 36px;
    }

    .gv-hero-form-wrap {
        padding: 28px 22px;
    }
}

@media (max-width: 575px) {
    .gv-hero {
        padding: 60px 0;
        margin: 0;
        border-radius: 0;
    }

    .gv-hero-text h1 {
        font-size: 28px;
    }
}

/* ===================================================
   Golden Visa — Why Invest in Greece Section
   =================================================== */
.gv-invest-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.gv-invest-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gv-invest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.11);
}

.gv-invest-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 4px;
}

.gv-invest-card-header i {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gv-invest-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
}

.gv-invest-card p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

.gv-invest-card ul {
    padding-left: 20px;
    margin: 4px 0;
}

.gv-invest-card ul li {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 4px;
}

.gv-invest-card strong {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-top: 8px;
}

.gv-invest-note {
    font-size: 13px !important;
    color: var(--text-color);
    opacity: 0.75;
    font-style: italic;
    border-left: 3px solid var(--accent-color);
    padding-left: 12px;
    margin-top: 4px !important;
}

.gv-invest-stat {
    font-size: 15px !important;
    font-weight: 600;
    color: var(--accent-color) !important;
    background: rgba(var(--accent-rgb, 180,140,80), 0.08);
    border-radius: 8px;
    padding: 10px 16px;
    margin-top: 4px !important;
}

.gv-yields-group {
    margin-top: 4px;
}

@media (max-width: 991px) {
    .gv-invest-section {
        padding: 60px 0;
    }

    .gv-invest-card {
        padding: 28px 24px;
    }
}

/* ===================================================
   Golden Visa — Athens Zone Cards
   =================================================== */
.gv-zones-section {
    padding: 100px 0;
    background: #fff;
}

.gv-zone-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gv-zone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.gv-zone-card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.gv-zone-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--accent-color);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gv-zone-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 4px;
    line-height: 1.3;
}

.gv-zone-examples {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.75;
    margin: 0;
}

.gv-zone-examples i {
    color: var(--accent-color);
    margin-right: 4px;
}

.gv-zone-metrics {
    display: flex;
    gap: 12px;
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 12px 16px;
}

.gv-zone-metric {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gv-zone-metric-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-color);
    opacity: 0.65;
}

.gv-zone-metric-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.gv-zone-yield {
    color: var(--accent-color) !important;
}

.gv-zone-profile {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
}

.gv-zone-profile i {
    color: var(--accent-color);
    margin-right: 5px;
}

.gv-zone-card ul {
    padding-left: 18px;
    margin: 0;
}

.gv-zone-card ul li {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.65;
    margin-bottom: 3px;
}

.gv-zone-note {
    font-size: 13px !important;
    color: var(--text-color);
    opacity: 0.7;
    font-style: italic;
    margin: 0 !important;
    margin-top: auto !important;
    padding-top: 8px;
    border-top: 1px solid rgba(0,0,0,0.07);
}

/* ===================================================
   Golden Visa — Strategy Table & Sweet Spot
   =================================================== */
.gv-strategy-section {
    padding: 80px 0 100px;
    background: var(--secondary-color);
}

.gv-strategy-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    margin-bottom: 32px;
}

.gv-strategy-table thead tr {
    background: var(--primary-color);
    color: #fff;
}

.gv-strategy-table th {
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
}

.gv-strategy-table tbody tr {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: background 0.2s;
}

.gv-strategy-table tbody tr:hover {
    background: rgba(var(--accent-rgb, 180,140,80), 0.06);
}

.gv-strategy-table td {
    padding: 14px 24px;
    font-size: 15px;
    color: var(--text-color);
}

.gv-strategy-table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
    width: 55%;
}

.gv-sweetspot {
    background: var(--primary-color);
    border-radius: 12px;
    padding: 28px 32px;
    color: #fff;
}

.gv-sweetspot h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.gv-sweetspot ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
}

.gv-sweetspot ul li {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.gv-sweetspot ul li i {
    color: var(--accent-color);
    margin-right: 8px;
}

@media (max-width: 991px) {
    .gv-zones-section,
    .gv-strategy-section {
        padding: 60px 0;
    }

    .gv-strategy-table th,
    .gv-strategy-table td {
        padding: 12px 16px;
    }

    .gv-sweetspot {
        padding: 22px 20px;
    }
}
