/* CSS Document */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #1e293b;
	background-color: #ffffff;
}

/* Header Styles */
.header {
	/*background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);*/
	background: linear-gradient(135deg, #e9ecef 0%, #8b5cf6 100%);
	color: white;
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2rem;
}

.logo {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.5rem;
	font-weight: 700;
	text-decoration: none;
	color: white;
}

.logo-icon {
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-menu a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: opacity 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
	opacity: 0.8;
	text-decoration: underline;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Main Content */
.main-content {
	margin-top: 80px;
	min-height: calc(100vh - 160px);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.hero {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 4rem 0;
	text-align: center;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.hero p {
	font-size: 1.2rem;
	color: #64748b;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-button {
	background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: transform 0.3s ease;
}

.cta-button:hover {
	transform: translateY(-2px);
}

.section {
	padding: 4rem 0;
}

.section h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	text-align: center;
	color: #1e293b;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.service-card {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-card h3 {
	color: #3b82f6;
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

/* Footer */
.footer {
	background: #1e293b;
	color: white;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3 {
	margin-bottom: 1rem;
	color: #3b82f6;
}

.footer-section a {
	color: #94a3b8;
	text-decoration: none;
	display: block;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid #334155;
	padding-top: 1rem;
	text-align: center;
	color: #94a3b8;
}

.brand-pattern {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
	margin: 1rem 0;
}

.pattern-dot {
	width: 4px;
	height: 4px;
	background: #3b82f6;
	border-radius: 50%;
}

.pattern-dash {
	width: 16px;
	height: 2px;
	background: #3b82f6;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
		flex-direction: column;
		padding: 1rem;
		gap: 1rem;
	}

	.nav-menu.active {
		display: flex;
	}

	.mobile-menu-btn {
		display: block;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}
}

/* Page-specific styles */
.page-hero {
	background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
	padding: 2rem 0;
	margin-top: 80px;
}

.page-hero h1 {
	font-size: 2.5rem;
	text-align: center;
	color: #1e293b;
}

.hidden {
	display: none;
}