* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	background: #0a0a0a;
	color: #fff;
	overflow-x: hidden;
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Animated Background */
.bg-animation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: linear-gradient(45deg, #1a1a1a, #2a2a2a, #1f1f1f, #151515, #0f0f0f);
	background-size: 400% 400%;
	animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* Floating particles */
.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(180deg);
	}
}

/* Header */
header {
	padding: 100px 0;
	text-align: center;
	position: relative;
}

.header-content h1 {
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 900;
	margin-bottom: 20px;
	background: linear-gradient(45deg, #fff, #f8f9fa, #e9ecef);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
	animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.05);
	}
}

.tagline {
	font-size: 1.5rem;
	font-weight: 300;
	margin-bottom: 40px;
	opacity: 0.9;
}

.cta-button {
	display: inline-block;
	padding: 15px 40px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cta-button:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.4);
}

.cta-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

.cta-button:hover::before {
	left: 100%;
}

/* Services Section */
#services {
	padding: 80px 0;
	position: relative;
}

.section-title {
	text-align: center;
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 60px;
	position: relative;
}

.section-title::after {
	content: "";
	display: block;
	width: 100px;
	height: 4px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	margin: 20px auto;
	border-radius: 2px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.service-card {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 20px;
	display: block;
}

.service-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: #fff;
}

.service-price {
	font-size: 1.3rem;
	font-weight: 800;
	margin-bottom: 15px;
	color: #4ecdc4;
}

.old-price {
	text-decoration: line-through;
	color: #ff6b6b;
	font-size: 1rem;
	margin-right: 10px;
}

.new-price {
	color: #4ecdc4;
	font-weight: 900;
}

.service-description {
	font-size: 1rem;
	opacity: 0.9;
	line-height: 1.6;
}

/* Contact Section */
#contact {
	padding: 80px 0;
	text-align: center;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.contact-item {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 30px;
	transition: all 0.3s ease;
}

.contact-item:hover {
	transform: scale(1.05);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}

.contact-icon {
	font-size: 2rem;
	margin-bottom: 15px;
	display: block;
}

.contact-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.contact-info {
	font-size: 1.1rem;
	opacity: 0.9;
}

/* Footer */
footer {
	padding: 40px 0;
	text-align: center;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
	.services-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.service-card {
		padding: 30px 20px;
	}

	.section-title {
		font-size: 2rem;
	}
}

/* Scroll animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Modern scroll indicator */
.scroll-indicator {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	transform-origin: left;
	transform: scaleX(0);
	z-index: 1000;
	transition: transform 0.1s ease;
}

/* Loading Screen */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 1s ease;
}

.loading-screen.hidden {
	opacity: 0;
	pointer-events: none;
}

/* Bouncing Ball */
.bouncing-ball {
	position: absolute;
	width: 20px;
	height: 20px;
	background: #ffffff;
	border-radius: 50%;
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
	animation: bounce 6s ease-in-out infinite;
}

@keyframes bounce {
	0% {
		left: 10px;
		top: 10px;
		transform: scale(1) rotate(0deg);
	}
	5% {
		left: calc(30vw);
		top: calc(40vh);
		transform: scale(1.1) rotate(45deg);
	}
	10% {
		left: calc(70vw);
		top: 30px;
		transform: scale(1) rotate(90deg);
	}
	15% {
		left: calc(90vw - 20px);
		top: calc(25vh);
		transform: scale(1.2) rotate(135deg);
	}
	20% {
		left: calc(80vw);
		top: calc(60vh);
		transform: scale(1) rotate(180deg);
	}
	25% {
		left: calc(50vw);
		top: calc(90vh - 20px);
		transform: scale(1.1) rotate(225deg);
	}
	30% {
		left: calc(20vw);
		top: calc(80vh);
		transform: scale(1) rotate(270deg);
	}
	35% {
		left: 10px;
		top: calc(50vh);
		transform: scale(1.2) rotate(315deg);
	}
	40% {
		left: calc(40vw);
		top: calc(20vh);
		transform: scale(1) rotate(360deg);
	}
	45% {
		left: calc(75vw);
		top: calc(45vh);
		transform: scale(1.1) rotate(405deg);
	}
	50% {
		left: calc(85vw);
		top: calc(75vh);
		transform: scale(1) rotate(450deg);
	}
	55% {
		left: calc(60vw);
		top: calc(85vh);
		transform: scale(1.2) rotate(495deg);
	}
	60% {
		left: calc(25vw);
		top: calc(70vh);
		transform: scale(1) rotate(540deg);
	}
	65% {
		left: 15px;
		top: calc(35vh);
		transform: scale(1.1) rotate(585deg);
	}
	70% {
		left: calc(35vw);
		top: 15px;
		transform: scale(1) rotate(630deg);
	}
	75% {
		left: calc(65vw);
		top: calc(30vh);
		transform: scale(1.2) rotate(675deg);
	}
	80% {
		left: calc(80vw);
		top: calc(55vh);
		transform: scale(1) rotate(720deg);
	}
	85% {
		left: calc(55vw);
		top: calc(75vh);
		transform: scale(1.1) rotate(765deg);
	}
	90% {
		left: calc(30vw);
		top: calc(60vh);
		transform: scale(1) rotate(810deg);
	}
	95% {
		left: calc(45vw);
		top: calc(45vh);
		transform: scale(1.3) rotate(855deg);
	}
	100% {
		left: calc(50vw - 10px);
		top: calc(50vh - 10px);
		transform: scale(2) rotate(900deg);
	}
}

/* Money Symbols Trail */
.money-symbol {
	position: absolute;
	font-size: 18px;
	color: #ffffff;
	pointer-events: none;
	animation: fadeOut 2s ease-out forwards;
	font-weight: bold;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(0.5) translateY(-30px);
	}
}

/* Explosion Effect */
.explosion {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	opacity: 0;
	pointer-events: none;
	background: radial-gradient(circle at center, #ffffff 0%, #ffffff 10%, transparent 60%);
	animation: fullScreenExplosion 1s ease-out;
}

@keyframes fullScreenExplosion {
	0% {
		opacity: 0;
		transform: scale(0);
		background: radial-gradient(circle at center, #ffffff 0%, #ffffff 2%, transparent 20%);
	}
	20% {
		opacity: 1;
		transform: scale(0.5);
		background: radial-gradient(circle at center, #ffffff 0%, #ffffff 5%, transparent 30%);
	}
	40% {
		opacity: 0.9;
		transform: scale(1);
		background: radial-gradient(circle at center, #ffffff 0%, #ffffff 8%, transparent 40%);
	}
	60% {
		opacity: 0.7;
		transform: scale(1.5);
		background: radial-gradient(circle at center, #ffffff 0%, #ffffff 12%, transparent 50%);
	}
	80% {
		opacity: 0.4;
		transform: scale(2);
		background: radial-gradient(circle at center, #ffffff 0%, #ffffff 15%, transparent 60%);
	}
	100% {
		opacity: 0;
		transform: scale(3);
		background: radial-gradient(circle at center, #ffffff 0%, #ffffff 20%, transparent 70%);
	}
}

/* Flash effect */
.screen-flash {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #ffffff;
	opacity: 0;
	pointer-events: none;
	animation: flash 0.3s ease-out;
}

@keyframes flash {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/* Explosion particles */
.explosion-particle {
	position: fixed;
	width: 8px;
	height: 8px;
	background: #ffffff;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
	animation: particleExplosion 2s ease-out forwards;
}

@keyframes particleExplosion {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.5);
	}
	100% {
		opacity: 0;
		transform: scale(0.2);
	}
}

/* Main Content (Hidden initially) */
.main-content {
	opacity: 0;
	transition: opacity 1s ease;
}

.main-content.visible {
	opacity: 1;
}

/* Black & White Theme */
body.bw-theme {
	background: #f5f5f5;
	color: #333;
	filter: grayscale(100%);
}

/* Animated Background */
.bg-animation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: linear-gradient(45deg, #1a1a1a, #2a2a2a, #1f1f1f, #151515, #0f0f0f);
	background-size: 400% 400%;
	animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}

/* Header */
header {
	padding: 100px 0;
	text-align: center;
	position: relative;
}

.header-content h1 {
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 900;
	margin-bottom: 20px;
	background: linear-gradient(45deg, #fff, #f8f9fa, #e9ecef);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
	animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.05);
	}
}

.tagline {
	font-size: 1.5rem;
	font-weight: 300;
	margin-bottom: 40px;
	opacity: 0.9;
}

.cta-button {
	display: inline-block;
	padding: 15px 40px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cta-button:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.4);
}

/* Services Section */
#services {
	padding: 80px 0;
	position: relative;
}

.section-title {
	text-align: center;
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 60px;
	position: relative;
}

.section-title::after {
	content: "";
	display: block;
	width: 100px;
	height: 4px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	margin: 20px auto;
	border-radius: 2px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.service-card {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 20px;
	display: block;
}

.service-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: #fff;
}

.service-description {
	font-size: 1rem;
	opacity: 0.9;
	line-height: 1.6;
}

/* Contact Section */
#contact {
	padding: 80px 0;
	text-align: center;
}

footer {
	padding: 40px 0;
	text-align: center;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
	.services-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.service-card {
		padding: 30px 20px;
	}
	.section-title {
		font-size: 2rem;
	}
}
