@import url("https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap");

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Lato", sans-serif;
	color: #bbb;
	line-height: 1.6;
	background-color: #1f1f1f;
}

h1,
h2,
h3,
.logo {
	font-family: "Playfair Display", serif;
}

/* Navbar */
header {
	background: #282828;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	height: 80px;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.logo span {
	color: #d4af37;
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-links li a {
	text-decoration: none;
	color: #eee;
	padding: 0 1.5rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
	transition: color 0.3s;
}

.nav-links li a:hover {
	color: #d4af37;
}

.nav-icons {
	display: flex;
	align-items: center;
	gap: 15px;
}

.nav-icons a {
	color: #eee;
	margin-left: 1rem;
	font-size: 1.1rem;
}

.quote-btn {
	background-color: #d4af37;
	color: #fff !important;
	padding: 0.6rem 1.2rem;
	border-radius: 2px;
	font-size: 0.85rem !important;
	font-weight: 600;
	margin-left: 0 !important;
	text-decoration: none;
}

.quote-btn:hover {
	background-color: #b8962e;
	transform: translateY(-2px);
}

.menu-toggle {
	display: none;
	cursor: pointer;
	color: #eee;
}

/* Hero Section */
.hero {
	height: 35vh;
	min-height: 280px;
	margin-top: 60px; /* Add margin-top for fixed header */
	background:
		linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
		url("https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?auto=format&fit=crop&q=80&w=1600")
			center/cover no-repeat;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	padding: 0 10%;
	position: relative;
	color: #fff;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.8) 0%,
		rgba(0, 0, 0, 0.4) 100%
	);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
}

.hero-subtitle {
	display: block;
	color: #d4af37;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 600;
	font-size: 0.8rem;
	margin-bottom: 1rem;
}

.hero-content h1 {
	font-size: 2.8rem;
	margin-bottom: 0.5rem;
	line-height: 1.1;
}

.hero-content p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	opacity: 0.8;
	font-weight: 300;
	max-width: 550px;
}

.hero-btns {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.scroll-indicator {
	position: absolute;
	bottom: 40px;
	right: 10%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	font-size: 0.75rem;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.scroll-indicator .line {
	width: 1px;
	height: 60px;
	background: #d4af37;
}

.btn {
	padding: 0.8rem 2rem;
	background-color: #d4af37;
	border: 1px solid #d4af37;
	color: #fff;
	text-decoration: none;
	border-radius: 2px;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn:hover {
	background-color: #b8962e;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
	background: transparent;
	border: 1px solid #fff;
}

.btn-outline-white:hover {
	background: #fff;
	color: #1a1a1a;
}

/* Intro Section */
.intro-section {
	padding: 60px 10%;
	background: #1f1f1f;
}

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

.intro-description p {
	font-size: 1.1rem;
	color: #aaa;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.text-link {
	color: #d4af37;
	text-decoration: none;
	font-weight: 700;
	border-bottom: 2px solid #d4af37;
	padding-bottom: 5px;
	margin-top: 2rem;
	display: inline-block;
	transition: all 0.3s ease;
}

.text-link i {
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.text-link:hover {
	color: #fff;
	border-bottom-color: #fff;
}

.text-link:hover i {
	transform: translateX(5px);
}

.intro-image {
	position: relative;
	padding: 40px;
}

.intro-image::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 85%;
	height: 85%;
	background-color: #323232;
	z-index: 0;
}

.intro-image img {
	position: relative;
	z-index: 1;
	width: 100%;
	display: block;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Global Section Typography */
.sub-title {
	display: block;
	color: #d4af37;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 600;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.section-title {
	font-size: 3rem;
	line-height: 1.2;
	margin: 1rem 0;
	color: #fff;
	letter-spacing: -1px;
}

/* Process Section */
.process-section {
	padding: 4rem 5%;
	background-color: #1a1a1a;
	text-align: center;
}

.process-container {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-email {
	color: #ccc;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.footer-email:hover {
	color: #d4af37;
}

.social-links {
	margin-top: 1.5rem;
	display: flex;
	gap: 15px;
}

.social-links a {
	color: #ccc;
	font-size: 1.1rem;
	transition: color 0.3s ease;
}

.social-links a:hover {
	color: #d4af37;
}

/* Feature Highlight Section */
.feature-highlight-section {
	padding: 4rem 5%;
	background-color: #121212;
}

.feature-highlight-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 6rem;
}

.feature-highlight-container.reversed {
	flex-direction: row-reverse;
}

.feature-lists-wrapper {
	display: flex;
	gap: 3rem;
	margin-top: 2.5rem;
}

.feature-list-col h4 {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1.2rem;
	color: #fff;
	border-left: 3px solid #d4af37;
	padding-left: 12px;
}

.feature-highlight-content {
	flex: 1.4;
}

.feature-index {
	font-family: "Playfair Display", serif;
	font-size: 1.1rem;
	color: #d4af37;
	font-weight: 700;
	display: block;
	margin-bottom: 0.5rem;
}

.feature-tagline {
	font-size: 1.2rem;
	color: #888;
	margin-bottom: 1.5rem;
}

.feature-description {
	color: #aaa;
	line-height: 1.8;
	font-size: 1rem;
}

.feature-highlight-image {
	flex: 1;
}

.feature-highlight.zoom-modal-content img {
	max-width: 90%;
	max-height: 90vh;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Fix for Mobile Navigation Menu using Tailwind */
#nav-menu.active {
	display: flex !important;
	opacity: 1 !important;
}

.feature-highlight-image img {
	width: 100%;
	border-radius: 4px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
	display: block;
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-highlight-image:hover img {
	transform: scale(1.04);
}

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

.process-item {
	background: #323232;
	padding: 3rem 1.5rem;
	border-radius: 4px;
	border: 1px solid #d4af37;
	transition: all 0.4s ease;
}

.process-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.process-number {
	font-family: "Playfair Display", serif;
	font-size: 5.5rem;
	color: rgba(212, 175, 55, 0.2);
	font-weight: 700;
	margin-bottom: -2rem;
}

.process-item p {
	color: #aaa;
	font-size: 0.95rem;
}

/* Work Section */
.work-section {
	padding: 3rem 5%;
	background-color: #282828;
	text-align: center;
}

.work-container {
	max-width: 1100px;
	margin: 0 auto;
}

.work-tags {
	color: #666;
	font-size: 0.95rem;
	margin-bottom: 3rem;
	letter-spacing: 1px;
}

.work-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	margin-bottom: 3rem;
	perspective: 1200px;
}

.work-card {
	background: #323232;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border: 1px solid #d4af37;
	transition:
		transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
		box-shadow 0.6s ease;
	transform-style: preserve-3d;
}

.work-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
	backface-visibility: hidden;
}

.work-card:hover {
	border-color: #d4af37;
	transform: rotateX(10deg) rotateY(-10deg) translateZ(30px);
	box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
	z-index: 10;
}

.work-card:hover img {
	transform: scale(1.1);
}

.portfolio-link {
	color: #d4af37;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	border-bottom: 2px solid #d4af37;
	padding-bottom: 5px;
	transition: all 0.3s ease;
}

.portfolio-link:hover {
	color: #fff;
	border-bottom-color: #fff;
}

/* Why Section */
.why-section {
	padding: 3rem 5%;
	background-color: #1f1f1f;
	position: relative;
	text-align: center;
}

.why-container {
	max-width: 1100px;
	margin: 0 auto;
}

.why-header {
	margin-bottom: 4rem;
}

.why-header .section-desc {
	max-width: 800px;
	margin: 0 auto;
	color: #666;
	font-size: 1.1rem;
}

.why-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.why-item {
	background: #323232;
	padding: 3rem 2rem;
	border: 1px solid #d4af37;
	transition: all 0.4s ease;
	text-align: left;
}

.why-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.why-item .stat {
	font-family: "Playfair Display", serif;
	font-size: 4.5rem;
	color: #d4af37;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

/* Video Section */
.video-section {
	padding: 5rem 5%;
	background: radial-gradient(circle at top right, #2a2a2a, #1f1f1f);
}

.video-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 5rem;
}

.video-content {
	flex: 1;
	text-align: left;
}

.video-wrapper {
	flex: 1.2;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
	position: relative;
	border: 1px solid rgba(212, 175, 55, 0.15);
	transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
	background: #000;
}

.video-wrapper::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.5));
	pointer-events: none;
	z-index: 2;
}

.video-wrapper:hover {
	transform: translateY(-15px);
	box-shadow:
		0 50px 100px rgba(0, 0, 0, 0.7),
		0 0 30px rgba(212, 175, 55, 0.1);
	border-color: rgba(212, 175, 55, 0.6);
}

.video-wrapper video {
	width: 100%;
	display: block;
	filter: brightness(0.8) grayscale(20%);
	transition:
		transform 1.2s ease,
		filter 0.8s ease;
	position: relative;
	z-index: 1;
}

.video-wrapper:hover video {
	transform: scale(1.05);
	filter: brightness(1) grayscale(0%);
}

.video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: rgba(212, 175, 55, 0.9);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 10;
	box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
	animation: playPulse 2s infinite;
	transition: all 0.3s ease;
}

.video-play-btn:hover {
	background-color: #fff;
	color: #d4af37;
	transform: translate(-50%, -50%) scale(1.1);
}

@keyframes playPulse {
	0% {
		transform: translate(-50%, -50%) scale(0.95);
		box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
	}

	70% {
		transform: translate(-50%, -50%) scale(1);
		box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
	}

	100% {
		transform: translate(-50%, -50%) scale(0.95);
		box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
	}
}

/* Testimonials */
.testimonials-section {
	padding: 4rem 5%;
	background: #1a1a1a;
	text-align: center;
	border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonial-slider {
	max-width: 800px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

.testimonial-track {
	display: flex;
	transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.testimonial-slide {
	flex: 0 0 100%;
	background: #222;
	padding: 5rem 4rem;
	border-left: 3px solid #d4af37;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content .quote {
	font-family: "Playfair Display", serif;
	font-size: 1.8rem;
	line-height: 1.6;
	margin-bottom: 3rem;
	color: #fff;
	font-style: italic;
	position: relative;
	z-index: 1;
}

.testimonial-content .quote::before {
	content: '"';
	position: absolute;
	top: -40px;
	left: -20px;
	font-size: 8rem;
	color: rgba(212, 175, 55, 0.15);
	font-family: "Playfair Display", serif;
	z-index: -1;
}

.client-info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.client-info img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #d4af37;
}

.client-info div {
	text-align: left;
}

/* Updated Client Typography */
/* MOBILE TOGGLE */
.mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	z-index: 1001;
}

.mobile-toggle span {
	display: block;
	width: 28px;
	height: 2px;
	background: #fff;
	transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.mobile-toggle.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.mobile-only {
	display: none;
}

@media (max-width: 1024px) {
	.mobile-toggle {
		display: flex;
	}

	.nav-actions-ref {
		display: none;
	}

	.mobile-only {
		display: block;
	}

	.nav-links-ref {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: #0a0a0a;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 3rem;
		transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
		z-index: 1000;
	}

	.nav-links-ref.active {
		right: 0;
	}

	.nav-links-ref li a {
		font-size: 1.5rem;
	}
}

.client-info strong {
	display: block;
	color: #fff;
	font-size: 1.1rem;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.client-info span {
	display: block;
	font-size: 0.8rem;
	color: #d4af37;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 4px;
}

/* Slider Dots */
.slider-dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 3rem;
}

.dot {
	width: 8px;
	height: 8px;
	border: 1px solid #d4af37;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background-color: #d4af37;
	width: 24px;
	border-radius: 4px;
}

.video-features {
	list-style: none;
	margin-top: 2.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 1.5rem;
}

.video-features li {
	margin-bottom: 1.2rem;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 400;
	color: #aaa;
	font-size: 1rem;
	transition: color 0.3s ease;
}

.video-features li i {
	color: #d4af37;
	font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
	padding: 8rem 5%;
	background: linear-gradient(180deg, #222222 0%, #1a1a1a 100%);
	text-align: center;
}

.cta-container .section-title {
	margin-bottom: 2.5rem;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
}

.btn-outline {
	background-color: transparent;
	border: 1px solid #d4af37;
	color: #d4af37;
	padding: 1rem 2.5rem;
	font-weight: 600;
	letter-spacing: 1px;
}

.btn-outline:hover {
	background-color: #d4af37;
	color: #fff;
	box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Footer */
footer {
	background-color: #282828;
	color: #fff;
	padding: 4rem 5% 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-section h3,
.footer-section h4 {
	margin-bottom: 1.5rem;
	color: #d4af37;
}

.footer-brand .logo {
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.footer-tagline {
	color: #d4af37;
	font-weight: 600;
	margin-top: 1.5rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li a {
	color: #ccc;
	text-decoration: none;
	display: block;
	margin-bottom: 0.5rem;
}

.footer-bottom {
	text-align: center;
	margin-top: 3rem;
	border-top: 1px solid #333;
	padding-top: 1.5rem;
	color: #777;
	font-size: 0.9rem;
}

@media (max-width: 1024px) {
	.navbar {
		padding: 0 20px;
	}

	.logo {
		font-size: 1.5rem;
	}

	.nav-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #282828;
		padding: 1.5rem 0;
		text-align: center;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
		z-index: 1001;
	}

	.nav-links.active {
		display: flex;
	}

	.nav-links li {
		margin: 1rem 0;
	}

	.menu-toggle {
		display: block;
	}

	.work-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.quote-btn {
		display: none;
	}

	.hero {
		min-height: 100vh;
		padding: 120px 5% 80px;
		justify-content: center;
		align-items: center;
		text-align: center;
		background-attachment: scroll;
	}

	.hero-overlay {
		background: rgba(0, 0, 0, 0.6);
	}

	.hero-content {
		max-width: 100%;
		margin: 0 auto;
	}

	.hero-content h1 {
		font-size: 2.8rem;
		margin-bottom: 1.5rem;
	}

	.hero-content p {
		margin: 0 auto 2.5rem;
	}

	.hero-btns {
		justify-content: center;
		margin: 0 auto;
		gap: 1.2rem;
	}

	.scroll-indicator {
		display: none;
	}

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

	.category-card img {
		height: 300px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 3rem;
	}

	.social-links {
		justify-content: center;
	}

	.video-container {
		flex-direction: column;
		gap: 3rem;
	}

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

	.video-features {
		display: inline-block;
		text-align: left;
	}

	.intro-section {
		padding: 100px 5%;
	}

	.intro-container {
		grid-template-columns: 1fr;
		gap: 60px;
		text-align: center;
	}

	.intro-image {
		max-width: 500px;
		margin: 0 auto;
		padding: 30px;
	}

	.intro-image::before {
		width: 100%;
		height: 100%;
		left: 50%;
		transform: translate(-50%, -5%);
	}

	.feature-highlight-container {
		flex-direction: column;
		gap: 3rem;
		text-align: center;
	}

	.feature-highlight-container.reversed {
		flex-direction: column;
	}

	.feature-lists-wrapper {
		flex-direction: column;
		gap: 2rem;
	}

	.cta-buttons {
		flex-direction: column;
	}

	.how-it-works-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
		margin-top: 3rem;
	}

	.how-it-works-item {
		padding: 2.5rem 1.2rem;
		/* Slightly reduced padding for tablet */
	}

	.how-it-works-item h3 {
		font-size: 1.1rem;
		/* Adjusted for tablet */
	}

	.step-number {
		font-size: 2.2rem;
		/* Adjusted for tablet */
	}
}

@media (max-width: 480px) {
	.hero {
		min-height: 30vh;
		padding-top: 100px;
		padding-bottom: 40px;
	}

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

	.testimonial-slide {
		padding: 3rem 1.5rem;
	}

	.logo {
		font-size: 1.2rem;
	}

	.hero-content h1 {
		font-size: 2.2rem;
		line-height: 1.2;
		margin-bottom: 1.5rem;
	}

	.hero-content h1 br {
		display: none;
	}

	.hero-subtitle {
		font-size: 0.8rem;
		letter-spacing: 2px;
		margin-bottom: 1rem;
	}

	.hero-content p {
		font-size: 1rem;
		margin-bottom: 2.5rem;
		line-height: 1.6;
	}

	.hero-btns {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		width: 100%;
	}

	.hero-btns .btn {
		width: 100%;
		max-width: 280px;
		text-align: center;
	}

	footer {
		padding: 4rem 8% 2rem;
	}

	.intro-description p {
		font-size: 1rem;
	}

	.intro-text .section-title {
		font-size: 2rem;
	}

	.how-it-works-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-top: 2.5rem;
		/* Added margin-top for mobile */
	}

	.how-it-works-item {
		padding: 2rem 1rem;
		/* Slightly reduced padding for mobile */
	}

	.how-it-works-item h3 {
		font-size: 1rem;
		/* Adjusted for mobile */
	}

	.step-number {
		font-size: 2rem;
		margin-bottom: 0.8rem;
	}

	.section-title br {
		display: none;
	}

	.work-tags {
		font-size: 0.75rem;
	}
}

/* Pricing Page Styles */
.pricing-hero {
	height: 35vh;
	background:
		linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
		url("https://images.unsplash.com/photo-1573408302185-9127ff5f6f33?auto=format&fit=crop&q=80&w=1600")
			center/cover no-repeat;
}

.pricing-section {
	padding: 4rem 5%;
	background-color: #1f1f1f;
	text-align: center;
}

.pricing-container {
	max-width: 1200px;
	margin: 0 auto;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 4rem;
}

.pricing-card {
	padding: 4rem 2.5rem;
	border: 1px solid #d4af37;
	border-radius: 8px;
	text-align: center;
	position: relative;
	transition: all 0.4s ease;
	background: #1e1e1e;
	display: flex;
	flex-direction: column;
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 45px rgba(212, 175, 55, 0.2);
}

.pricing-card.popular {
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
	background: #252525;
}

.popular-tag {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #d4af37;
	color: #fff;
	padding: 5px 15px;
	font-size: 0.75rem;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
}

.pricing-header h3 {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
}

.price-value {
	font-family: "Playfair Display", serif;
	font-size: 4.5rem;
	font-weight: 700;
	margin: 1.5rem 0;
	color: #fff;
}

.price-value .currency {
	font-size: 1.5rem;
	vertical-align: top;
	margin-right: 4px;
}

.price-value .period {
	font-size: 1rem;
	color: #888;
	font-family: "Lato", sans-serif;
	font-weight: 400;
}

.pricing-features {
	text-align: left;
	list-style: none;
	margin: 2.5rem 0;
	padding: 0;
	flex-grow: 1;
}

.pricing-features li {
	margin-bottom: 1rem;
	color: #aaa;
	font-size: 0.95rem;
}

.pricing-features li i {
	color: #d4af37;
	margin-right: 10px;
}

.pricing-card .btn {
	width: 100%;
	display: block;
}

/* FAQ Section */
.faq-section {
	padding: 8rem 5%;
	background-color: #282828;
	text-align: center;
}

.faq-container {
	max-width: 1100px;
	margin: 0 auto;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem 6rem;
	margin-top: 4rem;
	text-align: left;
}

.faq-item h4 {
	font-family: "Playfair Display", serif;
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: #fff;
}

.faq-item p {
	color: #888;
	font-size: 0.95rem;
	line-height: 1.8;
}

/* Add-Ons Section */
.addons-section {
	padding: 4rem 5% 8rem;
	background-color: #1f1f1f;
	text-align: center;
}

.addons-container {
	max-width: 1000px;
	margin: 0 auto;
}

.addons-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
	text-align: left;
}

.addon-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 2rem;
	border: 1px solid #d4af37;
	border-radius: 4px;
	transition: all 0.3s ease;
	background: #323232;
}

.addon-item:hover {
	border-color: #d4af37;
}

.addon-info h4 {
	font-size: 1.1rem;
	margin-bottom: 0.3rem;
	color: #fff;
}

.addon-price {
	font-family: "Playfair Display", serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: #d4af37;
	white-space: nowrap;
}

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

	.faq-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

/* Contact Page Styles */
.contact-hero {
	height: 35vh;
	background:
		linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
		url("https://images.unsplash.com/photo-1516962215378-7fa2e137ae93?auto=format&fit=crop&q=80&w=1600")
			center/cover no-repeat;
}

.contact-page-section {
	padding: 4rem 5%;
	background-color: #1f1f1f;
}

.contact-page-container {
	max-width: 1200px;
	margin: 0 auto;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: start;
}

.contact-desc {
	color: #aaa;
	margin-bottom: 3rem;
	font-size: 1.1rem;
}

.info-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.info-item {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.info-item i {
	font-size: 1.5rem;
	color: #d4af37;
}

.info-item h4 {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.3rem;
}

.info-item p a {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid #2a2a2a;
	background-color: #323232;
	color: #fff;
	font-family: inherit;
	outline: none;
	transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: #d4af37;
}

/* Services Page Styles */
.services-hero {
	height: 35vh;
	margin-top: 60px; /* Add margin-top for fixed header */
	background:
		linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
		url("https://images.unsplash.com/photo-1584302174644-629a844dec9b?auto=format&fit=crop&q=80&w=1600")
			center/cover no-repeat;
}

.how-it-works-section {
	padding: 4rem 5%;
	background-color: #282828;
	text-align: center;
}

.how-it-works-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.how-it-works-item {
	background: #323232;
	padding: 3rem 1.5rem;
	border: 1px solid #d4af37;
	transition: all 0.4s ease;
	border-radius: 4px;
	text-align: center;
}

.how-it-works-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.how-it-works-item h3 {
	margin-bottom: 1rem;
}

.how-it-works-item h3 {
	font-size: 1.3rem;
	/* Default size for h3 within how-it-works-item */
	color: #fff;
	/* Default color */
	font-family: "Playfair Display", serif;
	/* Ensure it uses the correct font */
}

.step-number {
	font-family: "Playfair Display", serif;
	font-size: 4.5rem;
	color: #d4af37;
	font-weight: 700;
	margin-bottom: 1rem;
}

/* Responsive Contact Page Adjustments */
@media (max-width: 1024px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

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

	.contact-info .section-title {
		text-align: center !important;
	}

	.info-item {
		justify-content: center;
	}

	.contact-page-section {
		padding: 4rem 5%;
	}
}

@media (max-width: 480px) {
	.contact-hero {
		height: 40vh;
	}
}

/* Portfolio Page Styles */
.portfolio-hero {
	height: 35vh;
	margin-top: 60px; /* Add margin-top for fixed header */
	background:
		linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
		url("https://images.unsplash.com/photo-1512167797277-347ad4479f1c?auto=format&fit=crop&q=80&w=1600")
			center/cover no-repeat;
}

.category-section {
	padding: 4rem 5%;
	text-align: center;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
	margin-top: 3rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.category-card {
	background: #323232;
	padding: 3rem 1rem;
	border: 1px solid rgba(212, 175, 55, 0.3);
	transition: all 0.4s ease;
	cursor: default;
}

.category-card:hover {
	border-color: #d4af37;
	background: #2a2a2a;
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.category-card h3 {
	color: #d4af37;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: "Lato", sans-serif;
	font-weight: 700;
}

.portfolio-page-grid {
	grid-template-columns: repeat(3, 1fr);
	/* 3 columns for better detail on portfolio page */
	gap: 30px;
}

@media (max-width: 1024px) {
	.portfolio-page-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.portfolio-hero,
	.services-hero,
	.pricing-hero {
		height: 30vh;
		margin-top: 60px;
		padding: 6rem 5% 4rem;
	}

	.pricing-section,
	.how-it-works-section {
		padding: 5rem 5% 4rem;
	}

	.how-it-works-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.how-it-works-item {
		padding: 2.5rem 1.2rem;
	}
}

@media (max-width: 480px) {
	.portfolio-page-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.portfolio-hero,
	.services-hero,
	.pricing-hero,
	.contact-hero {
		height: auto;
		margin-top: 60px;
		padding: 2rem 5%;
	}

	.how-it-works-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.how-it-works-item {
		padding: 2rem 1rem;
	}

	.step-number {
		font-size: 3rem;
		margin-bottom: 0.8rem;
	}

	.how-it-works-item h3 {
		font-size: 1.1rem;
	}

	.price-value {
		font-size: 3.5rem;
	}

	.pricing-card {
		padding: 2.5rem 1.5rem;
	}
}

/* Global Helper Classes */
.alt-bg {
	background-color: #282828 !important;
}

.dark-surface {
	background-color: #1f1f1f !important;
}

/* --- PREMIUM REDESIGN UI STYLES --- */

:root {
	--bg-prime: #050505;
	--bg-sec: #0a0a0a;
	--gold: #c5a059;
	--text-pure: #ffffff;
	--text-muted: #a1a1aa;
	--glass-bg: rgba(20, 20, 20, 0.4);
	--glass-border: rgba(197, 160, 89, 0.15);
	--gold-glow: 0 0 20px rgba(197, 160, 89, 0.1);
}

body {
	background-color: var(--bg-prime);
	color: var(--text-muted);
}

/* Typography */
.title-premium {
	font-family: "Playfair Display", serif;
	color: var(--text-pure);
}

.text-gold {
	color: var(--gold);
}

.tag-premium {
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 0.85rem;
	display: inline-block;
	margin-bottom: 2rem;
}

.tag-premium.centered {
	display: block;
	text-align: center;
}

.desc-premium {
	font-size: 1.15rem;
	line-height: 1.7;
	margin-bottom: 2rem;
	color: var(--text-muted);
}

.centered-desc {
	max-width: 700px;
	margin: 0 auto 3rem auto;
}

/* Glassmorphism Components */
.glass-card-premium {
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	padding: 3rem;
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease;
}

.glass-card-premium:hover {
	transform: translateY(-5px);
	box-shadow: var(--gold-glow);
	border-color: rgba(197, 160, 89, 0.4);
}

/* Buttons */
.btn-glow-premium {
	display: inline-block;
	padding: 1rem 2.5rem;
	background-color: var(--gold);
	color: #000 !important;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(197, 160, 89, 0.3);
}

.btn-glow-premium:hover {
	box-shadow: 0 5px 30px rgba(197, 160, 89, 0.6);
	transform: translateY(-2px);
}

.btn-outline-premium {
	display: inline-block;
	padding: 1rem 2.5rem;
	background-color: transparent;
	border: 1px solid var(--gold);
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-outline-premium:hover {
	background-color: var(--gold);
	color: #000;
}

/* Hero Section */
.hero-premium {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-premium-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
		circle at 70% 30%,
		rgba(197, 160, 89, 0.1) 0%,
		rgba(5, 5, 5, 1) 60%
	);
	z-index: -1;
}

.hero-premium-content {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 4rem;
}

.hero-premium-text {
	flex: 1;
}

.hero-premium-text .title-premium {
	font-size: 5.5rem;
	line-height: 1.1;
	margin-bottom: 2rem;
}

.trust-premium {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--text-pure);
	margin-bottom: 3rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.trust-premium i {
	color: var(--gold);
}

.btn-group-premium {
	display: flex;
	gap: 1.5rem;
}

.hero-premium-visual {
	flex: 1;
}

.visual-card {
	padding: 1rem;
	border-radius: 4px;
}

.visual-card img {
	width: 100%;
	display: block;
	filter: contrast(1.1) sepia(0.2) hue-rotate(-10deg);
}

.scroll-down-premium {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.scroll-text {
	color: var(--gold);
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 2px;
}

.scroll-line {
	width: 1px;
	height: 60px;
	background: linear-gradient(to bottom, var(--gold), transparent);
}

/* Sections Structure */
.services-premium,
.portfolio-premium,
.why-premium,
.video-premium,
.testimonials-premium,
.cta-premium {
	padding: 8rem 0;
}

.h2-premium {
	font-size: 3.5rem;
	margin-bottom: 4rem;
}

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

/* SERVICES HANDLED BY TAILWIND IN INDEX.PHP */

/* Portfolio Gallery */
/* Portfolio Gallery - Bento Redesign */
.grid-premium-bento {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 280px;
	gap: 1.5rem;
}

.gallery-item-premium {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--glass-border);
	background: var(--bg-sec);
}

.gallery-item-premium.featured-large {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery-item-premium.featured-tall {
	grid-row: span 2;
}

.gallery-item-premium.featured-wide {
	grid-column: span 2;
}

.gallery-item-premium img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
	filter: brightness(0.85);
}

/* Glassmorphism Overlay */
.portfolio-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.4);
	backdrop-filter: blur(0px);
	-webkit-backdrop-filter: blur(0px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	z-index: 2;
}

.overlay-content {
	text-align: center;
	transform: translateY(20px);
	transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.overlay-category {
	display: block;
	color: var(--gold);
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 2px;
	margin-bottom: 0.8rem;
}

.overlay-title {
	color: var(--text-pure);
	font-family: "Playfair Display", serif;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

.overlay-link {
	color: var(--text-pure);
	text-decoration: none;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding-bottom: 3px;
	border-bottom: 1px solid var(--gold);
	transition: all 0.3s ease;
}

.overlay-link:hover {
	color: var(--gold);
}

/* Hover States */
.gallery-item-premium:hover img {
	transform: scale(1.08);
	filter: brightness(0.6);
}

.gallery-item-premium:hover .portfolio-overlay {
	opacity: 1;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.gallery-item-premium:hover .overlay-content {
	transform: translateY(0);
}

/* Responsive Grid */
@media (max-width: 1024px) {
	.grid-premium-bento {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 250px;
	}
}

@media (max-width: 600px) {
	.grid-premium-bento {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
	}

	.gallery-item-premium.featured-large,
	.gallery-item-premium.featured-tall,
	.gallery-item-premium.featured-wide {
		grid-column: span 1;
		grid-row: span 1;
	}

	.gallery-item-premium img {
		aspect-ratio: 1/1;
	}
}

.text-link-premium {
	color: var(--gold);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.9rem;
	border-bottom: 1px solid var(--gold);
	padding-bottom: 4px;
	transition: all 0.3s ease;
}

.text-link-premium:hover {
	color: var(--text-pure);
	border-color: var(--text-pure);
}

/* METRICS SECTION HANDLED BY TAILWIND */

/* Video Section */
.video-premium-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.premium-list {
	list-style: none;
	margin-top: 2rem;
}

.premium-list li {
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.premium-list i {
	margin-right: 15px;
}

.video-visual {
	position: relative;
	padding: 1rem;
}

.video-visual img {
	width: 100%;
	display: block;
	filter: brightness(0.7);
}

.play-btn-premium {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: var(--gold);
	color: var(--bg-prime);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	cursor: pointer;
	box-shadow: 0 0 0 10px rgba(197, 160, 89, 0.3);
	transition: all 0.3s ease;
}

.play-btn-premium:hover {
	box-shadow: 0 0 0 20px rgba(197, 160, 89, 0);
	background: var(--text-pure);
}

/* Testimonials */
.testimonials-premium {
	background-color: var(--bg-sec);
}

.testimonial-card-premium {
	max-width: 800px;
	margin: 0 auto;
}

.testimonial-quote {
	font-family: "Playfair Display", serif;
	font-size: 1.8rem;
	color: var(--text-pure);
	font-style: italic;
	margin-bottom: 3rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.testimonial-author img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px solid var(--gold);
}

.author-info {
	text-align: left;
}

.author-info strong {
	display: block;
	color: var(--text-pure);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.author-info span {
	color: var(--gold);
	font-size: 0.85rem;
}

/* CTA */
.cta-premium {
	background: radial-gradient(
		circle at center,
		rgba(197, 160, 89, 0.15) 0%,
		var(--bg-prime) 70%
	);
}

/* Base Container Fix */
.services-premium .container,
.portfolio-premium .container,
.why-premium .container,
.video-premium .container,
.testimonials-premium .container,
.cta-premium .container,
.hero-premium .container {
	max-width: 1250px;
	margin: 0 auto;
	padding: 0 5%;
}

/* RESPONSIVE PREMIUM OVERRIDES */
@media (max-width: 1024px) {
	.grid-premium-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.hero-premium-text .title-premium {
		font-size: 4rem;
	}
}

@media (max-width: 768px) {
	.hero-premium-content {
		flex-direction: column;
		text-align: center;
		padding-top: 8rem;
	}

	.hero-premium-text .title-premium {
		font-size: 3rem;
	}

	.btn-group-premium {
		justify-content: center;
		flex-direction: column;
	}

	.trust-premium {
		justify-content: center;
	}

	.grid-premium-3,
	.grid-premium-gallery,
	.video-premium-grid {
		grid-template-columns: 1fr;
	}

	.hero-premium-visual {
		margin-top: 3rem;
	}

	.h2-premium {
		font-size: 2.5rem;
	}

	.services-premium,
	.portfolio-premium,
	.why-premium,
	.video-premium,
	.testimonials-premium,
	.cta-premium {
		padding: 5rem 0;
	}

	.metric-card-premium {
		border-left: none;
		border-top: 2px solid var(--gold);
		background: linear-gradient(
			180deg,
			rgba(197, 160, 89, 0.05) 0%,
			transparent 100%
		);
	}
}

/* EXTENSION: GLASS HERO BANNER & ANIMATIONS */
.hero-glass {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background-color: var(--bg-prime);
	overflow: hidden;
}

.hero-glass-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 65%;
	background: url("assets/img(10).webp") center/cover no-repeat;
	mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0));
	-webkit-mask-image: linear-gradient(
		to left,
		rgba(0, 0, 0, 1) 50%,
		rgba(0, 0, 0, 0)
	);
	z-index: 0;
}

.hero-glass-container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.glass-card-hero {
	background: rgba(10, 10, 10, 0.65);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(197, 160, 89, 0.2);
	padding: 5rem 4rem;
	max-width: 650px;
	border-radius: 4px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.hero-title-glass {
	font-size: 5rem;
	line-height: 1.1;
	margin-bottom: 2rem;
}

/* Button Gold Sweep */
.btn-sweep-gold {
	display: inline-block;
	padding: 1rem 2.5rem;
	background-color: transparent;
	border: 1px solid var(--gold);
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 600;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: color 0.4s ease;
}

.btn-sweep-gold::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: var(--gold);
	z-index: -1;
	transition: left 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.btn-sweep-gold:hover {
	color: #000 !important;
}

.btn-sweep-gold:hover::before {
	left: 0;
}

/* Animations */
@keyframes slideUpFadeIn {
	0% {
		opacity: 0;
		transform: translateY(40px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.slide-up-anim {
	animation: slideUpFadeIn 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.fade-in-delay-1 {
	opacity: 0;
	animation: slideUpFadeIn 0.8s forwards 0.2s;
}

.fade-in-delay-2 {
	opacity: 0;
	animation: slideUpFadeIn 0.8s forwards 0.4s;
}

.fade-in-delay-3 {
	opacity: 0;
	animation: slideUpFadeIn 0.8s forwards 0.6s;
}

.fade-in-delay-4 {
	opacity: 0;
	animation: slideUpFadeIn 0.8s forwards 0.8s;
}

.fade-in-delay-5 {
	opacity: 0;
	animation: slideUpFadeIn 0.8s forwards 1s;
}

.fade-in-delay-6 {
	opacity: 0;
	animation: slideUpFadeIn 0.8s forwards 1.2s;
}

/* Responsive Updates for overlapping glass */
@media (max-width: 1024px) {
	.glass-card-hero {
		padding: 4rem 3rem;
	}

	.hero-title-glass {
		font-size: 4rem;
	}

	.hero-glass-image {
		width: 100%;
		mask-image: none;
		opacity: 0.3;
	}
}

@media (max-width: 768px) {
	.glass-card-hero {
		padding: 3rem 2rem;
		max-width: 100%;
		margin-top: 4rem;
	}

	.hero-title-glass {
		font-size: 3rem;
	}
}

/* EXTENSION: PREMIUM CTA BANNER v2 */
.cta-premium-v2 {
	position: relative;
	padding: 12rem 0;
	overflow: hidden;
	background: radial-gradient(
		circle at center,
		rgba(20, 20, 20, 1) 0%,
		var(--bg-prime) 100%
	);
	display: flex;
	align-items: center;
	justify-content: center;
}

.cta-premium-v2 .container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.cta-card-glass {
	background: rgba(5, 5, 5, 0.65);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(197, 160, 89, 0.4);
	padding: 6rem 4rem;
	max-width: 800px;
	margin: 0 auto;
	border-radius: 8px;
	box-shadow:
		0 40px 100px rgba(0, 0, 0, 0.9),
		0 0 50px rgba(197, 160, 89, 0.15);
	transition: transform 0.4s ease;
}

.cta-card-glass:hover {
	transform: translateY(-8px);
	border-color: rgba(197, 160, 89, 0.7);
}

.cta-title {
	margin-bottom: 2rem;
	font-size: 4rem;
}

.cta-desc {
	color: #f3f4f6;
	font-size: 1.25rem;
	margin-bottom: 3.5rem;
}

.large-btn {
	padding: 1.3rem 4rem;
	font-size: 1.15rem;
}

@media (max-width: 768px) {
	.cta-card-glass {
		padding: 4rem 2rem;
	}

	.cta-title {
		font-size: 2.8rem;
	}

	.cta-premium-v2 {
		padding: 8rem 0;
	}
}

/* GLOBAL DESIGN SYSTEM */
:root {
	--gold: #c5a059;
	--bg-dark: #050505;
	--bg-light: #f0f0f0;
	--text-muted: rgba(255, 255, 255, 0.5);
	--font-inter: "Inter", sans-serif;
	--font-serif: "Playfair Display", serif;

	/* Responsive Spacing */
	--section-padding: 10rem;
	--container-max: 1400px;
}

@media (max-width: 1024px) {
	:root {
		--section-padding: 7rem;
	}
}

@media (max-width: 768px) {
	:root {
		--section-padding: 5rem;
	}
}

body {
	font-family: var(--font-inter);
	background-color: var(--bg-dark);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

.container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 4rem;
	width: 100%;
}

@media (max-width: 768px) {
	.container {
		padding: 0 2rem;
	}
}

/* REFINED NAVBAR */
.navbar-ref {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: #0a0a0a;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	height: 80px;
	display: flex;
	align-items: center;
	transition: all 0.4s ease;
}

.nav-split {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 5%;
}

.logo-ref {
	text-decoration: none;
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.25em;
	text-transform: uppercase;
}

.logo-ref span {
	color: var(--gold);
}

.nav-links-ref {
	display: flex;
	list-style: none;
	gap: 2.5rem;
}

.nav-links-ref li a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	transition: all 0.3s ease;
}

.nav-links-ref li a:hover {
	color: var(--gold);
}

.btn-navbar-gold {
	text-decoration: none;
	color: var(--gold);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	border: 1px solid var(--gold);
	padding: 0.7rem 1.7rem;
	transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-navbar-gold:hover {
	background: var(--gold);
	color: #000;
}

/* HERO SPLIT - HANDLED BY TAILWIND IN INDEX.PHP */
.blueprint-image-layer {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 85%;
	height: 85%;
	background: url("assets/SKETCH.png") center/contain no-repeat;
	filter: contrast(1.1) brightness(1);
	opacity: 0.9;
	mix-blend-mode: multiply;
}

.beauty-image-layer {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 85%;
	height: 85%;
	background: url("assets/SKETCH-TO-CAD.png") center/contain no-repeat;
	mix-blend-mode: multiply;
	opacity: 0.9;
}

.scroll-down-minimal {
	position: absolute;
	bottom: 3rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 50;
}

.scroll-dot {
	display: block;
	width: 4px;
	height: 4px;
	background: #fff;
	border-radius: 50%;
	animation: scrollDot 2s infinite ease-in-out;
}

@keyframes scrollDot {
	0% {
		transform: translateY(0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: translateY(20px);
		opacity: 0;
	}
}

.divider-labels {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	gap: 1.5rem;
	white-space: nowrap;
}

.divider-labels span {
	font-size: 0.7rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.2);
	letter-spacing: 0.4em;
	text-transform: uppercase;
}

.divider-stroke {
	width: 30px;
	height: 1px;
	background: var(--gold);
}

/* SCROLL INDICATOR */
.scroll-down-minimal {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 70px;
	background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
}

.scroll-dot {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 3px;
	height: 3px;
	background: var(--gold);
	border-radius: 50%;
	animation: scrollSlide 2.5s infinite ease-in-out;
}

@keyframes scrollSlide {
	0% {
		transform: translate(-50%, 0);
		opacity: 0;
	}

	20% {
		opacity: 1;
	}

	80% {
		opacity: 1;
	}

	100% {
		transform: translate(-50%, 60px);
		opacity: 0;
	}
}

/* PARALLAX & ANIMATIONS */
.fade-in-delay-1 {
	opacity: 0;
	animation: fadeInUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.3s;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px) translateX(-15%);
	}

	to {
		opacity: 1;
		transform: translateY(0) translateX(-15%);
	}
}

/* RESPONSIVE */
@media (max-width: 1200px) {
	.split-title {
		font-size: 5rem;
	}

	.split-title span {
		font-size: 6rem;
	}

	.nav-split {
		padding: 0 3%;
	}
}

/* RESPONSIVE GRIDS & SECTIONS */
@media (max-width: 1024px) {
	.grid-premium-3 {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

	.grid-premium-bento {
		grid-template-columns: repeat(2, 1fr);
	}

	.featured-large,
	.featured-tall,
	.featured-wide {
		grid-column: span 1;
		grid-row: span 1;
	}

	.video-premium-grid {
		grid-template-columns: 1fr;
		gap: 4rem;
	}
}

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

	.grid-premium-bento {
		grid-template-columns: 1fr;
	}

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

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

/* SUB-PAGE HEROES */
.hero-content h1 {
	font-size: 4rem;
}

@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 2.8rem;
	}

	.hero {
		padding: 0 5%;
		padding-top: 50px;
		text-align: center;
	}
}

/* HERO MOBILE HANDLED BY TAILWIND */

.btn-gold-action {
	width: 100%;
	max-width: 280px;
	padding: 1rem 1.5rem;
}

/* FEATURE HIGHLIGHTS (Services) */
@media (max-width: 991px) {
	.feature-highlight-container,
	.feature-highlight-container.reversed {
		flex-direction: column;
		gap: 3rem;
		text-align: center;
	}

	.feature-lists-wrapper {
		flex-direction: column;
		align-items: center;
		gap: 2rem;
	}
}

/* PRICING (Pricing Page) */
@media (max-width: 1024px) {
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

/* CATEGORY GRID (Portfolio Page) */
@media (max-width: 768px) {
	.category-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* CONTACT PAGE (Contact Us) */
@media (max-width: 991px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 4rem;
	}

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

	.info-list {
		justify-content: center;
	}
}

@media (min-width: 1024px) {
	.lg\:px-20 {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}
}
/* WhatsApp Floating Button */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-color: #25d366;
	color: #fff;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
	z-index: 999;
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	text-decoration: none;
	overflow: hidden;
}

.whatsapp-float::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: inherit;
	border-radius: 50%;
	z-index: -1;
	animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
	0% {
		transform: scale(1);
		opacity: 0.6;
	}
	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

.whatsapp-float:hover {
	width: 190px;
	border-radius: 50px;
	background-color: #20ba5a;
	box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
	min-width: 32px;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	margin-left: 0;
	transition: transform 0.5s ease;
}

.whatsapp-float:hover svg {
	margin-left: 20px;
	transform: rotate(360deg);
}

.whatsapp-float span {
	font-size: 14px;
	font-weight: 700;
	font-family: "Inter", sans-serif;
	white-space: nowrap;
	opacity: 0;
	transform: translateX(20px);
	transition: all 0.5s ease;
	margin-right: 25px;
	margin-left: 12px;
	color: #fff;
}

.whatsapp-float:hover span {
	opacity: 1;
	transform: translateX(0);
}

@media (max-width: 768px) {
	.whatsapp-float {
		bottom: 25px;
		right: 25px;
		width: 55px;
		height: 55px;
	}

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

	.whatsapp-float:hover {
		width: 55px;
		border-radius: 50%;
	}

	.whatsapp-float span {
		display: none;
	}

	.whatsapp-float:hover svg {
		margin-left: 0;
	}
}

/* Custom Scrollbar for horizontal lists on mobile */
.custom-scrollbar::-webkit-scrollbar {
	height: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
	background: rgba(197, 160, 89, 0.5); /* Gold with opacity */
	border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
	background: rgba(197, 160, 89, 0.8);
}
