/* Ultra-Modern Floating Navigation */
#header {
	background: none;
	border: none;
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 1200px;
	z-index: 1000;
	transition: all var(--transition-normal);
}

#header .inner {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 60px;
	padding: 12px 30px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo-container img {
	height: 40px;
	width: auto;
	transition: all var(--transition-fast);
	filter: brightness(0) invert(1);
}

.logo-container img:hover {
	transform: scale(1.05);
}

/* Ultra-Modern Navigation */
.nav-container ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 8px;
}

.nav-container li a {
	font-weight: 500;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	padding: 8px 16px;
	border-radius: 25px;
	transition: all var(--transition-fast);
	position: relative;
	overflow: hidden;
}

.nav-container li a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.nav-container li a:hover::before {
	left: 100%;
}

.nav-container li a:hover {
	background-color: rgba(255, 255, 255, 0.2);
	color: white;
	text-decoration: none;
	transform: translateY(-1px);
}

/* Mobile Navigation Button */
#grip {
	display: none;
	background: none;
	border: 2px solid var(--gray-300);
	border-radius: var(--radius-md);
	padding: var(--space-sm);
	cursor: pointer;
	transition: all var(--transition-fast);
}

#grip:hover {
	border-color: var(--primary-color);
	background-color: var(--accent-color);
}

#grip svg {
	width: 24px;
	height: 24px;
	color: var(--text-color);
}

@media (max-width: 768px) {
	#grip {
		display: block;
	}
	
	.nav-container {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		border-top: 1px solid var(--gray-200);
		box-shadow: var(--shadow-lg);
		display: none;
	}
	
	.nav-container ul {
		flex-direction: column;
		gap: 0;
		padding: var(--space-md);
	}
	
	.nav-container li a {
		display: block;
		padding: var(--space-md);
		border-radius: var(--radius-md);
		margin-bottom: var(--space-xs);
	}
}

/* Ultra-Modern Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.hero .background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0.3;
}

.hero .background-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: grayscale(100%) contrast(1.2);
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 50%, rgba(44, 85, 48, 0.3) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(74, 124, 84, 0.2) 0%, transparent 50%),
		linear-gradient(135deg, rgba(15, 15, 15, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	color: white;
	max-width: 800px;
	text-align: center;
	margin: 0 auto;
}

.hero-content h1 {
	color: white;
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 800;
	line-height: 0.9;
	margin-bottom: var(--space-xl);
	text-shadow: none;
	background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-content h1 strong {
	background: linear-gradient(135deg, #4a7c54 0%, #2c5530 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
	font-size: 0.8em;
	margin-top: 0.2em;
}

.hero-content p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.3rem;
	font-weight: 300;
	line-height: 1.6;
	margin-bottom: var(--space-2xl);
	text-shadow: none;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero-content a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #4a7c54 0%, #2c5530 100%);
	color: white;
	padding: 18px 36px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	box-shadow: 0 10px 40px rgba(44, 85, 48, 0.3);
	transition: all var(--transition-normal);
	text-decoration: none;
	border: 2px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.hero-content a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.hero-content a:hover::before {
	left: 100%;
}

.hero-content a:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 60px rgba(44, 85, 48, 0.4);
	border-color: rgba(255, 255, 255, 0.3);
}

.hero-content a::after {
	content: '→';
	font-size: 1.2em;
	transition: transform var(--transition-fast);
}

.hero-content a:hover::after {
	transform: translateX(4px);
}

/* Modern Buttons */
button, .button, input[type="submit"] {
	background: var(--primary-color);
	color: var(--white);
	border: none;
	padding: var(--space-md) var(--space-xl);
	border-radius: var(--radius-md);
	font-weight: 500;
	font-size: 1rem;
	cursor: pointer;
	transition: all var(--transition-fast);
	display: inline-block;
	text-decoration: none;
	box-shadow: var(--shadow-sm);
}

button:hover, .button:hover, input[type="submit"]:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}

/* Ultra-Modern Sections */
.block {
	padding: 120px 0;
	position: relative;
}

.block.notice {
	background: linear-gradient(135deg, #2c5530 0%, #1a3d1f 100%);
	color: white;
	padding: 20px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.block.notice::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% { left: -100%; }
	100% { left: 100%; }
}

.block.notice a {
	color: white;
	font-weight: 600;
	text-decoration: none;
	padding: 0 8px;
	border-radius: 4px;
	transition: background var(--transition-fast);
}

.block.notice a:hover {
	background: rgba(255, 255, 255, 0.1);
}

.block.welcome {
	background: #0a0a0a;
	color: white;
	text-align: center;
	padding: 100px 0;
	position: relative;
}

.block.welcome::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 30% 30%, rgba(44, 85, 48, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 70% 70%, rgba(74, 124, 84, 0.05) 0%, transparent 50%);
}

.block.welcome h2 {
	color: white;
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 700;
	background: linear-gradient(135deg, #ffffff 0%, #4a7c54 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Ultra-Modern Feature Sections */
.image-feature {
	background: #fafafa;
	position: relative;
	overflow: hidden;
}

.image-feature.alt {
	background: #0a0a0a;
	color: white;
}

.image-feature.alt::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 80%, rgba(44, 85, 48, 0.1) 0%, transparent 50%);
}

.image-feature .inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 1;
}

@media (max-width: 768px) {
	.image-feature .inner {
		grid-template-columns: 1fr;
		gap: 60px;
	}
}

.image-feature figure {
	margin: 0;
	position: relative;
}

.image-feature img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	transition: all var(--transition-normal);
}

.image-feature img:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.image-feature h3 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 24px;
	background: linear-gradient(135deg, #2c5530 0%, #4a7c54 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.image-feature.alt h3 {
	background: linear-gradient(135deg, #ffffff 0%, #4a7c54 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.image-feature p {
	font-size: 1.2rem;
	line-height: 1.7;
	color: #666;
	margin-bottom: 0;
}

.image-feature.alt p {
	color: rgba(255, 255, 255, 0.8);
}

/* Image Columns */
.image-columns .inner {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: var(--space-3xl);
	align-items: start;
}

@media (max-width: 768px) {
	.image-columns .inner {
		grid-template-columns: 1fr;
	}
}

.image-columns article {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
}

@media (max-width: 768px) {
	.image-columns article {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}
}

.image-columns ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.image-columns li {
	padding: var(--space-sm) 0;
	border-bottom: 1px solid var(--gray-200);
	display: flex;
	align-items: center;
	gap: var(--space-sm);
}

.image-columns li:before {
	content: '✓';
	color: var(--primary-color);
	font-weight: bold;
	font-size: 1.2em;
}

.image-columns li:last-child {
	border-bottom: none;
}

/* Floor Plan Section Background */
#floorplans {
	background: #fafafa;
	position: relative;
}

#floorplans::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 80% 20%, rgba(44, 85, 48, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 20% 80%, rgba(74, 124, 84, 0.02) 0%, transparent 50%);
}

/* Ultra-Modern Floor Plan Cards */
.floorplan-preview {
	background: transparent;
	border: none;
	padding: 0;
	position: relative;
	z-index: 1;
}

.floorplan-preview .inner {
	background: white;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
	transition: all var(--transition-normal);
	margin: 40px 0;
	position: relative;
}

.floorplan-preview .inner:hover {
	transform: translateY(-12px);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.floorplan-preview .inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: stretch;
}

@media (max-width: 768px) {
	.floorplan-preview .inner {
		grid-template-columns: 1fr;
	}
}

.floorplan-preview figure {
	margin: 0;
	position: relative;
	overflow: hidden;
}

.floorplan-preview img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.floorplan-preview .inner:hover img {
	transform: scale(1.05);
}

.floorplan-preview article {
	padding: 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.floorplan-preview h2 {
	background: linear-gradient(135deg, #2c5530 0%, #4a7c54 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 8px;
	display: block;
	padding: 0;
	border-radius: 0;
}

.floorplan-preview article p {
	color: #666;
	font-size: 1.1rem;
	margin-bottom: 32px;
	font-weight: 500;
}

.floorplan-preview ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.floorplan-preview li {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 16px 24px;
	border-radius: 50px;
	font-weight: 600;
	color: #2c5530;
	border: 2px solid rgba(44, 85, 48, 0.1);
	transition: all var(--transition-fast);
	white-space: nowrap;
}

.floorplan-preview li:hover {
	background: linear-gradient(135deg, #2c5530 0%, #4a7c54 100%);
	color: white;
	transform: translateY(-2px);
}

/* Inline Links (Floor Plan Buttons) */
.inline-links {
	background: var(--gray-50);
	padding: var(--space-xl) 0;
}

.inline-links .inner {
	display: flex;
	justify-content: center;
	gap: var(--space-md);
	flex-wrap: wrap;
}

.inline-links .option {
	background: white;
	border: 2px solid var(--gray-300);
	padding: var(--space-md) var(--space-xl);
	border-radius: var(--radius-lg);
	font-weight: 500;
	transition: all var(--transition-fast);
	cursor: pointer;
}

.inline-links .option:hover,
.inline-links .option.active {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

/* Ultra-Modern Gallery */
.gallery {
	background: #0a0a0a;
	color: white;
	position: relative;
	overflow: hidden;
}

.gallery::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 50% 20%, rgba(44, 85, 48, 0.1) 0%, transparent 50%);
}

.gallery header {
	text-align: center;
	margin-bottom: 80px;
	position: relative;
	z-index: 1;
}

.gallery h2 {
	color: white;
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 800;
	background: linear-gradient(135deg, #ffffff 0%, #4a7c54 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 24px;
}

.gallery header p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.3rem;
	max-width: 600px;
	margin: 0 auto;
}

.gallery ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 32px;
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 1;
}

.gallery li {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transition: all var(--transition-normal);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery li:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
	border-color: rgba(74, 124, 84, 0.3);
}

.gallery img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	transition: all var(--transition-slow);
	border-radius: 20px;
	margin: 4px;
}

.gallery li:hover img {
	transform: scale(1.05);
	filter: brightness(1.1);
}

/* Text Break Section */
.text-break {
	background: var(--primary-color);
	color: white;
}

.text-break h2 {
	color: white;
}

.text-break article {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

/* Ultra-Modern Contact Section */
.contact {
	background: #0a0a0a;
	color: white;
	position: relative;
	overflow: hidden;
}

.contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 30% 70%, rgba(44, 85, 48, 0.1) 0%, transparent 50%);
}

.contact .inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 1;
}

@media (max-width: 768px) {
	.contact .inner {
		grid-template-columns: 1fr;
		gap: 60px;
	}
}

.contact figure {
	margin: 0;
	position: relative;
}

.contact img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 32px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transition: transform var(--transition-normal);
}

.contact img:hover {
	transform: translateY(-8px) scale(1.02);
}

.contact article {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	padding: 48px;
	border-radius: 32px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact h2 {
	color: white;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	background: linear-gradient(135deg, #ffffff 0%, #4a7c54 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 48px;
}

.contact .column {
	margin-bottom: 32px;
}

.contact .column h3 {
	color: #4a7c54;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 16px;
}

.contact .column p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.contact .column a {
	color: white;
	font-weight: 600;
	text-decoration: none;
	transition: color var(--transition-fast);
}

.contact .column a:hover {
	color: #4a7c54;
}

/* Ultra-Modern Forms */
.form-group {
	margin-bottom: 24px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-control {
	width: 100%;
	padding: 16px 20px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	font-size: 1rem;
	transition: all var(--transition-fast);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	color: white;
	font-weight: 500;
}

.form-control::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
	outline: none;
	border-color: #4a7c54;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 4px rgba(74, 124, 84, 0.2);
	transform: translateY(-2px);
}

.form-group.half {
	display: inline-block;
	width: calc(50% - var(--space-sm));
	margin-right: var(--space-md);
}

.form-group.quarter {
	display: inline-block;
	width: calc(25% - var(--space-sm));
	margin-right: var(--space-md);
}

@media (max-width: 768px) {
	.form-group.half,
	.form-group.quarter {
		width: 100%;
		margin-right: 0;
	}
}

select.form-control {
	cursor: pointer;
}

textarea.form-control {
	min-height: 120px;
	resize: vertical;
}

/* Footer */
.footer {
	background: var(--text-color-dark);
	color: white;
	padding: var(--space-2xl) 0;
}

.footer .inner article {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 768px) {
	.footer .inner article {
		flex-direction: column;
		gap: var(--space-md);
		text-align: center;
	}
}

.footer a {
	color: white;
	opacity: 0.8;
	transition: opacity var(--transition-fast);
}

.footer a:hover {
	opacity: 1;
}

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

.animate-in {
	animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

/* Responsive Design Improvements */
@media (max-width: 768px) {
	.hero {
		min-height: 80vh;
		text-align: center;
	}
	
	.hero-content {
		max-width: 100%;
	}
	
	h1 { font-size: 2.5rem; }
	h2 { font-size: 2rem; }
	h3 { font-size: 1.5rem; }
	
	p { font-size: 1rem; }
	
	.block {
		padding: var(--space-2xl) 0;
	}
}
