/* Base styles */
:root {
	--primary: #4f46e5;
	--primary-dark: #4338ca;
	--text-primary: #111827;
	--text-secondary: #4b5563;
	--bg-light: #f9fafb;
	--white: #ffffff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Roboto', sans-serif;
	line-height: 1.5;
	color: var(--text-primary);
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Navbar */
.navbar {
	position: fixed;
	width: 100%;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.nav-content {
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: bold;
	font-size: 1.25rem;
}

.logo-icon {
	width: 2rem;
	height: 2rem;
	color: var(--primary);
}

.nav-links {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-links a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--primary);
}

.contact-btn {
	background: var(--primary);
	color: var(--white) !important;
	padding: 0.5rem 1rem;
	border-radius: 0.375rem;
}

.contact-btn:hover {
	background: var(--primary-dark);
}

.menu-btn {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
}

/* Hero Section */
.hero {
	padding: 8rem 0 5rem;
	background: linear-gradient(to bottom right, #eef2ff, var(--white), #f5f3ff);
	text-align: center;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero p {
	font-size: 1.25rem;
	color: var(--text-secondary);
	max-width: 42rem;
	margin: 0 auto 2rem;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.primary-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--primary);
	color: var(--white);
	padding: 0.75rem 1.5rem;
	border-radius: 0.375rem;
	text-decoration: none;
	transition: background-color 0.2s;
}

.primary-btn:hover {
	background: var(--primary-dark);
}

.secondary-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--white);
	color: var(--text-primary);
	padding: 0.75rem 1.5rem;
	border-radius: 0.375rem;
	text-decoration: none;
	border: 1px solid #e5e7eb;
	transition: background-color 0.2s;
}

.secondary-btn:hover {
	background: var(--bg-light);
}

/* Services Section */
.services {
	padding: 5rem 0;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
	font-size: 2.25rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

.section-header p {
	color: var(--text-secondary);
	max-width: 42rem;
	margin: 0 auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.service-card {
	background: var(--white);
	padding: 1.5rem;
	border-radius: 0.75rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.2s;
}

.service-card:hover {
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
	width: 3rem;
	height: 3rem;
	background: #eef2ff;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.icon-wrapper i {
	color: var(--primary);
}

.service-card h3 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	letter-spacing: 0.5px;
}

.service-card p {
	color: var(--text-secondary);
}

/* Stats Section */
.stats {
	background: var(--primary);
	padding: 4rem 0;
	color: var(--white);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	text-align: center;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}

.stat-label {
	color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact {
	padding: 5rem 0;
	background: var(--bg-light);
}

.contact-form-wrapper {
	max-width: 32rem;
	margin: 0 auto;
}

.contact-form {
	background: var(--white);
	padding: 2rem;
	border-radius: 0.75rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
	color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.5rem;
	border: 1px solid #e5e7eb;
	border-radius: 0.375rem;
	transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.submit-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: var(--primary);
	color: var(--white);
	padding: 0.75rem;
	border: none;
	border-radius: 0.375rem;
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 500;
	transition: background-color 0.2s;
}

.submit-btn:hover {
	background: var(--primary-dark);
}

/* Footer */
.footer {
	background: #111827;
	color: #9ca3af;
	padding: 3rem 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.footer-brand .logo {
	color: var(--white);
	margin-bottom: 1rem;
}

.footer-links h3 {
	color: var(--white);
	font-size: 1.125rem;
	margin-bottom: 1rem;
}

.footer-links ul {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
	cursor: pointer;
	transition: color 0.2s;
}

.footer a {
	color: #9ca3af;
	text-decoration: none;
}

.footer-brand ul {
	margin-left: 18px;
}

.footer-links li:hover {
	color: var(--white);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #1f2937;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.nav-links.active {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 4rem;
		left: 0;
		right: 0;
		background: var(--white);
		padding: 1rem;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	}

	.menu-btn {
		display: block;
	}

	.hero h1 {
		font-size: 2.5rem;
	}
}