/* ========================================
   CSS Reset & Base Styles
   ======================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

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

body {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	background-color: #F8F9FA;
	color: #0D1B2A;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
}

/* Optimize image loading */
img[loading="lazy"] {
	content-visibility: auto;
}

a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

/* ========================================
   CSS Variables
   ======================================== */
/* ========================================
   CSS Variables
   ======================================== */
:root {
	/* Premium Palette */
	--primary: #0F172A;
	/* Deep Navy */
	--primary-light: #1E293B;
	/* Lighter Navy */
	--primary-dark: #020617;
	/* Almost Black */

	--accent: #3B82F6;
	/* Electric Blue */
	--accent-hover: #2563EB;
	/* Darker Blue */
	--accent-light: #60A5FA;
	/* Lighter Blue */
	--accent-glow: rgba(59, 130, 246, 0.5);

	--neutral: #F8FAFC;
	/* Slate 50 */
	--neutral-light: #FFFFFF;
	--neutral-dark: #E2E8F0;
	/* Slate 200 */

	--text-main: #1E293B;
	/* Slate 800 */
	--text-muted: #64748B;
	/* Slate 500 */
	--text-light: #94A3B8;
	/* Slate 400 */

	/* Gradients */
	--gradient-primary: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
	--gradient-accent: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
	--gradient-glow: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);

	/* Shadows */
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);

	/* Glassmorphism */
	--glass-bg: rgba(255, 255, 255, 0.7);
	--glass-border: rgba(255, 255, 255, 0.5);
	--glass-blur: 12px;
}

/* ========================================
   Typography
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	color: var(--primary);
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	background: linear-gradient(to right, var(--primary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@media (min-width: 768px) {
	.hero-title {
		font-size: 4.5rem;
	}
}

.section-title-large {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	text-align: center;
}

@media (min-width: 768px) {
	.section-title-large {
		font-size: 3.5rem;
	}
}

.section-title {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.section-subtitle {
	font-size: 1.125rem;
	color: var(--text-muted);
	text-align: center;
	max-width: 42rem;
	margin: 0 auto 3rem;
	line-height: 1.6;
}

.hero-description {
	font-size: 1.25rem;
	color: var(--text-muted);
	margin-bottom: 2.5rem;
	max-width: 38rem;
	line-height: 1.6;
}

.section-text {
	font-size: 1.125rem;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
	line-height: 1.75;
}

/* ========================================
   Container
   ======================================== */
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (min-width: 640px) {
	.container {
		padding: 0 1.5rem;
	}
}

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

/* ========================================
   Navigation
   ======================================== */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: transparent;
	padding: 1.5rem 0;
	transition: all 0.3s ease;
}

.navbar.scrolled {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: var(--shadow-md);
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo img {
	height: 40px;
	width: auto;
	transition: transform 0.3s ease;
}

.logo:hover img {
	transform: scale(1.05);
}

.nav-links {
	display: none;
	align-items: center;
	gap: 2rem;
}

@media (min-width: 768px) {
	.nav-links {
		display: flex;
		gap: 2.5rem;
	}
}

@media (min-width: 1024px) {
	.nav-links {
		gap: 3.5rem;
	}
}

.nav-link {
	color: var(--text-main);
	font-weight: 500;
	font-size: 1rem;
	letter-spacing: 0.01em;
	padding: 0.5rem 0;
	transition: color 0.2s ease;
	white-space: nowrap;
	position: relative;
}

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

.nav-link:hover {
	color: var(--accent);
}

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

.nav-links .btn {
	margin-left: 1rem;
}

@media (min-width: 1024px) {
	.nav-links .btn {
		margin-left: 1.5rem;
	}
}

.mobile-menu-btn {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 0.5rem;
	z-index: 60;
}

@media (min-width: 768px) {
	.mobile-menu-btn {
		display: none;
	}
}

.menu-icon {
	width: 24px;
	height: 2px;
	background: var(--primary);
	transition: all 0.3s ease;
	border-radius: 2px;
}

.mobile-menu-btn.active .menu-icon:nth-child(1) {
	transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active .menu-icon:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active .menu-icon:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--neutral-light);
	padding-top: 6rem;
	z-index: 40;
	animation: fadeIn 0.3s ease;
}

.mobile-menu.active {
	display: block;
}

.mobile-nav-link {
	display: block;
	padding: 1.5rem;
	color: var(--primary);
	font-weight: 600;
	font-size: 1.25rem;
	text-align: center;
	transition: color 0.2s ease;
	border-bottom: 1px solid var(--neutral-dark);
}

.mobile-nav-link:hover {
	color: var(--accent);
	background: var(--neutral);
}

.mobile-btn {
	width: 90%;
	margin: 2rem auto 0;
	display: flex;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	border-radius: 0.5rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	text-align: center;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn-primary {
	background: var(--accent);
	color: white;
	box-shadow: var(--shadow-md);
	border: 1px solid transparent;
}

.btn-primary:hover {
	background: var(--accent-hover);
	box-shadow: var(--shadow-glow);
	transform: translateY(-2px);
}

.btn-secondary {
	background: var(--primary);
	color: white;
	box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
	background: var(--primary-light);
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
}

.btn-outline {
	border: 1px solid var(--neutral-dark);
	color: var(--text-main);
	background: transparent;
}

.btn-outline:hover {
	border-color: var(--accent);
	color: var(--accent);
	background: rgba(59, 130, 246, 0.05);
}

.btn-outline-white {
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
	background: white;
	color: var(--primary);
	border-color: white;
}

.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

.btn-md {
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
}

.btn-lg {
	padding: 1rem 2.5rem;
	font-size: 1.125rem;
}

.btn-full {
	width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--neutral);
	padding-top: 7rem;
	padding-bottom: 5rem;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -20%;
	right: -10%;
	width: 60%;
	height: 60%;
	background: var(--gradient-glow);
	filter: blur(60px);
	opacity: 0.6;
	z-index: 0;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -10%;
	left: -10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle at center, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
	filter: blur(40px);
	z-index: 0;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

@media (min-width: 1024px) {
	.hero-content {
		grid-template-columns: 1.2fr 0.8fr;
	}
}

.hero-text {
	display: flex;
	flex-direction: column;
}

.hero-title .accent {
	color: var(--accent);
	position: relative;
	display: inline-block;
}

.hero-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 640px) {
	.hero-buttons {
		flex-direction: row;
	}
}

.hero-image {
	position: relative;
}

.image-wrapper {
	position: relative;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	transform: perspective(1000px) rotateY(-5deg);
	transition: transform 0.5s ease;
}

.image-wrapper:hover {
	transform: perspective(1000px) rotateY(0deg);
}

.image-wrapper img {
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.image-wrapper:hover img {
	transform: scale(1.05);
}

/* ========================================
   Sections
   ======================================== */
.section {
	padding: 8rem 0;
	position: relative;
}

.section-white {
	background: var(--neutral-light);
}

.section-neutral {
	background: var(--neutral);
}

.section-cta {
	background: var(--primary);
	color: white;
	position: relative;
	overflow: hidden;
}

.section-cta::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
	z-index: 0;
}

.section-header {
	text-align: center;
	margin-bottom: 5rem;
	position: relative;
	z-index: 1;
}

/* ========================================
   Introduction Section
   ======================================== */
.intro-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.intro-content {
		grid-template-columns: 1fr 1fr;
	}
}

.intro-image img {
	border-radius: 0.75rem;
	box-shadow: var(--shadow-medium);
	width: 100%;
	height: auto;
}

/* ========================================
   Services Section
   ======================================== */
.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.service-card {
	background: var(--neutral-light);
	border-radius: 1rem;
	padding: 2.5rem 2rem;
	box-shadow: var(--shadow-sm);
	text-align: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid var(--neutral-dark);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
}

.service-card:hover {
	box-shadow: var(--shadow-xl);
	transform: translateY(-8px);
	border-color: var(--accent-light);
}

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

.service-icon {
	width: 4.5rem;
	height: 4.5rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	transition: all 0.3s ease;
}

.service-icon.blue {
	background: rgba(59, 130, 246, 0.1);
	color: var(--accent);
}

.service-icon.green {
	background: rgba(16, 185, 129, 0.1);
	color: #10B981;
}

.service-icon.purple {
	background: rgba(139, 92, 246, 0.1);
	color: #8B5CF6;
}

.service-card:hover .service-icon {
	transform: scale(1.1) rotate(5deg);
}

.service-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--primary);
}

.service-description {
	color: var(--text-muted);
	line-height: 1.6;
}

/* ========================================
   Achievements Section
   ======================================== */
.achievements-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-bottom: 4rem;
}

@media (min-width: 768px) {
	.achievements-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.achievement-card {
	background: var(--neutral-light);
	border-radius: 1rem;
	padding: 2rem 1.5rem;
	box-shadow: var(--shadow-sm);
	text-align: center;
	border: 1px solid var(--neutral-dark);
	transition: transform 0.3s ease;
}

.achievement-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.achievement-icon {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.achievement-icon.blue {
	background: rgba(59, 130, 246, 0.1);
	color: var(--accent);
}

.achievement-icon.green {
	background: rgba(16, 185, 129, 0.1);
	color: #10B981;
}

.achievement-icon.purple {
	background: rgba(139, 92, 246, 0.1);
	color: #8B5CF6;
}

.achievement-icon.orange {
	background: rgba(249, 115, 22, 0.1);
	color: #F97316;
}

.achievement-icon.pink {
	background: rgba(236, 72, 153, 0.1);
	color: #EC4899;
}

.achievement-value {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 0.5rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.achievement-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.achievements-text {
	color: var(--text-muted);
	text-align: center;
	max-width: 48rem;
	margin: 0 auto 3rem;
	font-size: 1.125rem;
	line-height: 1.75;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-content {
	text-align: center;
}

.cta-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: white;
}

.cta-description {
	font-size: 1.125rem;
	color: var(--gray-300-text);
	margin-bottom: 2rem;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
}

@media (min-width: 640px) {
	.cta-buttons {
		flex-direction: row;
	}
}

/* ========================================
   Contact Section
   ======================================== */
.contact-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.contact-content {
		grid-template-columns: 1fr 1fr;
	}
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.contact-icon {
	color: var(--accent);
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.contact-item-title {
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 0.25rem;
}

.contact-item-text {
	color: var(--gray-600);
}

.contact-item-link {
	color: var(--gray-600);
	transition: color 0.2s ease;
}

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

/* ========================================
   Form Styles
   ======================================== */
.card {
	background: var(--neutral-light);
	border-radius: 1.5rem;
	padding: 2.5rem;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--neutral-dark);
}

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

.form-group {
	display: flex;
	flex-direction: column;
}

.form-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.form-input {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 1px solid var(--neutral-dark);
	border-radius: 0.5rem;
	font-family: inherit;
	font-size: 1rem;
	background: var(--neutral);
	transition: all 0.3s ease;
	color: var(--text-main);
}

.form-input:focus {
	outline: none;
	border-color: var(--accent);
	background: white;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-input.error {
	border-color: #EF4444;
	background: rgba(239, 68, 68, 0.05);
}

.form-error {
	color: #EF4444;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.form-error.show {
	display: block;
	animation: slideDown 0.3s ease;
}

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

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

/* ========================================
   Footer
   ======================================== */
.footer {
	background: var(--primary-dark);
	color: white;
	margin-top: 0;
	padding: 6rem 0 3rem;
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	margin-bottom: 4rem;
}

@media (min-width: 768px) {
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.footer-content {
		grid-template-columns: 2fr 1fr 1fr;
	}
}

.footer-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: white;
}

.footer-text {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	line-height: 1.6;
	max-width: 24rem;
}

.footer-link {
	color: var(--accent);
	transition: color 0.2s ease;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-link:hover {
	color: var(--accent-light);
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	color: var(--text-light);
}

.footer-icon {
	color: var(--accent);
	margin-top: 0.25rem;
	flex-shrink: 0;
}

.footer-contact-item a {
	color: var(--text-light);
	transition: color 0.2s ease;
}

.footer-contact-item a:hover {
	color: white;
}

.footer-social {
	display: flex;
	gap: 1rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	color: white;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--accent);
	transform: translateY(-2px);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	text-align: center;
	color: var(--text-light);
	font-size: 0.875rem;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.footer-icon {
	color: var(--accent);
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.footer-contact-item dd {
	color: var(--gray-300-text);
}

.footer-contact-item a {
	color: var(--gray-300-text);
	transition: color 0.2s ease;
}

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

.footer-social {
	display: flex;
	gap: 1rem;
}

.social-link {
	width: 2.5rem;
	height: 2.5rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--accent);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	text-align: center;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Generic Page
   ======================================== */
.generic-hero {
	padding: 6rem 0;
	background: linear-gradient(to bottom right, var(--neutral-light), var(--neutral-light), var(--neutral));
	text-align: center;
	padding-top: 8rem;
}

.generic-hero-content {
	max-width: 42rem;
	margin: 0 auto;
}

.generic-hero-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.generic-hero-description {
	font-size: 1.125rem;
	color: var(--gray-600);
}

.generic-content {
	max-width: 56rem;
	margin: 0 auto;
}

.generic-image {
	margin-bottom: 3rem;
}

.generic-image img {
	border-radius: 1rem;
	box-shadow: var(--shadow-large);
	width: 100%;
	height: auto;
}

.generic-article {
	margin-bottom: 3rem;
}

.mt-12 {
	margin-top: 3rem;
}

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

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

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

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

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.9);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}

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

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}

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

.fade-in {
	animation: fadeIn 0.6s ease-out;
}

.fade-in-delay {
	animation: fadeIn 0.6s ease-out 0.2s both;
}

.fade-in-delay-2 {
	animation: fadeIn 0.6s ease-out 0.4s both;
}

.fade-in-up {
	animation: fadeInUp 0.5s ease-out both;
}

.fade-in-scale {
	animation: fadeInScale 0.5s ease-out both;
}

.slide-in-left {
	animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
	animation: slideInRight 0.6s ease-out;
}

/* Intersection Observer animations */
.fade-in-on-scroll {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
   Utility Classes
   ======================================== */
.desktop-only {
	display: none;
}

@media (min-width: 768px) {
	.desktop-only {
		display: block;
	}
}

/* ========================================
   Focus Styles for Accessibility
   ======================================== */
*:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}
/* ========================================
   Animations
   ======================================== */
.fade-in-on-scroll {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
will-change: opacity, transform;
}

.fade-in-on-scroll.visible {
opacity: 1;
transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
.fade-in-on-scroll {
transition: none;
opacity: 1;
transform: none;
}
}
