* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Roboto", sans-serif;
	font-weight: 300;
	line-height: 1.6;
	color: #333;
}

/* Typography Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

h1 {
	font-size: 3rem;
	margin-bottom: 2.5rem;
	text-align: center;
}

h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	text-align: center;
	color: #12649e;
	font-weight: 500;
}

h3 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

h4 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

h5 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

h6 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.text-center {
	text-align: center;
}

/* Navigation Header Styles */
.nav-light-header {
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.35) 0%,
		rgba(0, 0, 0, 0.25) 40%,
		rgba(0, 0, 0, 0) 100%
	);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-light-header.scrolled {
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-light-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100px;
}

.nav-light-logo {
	z-index: 1002;
	position: relative;
	display: flex;
	align-items: center;
}

.nav-light-logo img {
	height: 75px;
	width: auto;
}

.nav-light-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	cursor: pointer;
	padding: 0.75rem;
	background: none;
	border: none;
	z-index: 1002;
	position: relative;
	width: 44px;
	height: 44px;
}

.nav-light-hamburger {
	width: 24px;
	height: 2px;
	background: #ffffff;
	margin: 0;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	border-radius: 2px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nav-light-header.scrolled .nav-light-hamburger {
	background: #1a1a1a;
	box-shadow: none;
}

.nav-light-hamburger:nth-child(1) {
	top: 14px;
}

.nav-light-hamburger:nth-child(2) {
	top: 21px;
}

.nav-light-hamburger:nth-child(3) {
	top: 28px;
}

.nav-light-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

.nav-light-item {
	margin: 0 0.25rem;
}

.nav-light-link {
	color: #fff;
	text-decoration: none;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	padding: 0.75rem 1.5rem;
	display: flex;
	font-weight: 400;
	font-size: 0.95rem;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	border-radius: 0;
	position: relative;
	letter-spacing: 0.02em;
}

.nav-light-link::after {
	content: "";
	position: absolute;
	bottom: 8px;
	left: 1.5rem;
	width: 0;
	height: 2px;
	background: #12649e;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-light-header.scrolled .nav-light-link {
	color: #1a1a1a;
	text-shadow: none;
}

.nav-light-link:hover {
	color: #fff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	background: transparent;
	transform: translateY(-1px);
}

.nav-light-link:hover::after {
	width: calc(100% - 3rem);
}

.nav-light-link.active {
	color: #fff;
	background: transparent;
	font-weight: 500;
}

.nav-light-link.active::after {
	width: calc(100% - 3rem);
}

.nav-light-header.scrolled .nav-light-link:hover,
.nav-light-header.scrolled .nav-light-link.active {
	color: #1a1a1a;
}

/* Mobile Styles */
@media (max-width: 768px) {
	.nav-light-container {
		padding: 1rem 1.5rem;
		position: relative;
		background: rgba(255, 255, 255, 0);
		backdrop-filter: blur(0px);
		-webkit-backdrop-filter: blur(0px);
		border-bottom: 0px solid rgba(0, 0, 0, 0);
		box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	}

	.nav-light-logo {
		padding: 0.75rem 0;
	}

	.nav-light-logo img {
		height: 70px;
		width: auto;
	}

	.nav-light-toggle {
		display: flex;
		margin-left: auto;
	}

	.nav-light-menu {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100vw;
		height: 100vh;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(30px);
		-webkit-backdrop-filter: blur(30px);
		display: flex;
		flex-direction: column;
		align-items: center;
		transition: left 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
		overflow: hidden;
	}

	.nav-light-menu-scroll {
		width: 100%;
		height: calc(100vh - 85px);
		padding: 0.5rem 0;
		margin-top: 2rem;
		overflow-y: auto;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.nav-light-menu-scroll::-webkit-scrollbar {
		display: none;
	}

	.nav-light-menu.active {
		left: 0;
	}

	.nav-light-item {
		margin: 0;
		width: 100%;
		opacity: 0;
		transform: translateY(30px);
		transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	}

	.nav-light-menu.active .nav-light-item {
		opacity: 1;
		transform: translateY(0);
	}

	.nav-light-menu.active .nav-light-item:nth-child(1) {
		transition-delay: 0.1s;
	}
	.nav-light-menu.active .nav-light-item:nth-child(2) {
		transition-delay: 0.2s;
	}
	.nav-light-menu.active .nav-light-item:nth-child(3) {
		transition-delay: 0.3s;
	}
	.nav-light-menu.active .nav-light-item:nth-child(4) {
		transition-delay: 0.4s;
	}
	.nav-light-menu.active .nav-light-item:nth-child(5) {
		transition-delay: 0.5s;
	}

	.nav-light-link {
		font-size: 1.1rem;
		padding: 1rem 1.5rem;
		border-radius: 0;
		width: 100%;
		text-align: left;
		font-weight: 400;
		color: #1a1a1a;
		text-shadow: none;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.nav-light-link:active {
		opacity: 0.7;
	}

	.nav-light-link::after {
		display: none;
	}

	.nav-light-link:hover,
	.nav-light-link.active {
		color: #12649e;
		text-shadow: none;
	}

	.dropdown .nav-light-link {
		padding-right: 1rem;
	}

	.dropdown-arrow {
		margin-left: 0.5rem;
		fill: inherit;
		transition: transform 0.3s ease;
		display: inline-flex;
		align-items: center;
		vertical-align: middle;
	}

	.dropdown-menu {
		background: rgba(0, 0, 0, 0.02);
		width: 100%;
		display: none;
		padding: 0.5rem 0;
	}

	.dropdown.active .dropdown-menu {
		display: block;
	}

	.dropdown-menu li {
		list-style: none;
	}

	.dropdown-menu a {
		color: #1a1a1a;
		text-decoration: none;
		padding: 0.75rem 2.5rem;
		display: block;
		font-size: 1rem;
		transition: all 0.3s ease;
	}

	.dropdown-menu a:hover,
	.dropdown-menu a:active {
		color: #12649e;
	}

	.dropdown:hover .dropdown-arrow {
		transform: rotate(0deg);
	}

	/* Mobile Menu Animation */
	.nav-light-toggle.active .nav-light-hamburger:nth-child(1) {
		transform: translateX(-50%) rotate(45deg);
		top: 21px;
		background: #1a1a1a;
	}

	.nav-light-toggle.active .nav-light-hamburger:nth-child(2) {
		opacity: 0;
		transform: translateX(-50%) scale(0);
	}

	.nav-light-toggle.active .nav-light-hamburger:nth-child(3) {
		transform: translateX(-50%) rotate(-45deg);
		top: 21px;
		background: #1a1a1a;
	}
}

/* Tablet and Desktop Styles */
@media (min-width: 769px) {
	.nav-light-container {
		height: 95px;
		padding: 0 3rem;
	}

	.nav-light-logo {
		font-size: 1.8rem;
	}

	.nav-light-menu {
		display: flex;
		flex-direction: row;
		position: static;
		width: auto;
		height: auto;
		background: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.nav-light-menu-scroll {
		width: auto;
		height: auto;
		padding: 0;
		overflow: visible;
		display: flex;
		flex-direction: row;
		align-items: center;
	}

	.nav-light-item {
		margin: 0 0.125rem;
		opacity: 1;
		transform: none;
	}

	.nav-light-link {
		padding: 0.5rem 1.75rem;
		font-size: 0.95rem;
	}
}

@media (min-width: 1200px) {
	.nav-light-container {
		padding: 0 4rem;
	}

	.nav-light-item {
		margin: 0 0.25rem;
	}

	.nav-light-link {
		padding: 0.6rem 1.25rem;
		font-size: rem;
	}
}

/* Carousel Styles */
.carousel-light-container {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.carousel-light-wrapper {
	display: flex;
	width: 500%;
	height: 100%;
	transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carousel-light-slide {
	width: 20%;
	height: 100%;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.carousel-light-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	padding: 3rem 2rem 2rem;
	color: white;
}

.carousel-light-title {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 2rem;
	margin-bottom: 0.5rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-light-description {
	font-family: "Roboto", sans-serif;
	font-weight: 300;
	font-size: 1.1rem;
	opacity: 0.9;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
	margin-bottom: 1.5rem;
}

.carousel-light-cta {
	display: inline-block;
	background: #12649e;
	color: white;
	text-decoration: none;
	padding: 0.75rem 2rem;
	border-radius: 0.25rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(18, 100, 158, 0.3);
	text-shadow: none;
}

.carousel-light-cta:hover {
	background: #0f5085;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(18, 100, 158, 0.4);
	color: white;
	text-decoration: none;
}

.carousel-light-cta:active {
	transform: translateY(0);
	box-shadow: 0 2px 10px rgba(18, 100, 158, 0.3);
}

.carousel-light-indicators {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.carousel-light-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.carousel-light-dot.active {
	background: #12649e;
	border-color: rgba(255, 255, 255, 0.8);
}

.carousel-light-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: #1a1a1a;
	z-index: 10;
}

.carousel-light-nav:hover {
	background: #12649e;
	color: white;
	transform: translateY(-50%) scale(1.1);
}

.carousel-light-prev {
	left: 20px;
}

.carousel-light-next {
	right: 20px;
}

@media (max-width: 768px) {
	.carousel-light-container {
		height: 100vh;
	}

	.carousel-light-title {
		font-size: 1.5rem;
	}

	.carousel-light-description {
		font-size: 1rem;
	}

	.carousel-light-cta {
		padding: 0.6rem 1.5rem;
		font-size: 0.85rem;
	}

	.carousel-light-overlay {
		padding: 2rem 1.5rem 4rem;
	}

	.carousel-light-nav {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.carousel-light-prev {
		left: 15px;
	}

	.carousel-light-next {
		right: 15px;
	}
}

/* Dropdown Menu Styles */
.dropdown {
	position: relative;
}

.dropdown-arrow {
	margin-left: 0.5rem;
	display: flex;
	transition: transform 0.4s ease;
	fill: currentColor;
	color: inherit;
}

@media (min-width: 769px) {
	.dropdown:hover .dropdown-arrow {
		transform: rotate(-180deg);
	}
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	min-width: 200px;
	list-style: none;
	padding: 0.5rem 0;
	border-radius: 0.125rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1001;
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(8px);
}

.dropdown-menu li {
	padding: 0;
	margin: 0;
}

.dropdown-menu a {
	display: block;
	padding: 0.75rem 1.5rem;
	color: #333;
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.2s ease;
}

.dropdown-menu a:hover {
	background-color: rgba(18, 100, 158, 0.1);
	color: #12649e;
}

@media (max-width: 768px) {
	/* Mobile Navigation Menu */
	.nav-light-menu {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		flex-direction: column;
		justify-content: flex-start;
		gap: 2rem;
		padding: 120px 2rem 2rem;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-100%);
		transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
		z-index: 1001;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		max-height: 100vh;
	}

	.nav-light-menu.active {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	/* Dropdown Styles */
	.dropdown-arrow {
		font-size: 1.2em;
		margin-left: 4px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		fill: currentColor;
		color: inherit;
	}

	.dropdown.active .dropdown-arrow {
		transform: rotate(-180deg);
	}

	.dropdown-menu {
		position: static;
		background: transparent;
		box-shadow: none;
		opacity: 0;
		visibility: hidden;
		max-height: 0;
		transform: none;
		padding-left: 1.5rem;
		transition: all 0.3s ease;
		overflow: hidden;
	}

	.dropdown.active .dropdown-menu {
		opacity: 1;
		visibility: visible;
		max-height: 500px;
		margin-top: 0.5rem;
	}

	.dropdown:hover .dropdown-menu {
		transform: none;
	}

	.dropdown-menu a {
		padding: 0.5rem 1rem;
		font-size: 1rem;
		color: #666;
	}
}

/* Main Header Styles */
.main-light-header-bg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #ffffff;
	padding: 16rem 2rem 4rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.main-light-header-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.25) 0%,
		rgba(0, 0, 0, 0.35) 100%
	);
	pointer-events: none;
	z-index: 1;
}

.main-light-header {
	margin: 1rem auto 0;
	max-width: 1200px;
	padding: 2rem;
	text-align: center;
	animation: fadeInUp 0.5s ease-out 0.1s forwards;
}

.main-light-title {
	font-size: 3rem;
	color: #12649e;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.main-light-subtitle {
	font-size: clamp(1rem, 3vw, 1.25rem);
	font-weight: 300;
	text-align: center;
}

@media (max-width: 768px) {
	.main-light-header {
		padding: 2rem 1.5rem 3rem;
	}
}

/* Available Homes Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Available Homes Section Styles */
.properties-light-section {
	padding-bottom: 5rem;
	background: #f8f9fa;
	opacity: 0;
	animation: fadeIn 0.4s ease-out 0.1s forwards;
}

.properties-light-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Property Region Sections */
.property-region-section {
	margin-bottom: 4rem;
}

.property-region-section:last-child {
	margin-bottom: 0;
}

.property-region-header {
	text-align: left;
	font-size: 1.125rem;
	font-weight: 600;
	color: #333333;
	margin-bottom: 2rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #dee2e6;
	position: relative;
	opacity: 0;
	animation: fadeInUp 0.5s ease-out 0.1s forwards;
}

.properties-light-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 357px));
	gap: 2rem;
	margin-top: 2rem;
	justify-content: start;
}

.property-light-card {
	background: #ffffff;
	border-radius: 0.125rem;
	overflow: hidden;
	box-shadow: 0 0 4px 3px rgba(0, 0, 0, 0.03);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	width: 100%;
	max-width: 359px;
	opacity: 0;
	animation: fadeInUp 0.5s ease-out 0.2s forwards;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.property-light-card:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.property-light-image-wrapper {
	position: relative;
	padding-top: 66.67%;
	overflow: hidden;
}

.property-light-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.property-light-card:hover .property-light-image {
	transform: scale(1.07);
}

.property-light-status-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: 0.25rem 0.5rem;
	border-radius: 0.125rem;
	font-weight: 500;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 2;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.property-light-status-badge.available {
	background: rgba(46, 125, 50, 0.9);
	color: #ffffff;
}

.property-light-status-badge.sold {
	background: rgba(198, 40, 40, 0.9);
	color: #ffffff;
}

.property-light-content {
	padding: 1.75rem;
	position: relative;
	opacity: 0;
	animation: fadeInUp 0.4s ease-out 0.3s forwards;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.property-light-price {
	font-size: 1.5rem;
	font-weight: 500;
	color: #12649e;
	margin-bottom: 0.5rem;
	opacity: 0;
	animation: fadeIn 0.3s ease-out 0.4s forwards;
}

.property-light-title {
	font-size: 1.35rem;
	font-weight: 500;
	color: #1a1a1a;
	margin-bottom: 0.75rem;
	line-height: 1.3;
	opacity: 0;
	animation: fadeIn 0.3s ease-out 0.45s forwards;
}

.property-light-location {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 1rem;
	opacity: 0;
	animation: fadeIn 0.3s ease-out 0.5s forwards;
}

.property-light-location i {
	font-size: 1.1rem;
	color: #888;
}

.property-light-features {
	display: flex;
	gap: 1.25rem;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #eee;
	opacity: 0;
	animation: fadeIn 0.3s ease-out 0.55s forwards;
}

.property-light-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.property-light-feature i {
	color: #12649e;
	font-size: 1.1rem;
}

.property-light-feature-text {
	font-size: 0.9rem;
	color: #666;
	font-weight: 500;
}

.property-light-description {
	font-size: 1rem;
	color: #555;
	line-height: 1.6;
	opacity: 0;
	margin-bottom: 1.5rem;
	animation: fadeIn 0.3s ease-out 0.6s forwards;
}

.property-light-button {
	background-color: #12649e;
	color: #ffffff;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 0.125rem;
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	text-decoration: none;
	opacity: 0;
	animation: fadeIn 0.3s ease-out 0.65s forwards;
	margin-top: auto;
}

.property-light-button:hover {
	background-color: #0d4d7a;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(18, 100, 158, 0.3);
}

.property-light-button i {
	font-size: 1rem;
	transition: transform 0.3s ease;
}

.property-light-button:hover i {
	transform: translateX(2px);
}

.property-light-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.property-light-link:hover {
	color: inherit;
}

/* Respect user preferences for reduced motion */
@media (prefers-reduced-motion: reduce) {
	.properties-light-section,
	.property-light-card,
	.property-light-content,
	.property-light-price,
	.property-light-title,
	.property-light-location,
	.property-light-features,
	.property-light-description,
	.property-region-header {
		animation: none;
		opacity: 1;
		transform: none;
	}
}

/* Medium screens - better card layout for tablets */
@media screen and (max-width: 1024px) {
	.properties-light-grid {
		justify-content: center;
		gap: 1.5rem;
	}

	.property-region-header {
		font-size: 1.75rem;
	}
}

@media screen and (max-width: 768px) {
	.property-region-section {
		margin-bottom: 3rem;
	}

	.property-region-header {
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
		text-align: center;
	}

	.properties-light-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 1.5rem;
		justify-content: center;
	}

	.property-light-card {
		margin-bottom: 1.5rem;
		max-width: 100%;
		/* Optimize animations for mobile performance */
		animation-duration: 0.4s;
	}

	.property-light-content,
	.property-light-price,
	.property-light-title,
	.property-light-location,
	.property-light-features,
	.property-light-description {
		animation-duration: 0.3s;
	}

	/* Reduce animation delays on mobile for faster loading feel */
	.properties-light-section {
		animation-delay: 0.05s;
	}

	.property-light-card {
		animation-delay: 0.15s;
	}

	.property-light-content {
		animation-delay: 0.2s;
	}

	.property-light-price {
		animation-delay: 0.25s;
	}

	.property-light-title {
		animation-delay: 0.3s;
	}

	.property-light-location {
		animation-delay: 0.35s;
	}

	.property-light-features {
		animation-delay: 0.4s;
		flex-direction: column;
		gap: 0.75rem;
	}

	.property-light-description {
		animation-delay: 0.45s;
	}

	.property-light-button {
		animation-delay: 0.5s;
	}

	.property-light-price {
		font-size: 1.5rem;
	}
}

/* Projects Section Styles */
.projects-light-section {
	padding: 80px 0;
	background: #f8f9fa;
}

.projects-light-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.projects-light-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.project-light-card {
	background: #ffffff;
	border-radius: 0.125rem;
	overflow: hidden;
	box-shadow: 0 0 4px 3px rgba(0, 0, 0, 0.03);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	max-width: 359px;
}

.project-light-card:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.project-light-image-wrapper {
	position: relative;
	padding-top: 66.67%; /* 3:2 aspect ratio */
	overflow: hidden;
}

.project-light-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-light-card:hover .project-light-image {
	transform: scale(1.07);
}

.project-light-status-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: 0.25rem 0.5rem;
	border-radius: 0.125rem;
	font-weight: 500;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 2;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.project-light-status-badge.available {
	background: rgba(46, 125, 50, 0.9);
	color: #ffffff;
}

.project-light-status-badge.sold {
	background: rgba(198, 40, 40, 0.9);
	color: #ffffff;
}

.project-light-content {
	padding: 1.75rem;
	position: relative;
}

.project-light-title {
	font-size: 1.5rem;
	font-weight: 500;
	color: #1a1a1a;
	margin-bottom: 0.75rem;
	line-height: 1.3;
}

.project-light-location {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.project-light-location i {
	font-size: 1.1rem;
	color: #888;
}

.project-light-description {
	font-size: 1rem;
	color: #555;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.project-light-features {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #eee;
}

.project-light-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.project-light-feature i {
	color: #1a73e8;
	font-size: 1.25rem;
}

.project-light-feature-text {
	font-size: 0.9rem;
	color: #666;
}

.project-light-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.project-light-link {
	text-decoration: none;
}

.project-light-link:hover {
	color: #12649e;
}

.project-light-link i {
	font-size: 1.1rem;
	transition: transform 0.3s ease;
}

/* Projects Section Responsive Styles */
@media screen and (max-width: 768px) {
    .projects-light-grid {
    	display: grid;
    	grid-template-columns: repeat(1, 1fr);
    	gap: 2rem;
    	margin-top: 3rem;
    }
	.projects-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 1.5rem;
	}

	.project-light-card {
		margin-bottom: 1.5rem;
	}

	.project-light-image {
		height: 200px;
	}
}

/* Testimonials Section Styles */
.testimonials-section {
	padding: 80px 0;
	background: #fff;
}

.testimonials-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.testimonial-card {
	background: #ffffff;
	border-radius: 0.125rem;
	padding: 2rem;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
}

.testimonial-stars {
	color: #ffd700;
	margin-bottom: 1rem;
	display: flex;
	gap: 0.25rem;
}

.testimonial-content {
	font-size: 1rem;
	line-height: 1.6;
	color: #4a4a4a;
	margin-bottom: 1.5rem;
	font-style: italic;
}

.testimonial-author {
	font-weight: 500;
	color: #2a2a2a;
	font-size: 0.9rem;
	margin-top: 1rem;
	display: block;
	text-align: right;
}

.testimonial-source {
	color: #666;
	font-size: 0.8rem;
	font-style: italic;
}

/* Testimonials Responsive Styles */
@media screen and (max-width: 768px) {
	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.testimonial-card {
		padding: 1.5rem;
	}
}

.about-light-section {
	padding: 5rem 0;
	position: relative;
}

.about-light-section-blue {
	padding: 5rem 0;
	background-color: #dce8f1;
	position: relative;
}

.about-light-section .grid-container,
.about-light-section-blue .grid-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* .about-light-section h4 {
	color: #12649e;
	font-size: 2.5rem;
	margin-bottom: 2rem;
	text-align: center;
	font-weight: 500;
} */

.divider {
	width: 80px;
	height: 2px;
	background-color: #12649e;
	margin: 0 auto 3rem;
	border: none;
}

.about-light-section p,
.about-light-section-blue p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #12649e;
	max-width: 900px;
	margin: 0 auto;
	text-align: justify;
}

@media (max-width: 768px) {
	.about-light-section,
	.about-light-section-blue {
		padding: 3rem 0;
	}

	.about-light-section h4,
	.about-light-section-blue h4 {
		font-size: 2rem;
	}

	.about-light-section p,
	.about-light-section-blue p {
		font-size: 1rem;
		line-height: 1.6;
		padding: 0 1rem;
	}
}

.page-footer {
	background-color: #f8f9fa;
	color: #333;
	padding: 1.5rem 0 0.75rem;
	position: relative;
	border-top: 1px solid #e9ecef;
}

.footer-light-container {
	width: 100%;
	padding: 0 1rem;
	margin: 0 auto;
}

.footer-light-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

.footer-light-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.footer-light-logo {
	margin-bottom: 0.75rem;
}

.footer-light-logo img {
	max-width: 120px;
	height: auto;
}

.footer-light-contact {
	margin-bottom: 0.5rem;
}

.footer-light-contact-item {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.5rem;
	color: #495057;
	text-decoration: none;
	transition: color 0.2s ease;
	font-size: 0.9rem;
}

.footer-light-contact-item:hover {
	color: #12649e;
}

.footer-light-contact-item i {
	margin-right: 0.5rem;
	color: #12649e;
	font-size: 1.1rem;
}

.footer-light-social {
	display: flex;
	gap: 0.75rem;
	margin: 0.5rem 0;
	justify-content: center;
}

.footer-light-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background-color: #12649e;
	border-radius: 50%;
	transition: all 0.2s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.footer-light-social a:hover {
	transform: translateY(-2px);
}

.footer-light-social img {
	width: 16px;
	height: 16px;
	transition: filter 0.2s ease;
}

.footer-light-hours {
	color: #495057;
	line-height: 1.4;
	margin-bottom: 0.75rem;
}

.footer-light-hours h4 {
	color: #12649e;
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
	font-weight: 500;
}

.footer-light-hours p {
	font-size: 0.85rem;
	margin: 0;
}

.footer-light-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	text-align: center;
	padding-top: 1rem;
	border-top: 1px solid #e9ecef;
}

.footer-light-copyright {
	color: #6c757d;
	font-size: 0.875rem;
}

.footer-light-links {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
}

.footer-light-links a {
	color: #6c757d;
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.2s ease;
}

.footer-light-links a:hover {
	color: #12649e;
}

/* Contact Form Light Styles */
.form-light-section {
	display: none;
	padding: 5rem 0;
	background-color: #ffffff;
}

.form-light-title {
	color: #12649e;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	text-align: center;
	font-weight: 500;
}

.form-light {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 1rem;
}

.form-light-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 2rem;
}

.form-light-field {
	display: flex;
	flex-direction: column;
}

.form-light-label {
	color: #495057;
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
	font-weight: 500;
}

.form-light-input,
.form-light-textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #e9ecef;
	border-radius: 0.125rem;
	font-size: 1rem;
	color: #495057;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	background-color: #fff;
	font-family: "Roboto", sans-serif;
}

.form-light-input:focus,
.form-light-textarea:focus {
	outline: none;
	border-color: #12649e;
	box-shadow: 0 0 0 3px rgba(18, 100, 158, 0.1);
}

/* Required field indicator */
.form-light-label[for*="form-contact-name"]::after,
.form-light-label[for*="form-contact-email"]::after,
.form-light-label[for*="form-contact-message"]::after,
.form-light-required-field::after {
	content: "*";
	color: #dc3545;
	margin-left: 4px;
}

/* Form validation states */
.form-light-input.error,
.form-light-textarea.error,
.form-light-input.form-error,
.form-light-textarea.form-error {
	border-color: #dc3545;
	background-color: #fff8f8;
	animation: input-shake 0.2s ease-in-out 0s 2;
}

.form-light-input.error:focus,
.form-light-textarea.error:focus,
.form-light-input.form-error:focus,
.form-light-textarea.form-error:focus {
	border-color: #dc3545;
	box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Success state */
.form-light-input.valid,
.form-light-textarea.valid,
.form-light-input.form-valid,
.form-light-textarea.form-valid {
	border-color: #28a745;
	background-color: #f8fff9;
}

.form-light-input.valid:focus,
.form-light-textarea.valid:focus,
.form-light-input.form-valid:focus,
.form-light-textarea.form-valid:focus {
	border-color: #28a745;
	box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* Input shake animation for errors */
@keyframes input-shake {
	0%,
	100% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(-5px);
	}
	75% {
		transform: translateX(5px);
	}
}

/* Style for the built-in validation messages */
.form-validation-message,
.form-error-message {
	display: block;
	font-size: 0.85rem;
	margin-top: 0.5rem;
	color: #dc3545;
	font-weight: 400;
}

.form-light-textarea {
	height: 150px;
	resize: vertical;
}

.form-light-message {
	margin-bottom: 2rem;
}

.form-light-button {
	background-color: #12649e;
	color: #fff;
	padding: 1rem 2.5rem;
	border: none;
	border-radius: 0.125rem;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
	display: block;
	margin: 0 auto;
}

.form-light-button:hover {
	background-color: #0d4d7a;
	transform: translateY(-1px);
}

.form-light-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	align-items: center;
	justify-content: center;
}

.form-light-modal.active {
	display: flex;
}

.form-light-modal-inner {
	background-color: #fff;
	padding: 2rem;
	border-radius: 8px;
	position: relative;
	max-width: 400px;
	width: 90%;
	text-align: center;
}

.form-light-modal-close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	cursor: pointer;
	color: #6c757d;
}

.form-light-modal-icon {
	color: #12649e;
	font-size: 3rem;
	margin-bottom: 1rem;
}

.form-light-modal-body {
	color: #495057;
	font-size: 1.1rem;
}

@media (max-width: 768px) {
	.form-light-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.form-light-section {
		display: block;
		padding: 3rem 0;
	}

	.form-light-title {
		font-size: 2rem;
		margin-bottom: 2rem;
	}
}

/* Tablet and up */
@media (min-width: 768px) {
	.page-footer {
		padding: 2rem 0 1rem;
	}

	.footer-light-container {
		max-width: 720px;
		padding: 0 1.5rem;
	}

	.footer-light-content {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
		align-items: center;
	}

	.footer-light-section {
		align-items: flex-start;
		text-align: left;
	}

	.footer-brand {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 1rem;
	}

	.footer-brand .footer-light-logo {
		margin-bottom: 0;
	}

	.footer-brand .footer-light-contact {
		margin-bottom: 0;
	}

	.footer-brand .footer-light-logo img {
		max-width: 100px;
	}

	.footer-hours .footer-light-hours {
		margin-bottom: 0;
	}

	.footer-social {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.footer-social .footer-light-social {
		justify-content: flex-end;
		margin: 0;
	}

	.footer-light-bottom {
		flex-direction: row;
		justify-content: space-between;
		padding-top: 1rem;
		margin-top: 1rem;
	}
}

/* Desktop and up */
@media (min-width: 1024px) {
	.footer-light-container {
		max-width: 960px;
		padding: 0 2rem;
	}

	.footer-light-content {
		margin-bottom: 1.5rem;
	}

	.footer-brand .footer-light-logo img {
		max-width: 120px;
	}
}

/* Large Desktop */
@media (min-width: 1200px) {
	.footer-light-container {
		max-width: 1200px;
	}
}

#ui-to-top {
	display: none;
}

/* Mobile Call Now Button */
.mobile-cta-light-container {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
}

.mobile-cta-light-button {
	display: flex;
	align-items: center;
	background-color: #12649e;
	color: #ffffff;
	text-decoration: none;
	padding: 12px 20px;
	border-radius: 50px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	animation: mobile-cta-light-pulse 2s infinite;
}

.mobile-cta-light-button:hover {
	background-color: #0d4d7a;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(18, 100, 158, 0.4);
	color: #ffffff;
	text-decoration: none;
}

.mobile-cta-light-button .material-icons {
	font-size: 20px;
	margin-right: 8px;
	transition: transform 0.3s ease;
}

.mobile-cta-light-button:hover .material-icons {
	transform: scale(1.1);
}

@keyframes mobile-cta-light-pulse {
	0%,
	100% {
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(18, 100, 158, 0.7);
	}
	50% {
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 0 8px rgba(18, 100, 158, 0);
	}
}

/* Show mobile CTA button only on mobile devices */
@media (max-width: 768px) {
	.mobile-cta-light-container {
		display: block;
	}
}

.ig-light-container {
	background: #fafafa;
	color: #333;
	line-height: 1.6;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.ig-light-title {
	text-align: center;
	font-size: 2rem;
	font-weight: 300;
	margin-bottom: 40px;
	color: #2c2c2c;
}

.ig-light-gallery-section {
	position: relative;
	margin-bottom: 40px;
}

.ig-light-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.ig-light-gallery-item {
	aspect-ratio: 1;
	cursor: pointer;
	overflow: hidden;
	transition: opacity 0.2s ease;
}

.ig-light-gallery-item:hover {
	opacity: 0.8;
}

.ig-light-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ig-light-navigation {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	pointer-events: none;
}

.ig-light-nav-btn {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid #ddd;
	color: #666;
	padding: 12px 16px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 16px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	pointer-events: auto;
}

.ig-light-nav-btn:hover:not(:disabled) {
	background: white;
	border-color: #999;
	color: #333;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ig-light-nav-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.ig-light-page-info {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	color: #666;
	font-size: 14px;
	text-align: center;
}

.ig-light-modal {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

.ig-light-modal.ig-light-active {
	display: flex;
}

.ig-light-modal-content {
	position: relative;
	max-width: 80vw;
	max-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ig-light-modal-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
	border-radius: 4px;
}

.ig-light-modal-close {
	position: fixed;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #666;
	font-size: 18px;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	transition: all 0.2s ease;
	z-index: 1001;
}

.ig-light-modal-close:hover {
	background: white;
	color: #333;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.ig-light-modal-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #666;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ig-light-modal-nav:hover {
	background: white;
	color: #333;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.ig-light-modal-prev {
	left: -70px;
}

.ig-light-modal-next {
	right: -70px;
}

.ig-light-modal-counter {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 14px;
	background: rgba(0, 0, 0, 0.7);
	padding: 0.5rem 1rem;
	border-radius: 12px;
}

@media (max-width: 768px) {
	.ig-light-container {
		padding: 20px 15px;
	}

	.ig-light-title {
		font-size: 1.5rem;
		margin-bottom: 30px;
	}

	.ig-light-gallery-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.ig-light-gallery-item {
		aspect-ratio: 4/3;
		margin-bottom: 20px;
	}

	.ig-light-nav-btn {
		width: 45px;
		height: 45px;
		font-size: 16px;
		background: rgba(255, 255, 255, 0.95);
		border: 2px solid #ddd;
	}

	.ig-light-page-info {
		bottom: -40px;
		font-size: 16px;
		font-weight: 500;
		color: #333;
	}

	.ig-light-modal-prev {
		left: 10px;
		top: 50%;
		transform: translateY(-50%);
		width: 40px;
		height: 40px;
		font-size: 14px;
	}

	.ig-light-modal-next {
		right: 10px;
		top: 50%;
		transform: translateY(-50%);
		width: 40px;
		height: 40px;
		font-size: 14px;
	}

	.ig-light-modal-close {
		top: 15px;
		right: 15px;
		width: 35px;
		height: 35px;
		font-size: 16px;
	}

	.ig-light-modal-counter {
		bottom: 10px;
		position: fixed;
		left: 50%;
	}
}

@media (max-width: 480px) {
	.ig-light-gallery-grid {
		grid-template-columns: 1fr;
	}

	.ig-light-nav-btn {
		width: 35px;
		height: 35px;
		font-size: 12px;
	}
}

.contact-popup-light-wrapper {
	position: fixed;
	bottom: 20px;
	right: -350px; /* Initially hidden off-screen */
	width: 340px;
	max-height: 541px;
	background: #ffffff;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
	z-index: 9999;
	transition: right 0.3s ease-in-out;
	border-radius: 0.25rem;
	overflow: hidden;
	border: 1px solid #e0e0e0;
}

.contact-popup-light-wrapper.popup-visible {
	right: 20px;
}

.contact-popup-light-header {
	background: #12649e;
	color: white;
	padding: 15px 20px;
	position: relative;
}

.contact-popup-light-close {
	position: absolute;
	top: 12px;
	right: 15px;
	width: 24px;
	height: 24px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: white;
	transition: background-color 0.3s ease;
}

.contact-popup-light-close:hover {
	background: rgba(255, 255, 255, 0.3);
}

.contact-popup-light-title {
	color: white;
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	padding-right: 30px;
}

.contact-popup-light-subtitle {
	color: rgba(255, 255, 255, 0.8);
	font-size: 12px;
	margin: 2px 0 0 0;
	font-weight: 400;
}

.contact-popup-light-content {
	padding: 1rem;
	max-height: 488px;
	overflow-y: auto;
}

.contact-popup-light-form {
	position: relative;
}

.contact-popup-light-field {
	position: relative;
	margin-bottom: 15px;
}

.contact-popup-light-label {
	display: block;
	color: #555;
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 5px;
}

.contact-popup-light-input,
.contact-popup-light-textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 0.25rem;
	font-size: 14px;
	font-family: inherit;
	background: #f8f9fa;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.contact-popup-light-input:focus,
.contact-popup-light-textarea:focus {
	outline: none;
	border-color: #002766;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(2, 125, 251, 0.1);
}

.contact-popup-light-textarea {
	min-height: 60px;
	resize: none;
	font-family: inherit;
	border-radius: 0.25rem;
}

.contact-popup-light-button {
	width: 100%;
	background: #12649e;
	color: white;
	border: none;
	padding: 12px;
	border-radius: 0.25rem;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 5px;
}

.contact-popup-light-button:hover {
	background: #0f5085;
	transform: translateY(-1px);
}

.contact-popup-light-success-modal {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	border-radius: 0.25rem;
}

.contact-popup-light-success-modal.active {
	opacity: 1;
	visibility: visible;
}

.contact-popup-light-success-content {
	text-align: center;
	padding: 20px;
}

.contact-popup-light-success-icon {
	font-size: 32px;
	color: #28a745;
	margin-bottom: 10px;
}

.contact-popup-light-success-message {
	color: #333;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
}

/* Chat widget trigger button */
.chat-light-trigger-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 120px;
	height: 50px;
	background: #12649e;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(2, 125, 251, 0.3);
	z-index: 9998;
	transition: all 0.3s ease;
	color: white;
	font-size: 14px;
	font-weight: 600;
	padding: 0 15px;
}

.chat-light-trigger-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 25px rgba(2, 125, 251, 0.4);
}

.chat-light-trigger-btn.hidden {
	opacity: 0;
	visibility: hidden;
	transform: scale(0.8);
}

/* Hide on mobile devices */
@media (max-width: 768px) {
	.contact-popup-light-wrapper,
	.chat-light-trigger-btn {
		display: none !important;
	}
}

/* Adjust positioning on smaller screens */
@media (max-width: 1200px) {
	.contact-popup-light-wrapper {
		width: 300px;
		right: -320px;
	}

	.contact-popup-light-wrapper.popup-visible {
		right: 15px;
	}

	.contact-popup-light-content {
		padding: 15px;
	}

	.chat-light-trigger-btn {
		right: 15px;
		bottom: 15px;
		width: 110px;
		height: 45px;
		font-size: 13px;
	}
}

/* Smooth scrollbar for webkit browsers */
.contact-popup-light-content::-webkit-scrollbar {
	width: 4px;
}

.contact-popup-light-content::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 2px;
}

.contact-popup-light-content::-webkit-scrollbar-thumb {
	background: #002766;
	border-radius: 2px;
}

.contact-popup-light-content::-webkit-scrollbar-thumb:hover {
	background: #0f5085;
}

.contact-popup-light-input.error,
.contact-popup-light-textarea.error {
	border-color: #e74c3c;
	box-shadow: 0 0 5px rgba(231, 76, 60, 0.3);
}

.field-error {
	color: #e74c3c;
	font-size: 12px;
	margin-top: 5px;
	display: block;
}

.contact-popup-light-field {
	position: relative;
	margin-bottom: 15px;
}

.google-reviews-light {
      padding: 40px 0;
      background: #fff;
    }

    .google-reviews-light .grw-light-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }

    .google-reviews-light .grw-light-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .google-reviews-light .grw-light-title {
      font-size: 28px;
      margin: 0;
      color: #1f1f1f;
      font-weight: 700;
    }

    .google-reviews-light .grw-light-summary {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #5f6368;
      font-size: 15px;
    }

    .google-reviews-light .grw-light-stars {
      color: #fbbc04;
      display: inline-flex;
      gap: 2px;
    }

    .google-reviews-light .grw-light-stars .material-icons {
      font-size: 20px;
      line-height: 1;
    }

    .google-reviews-light .grw-light-cta {
      margin-left: auto;
    }

    .google-reviews-light .grw-light-button {
      background: #12649e;
      color: #fff;
      padding: 10px 16px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .google-reviews-light .grw-light-button:hover {
      background: #12649e;
    }

    .google-reviews-light .grw-light-viewport {
      position: relative;
      margin-top: 20px;
    }

    .google-reviews-light .grw-light-cards {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 100%;
      gap: 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 8px 0 8px;
      scroll-behavior: smooth;
      overscroll-behavior-inline: contain;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .google-reviews-light .grw-light-cards::-webkit-scrollbar {
      display: none;
    }

    @media (min-width: 768px) {
      .google-reviews-light .grw-light-cards {
        grid-auto-columns: calc(50% - 8px);
      }
    }

    @media (min-width: 1024px) {
      .google-reviews-light .grw-light-cards {
        grid-auto-columns: calc(33.333% - 10.67px);
      }
    }

    .google-reviews-light .grw-light-card {
      scroll-snap-align: start;
      background: #fff;
      border: 1px solid #e7e8ea;
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
      display: flex;
      flex-direction: column;
      min-height: 240px;
    }

    .google-reviews-light .grw-light-user {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 6px;
    }

    .google-reviews-light .grw-light-avatar {
      width: 48px;
      height: 48px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      background: linear-gradient(135deg, #12649e, #002766);
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6);
    }

    .google-reviews-light .grw-light-name {
      font-weight: 700;
      color: #202124;
    }

    .google-reviews-light .grw-light-date {
      color: #80868b;
      font-size: 12px;
    }

    .google-reviews-light .grw-light-rating {
      color: #fbbc04;
      display: inline-flex;
      gap: 2px;
      margin: 6px 0;
    }

    .google-reviews-light .grw-light-text {
      color: #3c4043;
      line-height: 1.55;
      margin: 6px 0 6px;
    }

    .google-reviews-light .grw-read-more-btn {
      background: none;
      border: none;
      color: #9aa0a6;
      cursor: pointer;
      font-size: 13px;
      font-weight: 500;
      padding: 0;
      opacity: 0.8;
      transition: opacity 0.2s ease;
    }

    .google-reviews-light .grw-read-more-btn:hover {
      opacity: 1;
      color: #5f6368;
    }

    .google-reviews-light .grw-light-footer {
      margin-top: auto;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #5f6368;
      font-size: 12px;
    }

    .google-reviews-light .grw-light-viewport::before,
    .google-reviews-light .grw-light-viewport::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 48px;
      pointer-events: none;
      display: none;
    }

    .google-reviews-light .grw-light-viewport.can-left::before {
      left: 0;
      display: block;
      background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .google-reviews-light .grw-light-viewport.can-right::after {
      right: 0;
      display: block;
      background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .google-reviews-light .grw-light-nav {
      pointer-events: none;
    }

    .google-reviews-light .grw-light-nav button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #fff;
      border: 1px solid #dadce0;
      width: 36px;
      height: 36px;
      border-radius: 999px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      pointer-events: auto;
      color: #3c4043;
      z-index: 999;
    }

    .google-reviews-light .grw-light-nav button:hover {
      background: #f8f9fa;
    }

    .google-reviews-light .grw-light-nav .prev {
      left: -18px;
    }

    .google-reviews-light .grw-light-nav .next {
      right: -18px;
    }

    .google-reviews-light .grw-light-nav button[disabled] {
      opacity: 0.4;
      cursor: default;
      pointer-events: none;
    }

    @media (max-width: 600px) {
      .google-reviews-light .grw-light-nav .prev {
        left: 4px;
      }

      .google-reviews-light .grw-light-nav .next {
        right: 4px;
      }
    }