@charset "utf-8";
/* 

CSS Document 

TemplateMo 615 Amber Folio

https://templatemo.com/tm-615-amber-folio

*/

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

:root {
	--primary-dark: #ffffff;
	--secondary-dark: #f8fafc;
	--accent-color: #1d4ed8;
	--text-light: #111827;
	--text-gray: #4b5563;
	--card-dark: #ffffff;
	--hero-gradient: linear-gradient(135deg, #0f172a 0%, #475569 100%);
	--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	max-width: 100%;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: var(--primary-dark);
	color: var(--text-light);
	overflow-x: hidden;
	max-width: 100%;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-tap-highlight-color: transparent;
}

header,
footer,
section {
	max-width: 100%;
}

img,
video {
	max-width: 100%;
	height: auto;
}

/* Global motion system */
.motion-ready .motion-item {
	opacity: 0.01;
	transform: translate3d(0, 16px, 0);
	transition:
		opacity 0.75s var(--ease-out-expo),
		transform 0.75s var(--ease-out-expo);
	transition-delay: var(--motion-delay, 0ms);
	will-change: transform, opacity;
}

.motion-ready .motion-item.in-view {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.motion-ready .service-card.in-view,
.motion-ready .share-card.in-view,
.motion-ready .listing-card.in-view,
.motion-ready .contact-item.in-view {
	animation: cardFloat 6s ease-in-out infinite;
	animation-delay: var(--motion-delay, 0ms);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

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

::-webkit-scrollbar-thumb {
	background: var(--hero-gradient);
	border-radius: 4px;
}

/* Header Navigation */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding-top: calc(20px + env(safe-area-inset-top, 0px));
	padding-bottom: 20px;
	padding-left: max(0px, env(safe-area-inset-left, 0px));
	padding-right: max(0px, env(safe-area-inset-right, 0px));
	transition: all 0.3s ease;
}

header.scrolled {
	padding-top: calc(15px + env(safe-area-inset-top, 0px));
	padding-bottom: 15px;
	background: rgba(255, 255, 255, 0.98);
}

nav {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
}

.logo {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.5px;
	color: rgba(17, 17, 17, 0.75);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
}

.logo:hover {
	color: rgba(17, 17, 17, 0.95);
}

.logo svg {
	width: 32px;
	height: 32px;
	fill: var(--accent-color);
	opacity: 0.9;
	transition: all 0.3s ease;
}

.logo img {
	width: 34px;
	height: 34px;
	object-fit: contain;
	border-radius: 50%;
}

.logo:hover svg {
	opacity: 1;
	transform: rotate(-5deg) scale(1.05);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 5px;
}

.nav-menu a {
	color: rgba(17, 17, 17, 0.65);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.5px;
	padding: 10px 18px;
	position: relative;
	transition: all 0.3s ease;
	border-radius: 6px;
	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(29, 78, 216, 0.12) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.4s ease;
	z-index: -1;
}

.nav-menu a:hover {
	color: rgba(17, 17, 17, 0.95);
	background: linear-gradient(135deg,
			rgba(148, 163, 184, 0.18) 0%,
			rgba(148, 163, 184, 0.08) 100%);
	border-color: rgba(148, 163, 184, 0.45);
	transform: translateY(-1px);
}

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

.nav-menu a.active {
	color: #111111;
	background: rgba(15, 23, 42, 0.08);
	border-color: rgba(15, 23, 42, 0.2);
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
	background: transparent;
	border: 0;
	padding: 6px;
	border-radius: 6px;
	appearance: none;
}

.menu-toggle span {
	width: 25px;
	height: 2px;
	background: var(--text-light);
	transition: all 0.3s ease;
}

.menu-toggle:focus-visible {
	outline: 2px solid rgba(29, 78, 216, 0.65);
	outline-offset: 2px;
}

/* Hero Section */
.hero-section {
	min-height: 620px;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	min-height: 100dvh;
	height: 100vh;
	height: -webkit-fill-available;
	height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: var(--primary-dark);
	margin-top: 0;
	overflow: hidden;
}

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.35;
	z-index: 0;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	background-image:
		repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(148, 163, 184, 0.12) 35px, rgba(148, 163, 184, 0.12) 70px),
		repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(15, 23, 42, .06) 35px, rgba(15, 23, 42, .06) 70px),
		repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(148, 163, 184, 0.08) 50px, rgba(148, 163, 184, 0.08) 100px);
}

/* Animated geometric shapes for hero background */
.hero-section::before {
	content: '';
	position: absolute;
	top: 10%;
	right: 10%;
	width: 300px;
	height: 300px;
	border: 2px solid rgba(29, 78, 216, 0.2);
	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(29, 78, 216, 0.06), transparent 70%);
	display: none;
}

.hero-section::after {
	content: '';
	position: absolute;
	bottom: 10%;
	left: 5%;
	width: 280px;
	height: 280px;
	border: 2px solid rgba(148, 163, 184, 0.35);
	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 40px rgba(15, 23, 42, 0.18);
	display: none;
}

/* Additional floating accent shapes */
.hero-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	transition: transform 0.35s ease-out;
	display: none;
}

.floating-accent {
	position: absolute;
	border: 1px solid rgba(148, 163, 184, 0.5);
	animation: float 15s ease-in-out infinite;
}

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

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

.accent-3 {
	top: 50%;
	right: 30%;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	animation-delay: -10s;
	border-color: rgba(148, 163, 184, 0.5);
}

@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(-20px) translateX(10px) rotate(90deg);
	}

	50% {
		transform: translateY(10px) translateX(-10px) rotate(180deg);
	}

	75% {
		transform: translateY(-10px) translateX(5px) rotate(270deg);
	}
}

.hero-content {
	text-align: center;
	z-index: 2;
	padding: 0 20px;
	max-width: 820px;
}

.hero-title {
	font-size: clamp(2.5rem, 8vw, 5rem);
	font-weight: 900;
	letter-spacing: -2px;
	margin-bottom: 20px;
	background: var(--hero-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-gradient-text {
	background: var(--hero-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

h1, h2, h3, h4, h5, h6 {
	color: #1f2937;
	background: var(--hero-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: clamp(1.08rem, 2.2vw, 1.45rem);
	margin-bottom: 40px;
	font-weight: 500;
	letter-spacing: 1.4px;
}

.cta-button {
	display: inline-block;
	padding: 15px 40px;
	background: var(--hero-gradient);
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-radius: 2px;
	transition: all 0.3s ease, box-shadow 0.35s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.2);
	background-size: 180% 180%;
	animation: gradientShift 5s ease infinite;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.25);
}

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

.section-header {
	text-align: center;
	margin-bottom: 60px;
	padding: 0 20px;
	transition: transform 0.6s var(--ease-out-expo), opacity 0.6s var(--ease-out-expo);
}

.section-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	letter-spacing: -1px;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -8px;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(29, 78, 216, 0.7), transparent);
	transform: scaleX(0.35);
	transform-origin: center;
	animation: titleGlowFlow 3.5s ease-in-out infinite;
}

.section-subtitle {
	color: #374151;
	font-size: clamp(1.06rem, 1.55vw, 1.24rem);
	font-weight: 800;
	line-height: 1.55;
	letter-spacing: 0.04em;
	max-width: 600px;
	margin: 0 auto;
}

#services .section-subtitle {
	color: #1e293b;
	font-size: clamp(1.08rem, 1.6vw, 1.26rem);
	font-weight: 800;
	letter-spacing: 0.04em;
	background: rgba(255, 255, 255, 0.72);
	padding: 10px 16px;
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

/* Coverflow Container */
.coverflow-wrapper {
	width: 100%;
	position: relative;
	padding: 40px 0 80px;
	overflow: hidden;
}

.coverflow-container {
	width: 100%;
	max-width: min(900px, 100%);
	/* Dynamic height based on viewport: min 350px, preferred 45vh, max 500px */
	height: clamp(350px, 45vh, 500px);
	position: relative;
	transform-style: preserve-3d;
	margin: 0 auto;
	perspective: 1200px;
	overflow: visible;
}

.coverflow-item {
	position: absolute;
	/* Dynamic width based on viewport: min 210px, preferred 27vh, max 300px */
	width: clamp(210px, 27vh, 300px);
	/* Dynamic height based on viewport: min 290px, preferred 38vh, max 420px */
	height: clamp(290px, 38vh, 420px);
	left: 50%;
	top: 50%;
	transform-origin: center center;
	cursor: pointer;
	transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

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

	.coverflow-item {
		width: clamp(280px, 30vh, 340px);
		height: clamp(390px, 42vh, 480px);
	}
}

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

	.coverflow-item {
		width: clamp(180px, 24vh, 240px);
		height: clamp(250px, 34vh, 320px);
	}
}

/* Reflection Effect */
.coverflow-item::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	transform: scaleY(-1) translateY(1px);
	opacity: 0.15;
	filter: blur(2px);
	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;
}

@media (max-width: 1100px) {
	.coverflow-wrapper {
		padding: 24px 16px 76px;
		box-sizing: border-box;
	}

	.coverflow-container {
		width: 100%;
		max-width: 560px;
		height: 420px;
		perspective: 900px;
	}

	.coverflow-item {
		width: min(100%, 420px);
		height: 360px;
	}

	.coverflow-item::after {
		display: none;
	}

	.portfolio-overlay {
		transform: translateY(0);
		padding: 16px;
	}

	.coverflow-controls {
		bottom: 6px;
	}

	.indicators {
		bottom: -24px;
	}
}

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

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

.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: 30px;
	transform: translateY(100px);
	transition: transform 0.4s ease;
}

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

.portfolio-category {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--accent-color);
	margin-bottom: 8px;
	font-weight: 600;
}

.portfolio-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--text-light);
	overflow-wrap: anywhere;
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	-webkit-text-fill-color: currentColor;
}

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

/* Navigation Controls */
.coverflow-controls {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	width: max-content;
	margin: 0 auto;
	display: flex;
	gap: 15px;
	z-index: 10;
}

.control-btn {
	width: 45px;
	height: 45px;
	border: 2px solid rgba(15, 23, 42, 0.2);
	background: rgba(255, 255, 255, 0.9);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	color: var(--text-light);
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	position: relative;
}

.control-btn:hover {
	background: var(--hero-gradient);
	border-color: #334155;
	color: #ffffff;
	transform: scale(1.1);
}

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

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

/* Indicators */
.indicators {
	position: absolute;
	bottom: -40px;
	left: 0;
	right: 0;
	width: max-content;
	margin: 0 auto;
	display: flex;
	gap: 8px;
	z-index: 10;
}

.indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(15, 23, 42, 0.22);
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	width: 30px;
	border-radius: 4px;
	background: var(--accent-color);
}

/* About Section */
.about-section {
	padding: 100px 30px;
	background: var(--secondary-dark);
}

.about-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	min-width: 0;
	width: 100%;
}

.about-image {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	filter: grayscale(100%);
	transition: filter 0.5s ease;
}

.about-image video {
	width: 100%;
	height: 100%;
	min-height: 420px;
	display: block;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

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

.about-content h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	margin-bottom: 20px;
	font-weight: 800;
	letter-spacing: -1px;
	color: #0f172a;
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	-webkit-text-fill-color: currentColor;
}

.about-content p {
	color: var(--text-gray);
	line-height: 1.8;
	margin-bottom: 20px;
	font-size: 16px;
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

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

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

.stat-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-gray);
}

/* Services Section */
.services-section {
	padding: 100px 30px;
	background: var(--primary-dark);
}

.services-container {
	max-width: 1200px;
	margin: 0 auto;
	min-width: 0;
	width: 100%;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

/* Prevent grid overflow on very narrow screens */
.services-grid,
.share-grid,
.listing-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.service-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.98));
	padding: 40px 30px;
	border-radius: 12px;
	text-align: center;
	transition: all 0.4s ease;
	border: 1px solid rgba(15, 23, 42, 0.08);
	position: relative;
	overflow: hidden;
	transform-origin: center;
	transform: translateY(0) scale(1);
	will-change: transform;
}

.service-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -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;
}

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

.service-card:hover {
	transform: translateY(-10px) scale(1.01);
	border-color: rgba(15, 23, 42, 0.22);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.service-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(29, 78, 216, 0.03));
	border-radius: 50%;
	transition: all 0.4s ease;
}

.service-card:hover .service-icon {
	transform: scale(1.1);
	background: linear-gradient(135deg, rgba(29, 78, 216, 0.16), rgba(29, 78, 216, 0.08));
}

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

.service-title {
	font-size: 1.5rem;
	margin-bottom: 18px;
	font-weight: 700;
	color: var(--text-light);
	letter-spacing: -0.5px;
	overflow-wrap: anywhere;
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	-webkit-text-fill-color: currentColor;
}

.benefits-list {
	margin: 42px auto 0;
	max-width: 980px;
	padding: 20px 24px;
	list-style: none;
	color: #1e293b;
	font-size: clamp(1.12rem, 1.35vw, 1.32rem);
	line-height: 1.95;
	columns: 2;
	column-gap: 44px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.95));
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.benefits-list li {
	break-inside: avoid;
	margin-bottom: 10px;
	font-weight: 700;
	padding-left: 26px;
	position: relative;
}

.benefits-list li::before {
	content: "◆";
	position: absolute;
	left: 0;
	top: 0;
	color: #334155;
	font-size: 0.9em;
	line-height: 1.4;
}

.service-description {
	color: var(--text-gray);
	line-height: 1.8;
	font-size: 15px;
	margin-bottom: 25px;
}

.service-price {
	font-size: 13px;
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
}

/* Visual Story Sections */
.visual-story-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr 0.8fr;
	gap: 24px;
	align-items: stretch;
	min-width: 0;
}

.visual-story-image-large img {
	width: 100%;
	height: 100%;
	min-height: 380px;
	object-fit: cover;
	border-radius: 14px;
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.visual-story-text {
	background: linear-gradient(145deg, #ffffff, #f8fbff);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	padding: 28px 26px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.visual-story-text h2 {
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	margin-bottom: 14px;
	color: #0f172a;
	letter-spacing: -0.4px;
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	-webkit-text-fill-color: currentColor;
}

.visual-story-text p {
	color: var(--text-gray);
	line-height: 1.85;
	margin-bottom: 10px;
}

.visual-story-tagline {
	margin-top: 12px;
	margin-bottom: 0;
	font-weight: 800;
	line-height: 1.35;
	text-align: center;
	font-size: clamp(1.18rem, 2.1vw, 1.6rem);
	letter-spacing: 0.6px;
	text-transform: uppercase;
	background: linear-gradient(135deg, #e2e8f0 0%, #f8fafc 100%);
	border: 1px solid rgba(100, 116, 139, 0.35);
	border-radius: 12px;
	padding: 14px 16px;
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.visual-story-tagline span {
	display: block;
	color: #475569;
	text-shadow: none;
}

.visual-story-image-stack {
	display: grid;
	grid-template-rows: minmax(182px, 1fr) minmax(182px, 1fr);
	gap: 16px;
	min-height: 0;
	min-width: 0;
	align-self: stretch;
}

.visual-story-image-stack img {
	width: 100%;
	height: 100%;
	min-height: 182px;
	object-fit: cover;
	border-radius: 14px;
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.visual-banner-wrap {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1.2fr 1fr;
	gap: 24px;
	align-items: center;
}

.visual-banner-left,
.visual-banner-right {
	width: 100%;
	object-fit: cover;
	border-radius: 14px;
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.15);
}

.visual-banner-left {
	height: 260px;
}

.visual-banner-right {
	height: 220px;
	margin-top: 30px;
}

.visual-banner-text {
	background: #ffffff;
	border-radius: 0;
	padding: 0;
	text-align: center;
}

.visual-banner-heading {
	font-family: "Times New Roman", "Georgia", serif;
	font-size: clamp(1.6rem, 2.9vw, 2.4rem);
	line-height: 1.35;
	letter-spacing: 0.12em;
	color: #1f2937;
	text-transform: uppercase;
}

.vb-line {
	display: block;
	background: linear-gradient(90deg, #1e293b 0%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 1px 2px rgba(15, 23, 42, 0.18);
}

.vb-em {
	background: linear-gradient(90deg, #475569 0%, #94a3b8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.vb-alt {
	background: linear-gradient(90deg, #94a3b8 0%, #e2e8f0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.share-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.share-card {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
	display: flex;
	flex-direction: column;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.share-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 36px rgba(15, 23, 42, 0.18);
}

.share-card img {
	width: 100%;
	height: 210px;
	object-fit: cover;
}

.share-card-body {
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.share-card-body h3 {
	font-size: 1.1rem;
	color: #0f172a;
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	-webkit-text-fill-color: currentColor;
}

.share-card-body p {
	color: var(--text-gray);
	line-height: 1.7;
	margin-bottom: 4px;
}

.share-card-body .cta-button {
	align-self: flex-start;
	padding: 11px 22px;
	font-size: 12px;
}

.listing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

@media (max-width: 1100px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: calc(70px + env(safe-area-inset-top, 0px));
		flex-direction: column;
		background: rgba(255, 255, 255, 0.98);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		padding: 30px 0;
		padding-bottom: calc(30px + env(safe-area-inset-bottom, 0px));
		gap: 10px;
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		z-index: 1200;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
		height: calc(100vh - 70px - env(safe-area-inset-top, 0px));
		max-height: calc(100vh - 70px - env(safe-area-inset-top, 0px));
		height: calc(100dvh - 70px - env(safe-area-inset-top, 0px));
		max-height: calc(100dvh - 70px - env(safe-area-inset-top, 0px));
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		border-top: 1px solid rgba(15, 23, 42, 0.08);
	}

	.nav-menu.active {
		left: 0;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.nav-menu a {
		display: block;
		font-size: 16px;
		margin: 0 16px;
	}

	.menu-toggle {
		display: flex;
		z-index: 1300;
	}
}

.listing-card {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.listing-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 22px 38px rgba(15, 23, 42, 0.2);
}

.listing-card img {
	width: 100%;
	height: 210px;
	object-fit: cover;
}

.listing-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(15, 23, 42, 0.85);
	color: #fff;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.4px;
}

.listing-card--soldout .listing-badge {
	background: #b91c1c;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.35);
	box-shadow: 0 8px 18px rgba(185, 28, 28, 0.35);
}

.listing-card--soldout img {
	filter: grayscale(0.35);
	opacity: 0.92;
}

.listing-card--soldout:hover {
	transform: translateY(-4px);
}

.listing-body {
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.listing-body h3 {
	font-size: 1.15rem;
	color: #0f172a;
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	-webkit-text-fill-color: currentColor;
}

.listing-body p {
	color: var(--text-gray);
	line-height: 1.7;
}

.listing-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 13px;
	color: #334155;
	margin-bottom: 4px;
}

.listing-body .cta-button {
	align-self: flex-start;
	padding: 10px 20px;
	font-size: 12px;
}

/* Legal Section Visual Enhancements */
.legal-layout {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 28px;
	align-items: start;
	min-width: 0;
}

.legal-hero-card {
	background: linear-gradient(145deg, #ffffff, #f4f8ff);
	border: 1px solid rgba(29, 78, 216, 0.18);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
	transform-origin: center left;
	transform: translateX(0);
	transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
}

.legal-hero-media {
	height: 230px;
	position: relative;
}

.legal-hero-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.legal-hero-content {
	padding: 24px;
}

.legal-hero-content h3 {
	font-size: 1.6rem;
	margin-bottom: 12px;
	color: #0f172a;
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	-webkit-text-fill-color: currentColor;
}

.legal-hero-content p {
	color: var(--text-gray);
	line-height: 1.8;
	margin-bottom: 18px;
}

.legal-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.legal-metric {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 12px;
	padding: 12px 10px;
	text-align: center;
}

.legal-metric strong {
	display: block;
	font-size: 1.05rem;
	color: #1d4ed8;
	margin-bottom: 4px;
}

.legal-metric span {
	font-size: 12px;
	color: #475569;
}

.legal-timeline {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding-left: 18px;
	opacity: 1;
	transform: translateX(0);
}

.legal-timeline::before {
	content: '';
	position: absolute;
	left: 5px;
	top: 6px;
	bottom: 6px;
	width: 2px;
	background: linear-gradient(to bottom, rgba(29, 78, 216, 0.4), rgba(148, 163, 184, 0.35));
}

.legal-step {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 14px;
	align-items: start;
	transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.legal-step-no {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #1d4ed8;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	box-shadow: 0 8px 18px rgba(29, 78, 216, 0.25);
}

.legal-step-body {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 14px;
	padding: 16px 18px;
	min-width: 0;
}

.legal-step:hover .legal-step-body {
	border-color: rgba(29, 78, 216, 0.35);
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.16);
	transform: translateY(-2px);
}

.legal-step:hover .legal-step-no {
	background: #0f172a;
}

/* Scroll reveal base */
.reveal {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.8s var(--ease-out-expo);
}

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

/* Legal section entrance */
.legal-section .reveal .legal-hero-card,
.legal-section .reveal .legal-layout {
	animation: legalHeroIn 0.9s var(--ease-out-expo) forwards;
}

.legal-section .reveal .legal-timeline {
	animation: legalTimelineIn 0.8s var(--ease-out-expo) forwards;
	animation-delay: 0.12s;
}

.legal-timeline .legal-step:nth-child(1) {
	animation: legalStepIn 0.6s var(--ease-out-expo) 0.1s forwards;
}

.legal-timeline .legal-step:nth-child(2) {
	animation: legalStepIn 0.6s var(--ease-out-expo) 0.2s forwards;
}

.legal-timeline .legal-step:nth-child(3) {
	animation: legalStepIn 0.6s var(--ease-out-expo) 0.3s forwards;
}

.legal-timeline .legal-step:nth-child(4) {
	animation: legalStepIn 0.6s var(--ease-out-expo) 0.4s forwards;
}

/* Keyframes */
@keyframes legalHeroIn {
	from {
		opacity: 0;
		transform: translateX(-24px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes legalTimelineIn {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes legalStepIn {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.legal-step-body h3 {
	font-size: 1.08rem;
	margin-bottom: 8px;
	color: #0f172a;
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	-webkit-text-fill-color: currentColor;
}

.legal-step-body p {
	font-size: 15px;
	line-height: 1.75;
	color: var(--text-gray);
}

/* Contact Section */
.contact-section {
	padding: 100px 30px;
	background: var(--secondary-dark);
}

.contact-container {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	min-width: 0;
	width: 100%;
}

.contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.contact-form {
	margin-top: 34px;
	background: linear-gradient(135deg, #ffffff, #f8fafc);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	padding: 24px;
	text-align: left;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.contact-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid rgba(15, 23, 42, 0.14);
	background: #fff;
	border-radius: 10px;
	padding: 13px 14px;
	font-size: 14px;
	color: #0f172a;
	outline: none;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: rgba(29, 78, 216, 0.55);
	box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

.contact-form textarea {
	resize: vertical;
	margin-bottom: 14px;
}

.whatsapp-float {
	position: fixed;
	right: max(22px, env(safe-area-inset-right, 0px));
	bottom: max(22px, env(safe-area-inset-bottom, 0px));
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25D366;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 14px 32px rgba(37, 211, 102, 0.42);
	z-index: 1100;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	animation: whatsappPulse 2.2s ease-in-out infinite;
}

@media (max-width: 1100px) {
	.whatsapp-float {
		display: inline-flex !important;
		visibility: visible !important;
		opacity: 1 !important;
		right: max(12px, env(safe-area-inset-right));
		bottom: max(12px, env(safe-area-inset-bottom));
		z-index: 2000;
	}
}

.contact-form,
.share-card,
.listing-card,
.service-card,
.legal-step-body {
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}

.whatsapp-float svg {
	width: 30px;
	height: 30px;
}

.whatsapp-float:hover {
	transform: translateY(-3px) scale(1.04);
	box-shadow: 0 18px 34px rgba(37, 211, 102, 0.5);
}

.contact-item {
	display: block;
	padding: 30px;
	background: linear-gradient(135deg, #ffffff, #f8fafc);
	border-radius: 12px;
	transition: all 0.4s ease;
	text-decoration: none;
	border: 1px solid rgba(15, 23, 42, 0.08);
	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(-8px) scale(1.02);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
	border-color: rgba(15, 23, 42, 0.22);
}

.contact-icon {
	width: 50px;
	height: 50px;
	margin: 0 auto 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(29, 78, 216, 0.03));
	border-radius: 50%;
	transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
	transform: rotate(5deg) scale(1.1);
	background: linear-gradient(135deg, rgba(29, 78, 216, 0.18), rgba(29, 78, 216, 0.08));
}

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

.contact-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-gray);
	margin-bottom: 10px;
}

.contact-value {
	color: var(--text-light);
	font-size: 16px;
	text-decoration: none;
	transition: color 0.3s ease;
	overflow-wrap: anywhere;
}

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

/* Footer */
footer {
	background: var(--primary-dark);
	padding: 40px 30px;
	text-align: center;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
}

.social-link {
	width: 45px;
	height: 45px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-gray);
	text-decoration: none;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.85);
	position: relative;
	overflow: hidden;
}

.social-link::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: var(--accent-color);
	transition: all 0.4s ease;
	transform: translate(-50%, -50%);
}

.social-link:hover::before {
	width: 100%;
	height: 100%;
}

.social-link svg {
	width: 20px;
	height: 20px;
	fill: #475569;
	z-index: 1;
	transition: all 0.3s ease;
}

.social-link:hover {
	border-color: var(--accent-color);
	transform: translateY(-3px);
}

.social-link:hover svg {
	fill: #111111;
}

.footer-text {
	color: var(--text-gray);
	font-size: 14px;
	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) {
	body.menu-open {
		overflow: hidden;
	}

	header {
		padding: 14px 0;
	}

	nav {
		padding: 0 16px;
	}

	.logo {
		font-size: 19px;
		gap: 8px;
		max-width: calc(100% - 54px);
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.logo img {
		width: 30px;
		height: 30px;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: calc(70px + env(safe-area-inset-top, 0px));
		flex-direction: column;
		background: rgba(255, 255, 255, 0.98);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		padding: 30px 0;
		padding-bottom: calc(30px + env(safe-area-inset-bottom, 0px));
		gap: 10px;
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		z-index: 1200;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
		height: calc(100vh - 70px - env(safe-area-inset-top, 0px));
		max-height: calc(100vh - 70px - env(safe-area-inset-top, 0px));
		height: calc(100dvh - 70px - env(safe-area-inset-top, 0px));
		max-height: calc(100dvh - 70px - env(safe-area-inset-top, 0px));
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		border-top: 1px solid rgba(15, 23, 42, 0.08);
	}

	.nav-menu.active {
		left: 0;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.nav-menu a {
		padding: 12px 20px;
		display: block;
		font-size: 16px;
		margin: 0 16px;
	}

	.menu-toggle {
		display: flex;
		z-index: 1300;
	}

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

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

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

	.coverflow-wrapper {
		padding-left: 12px;
		padding-right: 12px;
	}

	.coverflow-container {
		width: 100%;
		max-width: 100%;
		height: 360px;
		perspective: 900px;
		margin-inline: auto;
	}

	.coverflow-item {
		width: min(100%, 360px);
		height: min(85vmin, 380px);
		max-height: 380px;
	}

	.portfolio-overlay {
		padding: 16px;
		transform: translateY(0);
		overflow-wrap: anywhere;
	}

	.portfolio-title {
		font-size: 18px;
	}

	.portfolio-description {
		font-size: 12px;
		line-height: 1.4;
	}

	.coverflow-controls {
		bottom: -2px;
	}

	.indicators {
		bottom: -34px;
	}

	.about-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-image video {
		min-height: 300px;
	}

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

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

	.contact-info {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contact-form-grid {
		grid-template-columns: 1fr;
	}

	.legal-layout {
		grid-template-columns: 1fr;
	}

	.legal-hero-media {
		height: 200px;
	}

	.legal-metrics {
		grid-template-columns: 1fr;
	}

	.visual-story-grid {
		grid-template-columns: 1fr;
	}

	.visual-story-image-large img {
		min-height: 260px;
	}

	.visual-story-image-stack {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: none;
		align-items: start;
	}

	.visual-story-image-stack img {
		height: 190px;
		min-height: 0;
	}

	.visual-banner-wrap {
		grid-template-columns: 1fr;
	}

	.visual-banner-heading {
		letter-spacing: 0.15em;
	}

	.benefits-list {
		columns: 1;
		max-width: 100%;
	}

	.visual-banner-left,
	.visual-banner-right {
		height: 200px;
	}

	.services-section,
	.about-section,
	.contact-section {
		padding: 72px 20px;
	}

	.section-header {
		margin-bottom: 40px;
	}

	.services-grid {
		margin-top: 36px;
		gap: 20px;
	}

	.service-card {
		padding: 28px 20px;
	}

	.share-grid,
	.listing-grid {
		grid-template-columns: 1fr;
	}

	.share-card-body .cta-button,
	.listing-body .cta-button {
		align-self: stretch;
		text-align: center;
	}

	.whatsapp-float {
		right: 16px;
		bottom: 16px;
		width: 52px;
		height: 52px;
	}
}

@media (max-width: 480px) {
	nav {
		padding: 0 12px;
	}

	.logo {
		font-size: 17px;
	}

	.nav-menu {
		top: calc(62px + env(safe-area-inset-top, 0px));
		height: calc(100vh - 62px - env(safe-area-inset-top, 0px));
		max-height: calc(100vh - 62px - env(safe-area-inset-top, 0px));
		height: calc(100dvh - 62px - env(safe-area-inset-top, 0px));
		max-height: calc(100dvh - 62px - env(safe-area-inset-top, 0px));
		padding: 20px 0 calc(26px + env(safe-area-inset-bottom, 0px));
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		letter-spacing: 0.5px;
		margin-bottom: 28px;
	}

	.cta-button {
		width: 100%;
		text-align: center;
		padding: 14px 18px;
	}

	.coverflow-wrapper {
		padding-left: 10px;
		padding-right: 10px;
	}

	.coverflow-container {
		width: 100%;
		max-width: 100%;
		height: 300px;
		perspective: 780px;
		margin-inline: auto;
	}

	.coverflow-item {
		width: min(100%, 320px);
		height: min(80vmin, 320px);
		max-height: 320px;
	}

	.portfolio-overlay {
		padding: 12px;
		transform: translateY(0);
		max-height: 70%;
		overflow: hidden;
	}

	.portfolio-title {
		font-size: 16px;
		margin-bottom: 4px;
	}

	.portfolio-category {
		font-size: 10px;
		letter-spacing: 1px;
		margin-bottom: 4px;
	}

	.portfolio-description {
		font-size: 11px;
		line-height: 1.35;
	}

	.control-btn {
		width: 38px;
		height: 38px;
		font-size: 16px;
	}

	.coverflow-controls {
		gap: 10px;
		bottom: 4px;
	}

	.indicators {
		bottom: -20px;
		gap: 6px;
	}

	.indicator.active {
		width: 22px;
	}

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

	.services-section,
	.about-section,
	.contact-section {
		padding: 60px 14px;
	}

	.section-subtitle {
		font-size: clamp(1rem, 3.2vw, 1.12rem);
		font-weight: 800;
	}

	.stats {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.stat-item {
		padding: 10px 0;
		border: 1px solid rgba(15, 23, 42, 0.08);
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.72);
	}

	.visual-story-image-stack {
		grid-template-columns: 1fr;
	}

	.visual-story-image-stack img {
		height: 170px;
		min-height: 0;
		object-fit: cover;
	}

	.legal-step {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.legal-timeline {
		padding-left: 0;
	}

	.legal-timeline::before {
		display: none;
	}

	.legal-step-no {
		width: 28px;
		height: 28px;
	}
}

@media (max-width: 360px) {
	nav {
		padding: 0 10px;
	}

	.logo {
		font-size: 15px;
	}

	.section-title {
		font-size: 1.55rem;
	}

	.section-subtitle {
		font-size: clamp(0.98rem, 3.8vw, 1.06rem);
		font-weight: 800;
	}

	.services-section,
	.about-section,
	.contact-section {
		padding: 50px 10px;
	}

	.service-card,
	.contact-item,
	.contact-form {
		padding: 16px 12px;
	}

	.hero-title {
		font-size: 2.1rem;
	}
}

/* Loading Animation */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding-top: env(safe-area-inset-top, 0px);
	padding-right: env(safe-area-inset-right, 0px);
	padding-bottom: env(safe-area-inset-bottom, 0px);
	padding-left: env(safe-area-inset-left, 0px);
	background: var(--primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.5s ease;
	/* Fallback: auto-hide even if JS is cached/broken. */
	animation: loadingAutoHide 2.4s ease forwards;
}

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

@keyframes loadingAutoHide {
	0% {
		opacity: 1;
		visibility: visible;
	}
	75% {
		opacity: 1;
		visibility: visible;
	}
	100% {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
}

.loading-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.loading-logo {
	width: 78px;
	height: 78px;
	object-fit: contain;
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
	animation: pulseLogo 1.8s ease-in-out infinite;
}

.loading-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: 0.3px;
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	-webkit-text-fill-color: currentColor;
}

.loading-subtitle {
	font-size: 14px;
	color: #475569;
	margin-bottom: 2px;
}

.loader {
	width: 42px;
	height: 42px;
	border: 3px solid rgba(15, 23, 42, 0.14);
	border-top-color: var(--accent-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

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

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

@keyframes pulseLogo {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.06); }
}

@keyframes titleGlowFlow {
	0%, 100% {
		transform: scaleX(0.35);
		opacity: 0.65;
	}
	50% {
		transform: scaleX(1);
		opacity: 1;
	}
}

@keyframes whatsappPulse {
	0%, 100% {
		box-shadow: 0 14px 32px rgba(37, 211, 102, 0.42);
	}
	50% {
		box-shadow: 0 20px 42px rgba(37, 211, 102, 0.58);
	}
}

@keyframes gradientShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@keyframes heroVideoFloat {
	0% { transform: scale(1.02) translateY(0); }
	100% { transform: scale(1.08) translateY(-10px); }
}

@keyframes cardFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}

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

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