/**
 * 	Include the font
 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
	font-family: Inter, Helvetica, "sans-serif";
}

:root {
	--primary-blue: #093e7f;
	--accent-green: #38a169;
	--light-blue: #3182ce;
	--dark-blue: #093e7f;
	--neutral-gray: #718096;
	--text-dark: #093e7f;
	--text-light: #4a5568;
	--text-muted: #718096;
	--bg-light: #f7fafc;
	--bg-white: #ffffff;
	--border-light: #e2e8f0;
	--shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
	font-family: Inter, Helvetica, "sans-serif";
	font-weight: 300;
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-light);
	padding-top: 85px !important;
	background: #fff;
}

/**
 * 	Global
 */

h1, h2, h3, h4, h5, h6 {
	font-family: Inter, Helvetica, "sans-serif";
	padding-bottom: 5px;
	font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--text-dark);
}

h4 {
	margin-bottom: 0px;
	margin-top: 20px;
	font-size: 25px;
}

a:hover {
	text-decoration: none;
}
/**
 * 	Custom
 */

.theme {
	color: var(--primary-blue);
}
.bold {
	font-weight: 900 !important;
}

.font-10 {
	font-size: 10px;
}

.font-12 {
	font-size: 12px;
}

.font-13 {
	font-size: 13px;
}

.font-14 {
	font-size: 14px;
}

.font-18 {
	font-size: 18px;
}

.font-20 {
	font-size: 20px;
}

.font-22 {
	font-size: 22px;
}

.font-24 {
	font-size: 24px;
}

.font-26 {
	font-size: 26px;
}

.font-30 {
	font-size: 30px;
}

.font-35 {
	font-size: 35px;
}

.font-40 {
	font-size: 40px;
}

.font-48 {
	font-size: 48px;
}

.font-50 {
	font-size: 50px;
}

.font-110 {
	font-size: 110px !important;
}

.margin-right-15 {
	margin-right: 15px;
}

.margin-left-15 {
	margin-left: 15px;
}

.capitalise {
	text-transform:uppercase;
}

.center {
	text-align: center;
}

.circle {
	border-radius: 50%;
}

form label {
	margin-top: 10px;
	font-weight: 500;
}
.btn {
	text-shadow: 0 !important;
}

.btn-success {
	background: var(--accent-green);
	border-color: var(--accent-green);
	color: white;
	font-weight: 600;
	padding: 12px 30px;
	transition: all 0.3s ease;
}

.btn-success:hover {
	background: #25b563;
	border-color: #25b563;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(45,202,115,0.3);
}

.btn-warning {
	background: #db822a;
	border-color: #db822a;
}

.btn-round {
	border-radius: 5px;
	padding: 15px 25px;
	color: white;
	font-size: 20px;
	font-weight: 700;
	border: 0px;
	text-shadow: none;
}

.padding-bottom-10 {
	padding-bottom: 10px;
}

.green {
	color: #3C763D;
}

.black {
	color: #000;
}

.red {
	color: red;
}

.input-group {
	margin-bottom: 10px;
}

.input-group-addon {
	min-width: 40px;
}

.sub-heading {
	font-size: 20px;
	font-style: italic;
}
/**
 * Header
 */

.header-wrapper {
	background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	position: fixed;
	top: 0;
	z-index: 1000;
	width: 100%;
	box-shadow: 0 4px 25px rgba(0,0,0,0.1);
	height: 85px;
	border-bottom: 1px solid rgba(9, 62, 127, 0.1);
	transition: all 0.3s ease;
	overflow: visible;
}

.header-wrapper.scrolled {
	background: rgba(255,255,255,0.95);
	box-shadow: 0 6px 35px rgba(0,0,0,0.15);
}

.main-header {
	height: 85px;
	display: flex;
	align-items: center;
}

.main-header .row {
	width: 100%;
}

.logo-link {
	display: inline-block;
	text-decoration: none;
	line-height: 1;
}

.logo {
	height: 55px;
	width: auto;
	max-width: 100%;
	display: block;
	transition: all 0.3s ease;
}

.logo-link:hover .logo {
	opacity: 0.9;
	transform: scale(1.02);
}

.header-locations {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
	height: 100%;
}

.location-items {
	display: flex;
	align-items: center;
	gap: 10px;
}

.location-label {
	color: var(--text-light);
	font-size: 13px;
	font-weight: 500;
}

.location-list {
	display: flex;
	align-items: center;
	gap: 8px;
}

.location-item {
	background: #f8f9fa;
	padding: 4px 10px;
	border-radius: 15px;
	font-size: 12px;
	font-weight: 600;
	color: var(--primary-blue);
	transition: all 0.3s ease;
}

.location-item:hover {
	background: var(--primary-blue);
	color: white;
	cursor: pointer;
}

.location-more {
	color: var(--accent-green);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	padding: 4px 8px;
}

.location-more:hover {
	text-decoration: underline;
}

.header-cta-small {
	display: flex;
	align-items: center;
	gap: 15px;
}

.main-nav {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

ul.main_navigation {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	list-style: none;
}

ul.main_navigation > li {
	margin: 0 8px;
	position: relative;
}

ul.main_navigation a {
	color: var(--text-dark);
	padding: 12px 12px;
	display: block;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
	pointer-events: auto;
	z-index: 10;
	cursor: pointer;
}

ul.main_navigation a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--accent-green);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

ul.main_navigation a:hover::before {
	width: 60%;
}

ul.main_navigation a:hover {
	background: rgba(9, 62, 127, 0.05);
	color: var(--primary-blue);
	transform: translateY(-1px);
}

/* Cities Dropdown */
.main-nav {
	display: flex;
	align-items: center;
	gap: 20px;
}

.cities-dropdown {
	position: relative;
	display: inline-block;
}

.cities-toggle {
	color: var(--text-dark);
	padding: 12px 18px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.cities-toggle::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--accent-green);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.cities-toggle:hover::before,
.cities-dropdown.active .cities-toggle::before {
	width: 60%;
}

.cities-toggle:hover,
.cities-dropdown.active .cities-toggle {
	background: rgba(9, 62, 127, 0.05);
	color: var(--primary-blue);
	transform: translateY(-1px);
	text-decoration: none;
}

.cities-toggle i {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.cities-dropdown.active .cities-toggle i {
	transform: rotate(180deg);
}

.cities-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: white;
	min-width: 320px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.15);
	border-radius: 12px;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	border: 1px solid rgba(9, 62, 127, 0.1);
}

.cities-dropdown.active .cities-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.cities-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.city-item {
	color: var(--text-dark);
	text-decoration: none;
	padding: 10px 15px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	text-align: left;
}

.city-item:hover {
	background: var(--bg-light);
	color: var(--primary-blue);
	text-decoration: none;
	transform: translateX(3px);
}

.header-cta {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
}

.phone-number {
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s;
	padding: 8px 15px;
	border-radius: 8px;
	background: rgba(56, 161, 105, 0.05);
	border: 1px solid rgba(56, 161, 105, 0.1);
}

.phone-number:hover {
	color: var(--primary-blue);
	background: rgba(56, 161, 105, 0.1);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(56, 161, 105, 0.15);
}

.phone-number i {
	font-size: 16px;
	color: var(--accent-green);
	width: 18px;
	text-align: center;
}

.btn-cta-header {
	background: linear-gradient(135deg, var(--accent-green) 0%, #2f8556 100%);
	color: white;
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	display: inline-block;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 4px 15px rgba(56, 161, 105, 0.25);
	position: relative;
	overflow: hidden;
}

.btn-cta-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: left 0.5s ease;
}

.btn-cta-header:hover::before {
	left: 100%;
}

.btn-cta-header:hover {
	background: linear-gradient(135deg, #2f8556 0%, var(--accent-green) 100%);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(56, 161, 105, 0.4);
}

.mobile-menu-controls {
	display: none;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
}

/* Show mobile controls on small screens */
@media (max-width: 991px) {
	.mobile-menu-controls {
		display: flex !important;
	}
}

.mobile-phone {
	color: var(--primary-blue);
	font-size: 20px;
}

.mobile-menu-toggle {
	background: none;
	border: none;
	padding: 5px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: 30px;
	height: 30px;
	position: relative;
	justify-content: center;
	align-items: center;
}

@media (max-width: 991px) {
	.mobile-menu-toggle {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: var(--text-dark);
	border-radius: 2px;
	transition: all 0.3s ease;
	display: block;
	position: relative;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
	position: fixed;
	top: 85px;
	left: 0;
	width: 100%;
	height: calc(100vh - 85px);
	background: white;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	z-index: 9999 !important;
	overflow-y: auto;
	box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.mobile-menu.active {
	transform: translateX(0);
}

.mobile-menu-inner {
	padding: 20px;
}

.mobile-navigation {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-navigation li {
	border-bottom: 1px solid #f0f0f0;
}

.mobile-navigation a {
	color: var(--text-dark);
	padding: 15px 0;
	display: block;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
}

.mobile-navigation a:hover {
	color: var(--primary-blue);
}

.mobile-cities {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #f0f0f0;
}

.mobile-cities-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 15px;
}

.mobile-cities-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin-bottom: 20px;
}

.mobile-city-item {
	color: var(--text-light);
	text-decoration: none;
	padding: 8px 12px;
	font-size: 14px;
	font-weight: 500;
	border-radius: 6px;
	transition: all 0.3s ease;
	text-align: center;
	background: #f8f9fa;
}

.mobile-city-item:hover {
	background: var(--primary-blue);
	color: white;
	text-decoration: none;
}

.mobile-cta {
	margin-top: 30px;
}

.btn-cta-mobile {
	background: var(--accent-green);
	color: white;
	padding: 15px 30px;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	display: block;
	text-align: center;
	width: 100%;
}

.btn-cta-mobile:hover {
	background: #25b563;
	color: white;
}

@media (max-width: 991px) {
	.header-locations {
		flex-direction: column;
		align-items: flex-end;
		gap: 10px;
	}

	.location-items {
		font-size: 11px;
	}

	.location-item {
		font-size: 11px;
		padding: 3px 8px;
	}

	.location-label {
		display: none;
	}
}

/**
 * 	Body
 */

.header-background {
	background: url(img/quick-house-buyer-hero.jpg) 0 55% no-repeat;
	background-size: 100%;
	padding-bottom: 15px;
	padding-top: 5px;
	text-shadow: 2px 2px 1px rgba(81,81,81,0.3);
	color: white;
}

.header-background h1 {
	color: white;
	font-weight: 700;
}

.header-background img {
	margin-top: 10px;
	margin-right: 20px;
}

.hero-section {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
	padding: 40px 0;
	min-height: 600px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(img/quick-house-buyer-hero.jpg) center center no-repeat;
	background-size: cover;
	opacity: 0.1;
}

.hero-section .container {
	position: relative;
	z-index: 1;
}

.min-vh-60 {
	min-height: 60vh;
}

.hero-title {
	color: white;
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 24px;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
	color: rgba(255,255,255,0.95);
	font-size: 1.25rem;
	margin-bottom: 40px;
	font-weight: 300;
	line-height: 1.5;
}

.hero-form-wrapper {
	max-width: 600px;
	margin: 0 auto;
}

.hero-form .input-group {
	background: white;
	border-radius: 8px;
	padding: 8px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.2);
	display: flex;
	gap: 10px;
}

.hero-input {
	border: none;
	padding: 15px 20px;
	font-size: 16px;
	flex: 1;
	outline: none;
	background: white;
	border-radius: 6px;
	box-sizing: border-box;
}

.hero-input:focus {
	outline: 2px solid var(--accent-green);
	outline-offset: -2px;
}

.btn-hero {
	background: var(--accent-green);
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-hero:hover {
	background: #25b563;
	transform: translateX(2px);
}

.hero-trust-text {
	color: rgba(255,255,255,0.8);
	margin-top: 20px;
	font-size: 14px;
}

.hero-trust-text i {
	color: var(--accent-green);
	margin-right: 5px;
}

.hero-features {
	margin: 40px 0;
}

.hero-feature-item {
	background: rgba(255,255,255,0.1);
	border-radius: 12px;
	padding: 20px 15px;
	text-align: center;
	margin-bottom: 15px;
	transition: all 0.3s ease;
	border: 1px solid rgba(255,255,255,0.2);
	backdrop-filter: blur(10px);
}

.hero-feature-item:hover {
	background: rgba(255,255,255,0.15);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hero-feature-item i {
	color: var(--accent-green);
	font-size: 24px;
	margin-bottom: 8px;
	display: block;
}

.hero-feature-item span {
	color: white;
	font-weight: 600;
	font-size: 14px;
	display: block;
}

/* City Hero Section */
.city-hero {
	min-height: 500px;
}

.min-vh-40 {
	min-height: 40vh;
}

.city-title {
	font-size: 3rem;
}

.breadcrumb-section {
	margin-bottom: 30px;
}

.modern-breadcrumb {
	border-radius: 8px;
	padding: 5px 5px;
	margin-bottom: 0;
	font-size: 14px;
}

.modern-breadcrumb li {
	display: inline;
}

.modern-breadcrumb li + li:before {
	content: ">";
	padding: 0 8px;
	color: #6c757d;
}

.modern-breadcrumb a {
	color: var(--primary-blue);
	text-decoration: none;
}

.modern-breadcrumb a:hover {
	color: var(--accent-green);
}

.modern-breadcrumb .active {
	color: #6c757d;
}

.content-section {
	background: white;
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-title {
	color: var(--text-dark);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 24px;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.content-intro {
	background: #f8f9fa;
	border-left: 4px solid var(--accent-green);
	padding: 20px;
	margin-bottom: 30px;
	border-radius: 0 8px 8px 0;
}

.content-intro p {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
}

.content-body {
	font-size: 16px;
}

.content-image {
	max-width: 300px;
	height: auto;
	border-radius: 8px;
	margin: 0 0 20px 20px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
	.city-title {
		font-size: 2.2rem;
	}

	.content-image {
		float: none !important;
		display: block;
		margin: 0 auto 20px;
		max-width: 100%;
	}

	.content-section {
		padding: 20px;
	}
}

@media (max-width: 767px) {
	.city-title {
		font-size: 1.8rem;
	}

	.city-hero {
		padding: 40px 0;
		min-height: 400px;
	}
}

.welcome-area {
	background: rgba(0, 0, 0, 0.5);
	padding: 26px;
	border-radius: 10px;
}

.contact-banner {
	background: var(--primary-blue);
	color: #fff;
}

.contact-banner {
	background: var(--primary-blue);
	color: #fff;
}

.features-strip {
	background: white;
	padding: 30px 0;
	border-bottom: 1px solid #f0f0f0;
	margin-bottom: 50px;
}

.feature-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px;
	text-align: center;
}

.feature-item i {
	font-size: 24px;
	color: var(--primary-blue);
}

.feature-item span {
	font-weight: 600;
	color: var(--text-dark);
	font-size: 14px;
}

.breadcrumb {
	font-size: 10px;
	background: #fff;
	padding: 10px 0 0 0;
}

/***
* Background Images
***/
.promotion-background {
	background: #e9e9e9;
	padding: 20px 0;
}

/* Quick Sale Section */
.quick-sale-section {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.quick-sale-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 200%;
	background: radial-gradient(circle, rgba(56,161,105,0.05) 0%, transparent 70%);
	pointer-events: none;
}

.quick-sale-content {
	position: relative;
	z-index: 2;
}

.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--accent-green);
	color: white;
	padding: 8px 16px;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 24px;
}

.section-badge i {
	font-size: 16px;
}

.quick-sale-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 20px;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.quick-sale-lead {
	font-size: 1.25rem;
	color: var(--text-light);
	margin-bottom: 40px;
	line-height: 1.6;
}

.quick-sale-benefits {
	margin-bottom: 40px;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 32px;
	padding: 20px;
	background: white;
	border-radius: 12px;
	box-shadow: var(--shadow-sm);
	transition: all 0.3s ease;
}

.benefit-item:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.benefit-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.benefit-icon i {
	color: white;
	font-size: 20px;
}

.benefit-content h4 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 8px;
	margin-top: 0;
}

.benefit-content p {
	color: var(--text-light);
	margin: 0;
	font-size: 14px;
}

.quick-sale-cta {
	text-align: left;
}

.btn-cta-large {
	background: var(--accent-green);
	color: white;
	padding: 18px 32px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
	border: none;
	box-shadow: var(--shadow-md);
}

.btn-cta-large:hover {
	background: #2f855a;
	color: white;
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
	text-decoration: none;
}

.cta-note {
	color: var(--text-muted);
	font-size: 14px;
	margin-top: 16px;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.cta-note i {
	color: var(--accent-green);
}

/* Visual Card */
.quick-sale-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.visual-card {
	background: white;
	border-radius: 20px;
	padding: 32px;
	box-shadow: var(--shadow-lg);
	max-width: 400px;
	width: 100%;
	position: relative;
}

.card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 32px;
	padding-bottom: 20px;
	border-bottom: 2px solid #f1f5f9;
}

.card-header i {
	color: var(--primary-blue);
	font-size: 24px;
}

.card-header span {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
}

.progress-timeline {
	margin-bottom: 32px;
}

.timeline-item {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
	position: relative;
}

.timeline-item:not(:last-child)::after {
	content: '';
	position: absolute;
	left: 12px;
	top: 32px;
	width: 2px;
	height: 24px;
	background: #e2e8f0;
}

.timeline-item.completed::after {
	background: var(--accent-green);
}

.timeline-dot {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #e2e8f0;
	position: relative;
	flex-shrink: 0;
}

.timeline-item.completed .timeline-dot {
	background: var(--accent-green);
}

.timeline-item.completed .timeline-dot::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 12px;
	font-weight: 600;
}

.timeline-item.active .timeline-dot {
	background: var(--primary-blue);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.1); opacity: 0.8; }
}

.timeline-content h5 {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0 0 4px 0;
}

.timeline-content p {
	font-size: 14px;
	color: var(--text-muted);
	margin: 0;
}

.card-footer {
	display: flex;
	justify-content: space-between;
	padding-top: 24px;
	border-top: 2px solid #f1f5f9;
}

.stat {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 4px;
}

.stat-label {
	font-size: 12px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

@media (max-width: 991px) {
	.quick-sale-section {
		padding: 60px 0;
	}

	.quick-sale-title {
		font-size: 2rem;
	}

	.quick-sale-visual {
		margin-top: 40px;
	}

	.benefit-item {
		padding: 16px;
	}
}

@media (max-width: 767px) {
	.quick-sale-section {
		text-align: center;
		padding: 50px 0;
	}

	.quick-sale-content {
		text-align: center;
	}

	.quick-sale-title {
		font-size: 1.75rem;
		text-align: center;
	}

	.quick-sale-lead {
		font-size: 1.125rem;
		text-align: center;
	}

	.section-badge {
		justify-content: center;
		margin-bottom: 20px;
	}

	.benefit-item {
		flex-direction: column;
		text-align: left;
		gap: 0px;
	}

	.btn-cta-large {
		width: 100%;
		justify-content: center;
	}

	.visual-card {
		padding: 24px;
	}

	.quick-sale-cta {
		text-align: center;
	}
}

/**
* Steps
*/

.steps-section {
	background: white;
	border-radius: 15px;
	padding: 40px;
	margin: 40px 0;
	box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.steps-header {
	text-align: center;
	margin-bottom: 50px;
}

.steps-title {
	color: var(--text-dark);
	font-size: 2.25rem;
	font-weight: 800;
	margin-bottom: 16px;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.steps-subtitle {
	color: var(--text-light);
	font-size: 18px;
	margin: 0;
}

.steps-timeline {
	position: relative;
	margin-bottom: 40px;
}

.steps-timeline::before {
	content: '';
	position: absolute;
	left: 40px;
	top: 80px;
	bottom: 80px;
	width: 3px;
	background: linear-gradient(to bottom, var(--accent-green), var(--primary-blue));
	border-radius: 2px;
}

.step-item {
	position: relative;
	display: flex;
	align-items: flex-start;
	margin-bottom: 60px;
	padding-left: 20px;
}

.step-item:last-child {
	margin-bottom: 0;
}

.step-number {
	position: relative;
	z-index: 2;
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 30px;
	box-shadow: 0 8px 25px rgba(12,63,151,0.3);
	flex-shrink: 0;
}

.step-number span {
	color: white;
	font-size: 32px;
	font-weight: 700;
}

.step-content {
	flex: 1;
	padding-top: 10px;
}

.step-icon {
	width: 60px;
	height: 60px;
	background: #f8f9fa;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	border: 1px solid #e9ecef;
}

.step-icon i {
	font-size: 24px;
	color: var(--primary-blue);
}

.step-title {
	color: var(--text-dark);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

.step-description {
	color: var(--text-dark);
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.step-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.step-features li {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	font-size: 14px;
	color: var(--text-dark);
}

.step-features i {
	color: var(--accent-green);
	margin-right: 10px;
	font-size: 12px;
	width: 16px;
}

.steps-cta {
	text-align: center;
	padding-top: 40px;
	border-top: 1px solid #f0f0f0;
}

.cta-text {
	color: var(--text-dark);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.btn-steps-cta {
	background: var(--accent-green);
	color: white;
	padding: 15px 40px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	border: none;
}

.btn-steps-cta:hover {
	background: #25b563;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(45,202,115,0.3);
	text-decoration: none;
}

.btn-steps-cta i {
	font-size: 14px;
}

@media (max-width: 991px) {
	.steps-section {
		padding: 30px 20px;
	}

	.steps-timeline::before {
		left: 30px;
	}

	.step-number {
		width: 60px;
		height: 60px;
		margin-right: 20px;
	}

	.step-number span {
		font-size: 24px;
	}

	.step-title {
		font-size: 20px;
	}
}

@media (max-width: 767px) {
	.steps-timeline::before {
		display: none;
	}

	.step-item {
		flex-direction: column;
		text-align: center;
		padding-left: 0;
		margin-bottom: 40px;
	}

	.step-number {
		margin: 0 auto 20px;
	}

	.steps-title {
		font-size: 26px;
	}
}

/* Steps Section Inline */
.steps-section-inline {
	background: #f8f9fa;
	padding: 40px 0;
}

.steps-section-inline .steps-header {
	text-align: center;
	margin-bottom: 60px;
}

.steps-section-inline .steps-title {
	color: var(--text-dark);
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.2;
}

.steps-section-inline .steps-subtitle {
	color: var(--text-light);
	font-size: 1.125rem;
	margin: 0;
}

.step-card {
	background: white;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.step-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green) 100%);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.step-card:hover::before {
	transform: scaleX(1);
}

.step-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.step-card .step-number {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	box-shadow: 0 6px 20px rgba(12,63,151,0.3);
}

.step-card .step-number span {
	color: white;
	font-size: 24px;
	font-weight: 700;
}

.step-card .step-icon {
	width: 50px;
	height: 50px;
	background: var(--bg-light);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	border: 1px solid var(--border-light);
}

.step-card .step-icon i {
	font-size: 20px;
	color: var(--primary-blue);
}

.step-card .step-title {
	color: var(--text-dark);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 15px;
	line-height: 1.3;
}

.step-card .step-description {
	color: var(--text-light);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 20px;
}

.step-card .step-features {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

.step-card .step-features li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-light);
	font-size: 0.9rem;
	margin-bottom: 8px;
}

.step-card .step-features li:last-child {
	margin-bottom: 0;
}

.step-card .step-features i {
	color: var(--accent-green);
	font-size: 12px;
	flex-shrink: 0;
}

.steps-section-inline .steps-cta {
	text-align: center;
	margin-top: 60px;
}

.steps-section-inline .cta-text {
	color: var(--text-dark);
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.steps-section-inline {
		padding: 60px 0;
	}

	.steps-section-inline .steps-title {
		font-size: 1.75rem;
	}

	.step-card {
		padding: 25px 20px;
		margin-bottom: 20px;
	}

	.steps-section-inline .steps-cta {
		margin-top: 40px;
	}
}

	.steps-subtitle {
		font-size: 16px;
	}

/* Modern Page Design */
.modern-page-header {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
	padding: 20px 0;
	color: white;
	position: relative;
	overflow: hidden;
}

.modern-page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
	opacity: 0.4;
}

.page-header-content {
	position: relative;
	z-index: 1;
}

.breadcrumb-nav {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	font-size: 0.9rem;
}

.breadcrumb-link {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumb-link:hover {
	color: white;
	text-decoration: none;
}

.breadcrumb-nav i {
	color: rgba(255,255,255,0.6);
	font-size: 12px;
}

.breadcrumb-current {
	color: white;
	font-weight: 500;
}

.page-title {
	color: white;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.2;
}

.page-header-accent {
	width: 60px;
	height: 4px;
	background: linear-gradient(135deg, var(--accent-green) 0%, #2f855a 100%);
	border-radius: 2px;
}

.modern-page-content {
	background: #f8f9fa;
	padding: 20px 0;
}

.page-content-wrapper {
	background: white;
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	margin-bottom: 30px;
}

.content-body {
	color: var(--text-light);
}

.content-body h2 {
	color: var(--text-dark);
	font-size: 1.8rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.content-body h3 {
	color: var(--text-dark);
	font-size: 1.4rem;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

.content-body p {
	margin-bottom: 1.5rem;
}

.content-body ul, .content-body ol {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}

.content-body li {
	margin-bottom: 0.5rem;
}

/* Cities Grid Section */
.cities-grid-section {
	margin-top: 50px;
	padding-top: 40px;
	border-top: 1px solid var(--border-light);
}

.cities-section-title {
	color: var(--text-dark);
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
}

.cities-grid-modern {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
}

.city-card-modern {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	border: 1px solid var(--border-light);
}

.city-card-modern:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.city-image {
	position: relative;
	height: 180px;
	overflow: hidden;
}

.city-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.city-card-modern:hover .city-img {
	transform: scale(1.05);
}

.city-overlay {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.city-overlay i {
	color: var(--primary-blue);
	font-size: 16px;
}

.city-content {
	padding: 20px;
}

.city-name {
	margin-bottom: 8px;
}

.city-name a {
	color: var(--text-dark);
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 600;
	transition: color 0.3s ease;
}

.city-name a:hover {
	color: var(--primary-blue);
	text-decoration: none;
}

.city-description {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-bottom: 15px;
	line-height: 1.4;
}

.city-link-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--primary-blue);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.city-link-btn:hover {
	color: var(--dark-blue);
	text-decoration: none;
	transform: translateX(5px);
}

.city-link-btn i {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.city-link-btn:hover i {
	transform: translateX(3px);
}

/* Page CTA Section */
.page-cta-section {
	margin-top: 50px;
	padding-top: 40px;
	border-top: 1px solid var(--border-light);
}

.page-cta-card {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
	color: white;
	padding: 40px;
	border-radius: 12px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-cta-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
	opacity: 0.3;
}

.page-cta-card > * {
	position: relative;
	z-index: 1;
}

.page-cta-card h3 {
	color: white;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.page-cta-card p {
	color: rgba(255,255,255,0.9);
	font-size: 1.1rem;
	margin-bottom: 25px;
}

/* Modern Sidebar */
.modern-sidebar {
	position: sticky;
	top: 30px;
}

.modern-sidebar .sidebar-widget {
	background: white;
	border-radius: 12px;
	padding: 25px;
	margin-bottom: 25px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	border: 1px solid var(--border-light);
}

.modern-sidebar .sidebar-widget:last-child {
	margin-bottom: 0;
}
.sidebar-widget {
    background: var(--primary-blue);
    padding: 5px 20px;
    margin: 15px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	.modern-page-header {
		padding: 40px 0 30px;
	}

	.page-title {
		font-size: 2rem;
	}

	.modern-page-content {
		padding: 20px 0;
	}

	.page-content-wrapper {
		padding: 25px 20px;
	}

	.cities-grid-modern {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.page-cta-card {
		padding: 30px 20px;
	}

	.modern-sidebar {
		position: static;
		margin-top: 30px;
	}
}

/* Blog Section */
.blog-section {
	background: #f8f9fa;
	padding: 80px 0;
}

.section-header {
	margin-bottom: 60px;
}

.section-title {
	color: var(--text-dark);
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.2;
}

.section-subtitle {
	color: var(--text-light);
	font-size: 1.125rem;
	margin: 0;
	max-width: 600px;
	margin: 0 auto;
}

.blog-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	height: 100%;
	border: 1px solid var(--border-light);
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.blog-image {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.blog-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
	transform: scale(1.05);
}

.blog-date {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(10px);
	border-radius: 8px;
	padding: 8px 12px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.blog-date .day {
	display: block;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-blue);
	line-height: 1;
}

.blog-date .month {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	line-height: 1;
}

.blog-content {
	padding: 25px;
}

.blog-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.blog-category {
	background: var(--primary-blue);
	color: white;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.blog-read-time {
	color: var(--text-muted);
	font-size: 0.9rem;
	font-weight: 500;
}

.blog-title {
	margin-bottom: 15px;
}

.blog-title a {
	color: var(--text-dark);
	text-decoration: none;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.blog-title a:hover {
	color: var(--primary-blue);
	text-decoration: none;
}

.blog-excerpt {
	color: var(--text-light);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 20px;
}

.blog-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--primary-blue);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.blog-link:hover {
	color: var(--dark-blue);
	text-decoration: none;
	transform: translateX(5px);
}

.blog-link i {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.blog-link:hover i {
	transform: translateX(3px);
}

.btn-blog-cta {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
	color: white;
	padding: 15px 30px;
	font-size: 1.1rem;
	font-weight: 600;
	border: none;
	border-radius: 10px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(9, 62, 127, 0.3);
	margin-top: 30px;
}

.btn-blog-cta:hover {
	background: linear-gradient(135deg, var(--dark-blue) 0%, #072a5f 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(9, 62, 127, 0.4);
	color: white;
	text-decoration: none;
}

.btn-blog-cta i {
	font-size: 14px;
	transition: transform 0.3s ease;
}

.btn-blog-cta:hover i {
	transform: translateX(3px);
}

.no-posts-message {
	color: var(--text-muted);
	font-size: 1.1rem;
	font-style: italic;
	padding: 60px 20px;
}

@media (max-width: 768px) {
	.blog-section {
		padding: 60px 0;
	}

	.section-title {
		font-size: 1.75rem;
	}

	.blog-content {
		padding: 20px;
	}

	.blog-image {
		height: 180px;
	}

	.blog-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}

/* Blog Page Styles */
.blog-page-header {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
	padding: 40px 0 30px;
	color: white;
	position: relative;
	overflow: hidden;
}

.blog-page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
	opacity: 0.4;
}

.blog-header-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.blog-page-title {
	color: white;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.2;
}

.blog-page-subtitle {
	color: rgba(255,255,255,0.9);
	font-size: 1.125rem;
	margin-bottom: 20px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.blog-header-accent {
	width: 60px;
	height: 4px;
	background: linear-gradient(135deg, var(--accent-green) 0%, #2f855a 100%);
	border-radius: 2px;
	margin: 0 auto;
}

.blog-page-content {
	background: #f8f9fa;
	padding: 80px 0;
}

.blog-posts-wrapper {
	margin-bottom: 30px;
}

.blog-posts-grid {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.blog-post-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	border: 1px solid var(--border-light);
}

.blog-post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.post-image {
	position: relative;
	height: 280px;
	overflow: hidden;
}

.post-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-post-card:hover .post-img {
	transform: scale(1.05);
}

.post-date {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(10px);
	border-radius: 10px;
	padding: 12px 16px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.post-date .day {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-blue);
	line-height: 1;
}

.post-date .month {
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	line-height: 1;
}

.post-content {
	padding: 30px;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 20px;
	align-items: center;
}

.post-category {
	background: var(--primary-blue);
	color: white;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.post-author,
.post-read-time {
	color: var(--text-muted);
	font-size: 0.9rem;
	font-weight: 500;
}

.post-title {
	margin-bottom: 15px;
}

.post-title a {
	color: var(--text-dark);
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.post-title a:hover {
	color: var(--primary-blue);
	text-decoration: none;
}

.post-excerpt {
	color: var(--text-light);
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 25px;
}

.post-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.read-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--primary-blue);
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.read-more-btn:hover {
	color: var(--dark-blue);
	text-decoration: none;
	transform: translateX(5px);
}

.read-more-btn i {
	font-size: 14px;
	transition: transform 0.3s ease;
}

.read-more-btn:hover i {
	transform: translateX(3px);
}

.post-date-mobile {
	display: none;
	color: var(--text-muted);
	font-size: 0.9rem;
}

/* Blog Pagination */
.blog-pagination {
	margin-top: 60px;
	text-align: center;
}

.pagination-list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.pagination-item a,
.pagination-item span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 8px 12px;
	border: 2px solid var(--border-light);
	border-radius: 8px;
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.pagination-item a:hover {
	border-color: var(--primary-blue);
	background: var(--primary-blue);
	color: white;
	text-decoration: none;
}

.pagination-item .current {
	background: var(--primary-blue);
	border-color: var(--primary-blue);
	color: white;
}

/* No Posts Found */
.no-posts-found {
	text-align: center;
	padding: 80px 20px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.no-posts-icon {
	font-size: 4rem;
	color: var(--text-muted);
	margin-bottom: 30px;
}

.no-posts-found h3 {
	color: var(--text-dark);
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.no-posts-found p {
	color: var(--text-light);
	font-size: 1.1rem;
	margin-bottom: 30px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

/* Blog Sidebar */
.blog-sidebar {
	position: sticky;
	top: 30px;
}

.blog-sidebar .sidebar-widget {
	background: white;
	border-radius: 12px;
	padding: 25px;
	margin-bottom: 30px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	border: 1px solid var(--border-light);
}

.blog-sidebar .sidebar-widget:last-child {
	margin-bottom: 0;
}

.widget-title {
	color: var(--text-dark);
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--border-light);
}

.widget-text {
	color: var(--text-light);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 20px;
}

.btn-widget-cta {
	background: linear-gradient(135deg, var(--accent-green) 0%, #2f855a 100%);
	color: white;
	padding: 12px 20px;
	font-size: 0.95rem;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(56, 161, 105, 0.3);
}

.btn-widget-cta:hover {
	background: linear-gradient(135deg, #2f855a 0%, #276749 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(56, 161, 105, 0.4);
	color: white;
	text-decoration: none;
}

/* Recent Posts List */
.recent-posts-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.recent-post-item {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border-light);
}

.recent-post-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.recent-post-thumb {
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	border-radius: 8px;
	overflow: hidden;
}

.recent-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.recent-post-thumb:hover img {
	transform: scale(1.1);
}

.recent-post-content {
	flex: 1;
}

.recent-post-title {
	margin-bottom: 8px;
}

.recent-post-title a {
	color: var(--text-dark);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.recent-post-title a:hover {
	color: var(--primary-blue);
	text-decoration: none;
}

.recent-post-date {
	color: var(--text-muted);
	font-size: 0.8rem;
}

/* Categories List */
.categories-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.category-item {
	margin-bottom: 12px;
}

.category-item:last-child {
	margin-bottom: 0;
}

.category-item a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
	border: 1px solid var(--border-light);
	border-radius: 8px;
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.category-item a:hover {
	border-color: var(--primary-blue);
	background: var(--bg-light);
	color: var(--primary-blue);
	text-decoration: none;
}

.post-count {
	color: var(--text-muted);
	font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.blog-page-header {
		padding: 30px 0 25px;
	}

	.blog-page-title {
		font-size: 1.75rem;
	}

	.blog-page-content {
		padding: 60px 0;
	}

	.blog-posts-grid {
		gap: 30px;
	}

	.post-image {
		height: 220px;
	}

	.post-content {
		padding: 25px 20px;
	}

	.post-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.post-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.post-date {
		display: none;
	}

	.post-date-mobile {
		display: block;
	}

	.blog-sidebar {
		position: static;
		margin-top: 40px;
	}

	.pagination-list {
		flex-wrap: wrap;
		gap: 5px;
	}

	.pagination-item a,
	.pagination-item span {
		min-width: 40px;
		height: 40px;
		font-size: 0.9rem;
	}
}
}

/**
* Sidebar
*/

.sidebar-widget {
	background: var(--primary-blue);
	padding: 5px 20px;
	margin: 15px 0;
	color: #fff;
}

.sidebar-widget h2 {
	margin-top: 10px;
	margin-bottom: 0px;
	color: #fff;
	text-transform: uppercase;
}

.sidebar-widget p:first-child {
	font-size: 15px;
}

.widget-cta {
	margin-top: 20px;
	margin-bottom: 15px;
	text-align: center;
}

.widget-cta .btn {
	width: 100%;
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 600;
}

/* Modern Sidebar Form */
.sidebar-form-widget {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
	padding: 0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sidebar-form-widget .form-header {
	padding: 25px 25px 20px;
	text-align: center;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-form-widget .form-title {
	color: white !important;
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 10px;
}

.sidebar-form-widget .form-subtitle {
	color: rgba(255,255,255,0.9) !important;
	font-size: 14px;
	margin: 0;
}

.sidebar-quick-form {
	padding: 0;
}

.sidebar-quick-form .form-content {
	padding: 25px;
}

.sidebar-quick-form .form-group {
	margin-bottom: 20px;
}

.sidebar-quick-form .form-label {
	color: white !important;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 8px;
	display: block;
}

.sidebar-quick-form .required {
	color: var(--accent-green);
}

.form-control-modern {
	background: rgba(255,255,255,0.95);
	border: 2px solid transparent;
	border-radius: 8px;
	padding: 12px 15px;
	font-size: 15px;
	width: 100%;
	transition: all 0.3s ease;
	height: auto;
}

.form-control-modern:focus {
	background: white;
	border-color: var(--accent-green);
	outline: none;
	box-shadow: 0 0 0 3px rgba(45,202,115,0.1);
}

.form-control-modern::placeholder {
	color: #999;
}

.sidebar-quick-form .form-text {
	color: rgba(255,255,255,0.7);
	font-size: 12px;
	margin-top: 5px;
	display: block;
}

.optional-fields {
	margin-bottom: 15px;
}

.toggle-optional {
	color: rgba(255,255,255,0.8);
	font-size: 13px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px;
	background: rgba(255,255,255,0.05);
	border-radius: 6px;
	transition: all 0.3s ease;
}

.toggle-optional:hover {
	color: white;
	background: rgba(255,255,255,0.1);
	text-decoration: none;
}

.toggle-optional i {
	font-size: 10px;
	transition: transform 0.3s ease;
}

.optional-fields-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.optional-fields-content.show {
	max-height: 500px;
}

.optional-fields-content.show + .toggle-optional i {
	transform: rotate(180deg);
}

.btn-submit-modern {
	background: var(--accent-green);
	color: white;
	border: none;
	border-radius: 8px;
	padding: 15px 25px;
	font-size: 16px;
	font-weight: 700;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all 0.3s ease;
	cursor: pointer;
	margin-top: 25px;
}

.btn-submit-modern:hover {
	background: #25b563;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(45,202,115,0.3);
}

.btn-submit-modern i {
	font-size: 14px;
}

.form-footer {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-indicators {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.trust-indicators span {
	color: rgba(255,255,255,0.8) !important;
	font-size: 12px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.trust-indicators i {
	color: var(--accent-green);
	font-size: 14px;
}

.cities-section {
	margin: 30px 0;
	padding: 0;
	background: #f8f9fa;
	border-radius: 10px;
}

.cities-title {
	color: var(--text-dark);
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 24px;
	text-align: center;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.cities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 10px;
	margin-bottom: 25px;
}

.city-item {
	background: white;
	padding: 10px 15px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--text-dark);
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 1px solid #e0e0e0;
}

.city-item:hover {
	background: var(--primary-blue);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(12,63,151,0.2);
	text-decoration: none;
}

.city-item i {
	color: var(--accent-green);
	font-size: 12px;
	flex-shrink: 0;
}

.city-item:hover i {
	color: white;
}

.cities-cta {
	text-align: center;
}

.cities-cta .btn {
	background: var(--primary-blue);
	border: none;
	padding: 12px 30px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.cities-cta .btn:hover {
	background: var(--accent-green);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(45,202,115,0.3);
}

@media (max-width: 576px) {
	.cities-grid {
		grid-template-columns: 1fr;
	}
}

.cities-page-item {
	margin-bottom: 10px;
	border: 3px solid #2E4D64;
	border-radius: 5px 5px 0px 0;
}

.cities-page-item img {
	padding: 10px;
}

.cities-link {
	background: var(--primary-blue);
	display: block;
	color: white;
	padding: 5px;
}

.sub-cities {
	display: inline-block;
	margin-right: 10px;
	padding: 3px 5px;
	font-size: 12px;
	margin-bottom: 7px;
	background: var(--light-blue);
	color: white;
	border-radius: 5px;
}

.sub-pages ul {
	padding: 0px;
	margin-bottom: 0px;
}

.sub-pages ul a{
	color: #fff;
	font-size: 18px;
	font-weight: 900;
}

#reasons a {
	display: block;
	font-weight: 900;
	font-size: 15px;
}

#reasons .panel {
	border-radius: 0px;
}

#reasons .panel-body {
	font-size: 12px;
	color: #716f68;
}

#reasons .panel-heading {
	background: #fff;
}

/**
* Estimate page
*/


#wrap{
	background: url(img/quick-house-buyer-hero.jpg) center bottom no-repeat var(--primary-blue);
	background-size: 100%;
	text-shadow: 2px 2px 1px rgba(81,81,81,0.3);
	color: white;
}

#wrap h1 {
	color: white;
}
.estimate-info-wrapper {
	background: white;
	padding: 25px;
	border-radius: 10px;
	text-align: center;
	color: #716f68 !important;
}

.estimate-info-wrapper .form-control {
	margin-bottom: 0px !important;
}

#wrap hr {
	border-color: #3D6F70;
}

#wrap form h2 {
	font-size: 20px;
	border-bottom: 1px dotted #3D6F70;
	margin: 0px;
}


.form .form-control { margin-bottom: 10px; }
@media (max-width: 991px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.hero-form .input-group {
		flex-direction: column;
		gap: 15px;
		padding: 15px;
	}

	.hero-input {
		width: 100% !important;
		padding: 18px 20px !important;
		font-size: 16px !important;
		border-radius: 8px !important;
		border: 1px solid #ddd !important;
		background: white !important;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		box-sizing: border-box;
		min-height: 56px;
		line-height: 1.2;
	}

	.btn-hero {
		width: 100%;
		padding: 18px 30px;
		font-size: 16px;
		border-radius: 8px;
	}
}

@media (max-width: 767px) {

	.hero-title {
		font-size: 2rem;
	}

	.hero-section {
		padding: 60px 0;
	}

	.hero-features {
		margin: 30px 0;
	}

	.hero-feature-item {
		padding: 15px 10px;
		margin-bottom: 10px;
	}

	.hero-feature-item i {
		font-size: 20px;
	}

	.hero-feature-item span {
		font-size: 12px;
	}

	.features-strip .feature-item {
		margin-bottom: 10px;
	}

	.features-strip .feature-item i {
		font-size: 20px;
	}

	.features-strip .feature-item span {
		font-size: 12px;
	}
}

@media (min-width:768px) {
	#home{
		margin-top:50px;
	}
	#home .slogan{
		color: var(--primary-blue);
		line-height: 29px;
		font-weight:bold;
	}
}

/**
 * 	Footer Container
 */

.footer-wrapper {
	background: var(--dark-blue);
	padding: 60px 0 20px;
	color: #fff;
}

.modern-footer {
	padding: 0;
}

.footer-section {
	margin-bottom: 30px;
}

.footer-title {
	color: white;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: var(--accent-green);
}

.footer-text {
	color: rgba(255,255,255,0.8);
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.footer-social {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-link {
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 18px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-link:hover {
	background: var(--accent-green);
	color: white;
	transform: translateY(-3px);
}

.footer-contact p {
	color: rgba(255,255,255,0.8);
	font-size: 14px;
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.footer-contact i {
	color: var(--accent-green);
	width: 20px;
	flex-shrink: 0;
	margin-top: 3px;
}

.footer-contact a {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-contact a:hover {
	color: white;
}

.btn-footer {
	background: var(--accent-green);
	color: white;
	padding: 15px 30px;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	border: none;
}

.btn-footer:hover {
	background: #25b563;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(45,202,115,0.3);
}

.footer-divider {
	border-top: 1px solid rgba(255,255,255,0.1);
	margin: 40px 0 30px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.footer-copyright {
	color: rgba(255,255,255,0.6);
	font-size: 14px;
	margin: 0;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 30px;
}

.footer-links li {
	display: inline;
}

.footer-links a {
	color: rgba(255,255,255,0.6);
	font-size: 14px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: white;
}

@media (max-width: 767px) {
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.footer-links {
		margin-top: 15px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.footer-title::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer-section {
		text-align: center;
	}

	.footer-social {
		justify-content: center;
	}
}

/**
* Testimonial
**/

.nav.nav-justified > li > a { position: relative; }
.nav.nav-justified > li > a:hover,
.nav.nav-justified > li > a:focus { background-color: transparent; }
.nav.nav-justified > li > a > .quote {
	position: absolute;
	left: 0px;
	top: 0;
	opacity: 0;
	width: 30px;
	height: 30px;
	padding: 5px;
	background-color: var(--light-blue);
	border-radius: 15px;
	color: #fff;
}
.nav.nav-justified > li.active > a > .quote { opacity: 1; }
.nav.nav-justified > li > a > img { box-shadow: 0 0 0 5px #2C67B2; }
.nav.nav-justified > li > a > img {
	max-width: 100%;
	opacity: .3;
	-webkit-transform: scale(.8,.8);
	transform: scale(.8,.8);
	-webkit-transition: all 0.3s 0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transition: all 0.3s 0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav.nav-justified > li.active > a > img,
.nav.nav-justified > li:hover > a > img,
.nav.nav-justified > li:focus > a > img {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
	-webkit-transition: all 0.3s 0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transition: all 0.3s 0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.tab-pane .tab-inner { padding: 30px 0 20px; }

@media (min-width: 768px) {
	.nav.nav-justified > li > a > .quote {
		left: auto;
		top: auto;
		right: 20px;
		bottom: 0px;
	}
}

/* Testimonials Section */
.testimonials-section {
	padding: 80px 0;
	background: var(--bg-light);
}

.testimonials-wrapper {
	margin: 60px 0;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.testimonials-avatars {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 40px;
}

.testimonial-avatar {
	position: relative;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 3px solid transparent;
	background: white;
	padding: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	overflow: hidden;
}

.testimonial-avatar.active {
	border-color: var(--accent-green);
	transform: scale(1.1);
	box-shadow: 0 8px 25px rgba(56, 161, 105, 0.3);
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.avatar-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(9, 62, 127, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	opacity: 0;
	transition: all 0.3s ease;
}

.testimonial-avatar:hover .avatar-overlay,
.testimonial-avatar.active .avatar-overlay {
	opacity: 1;
}

.avatar-overlay i {
	color: white;
	font-size: 20px;
}

.testimonials-content {
	position: relative;
	min-height: 300px;
}

.testimonial-item {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
}

.testimonial-item.active {
	opacity: 1;
	transform: translateY(0);
	position: relative;
}

.testimonial-card {
	background: white;
	padding: 40px;
	border-radius: 16px;
	box-shadow: var(--shadow-lg);
	text-align: center;
	position: relative;
	border: 1px solid var(--border-light);
}

.quote-icon {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	background: var(--accent-green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.quote-icon i {
	color: white;
	font-size: 16px;
}

.testimonial-card blockquote {
	font-size: 1.25rem;
	font-style: italic;
	color: var(--text-dark);
	margin: 30px 0;
	line-height: 1.6;
	font-weight: 400;
	quotes: """ """ "'" "'";
}

.testimonial-card blockquote::before {
	content: open-quote;
	font-size: 2rem;
	color: var(--accent-green);
	margin-right: 5px;
}

.testimonial-card blockquote::after {
	content: close-quote;
	font-size: 2rem;
	color: var(--accent-green);
	margin-left: 5px;
}

.customer-info {
	margin: 30px 0;
}

.customer-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--primary-blue);
	margin-bottom: 5px;
}

.customer-location {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin: 0;
}

.customer-location i {
	color: var(--accent-green);
	margin-right: 5px;
}

.rating {
	display: flex;
	justify-content: center;
	gap: 5px;
	margin-top: 20px;
}

.rating i {
	color: #fbbf24;
	font-size: 16px;
}

.testimonials-footer {
	margin-top: 40px;
}

.btn-link {
	color: var(--accent-green);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-link:hover {
	color: var(--primary-blue);
	text-decoration: none;
}

.btn-link i {
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.btn-link:hover i {
	transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
	.testimonials-avatars {
		gap: 15px;
	}

	.testimonial-avatar {
		width: 60px;
		height: 60px;
	}

	.testimonial-card {
		padding: 25px;
	}

	.testimonial-card blockquote {
		font-size: 1.1rem;
	}
}

/* Contact Banner Simple */
.contact-banner-simple {
	background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
	padding: 50px 0;
	color: white;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(45, 55, 72, 0.4);
}

.contact-banner-simple::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
	opacity: 0.4;
}

.banner-wrapper {
	position: relative;
	z-index: 1;
}

.banner-content h3 {
	color: white;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.banner-content p {
	color: rgba(255,255,255,0.9);
	font-size: 1.1rem;
	margin: 0;
	line-height: 1.5;
}

.banner-actions {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: flex-end;
}

.phone-link {
	display: flex;
	align-items: center;
	gap: 10px;
	color: white;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 600;
	padding: 12px 20px;
	border: 2px solid rgba(255,255,255,0.3);
	border-radius: 8px;
	transition: all 0.3s ease;
}

.phone-link:hover {
	background: rgba(255,255,255,0.1);
	border-color: white;
	color: white;
	text-decoration: none;
	transform: translateY(-2px);
}

.phone-link i {
	color: var(--accent-green);
	font-size: 16px;
}

@media (max-width: 768px) {
	.contact-banner-simple {
		padding: 40px 0;
		text-align: center;
	}

	.banner-content h3 {
		font-size: 1.8rem;
		margin-bottom: 20px;
	}

	.banner-actions {
		align-items: center;
		margin-top: 25px;
	}

	.phone-link {
		width: 100%;
		justify-content: center;
	}
}

/* Floating CTA Button */
.floating-cta {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	transition: all 0.3s ease;
}

.floating-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, var(--accent-green) 0%, #2f855a 100%);
	color: white;
	padding: 15px 20px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	box-shadow: 0 8px 25px rgba(56, 161, 105, 0.4);
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	white-space: nowrap;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.floating-btn:hover {
	background: linear-gradient(135deg, #2f855a 0%, var(--accent-green) 100%);
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(56, 161, 105, 0.5);
	color: white;
	text-decoration: none;
}

.floating-text {
	display: inline-block;
	animation: pulse-text 2s infinite;
}

.floating-btn i {
	font-size: 16px;
	animation: bounce-icon 2s infinite;
}

@keyframes pulse-text {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.8;
	}
}

@keyframes bounce-icon {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-3px);
	}
	60% {
		transform: translateY(-2px);
	}
}

.floating-btn:active {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(56, 161, 105, 0.4);
}

/* Hide on very small screens to avoid obstruction */
@media (max-width: 480px) {
	.floating-cta {
		bottom: 15px;
		right: 15px;
	}

	.floating-btn {
		padding: 12px 16px;
		font-size: 13px;
	}
}

/* Content Section Styles */
.content-section {
	background: #f8f9fa;
	padding: 80px 0;
}

.main-content {
	background: white;
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	margin-bottom: 30px;
}

.content-intro {
	margin-bottom: 50px;
	text-align: center;
}

.section-title {
	color: var(--text-dark);
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 20px;
}

.intro-text .lead {
	font-size: 1.2rem;
	color: var(--text-light);
	margin-bottom: 30px;
	line-height: 1.6;
}

.key-points {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.point-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	color: var(--text-dark);
}

.point-item i {
	font-size: 18px;
	color: var(--primary-blue);
}

.content-block {
	background: var(--bg-light);
	padding: 30px;
	border-radius: 8px;
	margin-bottom: 40px;
	border-left: 4px solid var(--primary-blue);
}

.content-block h3 {
	color: var(--text-dark);
	font-size: 1.5rem;
	margin-bottom: 20px;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
}

.benefit-card {
	background: white;
	padding: 25px;
	border-radius: 8px;
	border: 1px solid var(--border-light);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.benefit-card:hover::before {
	transform: scaleX(1);
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-blue);
}

.benefit-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.benefit-icon i {
	color: white;
	font-size: 20px;
}

.benefit-card h4 {
	color: var(--text-dark);
	font-size: 1.1rem;
	margin-bottom: 10px;
	font-weight: 600;
}

.benefit-card p {
	color: var(--text-light);
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0;
}

.sidebar-content > * {
	margin-bottom: 30px;
}

.sidebar-content > *:last-child {
	margin-bottom: 0;
}

/* Sidebar Widget Styling */
.sidebar-content .sidebar-widget {
	background: white;
	border-radius: 12px;
	padding: 25px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	border: 1px solid var(--border-light);
	color: var(--text-light);
}

.sidebar-content .sidebar-widget h2 {
	color: var(--text-dark);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 15px;
	margin-top: 0;
	text-transform: none;
}

@media (max-width: 768px) {
	.content-section {
		padding: 60px 0;
	}

	.main-content {
		padding: 30px 20px;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.key-points {
		gap: 20px;
		flex-direction: column;
		align-items: center;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.benefit-card {
		padding: 20px;
	}

	.benefit-card h4 {
		font-size: 1rem;
		line-height: 1.3;
	}

	.benefit-card p {
		font-size: 0.9rem;
		line-height: 1.4;
	}
}

@media (max-width: 480px) {
	.benefits-grid {
		gap: 15px;
	}

	.benefit-card {
		padding: 18px;
	}

	.benefit-icon {
		width: 45px;
		height: 45px;
		margin-bottom: 12px;
	}

	.benefit-icon i {
		font-size: 18px;
	}

	.benefit-card h4 {
		font-size: 0.95rem;
		margin-bottom: 8px;
	}

	.benefit-card p {
		font-size: 0.85rem;
	}
}


	.floating-btn i {
		font-size: 18px;
	}
}

/* ========================================
   SINGLE BLOG POST STYLES
   ======================================== */

.blog-post-header {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 40px 0 60px;
	border-bottom: 1px solid #dee2e6;
}

.blog-post-header-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.blog-post-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-blue);
	margin: 30px 0 20px;
	line-height: 1.2;
}

.post-meta-header {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.post-meta-header span {
	font-size: 0.9rem;
	color: #6c757d;
}

.post-category a {
	background: var(--accent-green);
	color: white;
	padding: 4px 12px;
	border-radius: 20px;
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
}

.post-author-info {
	margin-top: 30px;
}

.author-details {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.author-name {
	font-weight: 600;
	color: var(--primary-blue);
}

.published-date {
	color: #6c757d;
	font-size: 0.9rem;
}

/* Featured Image */
.blog-post-featured-image {
	margin-bottom: 60px;
}

.featured-image-wrapper {
	max-width: 1000px;
	margin: 0 auto;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-image {
	width: 100%;
	height: auto;
	display: block;
}

/* Post Content */
.blog-post-content {
	padding: 40px 0 80px;
}

.post-content-body {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #495057;
	margin-bottom: 40px;
}

.post-content-body p {
	margin-bottom: 24px;
}

.post-content-body h2 {
	color: var(--primary-blue);
	font-size: 1.8rem;
	font-weight: 600;
	margin: 40px 0 20px;
}

.post-content-body h3 {
	color: var(--primary-blue);
	font-size: 1.5rem;
	font-weight: 600;
	margin: 30px 0 15px;
}

.post-content-body h4 {
	color: var(--primary-blue);
	font-size: 1.3rem;
	font-weight: 600;
	margin: 25px 0 12px;
}

.post-content-body ul,
.post-content-body ol {
	margin-bottom: 24px;
	padding-left: 30px;
}

.post-content-body li {
	margin-bottom: 8px;
}

.post-content-body blockquote {
	background: #f8f9fa;
	border-left: 4px solid var(--accent-green);
	padding: 20px 30px;
	margin: 30px 0;
	font-style: italic;
	font-size: 1.15rem;
}

/* Post Tags */
.post-tags {
	padding: 30px 0;
	border-top: 1px solid #dee2e6;
	border-bottom: 1px solid #dee2e6;
	margin-bottom: 40px;
}

.post-tags h4 {
	color: var(--primary-blue);
	font-size: 1.2rem;
	margin-bottom: 15px;
}

.tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag-link {
	background: #f8f9fa;
	color: #6c757d;
	padding: 6px 15px;
	border-radius: 25px;
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.tag-link:hover {
	background: var(--accent-green);
	color: white;
}

/* Post Navigation */
.post-navigation {
	margin-bottom: 60px;
}

.nav-post {
	text-align: left;
}

.nav-post.next-post {
	text-align: right;
}

.nav-label {
	display: block;
	font-size: 0.85rem;
	text-transform: uppercase;
	color: #6c757d;
	margin-bottom: 8px;
	font-weight: 600;
}

.nav-link {
	display: inline-flex;
	align-items: center;
	color: var(--primary-blue);
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: color 0.3s ease;
	gap: 8px;
}

.nav-link:hover {
	color: var(--accent-green);
}

.nav-post.next-post .nav-link {
	flex-direction: row-reverse;
}

/* Related Posts */
.related-posts {
	background: #f8f9fa;
	padding: 50px 0;
	margin-top: 60px;
	border-radius: 12px;
}

.related-posts h3 {
	text-align: center;
	color: var(--primary-blue);
	font-size: 2rem;
	margin-bottom: 40px;
}

.related-post-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.related-post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-post-image {
	position: relative;
	overflow: hidden;
}

.related-post-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
	transform: scale(1.05);
}

.related-post-content {
	padding: 25px;
}

.related-post-title {
	font-size: 1.1rem;
	margin-bottom: 12px;
}

.related-post-title a {
	color: var(--primary-blue);
	text-decoration: none;
	font-weight: 600;
}

.related-post-title a:hover {
	color: var(--accent-green);
}

.related-post-excerpt {
	color: #6c757d;
	font-size: 0.95rem;
	margin-bottom: 15px;
	line-height: 1.6;
}

.related-post-link {
	color: var(--accent-green);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: color 0.3s ease;
}

.related-post-link:hover {
	color: var(--primary-blue);
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.blog-post-header {
		padding: 30px 0 40px;
	}

	.blog-post-title {
		font-size: 1.8rem;
		margin: 20px 0 15px;
	}

	.post-meta-header {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}

	.author-details {
		flex-direction: column;
		gap: 8px;
	}

	.blog-post-featured-image {
		margin-bottom: 40px;
	}

	.blog-post-content {
		padding: 30px 0 60px;
	}

	.post-content-body {
		font-size: 1rem;
	}

	.post-content-body h2 {
		font-size: 1.5rem;
	}

	.post-content-body h3 {
		font-size: 1.3rem;
	}

	.post-navigation {
		margin-bottom: 40px;
	}

	.nav-post {
		margin-bottom: 20px;
	}

	.nav-post.next-post {
		text-align: left;
	}

	.nav-post.next-post .nav-link {
		flex-direction: row;
	}

	.related-posts {
		padding: 30px 0;
		margin-top: 40px;
	}

	.related-posts h3 {
		font-size: 1.5rem;
		margin-bottom: 30px;
	}

	.related-post-image img {
		height: 180px;
	}

	.related-post-content {
		padding: 20px;
	}
}