:root {
	--dark-purple: #0a0612;
	--purple: #1a0b2e;
	--neon-purple: #8900ff;
	--neon-blue: #4d4dff;
	--glass-bg: rgba(255, 255, 255, 0.03);
	--glass-border: rgba(255, 255, 255, 0.1);
	--gradient-1: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
	--gradient-2: linear-gradient(45deg, rgba(184, 41, 255, 0.1), rgba(77, 77, 255, 0.1));
	--perspective: 1000px;
	--rotation-x: 15deg;
	--rotation-y: 15deg;
	--layer-distance: 50px;
	--primary-gradient: linear-gradient(135deg, #b829ff 0%, #4d4dff 100%);
	--blur-amount: 20px;
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Advanced Locomotive Scroll Styles */
[data-scroll-container] {
	transform-style: preserve-3d;
	will-change: transform;
}

[data-scroll-section] {
	perspective: 1000px;
	transform-style: preserve-3d;
}

/* Text Splitting Effects */
.split-text {
	--word-total: var(--splitting-word-total);
	--char-total: var(--splitting-char-total);
}

.split-text .word {
	display: inline-block;
	animation: wordSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
	animation-delay: calc(0.1s * var(--word-index));
}

@keyframes wordSlideUp {
	from { transform: translateY(100%); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Space Grotesk', sans-serif;
	letter-spacing: -0.02em;
}

/* Enhanced Parallax */
.parallax {
	transform-style: preserve-3d;
	perspective: 1000px;
	will-change: transform;
}

.parallax > * {
	transform-style: preserve-3d;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	backface-visibility: hidden;
}

/* Modern Card Styles */
.bg-white\/5 {
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
	will-change: transform;
	transform: perspective(1000px);
	transform-style: preserve-3d;
}

.bg-white\/5:hover {
	box-shadow: 
		0 0 30px rgba(184, 41, 255, 0.2),
		0 0 60px rgba(184, 41, 255, 0.1);
}

.animate-pulse-5s {
animation: pulse 5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-purple);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.5s ease-out;
}

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

.loader {
	width: 48px;
	height: 48px;
	border: 3px solid var(--glass-border);
	border-radius: 50%;
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}

.loader::after {
	content: '';
	box-sizing: border-box;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-bottom-color: var(--neon-purple);
}

@keyframes rotation {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Scroll Progress Indicator */
.scroll-progress {
	height: 3px;
	background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	transition: width 0.2s ease;
}


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

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: var(--dark-purple);
	color: #fff;
	line-height: 1.6;
	overflow-x: hidden;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: 
		radial-gradient(circle at 20% 20%, rgba(184, 41, 255, 0.15) 0%, transparent 40%),
		radial-gradient(circle at 80% 80%, rgba(77, 77, 255, 0.15) 0%, transparent 40%),
		linear-gradient(45deg, var(--dark-purple) 0%, var(--purple) 100%); */
	opacity: 1;
	z-index: -2;
	pointer-events: none;
}

/* Enhanced Glass Nav */
.glass-nav {
	position: fixed;
	width: 100%;
	z-index: 1000;
	background: rgba(10, 6, 18, 0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(184, 41, 255, 0.1);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.nav-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-links {
	display: flex;
	gap: 2.5rem;
}

.nav-links a {
	color: #fff;
	text-decoration: none;
	position: relative;
	padding: 0.5rem 0;
	font-weight: 500;
	transform-style: preserve-3d;
	transition: transform 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
	transform: translateZ(20px);
}

.nav-links a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
	border-radius: 4px;
}

.nav-links a:hover::before {
	opacity: 0.1;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--neon-purple);
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-links a.active {
	color: var(--neon-purple);
}

/* Particles Container */
#particles-js {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: transparent;
	z-index: 1;
}

/* Enhanced Hero Section */
#home {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	min-height: 100vh;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--purple), var(--dark-purple));
	z-index: -1;
}

.hero-background::before {
	content: '';
	position: absolute;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, var(--neon-purple) 0%, transparent 50%);
	opacity: 0.15;
	animation: rotate 25s linear infinite;
}

.hero-logo {
	max-width: 400px;
	height: auto;
	margin-bottom: 2.5rem;
	filter: drop-shadow(0 0 20px var(--neon-purple));
	animation: glow 3s ease-in-out infinite alternate;
	transition: transform 0.3s ease;
}

@keyframes glow {
	from {
		filter: drop-shadow(0 0 20px var(--neon-purple));
		transform: scale(1);
	}
	to {
		filter: drop-shadow(0 0 30px var(--neon-purple)) drop-shadow(0 0 40px var(--neon-blue));
		transform: scale(1.02);
	}
}

.hero-content {
	text-align: center;
	max-width: 800px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
    position: relative;
    z-index: 10;
	transform-style: preserve-3d;
	perspective: var(--perspective);
}

.hero-logo {
	transform: translateZ(var(--layer-distance));
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo:hover {
	transform: translateZ(calc(var(--layer-distance) * 1.5)) rotateY(10deg);
}

.hero-content h1 {
	transform: translateZ(calc(var(--layer-distance) * 0.8));
	text-shadow: 0 0 30px rgba(184, 41, 255, 0.5);
}

.hero-content h1 {
	font-size: clamp(3rem, 8vw, 7rem);
	line-height: 1;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 2rem;
	filter: drop-shadow(0 0 30px rgba(184, 41, 255, 0.3));
}

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

.hero-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(184, 41, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
}

/* Enhanced Cards */
.glass-card, .glass-container {
	background: var(--glass-bg);
	backdrop-filter: blur(var(--blur-amount));
	-webkit-backdrop-filter: blur(var(--blur-amount));
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 2.5rem;
	transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    will-change: transform;
}

/* Services Section */
#services {
	position: relative;
	z-index: 2;
	background: rgba(10, 6, 18, 0.95);
	padding: 6rem 2rem;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	padding: 1rem;
	position: relative;
	z-index: 2;
	max-width: 1400px;
	margin: 0 auto;
}

.service-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(184, 41, 255, 0.1);
	border-radius: 24px;
	padding: 2.5rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	z-index: 2;
	min-height: 350px;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-10px);
	border-color: var(--neon-purple);
	background: rgba(26, 11, 46, 0.95);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.2),
		0 0 30px rgba(184, 41, 255, 0.2);
}

.service-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(184, 41, 255, 0.1), rgba(77, 77, 255, 0.1));
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

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

.service-icon {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.service-card h3 {
	color: var(--neon-purple);
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

.service-card p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.service-features {
	list-style: none;
	padding: 0;
}

.service-features li {
	padding-left: 1.5rem;
	position: relative;
	margin-bottom: 0.75rem;
	color: rgba(255, 255, 255, 0.7);
}

.service-features li::before {
	content: '⚡';
	position: absolute;
	left: 0;
	color: var(--neon-purple);
}


/* Testimonial Cards */
.testimonial-card {
	background: rgba(255, 255, 255, 0.02);
	border-radius: 24px;
	padding: 2.5rem;
	transform-style: preserve-3d;
	perspective: var(--perspective);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
	transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
	background: rgba(255, 255, 255, 0.04);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.2),
		0 0 30px rgba(184, 41, 255, 0.1);
}

.testimonial-card .rounded-full {
	transform: translateZ(30px);
}

.testimonial-card .rounded-full {
	position: relative;
	overflow: hidden;
}

.testimonial-card .rounded-full::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transform: rotate(45deg);
	animation: shine 3s infinite;
}

@keyframes shine {
	0% { transform: translateX(-100%) rotate(45deg); }
	100% { transform: translateX(100%) rotate(45deg); }
}




.glass-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 41, 255, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.glass-card {
	position: relative;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(184, 41, 255, 0.1);
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.1),
		inset 0 0 0 1px rgba(255, 255, 255, 0.05);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
	transform: translateY(-10px);
	border-color: rgba(184, 41, 255, 0.3);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.2),
		inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 0);
    left: var(--mouse-x, 0);
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(184, 41, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.glass-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 0 25px rgba(184, 41, 255, 0.25);
}

.glass-card h3 {
	color: var(--neon-purple);
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

/* 3D Services Scene */
.services-scene {
	position: relative;
	perspective: 2000px;
	transform-style: preserve-3d;
	height: 600px;
}

#services-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.services-cards {
	position: absolute;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
}

.service-card-data {
	display: none;
}

.service-card-render {
	position: absolute;
	width: 300px;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: white;
	transform-style: preserve-3d;
}

.service-card-data h3 {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--neon-purple);
	margin-bottom: 1rem;
}

.service-card-data .icon {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.service-card-data p {
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.service-card-data ul {
	list-style: none;
	padding: 0;
}

.service-card-data li {
	padding-left: 1.5rem;
	position: relative;
	margin-bottom: 0.5rem;
}

.service-card-data li::before {
	content: '⚡';
	position: absolute;
	left: 0;
	color: var(--neon-purple);
}




/* Enhanced Buttons */
.neon-button {
	--btn-gradient: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
	position: relative;
	padding: 1rem 2.5rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	background: var(--btn-gradient);
	border-radius: 100px;
	border: none;
	color: white;
	transform-style: preserve-3d;
	perspective: var(--perspective);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	text-decoration: none;
	z-index: 1;
}

.neon-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 200%;
	height: 100%;
	background: var(--btn-gradient);
	transform: translateX(-100%);
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
}

.neon-button:hover::before {
	transform: translateX(0);
}

.neon-button:hover {
	transform: translateY(-5px) translateZ(20px);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.2),
		0 0 30px rgba(184, 41, 255, 0.4);
}

.neon-button::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--gradient-1);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.neon-button:hover {
	transform: translateY(-2px);
	box-shadow: 
		0 10px 20px rgba(0, 0, 0, 0.2),
		0 0 30px rgba(184, 41, 255, 0.4);
}

.neon-button.outline {
	background: transparent;
	border: 2px solid var(--neon-purple);
}

.neon-button.outline:hover {
	background: rgba(184, 41, 255, 0.1);
}

.neon-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    transform: translate(-100%, -100%);
    transition: transform 0.3s ease;
}

.neon-button:hover::after {
    transform: translate(0, 0);
}

.neon-button:hover {
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 0 30px rgba(184, 41, 255, 0.6);
}

.neon-button:active {
	transform: translateY(0) scale(0.98);
}

/* Neon Effects */
.neon-text {
	color: #fff;
	text-shadow: 0 0 10px var(--neon-purple),
							 0 0 20px var(--neon-purple),
							 0 0 30px var(--neon-purple);
}

/* Section Titles */
.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
}

/* About & Contact Sections */
.about-content, .contact-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.about-text p, .contact-content p {
	margin-bottom: 1.5rem;
}

/* Animations */
@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Service Features List */
.service-features {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0 0;
}

.service-features li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.75rem;
	color: rgba(255, 255, 255, 0.8);
}

.service-features li::before {
	content: '⚡';
	position: absolute;
	left: 0;
	color: var(--neon-purple);
	font-size: 0.875rem;
}

/* Enhanced Card Content */
.card-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.card-content h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.card-content p {
	line-height: 1.6;
	margin-bottom: 1rem;
}

/* Contact Grid Layout */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.contact-info-card, .contact-form-card {
	padding: 2rem;
}

/* Enhanced Contact Section */
.contact-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	border-radius: 0.5rem;
	background: rgba(255, 255, 255, 0.02);
	transition: all 0.3s ease;
}

.contact-item:hover {
	background: rgba(255, 255, 255, 0.05);
	transform: translateX(5px);
}

.contact-item .icon {
	font-size: 1.5rem;
	color: var(--neon-purple);
}

.contact-item .label {
	font-weight: 600;
	color: var(--neon-purple);
	margin-bottom: 0.25rem;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}

/* Enhanced About Section */
.about-text {
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}

.about-text p {
	margin-bottom: 1.5rem;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
	html {
		font-size: 14px;
	}
	
	.nav-links {
		gap: 1.5rem;
	}
	
	.services-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.hero-logo {
		max-width: 300px;
	}
	
	.glass-card {
		padding: 2rem;
	}
}

@media (max-width: 480px) {
	.nav-links {
		gap: 1rem;
	}
	
	.nav-content {
		padding: 1rem;
	}
	
	.hero-content h1 {
		font-size: 1.8rem;
	}
	
	.section-title {
		font-size: 2rem;
	}

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

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

    .service-features {
        margin-top: 1rem;
    }

    body::before {
        background-size: 20px 20px;
    }
    
    .glass-card {
        animation: none;
    }
    
    section {
        padding: 4rem 1rem;
    }
}

/* Enhanced Section Transitions */
section {
    position: relative;
    min-height: 100vh;
    padding: 6rem 2rem;
    transition: transform 0.3s ease;
}

section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	/* background: linear-gradient(to top, var(--dark-purple), transparent); */
	pointer-events: none;
	z-index: 1;
}

/* Swiper Carousel Styles */
.swiper-container {
  overflow: hidden;
  padding: 2rem;
}

.swiper-slide {
  transition: transform 0.3s;
}

.swiper-slide-active {
  transform: scale(1.05);
}

/* Advanced Scroll Animations */
[data-scroll] {
  transition: opacity 1s, transform 1s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-scroll="in"] {
  opacity: 1;
  transform: translateY(0);
}

[data-scroll="out"] {
  opacity: 0;
  transform: translateY(30px);
}

/* Magnetic Effect */
.magnetic {
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.magnetic:hover {
	transform: translate(var(--mx, 0), var(--my, 0));
}

/* Contact Form Styles */
#contact-form {
		position: relative;
}

#contact-form input,
#contact-form textarea,
#contact-form select {
		transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus,
#contact-form select:focus {
		transform: translateY(-2px);
		border-color: var(--neon-purple);
		box-shadow: 0 0 15px rgba(184, 41, 255, 0.2);
}

#contact-form label {
		display: block;
		margin-bottom: 0.5rem;
		transition: color 0.3s ease;
}

.input-focused label {
		color: var(--neon-purple);
}

#contact-form button[type="submit"] {
		position: relative;
		overflow: hidden;
}

#contact-form button[type="submit"]::before {
		content: '';
		position: absolute;
		top: -50%;
		left: -50%;
		width: 200%;
		height: 200%;
		background: radial-gradient(circle, rgba(184, 41, 255, 0.2) 0%, transparent 70%);
		transform: translate(-100%, -100%) rotate(45deg);
		transition: transform 0.6s ease;
}

#contact-form button[type="submit"]:hover::before {
		transform: translate(0, 0) rotate(45deg);
}

.success-message,
.error-message {
		animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
		from {
				opacity: 0;
				transform: translateY(-10px);
		}
		to {
				opacity: 1;
				transform: translateY(0);
		}
}

/* Form loading state */
#contact-form button[type="submit"]:disabled {
		opacity: 0.7;
		cursor: not-allowed;
}

/* Enhanced form field animations */
#contact-form .form-group {
		position: relative;
		margin-bottom: 1.5rem;
}

#contact-form .form-group::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 0;
		height: 2px;
		background: var(--neon-purple);
		transition: width 0.3s ease, left 0.3s ease;
}

#contact-form .form-group:focus-within::after {
		width: 100%;
		left: 0;
}

/* Enhanced Select Dropdown Styles */
select {
    transition: all 0.3s ease;
}

select:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(184, 41, 255, 0.1);
}

select:focus {
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(184, 41, 255, 0.2);
    transform: translateY(-2px);
}

select option {
    padding: 12px;
    transition: background-color 0.3s ease;
}

select option:hover {
    background-color: rgba(184, 41, 255, 0.1) !important;
}

select option:checked {
    background: linear-gradient(90deg, rgba(184, 41, 255, 0.2), rgba(184, 41, 255, 0.1)) !important;
}
