/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	overflow: hidden;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #000000;
	color: #FFFFFF;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
	.nav-link:hover,
	.phone-btn:hover,
	.social-icon:hover,
	.action-btn:hover {
		transform: none;
	}
	
	.nav-link:active,
	.phone-btn:active {
		opacity: 0.8;
	}
}

/* Top Banner */
.top-banner {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 70px;
	background: linear-gradient(135deg, rgba(30, 60, 114, 0.85) 0%, rgba(42, 82, 152, 0.85) 100%);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	display: flex;
	align-items: center;
	padding: 0 30px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.banner-content {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.logo-text {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.logo-text img {
	display: block;
	max-width: 100%;
	height: auto;
}

.main-nav {
	display: flex;
	gap: 30px;
	align-items: center;
}

.nav-link {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	padding: 8px 16px;
	border-radius: 4px;
	transition: all 0.3s ease;
	position: relative;
}

.nav-link:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #4CAF50;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #4CAF50;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-link:hover::after {
	width: 80%;
}

.phone-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: #4CAF50;
	color: #FFFFFF;
	padding: 12px 24px;
	border-radius: 25px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	border: none;
	cursor: pointer;
}

.mobile-floorplan-btn {
	display: none;
}

.phone-btn:hover {
	background-color: #45a049;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.phone-icon {
	font-size: 18px;
}

/* Left Sidebar - Social Media (Desktop) */
.right-social-sidebar {
	position: fixed;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 999;
	padding-top: 80px;
}

.social-icon {
	width: 50px;
	height: 50px;
	background-color: #FFFFFF;
	color: #333333;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
}

.social-icon:hover {
	background-color: #4CAF50;
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.social-icon svg {
	width: 24px;
	height: 24px;
}

/* Bottom Navigation Bar (Mobile) */
.bottom-nav {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
	z-index: 10000;
	justify-content: space-around;
	align-items: center;
	padding: 0;
	pointer-events: auto;
}

.bottom-nav-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 8px;
	color: #FFFFFF;
	text-decoration: none;
	background: transparent;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 11px;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0.3px;
	pointer-events: auto;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.bottom-nav-item:first-child {
	color: #4A90E2;
}

.bottom-nav-item:first-child svg {
	stroke: #4A90E2;
	fill: #4A90E2;
}

.bottom-nav-item:nth-child(2) {
	color: #4CAF50;
}

.bottom-nav-item:nth-child(2) svg {
	stroke: #4CAF50;
	fill: #4CAF50;
}

.bottom-nav-item:last-child {
	color: #25D366;
}

.bottom-nav-item:last-child svg {
	fill: #25D366;
}

.bottom-nav-item svg {
	width: 24px;
	height: 24px;
	stroke-width: 2;
}

.bottom-nav-item span {
	font-size: 11px;
	line-height: 1;
}

.bottom-nav-item:hover,
.bottom-nav-item:active {
	opacity: 0.8;
	transform: scale(0.95);
}

/* Right Sidebar - Action Buttons */
.right-sidebar {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 999;
	padding-top: 80px;
}

.action-btn {
	width: 120px;
	padding: 15px 20px;
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	color: #FFFFFF;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	text-decoration: none;
	backdrop-filter: blur(10px);
}

.action-btn:hover {
	background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.btn-icon {
	font-size: 24px;
}

.btn-text {
	font-size: 12px;
	letter-spacing: 0.5px;
}

/* Main Content - Virtual Tour */
.main-content {
	position: fixed;
	top: 70px;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: calc(100% - 70px);
	background-color: #000000;
}

#pano {
	width: 100%;
	height: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 5px;
	z-index: 1001;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background-color: #FFFFFF;
	border-radius: 3px;
	transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.banner-content {
		max-width: 100%;
	}

	.main-nav {
		gap: 20px;
	}

	.left-sidebar,
	.right-sidebar {
		transform: scale(0.9);
	}
}

@media (max-width: 768px) {
	.top-banner {
		height: 60px;
		padding: 0 15px;
	}

	.banner-content {
		flex-wrap: nowrap;
		gap: 10px;
		position: relative;
	}

	.logo {
		flex: 0 0 auto;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}

	.logo-text {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.logo-text img {
		width: 80px !important;
		height: auto !important;
		display: block;
	}

	.mobile-menu-toggle {
		display: flex;
		order: 2;
		margin-left: auto;
	}

	.main-nav {
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
		flex-direction: column;
		padding: 20px;
		gap: 15px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 999;
		order: 3;
		width: 100%;
		justify-content: flex-start;
		align-items: flex-start;
	}

	.main-nav.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-link {
		font-size: 16px;
		padding: 12px 20px;
		width: 100%;
		text-align: left;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.nav-link:last-child {
		border-bottom: none;
	}

	.banner-content {
		position: relative;
	}

	.phone-btn:not(.mobile-floorplan-btn) {
		display: none !important;
	}

	.mobile-floorplan-btn {
		display: flex !important;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		padding: 8px 20px;
		font-size: 13px;
		background-color: #FFFFFF;
		color: #1e3c72;
		border-radius: 25px;
		white-space: nowrap;
		order: 0;
		margin: 0;
	}

	.phone-icon {
		display: none;
	}

	.phone-number {
		display: inline;
	}

	.right-social-sidebar {
		left: auto;
		right: 10px;
		transform: translateY(-50%) scale(0.8);
		padding-top: 60px;
		gap: 10px;
		display: flex;
	}

	.social-icon {
		width: 40px;
		height: 40px;
	}

	.social-icon svg {
		width: 20px;
		height: 20px;
	}

	.right-sidebar {
		right: 10px;
		transform: translateY(-50%) scale(0.8);
		padding-top: 60px;
		gap: 10px;
	}

	.action-btn {
		width: 100px;
		padding: 12px 15px;
		font-size: 12px;
	}

	.btn-icon {
		font-size: 20px;
	}

	.btn-text {
		font-size: 11px;
	}

	.bottom-nav {
		display: flex;
	}

	.main-content {
		top: 60px;
		bottom: 60px;
		height: calc(100% - 60px - 60px);
	}
}

@media (max-width: 480px) {
	.top-banner {
		height: 55px;
		padding: 0 10px;
	}

	.logo-text {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.logo-text img {
		width: 60px !important;
		height: auto !important;
		display: block;
	}

	.mobile-menu-toggle {
		width: 30px;
	}

	.mobile-menu-toggle span {
		width: 22px;
		height: 2.5px;
	}

	.main-nav {
		top: 55px;
		padding: 15px;
	}

	.nav-link {
		font-size: 14px;
		padding: 10px 15px;
	}

	.phone-btn {
		padding: 6px 12px;
		font-size: 12px;
	}

	.right-sidebar {
		display: none;
	}

	.right-social-sidebar {
		left: auto;
		right: 8px;
		transform: translateY(-50%) scale(0.8);
		padding-top: 55px;
		gap: 8px;
		display: flex;
	}

	.social-icon {
		width: 40px;
		height: 40px;
	}

	.social-icon svg {
		width: 20px;
		height: 20px;
	}

	.bottom-nav {
		display: flex;
		height: 60px;
	}

	.main-content {
		top: 55px;
		bottom: 60px;
		height: calc(100% - 55px - 60px);
	}
}

@media (max-width: 360px) {
	.top-banner {
		height: 50px;
		padding: 0 8px;
	}

	.logo-text {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.logo-text img {
		width: 50px !important;
		height: auto !important;
		display: block;
	}

	.banner-content {
		position: relative;
	}

	.phone-btn:not(.mobile-floorplan-btn) {
		display: none !important;
	}

	.mobile-floorplan-btn {
		display: flex !important;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		padding: 5px 14px;
		font-size: 11px;
		background-color: #FFFFFF;
		color: #1e3c72;
		border-radius: 25px;
		white-space: nowrap;
	}

	.phone-icon {
		display: none;
	}

	.phone-number {
		display: inline;
	}

	.bottom-nav {
		display: flex;
		height: 50px;
	}

	.main-content {
		top: 50px;
		bottom: 50px;
		height: calc(100% - 50px - 50px);
	}
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
	.top-banner {
		height: 50px;
	}

	.main-content {
		top: 50px;
		height: calc(100% - 50px);
	}

	.modal-content {
		max-height: 85vh;
	}

	.carousel-container {
		height: 300px;
	}
}

/* Prevent text selection on buttons for better mobile UX */
button, .action-btn, .check-now-btn, .submit-btn, .view-tour-btn {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	user-select: none;
}

/* Improve scrolling on mobile */
.modal-body {
	-webkit-overflow-scrolling: touch;
}

/* Fix for iOS Safari viewport */
@supports (-webkit-touch-callout: none) {
	html, body {
		height: -webkit-fill-available;
	}
	
	.main-content {
		min-height: -webkit-fill-available;
	}
}

/* Classic Elegant Touch */
.top-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, #4CAF50, transparent);
	opacity: 0.6;
}

/* Smooth Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.social-icon,
.action-btn {
	animation: fadeIn 0.6s ease-out;
}

.social-icon:nth-child(1) { animation-delay: 0.1s; }
.social-icon:nth-child(2) { animation-delay: 0.2s; }
.social-icon:nth-child(3) { animation-delay: 0.3s; }
.social-icon:nth-child(4) { animation-delay: 0.4s; }
.social-icon:nth-child(5) { animation-delay: 0.5s; }

.action-btn:nth-child(1) { animation-delay: 0.1s; }
.action-btn:nth-child(2) { animation-delay: 0.2s; }
.action-btn:nth-child(3) { animation-delay: 0.3s; }

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.3s ease;
}

.modal-content {
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	border-radius: 15px;
	padding: 0;
	max-width: 700px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	position: relative;
	animation: slideDown 0.3s ease;
}

.form-modal {
	max-width: 500px;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.close-btn {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 32px;
	font-weight: bold;
	color: #FFFFFF;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
}

.close-btn:hover {
	color: #4CAF50;
	background-color: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}

.modal-header {
	padding: 30px 40px 20px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(69, 160, 73, 0.1) 100%);
}

.modal-header h2 {
	color: #4CAF50;
	font-size: 28px;
	margin: 0;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.form-subtitle {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	margin-top: 8px;
	margin-bottom: 0;
}

.modal-body {
	padding: 30px 40px;
	color: #FFFFFF;
}

.about-content {
	line-height: 1.8;
}

.intro-text {
	font-size: 18px;
	margin-bottom: 25px;
	color: rgba(255, 255, 255, 0.95);
}

.intro-text strong {
	color: #4CAF50;
	font-size: 20px;
}

.feature-section {
	margin-bottom: 30px;
}

.feature-section h3 {
	color: #4CAF50;
	font-size: 20px;
	margin-bottom: 15px;
	font-weight: 600;
}

.feature-section p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	margin-bottom: 12px;
	text-align: justify;
}

.feature-list {
	margin-left: 20px;
	margin-top: 15px;
	color: rgba(255, 255, 255, 0.9);
}

.feature-list li {
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 1.6;
}

.modal-footer {
	padding: 20px 40px 30px;
	border-top: 2px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.download-brochure-btn {
	background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
	color: #FFFFFF;
	border: none;
	padding: 15px 40px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
	width: 100%;
	max-width: 300px;
}

.download-brochure-btn:hover {
	background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

/* Form Styles */
.brochure-form {
	width: 100%;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 8px;
}

.required {
	color: #ff4444;
}

.form-group input {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background-color: rgba(255, 255, 255, 0.1);
	color: #FFFFFF;
	font-size: 16px;
	transition: all 0.3s ease;
	outline: none;
}

.form-group input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
	border-color: #4CAF50;
	background-color: rgba(255, 255, 255, 0.15);
	box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background-color: rgba(255, 255, 255, 0.1);
	color: #FFFFFF;
	font-size: 16px;
	font-family: inherit;
	transition: all 0.3s ease;
	outline: none;
	resize: vertical;
	min-height: 100px;
}

.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.form-group textarea:focus {
	border-color: #4CAF50;
	background-color: rgba(255, 255, 255, 0.15);
	box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.form-message {
	display: none;
	padding: 12px 15px;
	border-radius: 8px;
	margin-top: 15px;
	font-size: 14px;
	text-align: center;
}

/* Responsive Form Styles */
@media (max-width: 768px) {
	.form-group {
		margin-bottom: 20px;
	}

	.form-group label {
		font-size: 14px;
		margin-bottom: 6px;
	}

	.form-group input,
	.form-group textarea {
		padding: 10px 12px;
		font-size: 14px;
	}

	.form-group textarea {
		min-height: 80px;
	}

	.submit-btn {
		padding: 12px;
		font-size: 16px;
	}

	.form-message {
		padding: 10px 12px;
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.form-group {
		margin-bottom: 18px;
	}

	.form-group label {
		font-size: 13px;
		margin-bottom: 5px;
	}

	.form-group input,
	.form-group textarea {
		padding: 10px;
		font-size: 14px;
	}

	.form-group textarea {
		min-height: 70px;
	}

	.submit-btn {
		padding: 12px;
		font-size: 15px;
	}

	.form-message {
		padding: 8px 10px;
		font-size: 12px;
	}

	.form-footer-link {
		margin-top: 15px;
		padding-top: 15px;
	}

	.form-footer-link p {
		font-size: 12px;
		margin-bottom: 12px;
	}

	.view-tour-btn {
		padding: 10px 15px;
		font-size: 14px;
	}
}

.form-message.success {
	background-color: rgba(76, 175, 80, 0.2);
	color: #4CAF50;
	border: 1px solid #4CAF50;
}

.form-message.error {
	background-color: rgba(244, 67, 54, 0.2);
	color: #ff4444;
	border: 1px solid #ff4444;
}

.form-footer-link {
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-footer-link p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 15px;
	font-size: 14px;
}

.view-tour-btn {
	width: 100%;
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	color: #FFFFFF;
	border: none;
	padding: 12px 20px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(30, 60, 114, 0.4);
}

.view-tour-btn:hover {
	background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(30, 60, 114, 0.6);
}

.view-tour-btn:active {
	transform: translateY(0);
}

.submit-btn {
	width: 100%;
	background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
	color: #FFFFFF;
	border: none;
	padding: 15px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
	margin-top: 10px;
}

.submit-btn:hover {
	background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

.submit-btn:active {
	transform: translateY(0);
}

/* Responsive Modal */
@media (max-width: 1024px) {
	.modal-content {
		max-width: 90%;
	}
}

@media (max-width: 768px) {
	.modal {
		padding: 10px;
	}

	.modal-content {
		width: 95%;
		max-height: 90vh;
		border-radius: 12px;
	}

	.modal-header {
		padding: 20px 20px 15px;
	}

	.modal-header h2 {
		font-size: 22px;
	}

	.form-subtitle {
		font-size: 13px;
	}

	.modal-body {
		padding: 20px;
		max-height: calc(90vh - 150px);
		overflow-y: auto;
	}

	.modal-footer {
		padding: 15px 20px 20px;
	}

	.intro-text {
		font-size: 16px;
		margin-bottom: 20px;
	}

	.feature-section {
		margin-bottom: 25px;
	}

	.feature-section h3 {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.feature-section p {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.feature-list {
		margin-left: 15px;
		margin-top: 12px;
	}

	.feature-list li {
		font-size: 14px;
		margin-bottom: 8px;
	}

	.close-btn {
		top: 10px;
		right: 15px;
		font-size: 28px;
		width: 32px;
		height: 32px;
	}

	.download-brochure-btn {
		padding: 12px 30px;
		font-size: 16px;
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.modal {
		padding: 5px;
	}

	.modal-content {
		width: 98%;
		max-height: 95vh;
		border-radius: 10px;
	}

	.modal-header {
		padding: 15px 15px 12px;
	}

	.modal-header h2 {
		font-size: 18px;
	}

	.form-subtitle {
		font-size: 12px;
		margin-top: 5px;
	}

	.modal-body {
		padding: 15px;
		max-height: calc(95vh - 120px);
	}

	.modal-footer {
		padding: 12px 15px 15px;
	}

	.intro-text {
		font-size: 14px;
		margin-bottom: 15px;
	}

	.feature-section {
		margin-bottom: 20px;
	}

	.feature-section h3 {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.feature-section p {
		font-size: 13px;
	}

	.feature-list {
		margin-left: 12px;
		margin-top: 10px;
	}

	.feature-list li {
		font-size: 12px;
		margin-bottom: 6px;
	}

	.close-btn {
		top: 8px;
		right: 12px;
		font-size: 24px;
		width: 28px;
		height: 28px;
	}

	.download-brochure-btn {
		padding: 10px 25px;
		font-size: 14px;
		width: 100%;
	}
}

@media (max-width: 360px) {
	.modal-content {
		width: 100%;
		border-radius: 0;
		max-height: 100vh;
	}

	.modal-header h2 {
		font-size: 16px;
	}

	.modal-body {
		padding: 12px;
		max-height: calc(100vh - 100px);
	}
}

/* Gallery Modal Styles */
.gallery-modal {
	max-width: 900px;
}

.gallery-carousel {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 10px;
	background-color: rgba(0, 0, 0, 0.3);
}

.carousel-container {
	position: relative;
	width: 100%;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel-slide {
	display: none;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease;
	position: absolute;
	top: 0;
	left: 0;
}

.carousel-slide.active {
	display: block;
	opacity: 1;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 8px;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(30, 60, 114, 0.9);
	color: #FFFFFF;
	border: none;
	padding: 15px 20px;
	font-size: 24px;
	cursor: pointer;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
	background-color: #4CAF50;
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.carousel-prev {
	left: 15px;
}

.carousel-next {
	right: 15px;
}

.carousel-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 20px;
	background-color: rgba(0, 0, 0, 0.2);
	border-radius: 0 0 10px 10px;
}

.dot {
	cursor: pointer;
	height: 12px;
	width: 12px;
	margin: 0 2px;
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	display: inline-block;
	transition: all 0.3s ease;
}

.dot:hover {
	background-color: rgba(255, 255, 255, 0.7);
	transform: scale(1.2);
}

.dot.active {
	background-color: #4CAF50;
	width: 30px;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(76, 175, 80, 0.5);
}

/* Responsive Gallery */
@media (max-width: 1024px) {
	.gallery-modal {
		max-width: 90%;
	}

	.carousel-container {
		height: 450px;
	}
}

@media (max-width: 768px) {
	.gallery-modal {
		max-width: 95%;
	}

	.carousel-container {
		height: 400px;
	}

	.carousel-btn {
		width: 40px;
		height: 40px;
		padding: 10px;
		font-size: 20px;
	}

	.carousel-prev {
		left: 10px;
	}

	.carousel-next {
		right: 10px;
	}

	.carousel-dots {
		padding: 15px 10px;
		gap: 8px;
		flex-wrap: wrap;
	}

	.dot {
		height: 10px;
		width: 10px;
	}

	.dot.active {
		width: 25px;
	}
}

@media (max-width: 480px) {
	.gallery-modal {
		max-width: 98%;
	}

	.carousel-container {
		height: 300px;
	}

	.carousel-btn {
		width: 35px;
		height: 35px;
		padding: 8px;
		font-size: 18px;
	}

	.carousel-prev {
		left: 5px;
	}

	.carousel-next {
		right: 5px;
	}

	.carousel-dots {
		padding: 12px 8px;
		gap: 6px;
	}

	.dot {
		height: 8px;
		width: 8px;
		margin: 0 1px;
	}

	.dot.active {
		width: 20px;
	}
}

@media (max-width: 360px) {
	.carousel-container {
		height: 250px;
	}

	.carousel-btn {
		width: 30px;
		height: 30px;
		padding: 6px;
		font-size: 16px;
	}

	.carousel-dots {
		padding: 10px 5px;
		gap: 4px;
	}

	.dot {
		height: 6px;
		width: 6px;
	}

	.dot.active {
		width: 18px;
	}
}

/* Floor Plan Modal Styles */
.floorplan-modal {
	max-width: 1000px;
	background-color: #FFFFFF;
	color: #000000;
}

.floorplan-modal .modal-header {
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.floorplan-modal .modal-header h2 {
	color: #FFFFFF;
}

.floorplan-modal .modal-body {
	padding: 30px;
	background-color: #FFFFFF;
}

.floorplan-container {
	width: 100%;
}

.floorplan-image-wrapper {
	width: 100%;
	margin-bottom: 30px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	background-color: #f5f5f5;
	position: relative;
	transition: all 0.3s ease;
}

.floorplan-image-wrapper:hover {
	box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
	transform: translateY(-2px);
}

.floorplan-image-wrapper img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	transition: opacity 0.3s ease;
}

.floorplan-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(30, 60, 114, 0.8) 0%, rgba(76, 175, 80, 0.8) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 8px;
}

.floorplan-image-wrapper:hover .floorplan-overlay {
	opacity: 1;
}

.floorplan-image-wrapper:hover img {
	opacity: 0.7;
}

.overlay-text {
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	padding: 15px 30px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 30px;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.price-table-container {
	width: 100%;
	margin-bottom: 20px;
	overflow-x: auto;
}

.price-table {
	width: 100%;
	border-collapse: collapse;
	background-color: #FFFFFF;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	overflow: hidden;
}

.price-table thead {
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	color: #FFFFFF;
}

.price-table th {
	padding: 15px 20px;
	text-align: left;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.price-table tbody tr {
	border-bottom: 1px solid #e0e0e0;
	transition: background-color 0.3s ease;
}

.price-table tbody tr:last-child {
	border-bottom: none;
}

.price-table tbody tr:hover {
	background-color: #f8f9fa;
}

.price-table td {
	padding: 18px 20px;
	font-size: 15px;
	color: #333333;
	vertical-align: middle;
}

.price-table td strong {
	color: #1e3c72;
	font-size: 16px;
}

.check-now-btn {
	background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
	color: #FFFFFF;
	border: none;
	padding: 10px 25px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
	white-space: nowrap;
}

.check-now-btn:hover {
	background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(76, 175, 80, 0.5);
}

.check-now-btn:active {
	transform: translateY(0);
}

.contact-icons {
	display: flex;
	justify-content: flex-end;
	gap: 15px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
}

.contact-icon {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.contact-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.phone-icon-btn {
	background-color: #2196F3;
}

.phone-icon-btn:hover {
	background-color: #1976D2;
	transform: translateY(-3px) scale(1.1);
	box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.whatsapp-icon-btn {
	background-color: #25D366;
}

.whatsapp-icon-btn:hover {
	background-color: #128C7E;
	transform: translateY(-3px) scale(1.1);
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Responsive Floor Plan */
@media (max-width: 768px) {
	.floorplan-modal {
		max-width: 95%;
	}

	.floorplan-modal .modal-body {
		padding: 20px;
	}

	.price-table th,
	.price-table td {
		padding: 12px 15px;
		font-size: 14px;
	}

	.check-now-btn {
		padding: 8px 20px;
		font-size: 13px;
	}

	.contact-icon {
		width: 40px;
		height: 40px;
	}
}

@media (max-width: 480px) {
	.floorplan-modal {
		max-width: 98%;
	}

	.floorplan-modal .modal-body {
		padding: 15px;
	}

	.price-table {
		font-size: 12px;
	}

	.price-table th,
	.price-table td {
		padding: 10px 12px;
		font-size: 12px;
	}

	.price-table td strong {
		font-size: 14px;
	}

	.check-now-btn {
		padding: 8px 15px;
		font-size: 12px;
	}

	.contact-icon {
		width: 35px;
		height: 35px;
	}

	.contact-icons {
		gap: 10px;
	}

	.overlay-text {
		font-size: 16px;
		padding: 12px 20px;
	}

	.floorplan-image-wrapper {
		cursor: pointer;
	}
}

/* Welcome Modal Styles */
.welcome-modal {
	max-width: 600px;
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.welcome-content {
	text-align: center;
	padding: 20px 0;
}

.welcome-icon {
	font-size: 80px;
	margin-bottom: 20px;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

.welcome-message {
	font-size: 18px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 30px;
	padding: 0 20px;
}

.welcome-features {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.welcome-feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 500;
}

.feature-icon {
	font-size: 32px;
	margin-bottom: 5px;
}

.welcome-explore-btn {
	background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
	color: #FFFFFF;
	border: none;
	padding: 15px 50px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.welcome-explore-btn:hover {
	background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

.welcome-explore-btn:active {
	transform: translateY(-1px);
}

/* Responsive Welcome Modal */
@media (max-width: 768px) {
	.welcome-modal {
		max-width: 95%;
	}

	.welcome-icon {
		font-size: 60px;
	}

	.welcome-message {
		font-size: 16px;
		padding: 0 15px;
	}

	.welcome-features {
		gap: 20px;
	}

	.welcome-feature {
		font-size: 13px;
	}

	.feature-icon {
		font-size: 28px;
	}

	.welcome-explore-btn {
		padding: 12px 40px;
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.welcome-modal {
		max-width: 98%;
	}

	.welcome-icon {
		font-size: 50px;
		margin-bottom: 15px;
	}

	.welcome-message {
		font-size: 14px;
		margin-bottom: 25px;
	}

	.welcome-features {
		gap: 15px;
		margin-bottom: 25px;
	}

	.welcome-feature {
		font-size: 12px;
	}

	.feature-icon {
		font-size: 24px;
	}

	.welcome-explore-btn {
		padding: 12px 30px;
		font-size: 14px;
	}
}

