@charset "utf-8";

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

:root {
	--primary-dark: #030303;
	--secondary-dark: #51630f;
	--accent-color: #ffbf1b;
	--text-light: #ffffff;
	--text-gray: #ffffff;
	--card-dark: #151515;
	/* Overall page scale (~67% browser zoom); adjust between ~0.65 and 0.8 if needed */
	--layout-root-scale: 0.67;
}

html {
	scroll-behavior: smooth;
	font-size: calc(100% * var(--layout-root-scale));
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: var(--primary-dark);
	color: var(--text-light);
	overflow-x: hidden;
	line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 0.5rem;
}

::-webkit-scrollbar-track {
	background: var(--secondary-dark);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
	border-radius: 0.25rem;
}

/* Header Navigation */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #334104;
	backdrop-filter: blur(0.625rem);
	z-index: 1000;
	padding: 1.25rem 0;
	transition: all 0.3s ease;
}

header.scrolled {
	padding: 0.9375rem 0;
	background: var(--secondary-dark);
}

nav {
	max-width: 87.5rem;
	margin: 0 auto;
	padding: 0 1.875rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.875rem;
	line-height: 1.05;
	transition: opacity 0.3s ease;
}

.logo:hover {
	opacity: 0.9;
}

.logo-image {
	height: 3rem;
	width: auto;
	max-width: min(4rem, 14vw);
	display: block;
	object-fit: contain;
	object-position: left center;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.logo:hover .logo-image {
	transform: scale(1.03);
}

.logo-text {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	white-space: nowrap;
}

.logo-text-accent {
	font-size: clamp(1.05rem, 2.4vw, 1.3rem);
	font-weight: 800;
	letter-spacing: -0.025rem;
	color: var(--accent-color);
}

.logo-text-light {
	font-size: clamp(1.05rem, 2.4vw, 1.3rem);
	font-weight: 700;
	letter-spacing: -0.0219rem;
	color: var(--text-light);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 0.3125rem;
}

.nav-menu a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.0313rem;
	padding: 0.625rem 1.125rem;
	position: relative;
	transition: all 0.3s ease;
	border-radius: 0.375rem;
	background: transparent;
	border: 1px solid transparent;
}

.nav-menu a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(243, 156, 18, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.4s ease;
	z-index: -1;
}

.nav-menu a:hover {
	color: rgba(255, 255, 255, 0.9);
	background: linear-gradient(135deg,
			rgba(243, 156, 18, 0.08) 0%,
			rgba(243, 156, 18, 0.03) 100%);
	border-color: rgba(243, 156, 18, 0.2);
	transform: translateY(-0.0625rem);
}

.nav-menu a:hover::before {
	width: 100%;
	height: 100%;
	border-radius: 0.375rem;
}

.nav-menu a.active {
	color: var(--accent-color);
	background: rgba(243, 156, 18, 0.1);
	border-color: rgba(243, 156, 18, 0.25);
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 0.25rem;
}

.menu-toggle span {
	width: 1.5625rem;
	height: 0.125rem;
	background: var(--text-light);
	transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
	height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
	margin-top: 0;
	overflow: hidden;
}

/* .hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.2;
	background-image:
		repeating-linear-gradient(45deg, transparent, transparent 2.1875rem, rgba(243, 156, 18, 0.04) 2.1875rem, rgba(243, 156, 18, 0.04) 4.375rem),
		repeating-linear-gradient(-45deg, transparent, transparent 2.1875rem, rgba(255, 255, 255, .04) 2.1875rem, rgba(255, 255, 255, .04) 4.375rem),
		repeating-linear-gradient(90deg, transparent, transparent 3.125rem, rgba(243, 156, 18, 0.03) 3.125rem, rgba(243, 156, 18, 0.03) 6.25rem);
} */

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		linear-gradient(rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.55)),
		url("images/landscapebackground.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-content {
	text-align: center;
	z-index: 1;
	padding: 0 1.25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.125rem;
}

.hero-logo {
	width: 50rem;
	max-width: 80%;
	height: auto;
	display: block;
	margin-bottom: 0.5rem;
}

/* Animated geometric shapes for hero background */
.hero-section::before {
	content: '';
	position: absolute;
	top: 10%;
	right: 10%;
	width: 18.75rem;
	height: 18.75rem;
	border: 0.125rem solid rgba(243, 156, 18, 0.15);
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	animation: morphShape 20s ease-in-out infinite;
	background: radial-gradient(circle at 30% 50%, rgba(243, 156, 18, 0.03), transparent 70%);
}

.hero-section::after {
	content: '';
	position: absolute;
	bottom: 10%;
	left: 5%;
	width: 17.5rem;
	height: 17.5rem;
	border: 0.125rem solid rgba(243, 156, 18, 0.12);
	border-radius: 50%;
	animation: rotateShape 25s linear infinite;
	background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02), transparent 60%);
	box-shadow: 0 0 2.5rem rgba(243, 156, 18, 0.1);
}

/* Additional floating accent shapes */
.hero-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.floating-accent {
	position: absolute;
	border: 1px solid rgba(243, 156, 18, 0.1);
	animation: float 15s ease-in-out infinite;
}

.accent-1 {
	top: 20%;
	left: 10%;
	width: 9.375rem;
	height: 9.375rem;
	border-radius: 50%;
	animation-delay: 0s;
}

.accent-2 {
	bottom: 30%;
	right: 15%;
	width: 6.25rem;
	height: 6.25rem;
	border-radius: 30% 70% 70% 30%;
	animation-delay: -5s;
}

.accent-3 {
	top: 50%;
	right: 30%;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	animation-delay: -10s;
	border-color: rgba(255, 255, 255, 0.05);
}

@keyframes morphShape {

	0%,
	100% {
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
		transform: rotate(0deg) scale(1);
	}

	33% {
		border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
		transform: rotate(120deg) scale(1.1);
	}

	66% {
		border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%;
		transform: rotate(240deg) scale(0.95);
	}
}

@keyframes rotateShape {
	0% {
		transform: rotate(0deg) scale(1);
	}

	50% {
		transform: rotate(180deg) scale(1.05);
	}

	100% {
		transform: rotate(360deg) scale(1);
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0) translateX(0) rotate(0deg);
	}

	25% {
		transform: translateY(-1.25rem) translateX(0.625rem) rotate(90deg);
	}

	50% {
		transform: translateY(0.625rem) translateX(-0.625rem) rotate(180deg);
	}

	75% {
		transform: translateY(-0.625rem) translateX(0.3125rem) rotate(270deg);
	}
}

.hero-title {
	font-size: clamp(2.5rem, 8vw, 5rem);
	font-weight: 900;
	letter-spacing: -0.125rem;
	margin-bottom: 1.25rem;
	background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: clamp(1.5rem, 3.2vw, 2.25rem);
	color: var(--text-gray);
	margin-bottom: 1.875rem;
	font-weight: 700;
	letter-spacing: 0.125rem;
	line-height: 1.3;
}

.hero-service-area {
	margin-top: 1.5rem;
	font-size: clamp(0.95rem, 1.6vw, 1.15rem);
	color: var(--text-gray);
	font-weight: 600;
	letter-spacing: 0.1875rem;
	text-transform: uppercase;
}

.cta-button {
	display: inline-block;
	padding: 0.9375rem 2.5rem;
	background: var(--accent-color);
	color: var(--primary-dark);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.0625rem;
	text-transform: uppercase;
	border-radius: 0.125rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cta-button:hover {
	transform: translateY(-0.125rem);
	box-shadow: 0 0.625rem 1.875rem #f39c124d;
}

/* Portfolio Section with Coverflow */
.portfolio-section {
	padding: 6.25rem 0;
	position: relative;
	background: var(--primary-dark);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.section-header {
	text-align: center;
	margin-top: -0.625rem;
	margin-bottom: 3.75rem;
	padding: 0 1.25rem;
}

.section-title {
	font-size: clamp(5rem, 9vw, 7rem);
	font-weight: 800;
	letter-spacing: -0.0625rem;
	margin-bottom: 0.9375rem;
}

/* Coverflow Container */
.coverflow-wrapper {
	width: 100%;
	position: relative;
	padding: 2.5rem 0 5rem;
}

.coverflow-container {
	width: 56.25rem;
	max-width: 90vw;
	/* Dynamic height based on viewport: min 21.875rem, preferred 45vh, max 31.25rem */
	height: clamp(21.875rem, 45vh, 31.25rem);
	position: relative;
	transform-style: preserve-3d;
	margin: 0 auto;
	perspective: 75rem;
}

.coverflow-item {
	position: absolute;
	/* Dynamic width based on viewport: min 13.125rem, preferred 27vh, max 18.75rem */
	width: clamp(13.125rem, 27vh, 18.75rem);
	/* Dynamic height based on viewport: min 18.125rem, preferred 38vh, max 26.25rem */
	height: clamp(18.125rem, 38vh, 26.25rem);
	left: 50%;
	top: 50%;
	transform-origin: center center;
	cursor: pointer;
	transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
	border-radius: 0.5rem;
	overflow: hidden;
	box-shadow: 0 1.5625rem 3.125rem -0.75rem rgba(0, 0, 0, 0.8);
}

/* Adjust for large screens (27" and above) */
@media (min-height: 900px) {
	.coverflow-container {
		height: clamp(28.125rem, 50vh, 34.375rem);
	}

	.coverflow-item {
		width: clamp(17.5rem, 30vh, 21.25rem);
		height: clamp(24.375rem, 42vh, 30rem);
	}
}

/* Adjust for small laptops */
@media (max-height: 768px) {
	.coverflow-container {
		height: clamp(18.75rem, 42vh, 23.75rem);
	}

	.coverflow-item {
		width: clamp(11.25rem, 24vh, 15rem);
		height: clamp(15.625rem, 34vh, 20rem);
	}
}

/* Reflection Effect */
.coverflow-item::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	transform: scaleY(-1) translateY(0.0625rem);
	opacity: 0.15;
	filter: blur(0.125rem);
	mask: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.4) 0%,
			rgba(0, 0, 0, 0.2) 20%,
			rgba(0, 0, 0, 0.1) 40%,
			transparent 60%);
	-webkit-mask: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.4) 0%,
			rgba(0, 0, 0, 0.2) 20%,
			rgba(0, 0, 0, 0.1) 40%,
			transparent 60%);
	pointer-events: none;
}

.portfolio-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.coverflow-item:hover .portfolio-image {
	transform: scale(1.05);
}

.portfolio-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.95) 0%,
			rgba(0, 0, 0, 0.7) 40%,
			rgba(0, 0, 0, 0.3) 70%,
			transparent 100%);
	padding: 1.875rem;
	transform: translateY(6.25rem);
	transition: transform 0.4s ease;
}

.coverflow-item:hover .portfolio-overlay {
	transform: translateY(0);
}

.portfolio-category {
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.125rem;
	color: var(--accent-color);
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.portfolio-title {
	font-size: 1.375rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-light);
}

.portfolio-description {
	font-size: 0.8125rem;
	color: var(--text-gray);
	line-height: 1.5;
}

/* Navigation Controls */
.coverflow-controls {
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.9375rem;
	z-index: 10;
}

.control-btn {
	width: 2.8125rem;
	height: 2.8125rem;
	border: 0.125rem solid rgba(255, 255, 255, 0.2);
	background: rgba(26, 26, 26, 0.8);
	backdrop-filter: blur(0.625rem);
	color: var(--text-light);
	cursor: pointer;
	font-size: 1.125rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	position: relative;
}

.control-btn:hover {
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--primary-dark);
	transform: scale(1.1);
}

/* Adjust play button icon positioning */
#playPauseBtn {
	padding-left: 0.125rem;
}

#playPauseBtn.playing {
	padding-left: 0;
}

/* Indicators */
.indicators {
	position: absolute;
	bottom: -2.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
	z-index: 10;
}

.indicator {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	width: 1.875rem;
	border-radius: 0.25rem;
	background: var(--accent-color);
}

/* About Section */
.showcase-about-wrap {
	background:
		linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)),
		url("images/landscapebackground2.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.about-section {
	padding: 6.25rem 1.875rem;
	background: transparent;
}

.about-container {
	max-width: 75rem;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}


.about-image {
	position: relative;
	overflow: hidden;
	border-radius: 0.5rem;
	aspect-ratio: 4 / 3;
	width: 100%;
	min-height: 20rem;
}

.about-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	transition: opacity 0.45s ease;
}

.about-image:hover img {
	filter: grayscale(0%);
}

.showcase-section .about-image img {
	position: absolute;
	inset: 0;
	filter: none;
}

.showcase-image-pre {
	opacity: 1;
	z-index: 1;
}

.showcase-image-post {
	opacity: 0;
	z-index: 2;
}

.showcase-section .about-image:hover .showcase-image-pre {
	opacity: 0;
}

.showcase-section .about-image:hover .showcase-image-post {
	opacity: 1;
}

.about-content h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	margin-bottom: 1.25rem;
	font-weight: 800;
	letter-spacing: -0.0625rem;
}

.about-content p {
	color: var(--text-gray);
	line-height: 1.8;
	margin-bottom: 1.25rem;
	font-size: 1rem;
}

.showcase-pricing-heading {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.0875rem;
	color: var(--accent-color);
	opacity: 0.9;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	text-align: center;
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.875rem;
	margin-top: 2.5rem;
}

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

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--accent-color);
	margin-bottom: 0.3125rem;
}

.showcase-stat-unit {
	font-size: 0.24em;
	font-weight: 500;
	letter-spacing: 0.0156rem;
	opacity: 0.82;
	margin-left: 0.1875rem;
	vertical-align: baseline;
	text-transform: lowercase;
}

.showcase-section .stat-number {
	white-space: nowrap;
}

.stat-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.0625rem;
	color: var(--text-gray);
}

.showcase-controls {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 2.1875rem;
}

.showcase-control-btn {
	width: 2.8125rem;
	height: 2.8125rem;
	border: 0.125rem solid rgba(255, 255, 255, 0.2);
	background: rgba(26, 26, 26, 0.8);
	backdrop-filter: blur(0.625rem);
	color: var(--text-light);
	cursor: pointer;
	font-size: 1.375rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.showcase-control-btn:hover {
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--primary-dark);
	transform: scale(1.08);
}

.showcase-counter {
	font-size: 0.8125rem;
	letter-spacing: 0.0625rem;
	color: var(--text-gray);
	text-transform: uppercase;
	min-width: 3.875rem;
	text-align: center;
}

/* Keep showcase dimensions stable between project slides */
.showcase-section .about-container {
	align-items: stretch;
}

.showcase-section .about-image {
	aspect-ratio: auto;
	min-height: 35rem;
	height: 100%;
}

.showcase-section .about-content {
	min-height: 35rem;
	display: flex;
	flex-direction: column;
}

/* About Us Section */
.about-us-section {
	padding: 6.25rem 1.875rem;
	padding-top: 1.25rem;
	background: transparent;
}

.about-us-container {
	max-width: 81.25rem;
	margin: 0 auto;
}

.about-us-header {
	margin-top: 0;
	margin-bottom: 3rem;
}

.about-us-prose {
	max-width: 73.75rem;
	margin: 0 auto;
	padding: 0 1.25rem;
	text-align: center;
}

.about-us-block {
	margin-bottom: 3rem;
}

.about-us-block:last-child {
	margin-bottom: 0;
}

.about-us-lead {
	font-size: clamp(1.6rem, 2.9vw, 2.25rem);
	margin-bottom: 1rem;
	font-weight: 800;
	letter-spacing: -0.025rem;
	line-height: 1.3;
	color: var(--accent-color);
	text-align: center;
}

.about-us-block p {
	color: var(--text-gray);
	line-height: 1.85;
	font-size: clamp(1.1rem, 1.5vw, 1.35rem);
	font-weight: 700;
	margin: 0;
}

/* Services Section */
.services-section {
	position: relative;
	padding: 6.25rem 1.875rem;
	background:
		url("images/servicesbackground.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	color: var(--accent-color);
}

.services-container {
	position: relative;
	z-index: 1;
	max-width: 93.75rem;
	width: 100%;
	margin: 0 auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	width: 100%;
}

@media (max-width: 900px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
}

.service-card {
	position: relative;
	overflow: hidden;
	border-radius: 0.75rem;
	text-align: center;
	padding: 3.75rem 2.8125rem;
	min-height: 26.25rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}



.service-description {
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card .service-description:not(.service-alt-text) {
	position: absolute;
	top: 11.875rem;
	left: 50%;
	width: calc(100% - 5.625rem);
	transform: translateX(-50%);
	text-align: center;
	margin: 0;
}

.service-card:hover .service-description:not(.service-alt-text) {
	opacity: 0;
	transform: translateY(-0.625rem);
}

.service-alt-text {
	color: var(--text-gray);
	line-height: 1.8;
	font-size: 0.9375rem;
	margin: 0;
	position: absolute;
	top: 11.875rem;
	left: 50%;
	width: calc(100% - 5.625rem);
	transform: translate(-50%, 0.625rem);
	text-align: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-card:hover .service-alt-text {
	opacity: 1;
	transform: translate(-50%, 0);
}

.service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 0;
	background: url("images/servicesbackground.png") center center / 100% 100% no-repeat;
}

.service-card > *:not(.service-alt-text) {
	position: relative;
	z-index: 1;
}

.service-alt-text {
	z-index: 2;
}

.service-card:hover::before {
	opacity: 1;
}

.service-card:hover {
	transform: translateY(-0.625rem);
	border-color: rgba(243, 156, 18, 0.3);
	box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.5);
}

.service-card-1 {
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
		url("images/presod.png");
}

.service-card-1::before {
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
		url("images/postsod.png");
}

.service-card-2 {
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
		url("images/lawn.png");
}

.service-card-2::before {
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
		url("images/lawncut.png");
}

.service-card-3 {
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
		url("images/preclean.png");
}

.service-card-3::before {
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
		url("images/postclean.png");
}

.service-icon {
	width: 3.75rem;
	height: 3.75rem;
	margin: 0 auto 1.5625rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(243, 156, 18, 0.05));
	border-radius: 50%;
	transition: all 0.4s ease;
}

.service-card:hover .service-icon {
	transform: scale(1.1);
	background: linear-gradient(135deg, rgba(243, 156, 18, 0.15), rgba(243, 156, 18, 0.1));
}

.service-icon svg {
	width: 1.875rem;
	height: 1.875rem;
	fill: var(--accent-color);
}

.service-title {
	font-size: 1.5rem;
	margin-bottom: 1.125rem;
	font-weight: 700;
	color: var(--text-light);
	letter-spacing: -0.0313rem;
}

.service-description {
	color: var(--text-gray);
	line-height: 1.8;
	font-size: 1.25rem;
	margin-bottom: 1.5625rem;
}

.service-price {
	font-size: 0.8125rem;
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 0.125rem;
	font-weight: 600;
}

.service-price-unit {
	font-size: 0.625rem;
	letter-spacing: 0.0625rem;
	font-weight: 500;
	opacity: 0.85;
	margin-left: 0.25rem;
	vertical-align: middle;
}

/* Contact Section */
.contact-section {
	padding: 6.25rem 1.875rem;
	background:
		linear-gradient(135deg, rgba(243, 156, 18, 0.15), rgba(243, 156, 18, 0.1)),
		var(--secondary-dark);
}

.contact-container {
	max-width: 60rem;
	margin: 0 auto;
	text-align: center;
}

.contact-layout {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3rem;
	margin-top: 3.75rem;
	width: 100%;
}

.contact-info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.75rem;
	width: 100%;
	max-width: 56.25rem;
}

.contact-form-wrap {
	width: 100%;
	max-width: 56.25rem;
	margin: 0 auto;
	background: linear-gradient(135deg, rgba(21, 21, 21, 0.9), rgba(15, 15, 15, 1));
	border-radius: 0.75rem;
	padding: 2.75rem 3rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	text-align: left;
}

.contact-form-title {
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	letter-spacing: -0.0313rem;
	color: var(--text-light);
	text-align: center;
}

.contact-form-intro {
	font-size: 0.875rem;
	color: var(--text-gray);
	margin-bottom: 1.5rem;
	line-height: 1.6;
	text-align: center;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.contact-form-label {
	display: block;
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.0625rem;
	color: var(--text-gray);
	margin-bottom: 0.5rem;
	margin-top: 1rem;
}

.contact-form-label:first-of-type {
	margin-top: 0;
}

.contact-form-optional {
	text-transform: none;
	letter-spacing: 0;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.45);
}

.contact-form-input,
.contact-form-textarea {
	width: 100%;
	padding: 0.75rem 0.875rem;
	font-size: 0.9375rem;
	font-family: inherit;
	color: var(--text-light);
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0.5rem;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.contact-form-input:focus,
.contact-form-textarea:focus {
	outline: none;
	border-color: rgba(243, 156, 18, 0.45);
	box-shadow: 0 0 0 0.1875rem rgba(243, 156, 18, 0.12);
}

.contact-form-textarea {
	resize: vertical;
	min-height: 7.5rem;
	line-height: 1.6;
}

.contact-form-submit {
	margin-top: 1.5rem;
	align-self: center;
	padding: 0.875rem 2rem;
	background: var(--accent-color);
	color: var(--primary-dark);
	border: none;
	border-radius: 0.5rem;
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.0313rem;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-submit:hover {
	transform: translateY(-0.125rem);
	box-shadow: 0 0.625rem 1.75rem rgba(243, 156, 18, 0.35);
}

.contact-item {
	display: block;
	padding: 1.875rem;
	background: linear-gradient(135deg, rgba(21, 21, 21, 0.9), rgba(15, 15, 15, 1));
	border-radius: 0.75rem;
	transition: all 0.4s ease;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.05);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.contact-item::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.contact-item:hover::before {
	opacity: 0.08;
}

.contact-item:hover {
	transform: translateY(-0.5rem) scale(1.02);
	box-shadow: 0 0.9375rem 2.1875rem rgba(0, 0, 0, 0.6);
	border-color: rgba(243, 156, 18, 0.3);
}

.contact-icon {
	width: 3.125rem;
	height: 3.125rem;
	margin: 0 auto 0.9375rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(243, 156, 18, 0.05));
	border-radius: 50%;
	transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
	transform: rotate(5deg) scale(1.1);
	background: linear-gradient(135deg, rgba(243, 156, 18, 0.2), rgba(243, 156, 18, 0.1));
}

.contact-icon svg {
	width: 1.5rem;
	height: 1.5rem;
	fill: var(--accent-color);
}

.contact-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.0625rem;
	color: var(--text-gray);
	margin-bottom: 0.625rem;
}

.contact-value {
	color: var(--text-light);
	font-size: 1rem;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item:hover .contact-value {
	color: var(--accent-color);
}

/* Footer */
footer {
	background: var(--primary-dark);
	padding: 2.5rem 1.875rem;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
	max-width: 75rem;
	margin: 0 auto;
}

.footer-text {
	color: var(--text-gray);
	font-size: 0.875rem;
	line-height: 1.8;
}

.footer-text a {
	color: var(--accent-color);
	text-decoration: none;
	font-weight: 600;
	transition: opacity 0.3s ease;
}

.footer-text a:hover {
	opacity: 0.8;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 4.375rem;
		flex-direction: column;
		background: rgba(10, 10, 10, 0.98);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		padding: 1.875rem 0;
		gap: 0.625rem;
		backdrop-filter: blur(0.625rem);
	}

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

	.nav-menu a {
		padding: 0.75rem 1.25rem;
		display: block;
		font-size: 1rem;
	}

	.menu-toggle {
		display: flex;
	}

	.logo {
		gap: 0.625rem;
	}

	.logo-image {
		height: 2.5rem;
		max-width: min(3.25rem, 14vw);
	}

	.menu-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
	}

	.menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(0.3125rem, -0.3125rem);
	}

	.coverflow-container {
		height: clamp(17.5rem, 40vh, 21.875rem);
	}

	.coverflow-item {
		width: clamp(10.625rem, 22vh, 13.75rem);
		height: clamp(14.375rem, 30vh, 18.75rem);
	}

	.about-container {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.about-image {
		aspect-ratio: 16 / 10;
		min-height: 16.25rem;
	}

	.showcase-section .about-image,
	.showcase-section .about-content {
		min-height: auto;
		height: auto;
	}

	.stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.25rem;
	}

	.stat-number {
		font-size: 1.8rem;
	}

	.showcase-controls {
		justify-content: center;
	}

}

@media (max-width: 640px) {
	.contact-info {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.contact-form-wrap {
		padding: 2rem 1.375rem;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.coverflow-container {
		height: clamp(15.625rem, 38vh, 20rem);
	}

	.coverflow-item {
		width: clamp(9.375rem, 20vh, 12.5rem);
		height: clamp(12.5rem, 28vh, 17.5rem);
	}

	.portfolio-overlay {
		padding: 1.25rem;
	}

	.portfolio-title {
		font-size: 1.125rem;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}
}

/* Loading Animation */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.5s ease;
}

.loading-screen.hidden {
	opacity: 0;
	pointer-events: none;
}

.loader {
	width: 3.125rem;
	height: 3.125rem;
	border: 0.1875rem solid rgba(255, 255, 255, 0.1);
	border-top-color: var(--accent-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Smooth Reveal Animations */
.reveal {
	opacity: 0;
	transform: translateY(1.875rem);
	transition: all 0.8s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}