/* ================= EDUARDO RODRIGUEZ INMOBILIARIA - MODERN DESIGN ================= */
/* Primary Color: #FBAC18 (Orange) */

/* ================= CSS VARIABLES ================= */
:root {
	--primary-color: #FBAC18;
	--primary-dark: #FA7E0A;
	--primary-light: #ffc107;
	--secondary-color: #2C3E50;
	--accent-green: #93ce49;
	--text-dark: #252525;
	--text-secondary: #434343;
	--text-light: #7b7b7b;
	--text-muted: #a5a5a5;
	--bg-light: #f5f5f5;
	--bg-white: #ffffff;
	--bg-dark: #111423;
	--white: #ffffff;
	--shadow-sm: 0px 1px 10px 0px rgba(0,0,0,0.10);
	--shadow-md: 0px 5px 20px 0px rgba(0,0,0,0.15);
	--shadow-lg: 0px 10px 40px 0px rgba(0,0,0,0.20);
	--border-radius: 5px;
	--transition: all 0.3s ease-in-out 0s;
	--font-primary: 'Poppins', sans-serif;
	--font-heading: 'Poppins', sans-serif;
}

/* ================= BASE STYLES ================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	font-size: 15px;
	line-height: 28px;
	color: var(--text-secondary);
	background-color: var(--bg-white);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.3;
	margin-bottom: 15px;
}

h1 { font-size: 45px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--primary-dark);
}

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

/* ================= MODERN HEADER STYLES ================= */
.site-header {
	background: var(--white);
	position: relative;
	z-index: 1000;
}

/* Top Bar */
.header-top-bar {
	background: linear-gradient(135deg, #0d1432 0%, #1a1a2e 100%);
	padding: 10px 0;
	font-size: 13px;
}

.header-top-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-top-bar .header-contacts {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.header-top-bar .header-contacts a {
	color: rgba(255,255,255,0.9);
	display: flex;
	align-items: center;
	gap: 8px;
	transition: var(--transition);
}

.header-top-bar .header-contacts a:hover {
	color: var(--primary-color);
}

.header-top-bar .header-contacts i {
	color: var(--primary-color);
	font-size: 12px;
}

.header-top-bar .header-social {
	display: flex;
	gap: 8px;
}

.header-top-bar .header-social a {
	width: 30px;
	height: 30px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 12px;
	transition: var(--transition);
}

.header-top-bar .header-social a:hover {
	background: var(--primary-color);
	transform: translateY(-2px);
}

/* Main Navigation */
.main-navbar {
	background: var(--white);
	padding: 15px 0;
	box-shadow: var(--shadow-sm);
	position: sticky;
	top: 0;
	z-index: 999;
}

.navbar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar-brand img {
	max-height: 50px;
	width: auto;
	transition: var(--transition);
}

.navbar-brand:hover img {
	transform: scale(1.05);
}

/* Desktop Menu */
.navbar-menu {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 5px;
}

.nav-menu > li {
	position: relative;
}

.nav-menu > li > a {
	display: flex;
	align-items: center;
	padding: 12px 18px;
	color: var(--text-dark);
	font-weight: 500;
	font-size: 15px;
	border-radius: var(--border-radius);
	transition: var(--transition);
	position: relative;
}

.nav-menu > li > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background: var(--primary-color);
	transition: var(--transition);
}

.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.active > a::after {
	width: calc(100% - 36px);
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.active > a {
	color: var(--primary-color);
}

/* Dropdown Menu */
.nav-menu .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--white);
	padding: 10px 0;
	box-shadow: var(--shadow-lg);
	border-radius: var(--border-radius);
	border: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: var(--transition);
	z-index: 100;
}

.nav-menu li:hover > .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu li a {
	display: block;
	padding: 10px 20px;
	color: var(--text-secondary);
	font-size: 14px;
	transition: var(--transition);
}

.dropdown-menu li a:hover {
	background: var(--bg-light);
	color: var(--primary-color);
	padding-left: 25px;
}

/* Mobile Toggle */
.navbar-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 20px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.hamburger-line {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--text-dark);
	border-radius: 2px;
	transition: var(--transition);
}

.navbar-toggle.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggle.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.navbar-toggle.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
@media (max-width: 991px) {
	.navbar-toggle {
		display: flex;
	}
	
	.navbar-menu {
		position: fixed;
		top: 0;
		left: -100%;
		width: 80%;
		max-width: 350px;
		height: 100vh;
		background: var(--white);
		flex-direction: column;
		padding: 80px 20px 20px;
		box-shadow: var(--shadow-lg);
		transition: left 0.3s ease;
		z-index: 998;
		overflow-y: auto;
	}
	
	.navbar-menu.active {
		left: 0;
	}
	
	.nav-menu {
		flex-direction: column;
		width: 100%;
	}
	
	.nav-menu > li > a {
		padding: 15px 0;
		border-bottom: 1px solid var(--bg-light);
		justify-content: space-between;
	}
	
	.nav-menu > li > a::after {
		display: none;
	}
	
	.dropdown-menu {
		position: static;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		padding-left: 20px;
		background: var(--bg-light);
		border-radius: var(--border-radius);
		margin-top: 5px;
	}
	
	.nav-menu li:hover > .dropdown-menu {
		transform: none;
	}
	
	.header-top-bar {
		display: none;
	}
}

/* ================= HERO SLIDER ================= */
.hero-section {
	position: relative;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
}

.hero-slider {
	height: 100%;
	position: relative;
}

.hero-slider .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1s ease, visibility 1s ease;
}

.hero-slider .slide.active {
	opacity: 1;
	visibility: visible;
}

.overlay-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(13, 20, 50, 0.85) 0%, rgba(251, 172, 24, 0.3) 100%);
}

.hero-content {
	position: relative;
	z-index: 10;
	max-width: 700px;
	padding: 100px 0;
}

.hero-content .label-slide {
	display: inline-block;
	background: var(--primary-color);
	color: white;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

.hero-content h1 {
	color: white;
	font-size: 52px;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.2;
}

.hero-content h1 b {
	font-weight: 700;
}

.hero-content h2 {
	color: rgba(255,255,255,0.9);
	font-size: 24px;
	font-weight: 300;
	margin-bottom: 30px;
}

.logo-orange-color {
	color: var(--primary-color) !important;
}

/* Slider Navigation */
.slider-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	z-index: 20;
	pointer-events: none;
}

.slider-nav button {
	width: 50px;
	height: 50px;
	background: rgba(255,255,255,0.2);
	border: none;
	border-radius: 50%;
	color: white;
	font-size: 18px;
	cursor: pointer;
	transition: var(--transition);
	pointer-events: auto;
	backdrop-filter: blur(5px);
}

.slider-nav button:hover {
	background: var(--primary-color);
	transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 20;
}

.slider-dots button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid white;
	background: transparent;
	cursor: pointer;
	transition: var(--transition);
}

.slider-dots button.active {
	background: var(--primary-color);
	border-color: var(--primary-color);
}

/* Hero Button */
.btn-eri {
	background: var(--primary-color);
	color: white !important;
	border: none;
	border-radius: var(--border-radius);
	padding: 14px 35px;
	font-weight: 600;
	font-size: 15px;
	transition: var(--transition);
	display: inline-block;
}

.btn-eri:hover {
	background: var(--primary-dark);
	color: white !important;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(251, 172, 24, 0.3);
}

.btn-eri.btn-lg {
	padding: 16px 40px;
	font-size: 16px;
}

@media (max-width: 768px) {
	.hero-section {
		min-height: 500px;
	}
	
	.hero-content {
		padding: 60px 0;
		text-align: center;
	}
	
	.hero-content h1 {
		font-size: 32px;
	}
	
	.hero-content h2 {
		font-size: 18px;
	}
	
	.slider-nav {
		display: none;
	}
	
	.btn-eri {
		padding: 12px 25px;
		font-size: 14px;
	}
	
	.navbar-menu::before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.5);
		opacity: 0;
		visibility: hidden;
		transition: var(--transition);
		z-index: -1;
	}
	
	.navbar-menu.active::before {
		opacity: 1;
		visibility: visible;
	}
	
	.header-top-bar {
		display: none;
	}
}

/* Navigation */
.main-navigation {
	padding: 15px 0;
	background: rgba(255,255,255,0.98);
	box-shadow: var(--shadow-sm);
}

.nav-brand img {
	max-height: 50px;
	width: auto;
	transition: var(--transition);
}

.nav-brand:hover img {
	transform: scale(1.05);
}

.nav-menu-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 5px;
}

.nav-menu-list > li {
	position: relative;
}

.nav-menu-list > li > a {
	padding: 12px 18px;
	color: var(--text-dark);
	font-weight: 500;
	font-size: 15px;
	border-radius: var(--border-radius);
	transition: var(--transition);
	display: block;
}

.nav-menu-list > li > a:hover,
.nav-menu-list > li.current-menu-item > a {
	background: var(--primary-color);
	color: white;
}

/* Dropdown Menu */
.nav-menu-list .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	min-width: 200px;
	padding: 10px 0;
	box-shadow: var(--shadow-md);
	border-radius: var(--border-radius);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 100;
}

.nav-menu-list li:hover > .dropdown-menu {
	opacity: 1;
	visibility: visible;
}

.dropdown-menu li a {
	display: block;
	padding: 10px 20px;
	color: var(--text-secondary);
	font-size: 14px;
	transition: var(--transition);
}

.dropdown-menu li a:hover {
	background: var(--bg-light);
	color: var(--primary-color);
}

/* Mobile Toggle */
.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 10px;
}

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: var(--text-dark);
	border-radius: 2px;
	transition: var(--transition);
}

@media (max-width: 991px) {
	.nav-toggle {
		display: flex;
	}
	
	.nav-menu-list {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 20px;
		box-shadow: var(--shadow-md);
		display: none;
	}
	
	.nav-menu-list.active {
		display: flex;
	}
	
	.nav-menu-list > li > a {
		padding: 12px 0;
		border-bottom: 1px solid var(--bg-light);
	}
	
	.dropdown-menu {
		position: static;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		padding-left: 20px;
	}
}

/* ================= HERO SLIDER ================= */
#fh5co-hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
}

#fh5co-hero .flexslider {
	height: 100%;
	border: none;
	margin: 0;
}

#fh5co-hero .flexslider .slides > li {
	height: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
}

#fh5co-hero .overlay-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(13, 20, 50, 0.85) 0%, rgba(251, 172, 24, 0.3) 100%);
}

#fh5co-hero .slider-text {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#fh5co-hero .desc {
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 20px;
	padding: 50px 60px;
	max-width: 700px;
	text-align: center;
}

#fh5co-hero .desc h1 {
	color: white;
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.2;
	font-family: var(--font-heading);
}

#fh5co-hero .desc h2 {
	color: rgba(255,255,255,0.9);
	font-size: 22px;
	font-weight: 300;
	margin-bottom: 30px;
}

.label-slide {
	display: inline-block;
	background: var(--primary-color);
	color: white;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

@media (max-width: 768px) {
	#fh5co-hero .desc {
		padding: 30px;
		margin: 20px;
	}
	
	#fh5co-hero .desc h1 {
		font-size: 32px;
	}
}

/* ================= SECTIONS ================= */
.full-row {
	position: relative;
	width: 100%;
	padding: 80px 0;
}

.fh5co-main-section {
	padding: 80px 0;
}

.section-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 15px;
	font-family: var(--font-heading);
}

.main-title-one {
	text-align: center;
	margin-bottom: 50px;
}

.main-title-one .sub-title {
	font-size: 18px;
	color: var(--text-light);
}

/* ================= PROPERTY CARDS ================= */
.thumbnail_one {
	background: white;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
}

.thumbnail_one:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-5px);
}

.thumbnail_one .overflow-hidden {
	position: relative;
	width: 100%;
	aspect-ratio: 37/26;
	overflow: hidden;
}

.thumbnail_one .overflow-hidden img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.thumbnail_one:hover .overflow-hidden img {
	transform: scale(1.1);
}

/* Featured Badge */
.Featured {
	position: absolute;
	top: 30px;
	left: -50px;
	z-index: 99;
	width: 200px;
	line-height: 30px;
	text-align: center;
	background-color: var(--primary-color) !important;
	opacity: 0.9;
	color: white;
	padding: 5px 15px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	transform: rotate(-42deg);
}

.Featured.nuevo {
	background-color: var(--accent-green) !important;
}

/* Sale Badge */
.sale {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 99;
	background-color: var(--primary-color) !important;
	color: white;
	padding: 5px 15px;
	border-radius: var(--border-radius);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.sale.alquiler {
	background-color: #3498db !important;
}

/* Price */
.area_price {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 99;
	background-color: rgba(0,0,0,0.7);
	padding: 10px 20px;
	border-radius: var(--border-radius);
}

.area_price p {
	color: white;
	font-size: 21px;
	font-weight: 700;
	margin: 0;
}

.area_price span {
	display: block;
	font-size: 13px;
	font-weight: 400;
}

/* Star Mark */
.starmark {
	position: absolute;
	bottom: 20px;
	right: 20px;
	font-size: 21px;
	color: white;
	z-index: 99;
}

.starmark i {
	background: rgba(0,0,0,0.5);
	padding: 5px 8px;
	border-radius: 50%;
}

/* Card Content */
.thum_one_content {
	padding: 20px;
}

.thum_title h5 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

.thum_title h5 a {
	color: var(--text-dark);
	transition: var(--transition);
}

.thum_title h5 a:hover {
	color: var(--primary-color);
}

.thum_title p {
	font-size: 14px;
	color: var(--text-light);
	margin: 0;
}

.thum_title p i {
	color: var(--primary-color);
	margin-right: 5px;
}

.ft_area {
	padding: 15px 0;
	border-top: 1px solid var(--bg-light);
	font-size: 14px;
	color: var(--text-secondary);
}

.ft_area i {
	color: var(--primary-color);
	margin-right: 5px;
}

.ft_area .post_date {
	color: var(--text-light);
}

.ft_area .post_date i {
	color: var(--text-light);
}

/* ================= BUTTONS ================= */
.btn-default1 {
	background-color: var(--primary-color);
	color: white;
	border: none;
	border-radius: var(--border-radius);
	padding: 0 23px;
	line-height: 46px;
	font-weight: 500;
	font-size: 14px;
	transition: var(--transition);
	display: inline-block;
}

.btn-default1:hover {
	filter: brightness(115%);
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-default2 {
	background-color: transparent;
	color: white;
	border: 2px solid white;
	border-radius: var(--border-radius);
	padding: 0 23px;
	line-height: 42px;
	font-weight: 500;
	font-size: 14px;
	transition: var(--transition);
}

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

.btn-white1 {
	background-color: white;
	color: var(--text-secondary);
	border: none;
	border-radius: var(--border-radius);
}

.btn-white1:hover {
	background-color: transparent;
	color: white;
	border: 2px solid white;
}

/* ================= SEARCH FORM ================= */
.bg-gray-input .form-control {
	background-color: var(--bg-light);
	border: none;
	border-radius: var(--border-radius);
}

.advance_form2 .form-control,
.property_form .form-control {
	height: 50px;
	border: 1px solid #ececec;
	border-radius: var(--border-radius);
	padding: 10px 15px;
	font-size: 15px;
	transition: var(--transition);
}

.advance_form2 .form-control:focus,
.property_form .form-control:focus {
	border-color: var(--primary-color);
	outline: none;
	box-shadow: 0 0 0 3px rgba(251, 172, 24, 0.1);
}

.btn-search {
	background-color: var(--primary-color);
	color: white;
	border: none;
	border-radius: var(--border-radius);
	padding: 12px 30px;
	font-weight: 600;
	transition: var(--transition);
}

.btn-search:hover {
	filter: brightness(115%);
	color: white;
	transform: translateY(-2px);
}

/* ================= SERVICES SECTION ================= */
.box-one {
	background: white;
	padding: 40px 30px;
	border-radius: var(--border-radius);
	text-align: center;
	transition: var(--transition);
	box-shadow: var(--shadow-sm);
}

.box-one:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-10px);
}

.box-one i {
	font-size: 48px;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.box-one h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
}

.box-one p {
	color: var(--text-light);
	margin: 0;
}

/* ================= FOOTER ================= */
.bg-default {
	background-color: var(--bg-dark) !important;
}

.footer-widget {
	padding: 60px 0 40px;
}

.footer-widget h5 {
	color: white;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 15px;
}

.footer-widget h5::before,
.footer-widget h5::after {
	content: "";
	position: absolute;
	left: 0;
	height: 2px;
	background-color: var(--primary-color);
}

.footer-widget h5::before {
	width: 80px;
	bottom: 0;
}

.footer-widget h5::after {
	width: 40px;
	bottom: -5px;
}

.footer-widget p {
	color: rgba(255,255,255,0.7);
	line-height: 1.8;
}

.footer-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

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

.footer-widget ul li a {
	color: rgba(255,255,255,0.7);
	transition: var(--transition);
}

.footer-widget ul li a:hover {
	color: var(--primary-color);
	padding-left: 5px;
}

.footer-widget .contact-info li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.footer-widget .contact-info li i {
	color: var(--primary-color);
	font-size: 18px;
	margin-top: 3px;
}

.footer-widget .contact-info li span {
	color: rgba(255,255,255,0.7);
}

.copy-right {
	background-color: rgba(0,0,0,0.3);
	padding: 30px 0;
	text-align: center;
}

.copy-right p {
	color: rgba(255,255,255,0.7);
	margin: 0;
	font-size: 14px;
}

.copy-right a {
	color: var(--primary-color);
}

.footer-social {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.footer-social a {
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: var(--transition);
}

.footer-social a:hover {
	background: var(--primary-color);
	transform: translateY(-3px);
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	left: 30px;
	width: 60px;
	height: 60px;
	background: #25d366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 30px;
	box-shadow: 0 4px 20px rgba(37,211,102,0.4);
	z-index: 9999;
	transition: var(--transition);
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 30px rgba(37,211,102,0.5);
	color: white;
}

/* ================= RESPONSIVE GRID ================= */
.row-properties {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 30px;
	margin: 40px 0;
}

@media (max-width: 992px) {
	.row-properties {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	}
}

@media (max-width: 768px) {
	.row-properties {
		grid-template-columns: 1fr;
	}
	
	.section-title {
		font-size: 28px;
	}
	
	.full-row {
		padding: 60px 0;
	}
	
	.fh5co-main-section {
		padding: 60px 0;
	}
	
	.header-contacts {
		display: none;
	}
}

/* ================= PROPERTY DETAIL PAGE ================= */
.property-detail-header {
	background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 100%);
	padding: 100px 0 60px;
	color: white;
}

.property-detail-header h1 {
	color: white;
	font-size: 36px;
}

.property-detail-header .location {
	font-size: 18px;
	color: rgba(255,255,255,0.8);
}

.property-detail-header .location i {
	color: var(--primary-color);
	margin-right: 8px;
}

.property-detail-gallery {
	margin-top: -50px;
	position: relative;
	z-index: 10;
}

.property-detail-gallery .main-image {
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.property-detail-info {
	padding: 40px;
	background: white;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-md);
	margin-top: 30px;
}

.property-detail-price {
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-color);
}

.property-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px;
	background: var(--bg-light);
	border-radius: var(--border-radius);
}

.feature-item i {
	font-size: 24px;
	color: var(--primary-color);
}

.feature-item span {
	font-size: 14px;
	color: var(--text-secondary);
}

.feature-item strong {
	display: block;
	font-size: 18px;
	color: var(--text-dark);
}

/* ================= BLOG STYLES ================= */
.blog_one {
	background: white;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
}

.blog_one:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-5px);
}

.blog_one .post-thumb {
	overflow: hidden;
}

.blog_one .post-thumb img {
	transition: transform 0.5s ease;
}

.blog_one:hover .post-thumb img {
	transform: scale(1.1);
}

.blog_one .post-content {
	padding: 25px;
}

.blog_one .post-date {
	font-size: 13px;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.blog_one .post-title h4 {
	font-size: 20px;
	margin-bottom: 15px;
}

.blog_one .post-title h4 a {
	color: var(--text-dark);
}

.blog_one .post-title h4 a:hover {
	color: var(--primary-color);
}

/* ================= PAGINATION ================= */
.pagination {
	display: flex;
	gap: 5px;
	justify-content: center;
	margin-top: 40px;
}

.pagination .page-link {
	color: var(--primary-color);
	border: 1px solid var(--bg-light);
	border-radius: var(--border-radius);
	padding: 10px 15px;
	transition: var(--transition);
}

.pagination .page-item.active .page-link {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: white !important;
}

.pagination .page-link:hover {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
}

/* ================= FORM ELEMENTS ================= */
.form-control {
	height: 50px;
	border: 1px solid #ececec;
	border-radius: var(--border-radius);
	padding: 10px 15px;
	font-size: 15px;
	transition: var(--transition);
}

.form-control:focus {
	border-color: var(--primary-color);
	outline: none;
	box-shadow: 0 0 0 3px rgba(251, 172, 24, 0.1);
}

textarea.form-control {
	height: auto;
	min-height: 150px;
}

/* ================= UTILITY CLASSES ================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted { color: var(--text-muted) !important; }

.bg-primary { background-color: var(--primary-color) !important; }
.bg-light { background-color: var(--bg-light) !important; }
.bg-white { background-color: var(--bg-white) !important; }
.bg-dark { background-color: var(--bg-dark) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }

.mt-0 { margin-top: 0 !important; }
.mt-10 { margin-top: 10px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px !important; }

.py-60 { padding-top: 60px; padding-bottom: 60px; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }

.p-20 { padding: 20px; }
.p-30 { padding: 30px; }
.p-40 { padding: 40px; }

/* ================= ANIMATIONS ================= */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
	from { opacity: 0; transform: translateX(-30px); }
	to { opacity: 1; transform: translateX(0); }
}

.fadeIn {
	animation: fadeIn 0.6s ease forwards;
}

.slideIn {
	animation: slideIn 0.6s ease forwards;
}

/* Hover effects */
.hover-zoomer {
	overflow: hidden;
}

.hover-zoomer img {
	transition: transform 0.5s ease;
}

.hover-zoomer:hover img {
	transform: scale(1.1);
}

/* ================= BRAND SECTION ================= */
#fh5co-brand-section {
	padding: 40px 0;
	background: var(--bg-light);
}

.brand-footer-dollar {
	text-align: center;
	padding: 20px;
}

.brand-footer-dollar h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 10px;
}

.brand-footer-dollar h1 {
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-color);
}

.brand-footer-logo,
.brand-footer-ccpier {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 80px;
}

.brand-footer-logo img,
.brand-footer-ccpier img {
	max-width: 100%;
	height: auto;
	max-height: 100px;
	object-fit: contain;
}

/* ================= SCROLL TO TOP ================= */
.scroll-top {
	position: fixed;
	bottom: 100px;
	right: 30px;
	width: 45px;
	height: 45px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 999;
}

.scroll-top.visible {
	opacity: 1;
	visibility: visible;
}

.scroll-top:hover {
	background: var(--primary-dark);
	transform: translateY(-5px);
}
