/* =========================================================
   BASE STYLES & VARIABLES
========================================================= */
:root {
	--primary-dark: #1b365d;
	--primary-light: #2c5282;
	--accent-green: #25d366;
	--text-main: #333333;
	--text-muted: #6b7280;
	--bg-light: #f8f9fa;
	--border-light: #f3f4f6;
	--divider-color: #cbd5e1;
	--danger: #dc3545;
	--gold: #ffcd39
}

body {
	font-family: 'Poppins', sans-serif;
	color: var(--text-main);
	background-color: #fafafa;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

label {
	color: var(--primary-dark);
	font-size: .8rem;
}

a {
	text-decoration: none;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(2px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 991px) {
	body {
		padding-bottom: 65px;
	}

	/* Reserve space for mobile bottom nav */
}

/* =========================================================
   HEADER & NAVBAR
========================================================= */
.navbar {
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	padding: 15px 0;
	z-index: 1060;
}

.navbar-brand {
	display: flex;
	align-items: center;
	font-weight: 700;
	color: var(--primary-dark);
	font-size: 1.25rem;
	letter-spacing: -0.5px;
	text-decoration: none;
}

.navbar-brand img {
	height: 41px;
	margin-right: 11px;
	object-fit: contain;
}

.page-content {
	flex: 1;
	padding-top: 85px;
	padding-bottom: 60px;
}

/*.navbar-brand span {
		display: flex;
	flex-direction: column;
	line-height: 1.1;
}
*/
.brand-trio {
	/*font-weight: 300;*/
	color: #fca311;
}

.nav-link {
	color: var(--text-main);
	font-weight: 500;
	font-size: 0.95rem;
	margin: 0 12px;
	transition: color 0.3s ease;
}

.btn-sell {
	background-color: var(--primary-dark);
	color: white;
	border-radius: 6px;
	padding: 8px 24px;
	font-weight: 500;
	font-size: 0.95rem;
	transition: background-color 0.3s;
	text-decoration: none;
}

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

/* Profile dropdown */
.profile-dropdown {
	position: relative;
}

.profile-toggle {
	cursor: pointer;
	text-decoration: none;
	color: var(--primary-dark);
	transition: transform 0.2s ease;
}

.profile-toggle:hover {
	transform: translateY(-2px);
}

.profile-icon-wrapper {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 2px solid var(--primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-dark);
	background-color: transparent;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.profile-toggle:hover .profile-icon-wrapper,
.profile-toggle[aria-expanded="true"] .profile-icon-wrapper {
	background-color: var(--primary-dark);
	color: white;
	box-shadow: 0 4px 10px rgba(27, 54, 93, 0.2);
}

.custom-dropdown {
	border: none;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	padding: 10px 0;
	margin-top: 15px !important;
	min-width: 160px;
	border: 1px solid rgba(0, 0, 0, 0.03);
}

.custom-dropdown .dropdown-item {
	padding: 10px 24px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-main);
	transition: all 0.2s;
}

.custom-dropdown .dropdown-item:hover {
	background-color: var(--bg-light);
	color: var(--primary-dark);
	padding-left: 28px;
}

.dropdown-item-danger {
	color: var(--danger) !important;
}

/* Navbar Scroll & Transparent Base Effects */
.transition-all {
	transition: all 0.4s ease-in-out;
}

.nav-transparent {
	/*	background-color: rgba(27, 54, 93, 95);*/
	background-color: #ffffff;
	padding-top: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-transparent .brand-text {
	color: var(--primary-dark);
	/*font-weight: 500;*/
	font-size: 1.2rem;
	letter-spacing: 0.5px;
}

.nav-transparent .navbar-toggler i {
	color: var(--primary-dark);
}

.nav-scrolled {
	background-color: #ffffff !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
}

.nav-scrolled .brand-text {
	color: #1b365d !important;
}

.nav-scrolled .navbar-toggler i {
	color: #1b365d !important;
}

.nav-transparent .navbar-brand img,
.nav-transparent .profile-icon-wrapper i {
	/*filter: brightness(0) invert(1);*/
	transition: filter 0.4s;
}

.nav-scrolled .navbar-brand img,
.nav-scrolled .profile-icon-wrapper i {
	filter: none;
	transition: filter 0.4s;
}

/* Hamburger Menu Fix */
.navbar-toggler {
	border: none;
	outline: none;
	padding: 5px;
	box-shadow: none !important;
}

.navbar-toggler i {
	font-size: 1.6rem;
	transition: color 0.3s ease;
}

/* Dropdown Arrow Animation */
.dropdown-toggle::after {
	transition: transform 0.3s ease;
	vertical-align: middle;
	margin-left: 6px;
}

.dropdown-toggle.show::after {
	transform: rotate(-180deg);
}


/* =========================================================
   DESKTOP ONLY NAV BEHAVIORS
========================================================= */
@media (min-width: 992px) {
	.nav-transparent {
		backdrop-filter: blur(2px);
	}

	.nav-transparent .nav-link {
		/*	color: #ffffff !important;*/
		color: var(--primary-dark);
	}

	.nav-scrolled .nav-link {
		color: #1b365d !important;
	}

	.nav-link:hover {
		color: #fca311 !important;
	}

	.nav-transparent .custom-nav-dropdown {
		background-color: rgba(27, 54, 93, 0.95);
		border: 1px solid rgba(255, 255, 255, 0.1);
	}

	.nav-transparent .custom-nav-dropdown .dropdown-item {
		color: #ffffff;
	}

	.nav-transparent .custom-nav-dropdown .dropdown-item:hover {
		background-color: #fca311;
		color: #1b365d;
	}

	.nav-scrolled .custom-nav-dropdown {
		background-color: #ffffff;
		border: 1px solid #eaeaea;
	}

	.nav-scrolled .custom-nav-dropdown .dropdown-item {
		color: #333333;
	}

	.nav-scrolled .custom-nav-dropdown .dropdown-item:hover {
		background-color: #f8f9fa;
		color: #fca311;
	}
}


/* =========================================================
   MOBILE OFFCANVAS & SLIDING MENU
========================================================= */
@media (max-width: 991px) {
	.custom-offcanvas {
		background-color: var(--primary-dark) !important;
		background-image: linear-gradient(180deg, #122543 0%, var(--primary-dark) 100%);
		width: 320px !important;
		border-left: none;
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
	}

	.mobile-canvas-logo {
		height: 38px;
		margin-right: 12px;
		filter: brightness(0) invert(1);
	}

	/* Fix 1: Use block display instead of flex to stop weird spacing */
	#mobileOffcanvas .offcanvas-body {
		padding: 20px !important;
		display: block;
	}

	/* Fix 2: Tighter margins and normal stacking for the links */
	#mobileOffcanvas .navbar-nav {
		width: 100%;
		display: block;
		margin-top: 5px !important;
	}

	#mobileOffcanvas .nav-item {
		width: 100%;
		margin-bottom: 4px;
		/* Tighter gap between links */
	}

	#mobileOffcanvas .nav-link {
		width: 100%;
		color: rgba(255, 255, 255, 0.9) !important;
		font-size: 1.05rem;
		font-weight: 500;
		padding: 12px 16px !important;
		/* Reduced padding */
		background-color: rgba(255, 255, 255, 0.03);
		border-radius: 10px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		transition: all 0.3s ease;
	}

	#mobileOffcanvas .nav-link:hover,
	#mobileOffcanvas .nav-link.show {
		color: #fca311 !important;
		background-color: rgba(255, 255, 255, 0.08);
	}

	.custom-dropdown-wrapper .dropdown-menu {
		position: static !important;
		float: none;
		background-color: rgba(0, 0, 0, 0.2) !important;
		border: 1px solid rgba(255, 255, 255, 0.05);
		padding: 10px;
		margin-top: 8px;
		border-radius: 10px;
		display: none;
		animation: subMenuSlideDown 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	}

	.custom-dropdown-wrapper .dropdown-menu.show {
		display: block;
	}

	.custom-dropdown-wrapper .dropdown-item {
		color: rgba(255, 255, 255, 0.75) !important;
		padding: 10px 15px;
		font-size: 0.95rem;
		border-radius: 8px;
		transition: all 0.2s ease;
	}

	.custom-dropdown-wrapper .dropdown-item:hover {
		background-color: rgba(255, 255, 255, 0.1);
		color: #ffffff !important;
		padding-left: 20px;
	}

	/* Fix 3: Controlled spacing for action buttons instead of 'auto' */
	.mobile-drawer-actions {
		animation: fadeIn 0.8s ease forwards;
		margin-top: 30px !important;
		padding-top: 25px;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}
}

@keyframes subMenuSlideDown {
	from {
		opacity: 0;
		transform: scaleY(0.9) translateY(-10px);
	}

	to {
		opacity: 1;
		transform: scaleY(1) translateY(0);
	}
}

/* =========================================================
   MOBILE BOTTOM NAV
========================================================= */
.mobile-bottom-nav {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--primary-dark);
	z-index: 1050;
	box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
	padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bottom-nav-item {
	flex: 1;
	text-align: center;
	padding: 10px 4px 12px;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.7rem;
	font-weight: 500;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	transition: all 0.2s ease;
}

.mobile-bottom-nav-item i {
	font-size: 1.1rem;
	margin-bottom: 2px;
}

.mobile-bottom-nav-item:hover,
.mobile-bottom-nav-item:active,
.mobile-bottom-nav-item.active {
	color: #ffffff;
	background-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 991px) {
	.mobile-bottom-nav {
		display: flex;
	}
}


/* =========================================================
   HERO & SEARCH WIDGET
========================================================= */
.hero-section {
	position: relative;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/hero.png') center/cover no-repeat;
	padding: 160px 0 60px;
	color: white;
	min-height: 550px;
	display: flex;
	align-items: center;
}

.hero-title {
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.25;
	margin-bottom: 12px;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
	font-size: 1.15rem;
	font-weight: 400;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.floating-whatsapp {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-color: #25d366;
	color: white;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 32px;
	box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
	transform: scale(1.1);
	color: white;
	box-shadow: 2px 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
	.floating-whatsapp {
		bottom: 90px;
		right: 20px;
	}
}

.search-widget-wrapper {
	width: 100%;
	max-width: 700px;
	margin: 25px 0 15px;
	background-color: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(6px);
	border-radius: 20px;
	z-index: 10;
	padding: 25px 0 0 0;
	position: relative;
}

.search-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 25px;
	background: transparent;
	padding: 0;
}

.search-tab-item {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.15rem;
	cursor: pointer;
	margin: 0;
	position: relative;
	transition: color 0.3s;
	font-weight: 400;
}

.search-tab-item:hover {
	color: #ffffff;
}

.search-tab-item input[type="radio"] {
	display: none;
}

.search-tab-item span {
	position: relative;
	padding-bottom: 10px;
	letter-spacing: 0.3px;
}

.search-tab-item input[type="radio"]:checked+span {
	color: white;
	font-weight: 500;
}

.search-tab-item input[type="radio"]:checked+span::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: white;
	border-radius: 2px;
	animation: fadeIn 0.3s ease;
}

.search-bar-container {
	background: white;
	border-radius: 10px;
	padding: 0px 0px 0px 20px;
	display: flex;
	align-items: center;
	width: 100%;
}

.location-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.location-wrapper i {
	color: #1b365d;
	font-size: 1.1rem;
}

.location-select {
	border: none;
	outline: none;
	font-weight: 500;
	color: #1b365d;
	background: transparent;
	padding-right: 25px;
	font-size: 1.1rem;
	cursor: pointer;
	appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%231b365d" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
	background-repeat: no-repeat;
	background-position: right center;
}

.search-divider {
	width: 1px;
	height: 38px;
	background-color: #e5e7eb;
	margin: 0 25px;
}

.search-input {
	flex: 1;
	border: none;
	outline: none;
	font-size: 1.05rem;
	color: #4b5563;
	width: 100%;
	cursor: pointer;
	min-width: 120px;
}

.search-input::placeholder {
	color: #9ca3af;
	font-weight: 400;
}

.btn-search {
	background-color: #1b365d;
	color: white;
	border-radius: 0 10px 10px 0;
	padding: 14px 40px;
	font-size: 1.1rem;
	font-weight: 400;
	border: none;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: background-color 0.3s, transform 0.2s;
	white-space: nowrap;
}

.btn-search:hover {
	background-color: #112038;
	/*transform: translateY(-2px);*/
}

.btn-search-filter {
	border-radius: 10px;
	display: flex;
	justify-content: center;
}

.filter-panel {
	display: none;
	position: absolute;
	top: calc(100% + 15px);
	left: 0;
	right: 0;
	background: #ffffff;
	border-radius: 16px;
	padding: 25px;
	z-index: 100;
	border: 1px solid #eaeaea;
	animation: fadeIn 0.2s ease-in-out;
}

.filter-panel.show-panel {
	display: block;
}

.filter-label {
	font-size: 0.9rem;
	font-weight: 600;
	color: #1b365d;
	margin-bottom: 10px;
	display: block;
}

.custom-checkbox {
	display: block;
	font-size: 0.85rem;
	color: #555;
	margin-bottom: 6px;
	cursor: pointer;
}

.custom-checkbox input {
	margin-right: 8px;
	accent-color: #fca311;
}

.filter-select {
	font-size: 0.9rem;
	border-radius: 8px;
	border: 1px solid #ddd;
	color: #555;
}

/* =========================================================
   SECTIONS (SERVICES, BUILDERS, TESTIMONIALS)
========================================================= */
.modern-grid-section,
.top-builders-section,
.testimonials-section {
	padding: 80px 0;
}

.bg-light-gray {
	background-color: #f8f9fa;
}

.bg-white {
	background-color: #ffffff;
}

.sub-badge {
	display: inline-block;
	background: rgba(27, 54, 93, 0.1);
	color: #1b365d;
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.section-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: #1b365d;
	margin-bottom: 10px;
}

.section-desc {
	color: #6c757d;
	font-size: 1.05rem;
	margin-bottom: 45px;
}

/* Cards */
.service-card,
.feature-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 30px 20px;
	text-align: center;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.04);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-white .service-card,
.bg-white .feature-card {
	background: #fdfdfd;
	border: 1px solid #f0f0f0;
}

.service-card:hover,
.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.icon-box {
	width: 65px;
	height: 65px;
	background-color: #fff9e6;
	color: #fca311;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.icon-box.blue {
	background-color: #eef2f7;
	color: #1b365d;
}

.service-card:hover .icon-box {
	background-color: #fca311;
	color: #fff;
}

.feature-card:hover .icon-box.blue {
	background-color: #1b365d;
	color: #fff;
}

.service-card h5,
.feature-card h5 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #1b365d;
	margin-bottom: 12px;
}

.service-card p,
.feature-card p {
	font-size: 0.9rem;
	color: #6c757d;
	margin: 0;
	line-height: 1.5;
}

/* Builder Cards */
.builder-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	padding: 25px;
	border-radius: 12px;
	text-decoration: none;
	border: 1px solid rgba(0, 0, 0, 0.04);
	transition: transform 0.3s, box-shadow 0.3s;
	height: 100%;
}

.builder-card:hover {
	transform: scale(1.03);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.builder-logo-wrapper {
	height: 60px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.builder-img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	filter: grayscale(10%);
	opacity: 0.85;
	transition: all 0.3s ease;
}

.builder-card:hover .builder-img {
	filter: grayscale(0%);
	opacity: 1;
}

.builder-card .projects {
	font-size: 0.75rem;
	font-weight: 600;
	color: #888;
	background: #f1f3f5;
	padding: 4px 14px;
	border-radius: 20px;
	transition: all 0.3s ease;
}

.builder-card:hover .projects {
	background: #1b365d;
	color: #ffffff;
}

/* Testimonials */
.testimonial-slider {
	padding-bottom: 50px;
}

.testimonial-card {
	background: #f8f9fa;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
	text-align: center;
	margin: 15px;
	border: 1px solid #f0f0f0;
}

.stars {
	color: #fca311;
	font-size: 1.1rem;
	margin-bottom: 20px;
}

.review-text {
	font-size: 1.15rem;
	font-style: italic;
	color: #444;
	line-height: 1.7;
	margin-bottom: 30px;
}

.client-info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.client-avatar {
	width: 50px;
	height: 50px;
	background: #1b365d;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 1.1rem;
}

.client-avatar.bg-alt {
	background: #fca311;
}

.client-name {
	font-size: 1rem;
	font-weight: 700;
	color: #1b365d;
	margin: 0 0 2px 0;
	text-align: left;
}

.client-loc {
	font-size: 0.85rem;
	color: #888;
	display: block;
	text-align: left;
}

.bottom-indicators {
	bottom: -15px;
}

.bottom-indicators button {
	background-color: #ccc !important;
	width: 10px !important;
	height: 10px !important;
	border-radius: 50%;
}

.bottom-indicators button.active {
	background-color: #1b365d !important;
}

.carousel-control-prev,
.carousel-control-next {
	width: 5%;
}

/* =========================================================
   FOOTER
========================================================= */
.main-footer {
	/*background-color: #1b365d;
	background-image: linear-gradient(135deg, #122543 0%, #1b365d 100%);
	color: #ffffff;*/
	padding-top: 70px;
}

.footer-top {
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--primary-dark);
}

.footer-desc {
	font-size: 0.95rem;
	color: var(--primary-light);
	line-height: 1.6;
	margin-bottom: 25px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	color: var(--primary-dark);
	background-color: #2c52821a;
	border-radius: 50%;
	margin-right: 12px;
	text-decoration: none;
	transition: all 0.3s;
}

.social-links a:hover {
	background: #fca311;
	transform: translateY(-3px);
}

.footer-heading {
	font-size: 1.15rem;
	font-weight: 600;
	margin-bottom: 25px;
	color: var(--primary-dark);
}

.footer-list,
.footer-contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

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

.footer-list a {
	color: #b0c4de;
	text-decoration: none;
	transition: color 0.3s, padding-left 0.3s;
}

.footer-list a:hover {
	color: #fca311;
	padding-left: 6px;
}

.footer-contact-list li {
	color: var(--primary-light);
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.95rem;
}

.footer-contact-list li a {
	color: var(--primary-light);
	text-decoration: none;
}

.footer-contact-list i {
	margin-top: 4px;
	color: #fca311;
}

.newsletter-box input {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid var(--primary-light);
	color: var(--primary-light);
}

.newsletter-box input::placeholder {
	color: #aab;
}

.newsletter-box input:focus {
	background: rgba(255, 255, 255, 0.15);
	border-color: #fca311;
	box-shadow: none;
	color: white;
}

.footer-bottom {
	padding: 25px 0;
	color: #8c9eb5;
	font-size: 0.9rem;
}

.footer-bottom-links a {
	color: #8c9eb5;
	text-decoration: none;
	margin-left: 20px;
	transition: color 0.3s;
}

.footer-bottom-links a:hover {
	color: var(--primary-dark);
}

.footer-logo-icon {
	height: 40px;
	width: auto;
	margin-right: 10px;
	/*filter: brightness(0) invert(1);*/
}

/* =========================================================
   MOBILE RESPONSIVENESS OVERRIDES (General)
========================================================= */
@media (max-width: 991px) {
	.hero-section {
		padding: 120px 0 60px;
		min-height: 450px;
	}

	.hero-title {
		font-size: 1.8rem;
	}

	/*.nav-transparent {
		background-color: #1b365d !important;
	}
*/
	.search-widget-wrapper {
		/*background-color: rgba(27, 54, 93, 0.85);*/
		backdrop-filter: none;
		/*padding: 15px;*/
		border-radius: 20px;
		margin-top: 20px;
	}

	.search-tabs {
		gap: 15px;
		margin-bottom: 15px;
	}

	.search-tab-item {
		font-size: 1rem;
	}

	.search-bar-container {
		/*	flex-direction: column;*/
		/*	border-radius: 25px;*/
		/*	padding: 10px;*/
		gap: 10px;
	}

	.search-divider {
		display: none;
	}

	/*.location-wrapper,
	.search-input,
	.btn-search {
		width: 100%;
	}*/

	.btn-search {
		justify-content: center;
	}

	.filter-panel {
		position: static;
		margin-top: 15px;
		box-shadow: none;
	}
}

@media (max-width: 768px) {

	.service-card,
	.feature-card {
		padding: 25px 15px;
	}

	.icon-box {
		width: 50px;
		height: 50px;
		font-size: 20px;
		margin-bottom: 15px;
	}

	.builder-logo-wrapper {
		height: 45px;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.location-wrapper i {
		display: none;
	}

	.btn-search {
		padding: 14px 20px;
	}

	.location-select {
		font-size: unset;
	}
}