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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #2d3748;
	background-color: #f8fafc;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
}

a {
	color: #3b82f6;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #1d4ed8;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 24px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	box-shadow: 0 4px 14px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
	background: linear-gradient(135deg, #5a6fd8 0%, #694a91 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
	background-color: #64748b;
	color: white;
	border: none;
	box-shadow: 0 4px 14px rgba(100, 116, 139, 0.3);
}

.btn-secondary:hover {
	background-color: #475569;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(100, 116, 139, 0.4);
}

/* Header */
.header {
	background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(20px);
}

.navbar {
	padding: 1.5rem 0;
}

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

.nav-logo img {
	height: 45px;
	width: auto;
}

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

.nav-link {
	color: #e2e8f0;
	font-weight: 500;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	position: relative;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #667eea, #764ba2);
	transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	color: #ffffff;
	transform: translateY(-1px);
}

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

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.hamburger .bar {
	width: 25px;
	height: 3px;
	background-color: #e2e8f0;
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero {
	padding: 120px 0;
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
	color: white;
	display: flex;
	align-items: center;
	min-height: 700px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="2" fill="%23667eea" opacity="0.3"/><circle cx="800" cy="300" r="1" fill="%23764ba2" opacity="0.4"/><circle cx="400" cy="600" r="1.5" fill="%23667eea" opacity="0.2"/><circle cx="700" cy="800" r="1" fill="%23764ba2" opacity="0.3"/></svg>');
	animation: float 20s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

.hero-content {
	flex: 1;
	max-width: 700px;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.3rem;
	margin-bottom: 3rem;
	opacity: 0.9;
	color: #cbd5e1;
	line-height: 1.6;
}

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

.hero-image {
	flex: 1;
	text-align: center;
}

.hero-image img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.features h2 {
	text-align: center;
	margin-bottom: 3rem;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.feature-card {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	padding: 3rem;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
	font-size: 3.5rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
}

/* About Preview */
.about-preview {
	padding: 80px 0;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

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

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

.about-images img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Preview */
.services-preview {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.services-preview h2 {
	text-align: center;
	margin-bottom: 3rem;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.service-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-icon {
	font-size: 3rem;
	color: #007bff;
	margin-bottom: 1rem;
}

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

/* Contact CTA */
.contact-cta {
	padding: 100px 0;
	background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.contact-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="2" fill="%23667eea" opacity="0.2"/><circle cx="900" cy="200" r="1" fill="%23764ba2" opacity="0.3"/></svg>');
	animation: float 15s ease-in-out infinite;
}

.contact-cta h2 {
	margin-bottom: 1rem;
}

.contact-cta p {
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

/* Page Header */
.page-header {
	padding: 60px 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-align: center;
}

.page-header h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

/* About Page Styles */
.about-content {
	padding: 80px 0;
}

.about-intro {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
	margin-bottom: 3rem;
}

.mission-vision {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.mv-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
}

.mv-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mv-icon {
	font-size: 3rem;
	color: #007bff;
	margin-bottom: 1rem;
}

.values {
	padding: 80px 0;
}

.values h2 {
	text-align: center;
	margin-bottom: 3rem;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.value-card {
	text-align: center;
	padding: 2rem;
}

.value-icon {
	font-size: 3rem;
	color: #007bff;
	margin-bottom: 1rem;
}

.company-info {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.info-details {
	display: grid;
	gap: 2rem;
}

.info-item h3 {
	color: #007bff;
	margin-bottom: 0.5rem;
}

.info-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose {
	padding: 80px 0;
}

.why-choose h2 {
	text-align: center;
	margin-bottom: 3rem;
}

.choose-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.choose-item {
	text-align: center;
	padding: 2rem;
}

.choose-number {
	font-size: 3rem;
	font-weight: bold;
	color: #007bff;
	margin-bottom: 1rem;
}

/* Services Page Styles */
.services-overview {
	padding: 80px 0;
}

.services-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.main-services {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.service-detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	margin-bottom: 4rem;
}

.service-detail.reverse {
	direction: rtl;
}

.service-detail.reverse > * {
	direction: ltr;
}

.service-content {
	padding: 2rem;
}

.service-content .service-icon {
	font-size: 3rem;
	color: #007bff;
	margin-bottom: 1rem;
}

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

.service-content li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.service-content li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #007bff;
	font-weight: bold;
}

.service-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.additional-services {
	padding: 80px 0;
}

.additional-services h2 {
	text-align: center;
	margin-bottom: 3rem;
}

.additional-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.additional-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.additional-card:hover {
	transform: translateY(-5px);
}

.additional-icon {
	font-size: 3rem;
	color: #007bff;
	margin-bottom: 1rem;
}

.technology-stack {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.technology-stack h2 {
	text-align: center;
	margin-bottom: 3rem;
}

.tech-categories {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.tech-category {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tech-category h3 {
	color: #007bff;
	margin-bottom: 1rem;
}

.tech-items {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tech-item {
	background-color: #e9ecef;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
}

.process {
	padding: 80px 0;
}

.process h2 {
	text-align: center;
	margin-bottom: 3rem;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.process-step {
	text-align: center;
	padding: 2rem;
}

.step-number {
	width: 60px;
	height: 60px;
	background-color: #007bff;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 auto 1rem auto;
}

/* Contact Page Styles */
.contact-section {
	padding: 80px 0;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.contact-info h2 {
	margin-bottom: 1.5rem;
}

.contact-info p {
	margin-bottom: 2rem;
	color: #666;
}

.contact-details {
	display: grid;
	gap: 2rem;
}

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

.contact-icon {
	width: 50px;
	height: 50px;
	background-color: #007bff;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.contact-text h3 {
	margin-bottom: 0.5rem;
	color: #007bff;
}

.contact-text p {
	margin-bottom: 0;
}

.contact-form-section h2 {
	margin-bottom: 2rem;
}

.contact-form {
	display: grid;
	gap: 1.5rem;
}

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

.form-group label {
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #007bff;
}

.checkbox-group {
	flex-direction: row;
	align-items: center;
	gap: 0.5rem;
}

.checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
}

.checkbox-label input[type='checkbox'] {
	width: 18px;
	height: 18px;
}

.error-message {
	color: #dc3545;
	font-size: 0.9rem;
	margin-top: 0.5rem;
}

.success-message {
	background-color: #d4edda;
	color: #155724;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	border: 1px solid #c3e6cb;
}

.success-message i {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.business-hours {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.business-hours h2 {
	text-align: center;
	margin-bottom: 3rem;
}

.hours-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.hours-item {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hours-item h3 {
	color: #007bff;
	margin-bottom: 1rem;
}

.faq-section {
	padding: 80px 0;
}

.faq-section h2 {
	text-align: center;
	margin-bottom: 3rem;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
}

.faq-item {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
	color: #007bff;
	margin-bottom: 1rem;
}

/* Legal Pages Styles */
.legal-content {
	padding: 80px 0;
}

.legal-text {
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}

.legal-text h2 {
	color: #007bff;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.legal-text h3 {
	color: #333;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}

.legal-text ul {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.legal-text li {
	margin-bottom: 0.5rem;
}

.contact-info {
	background-color: #f8f9fa;
	padding: 2rem;
	border-radius: 10px;
	margin: 2rem 0;
}

/* CTA Section */
.cta-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-align: center;
}

.cta-section h2 {
	margin-bottom: 1rem;
}

.cta-section p {
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

/* Footer */
.footer {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: white;
	padding: 80px 0 30px;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="300" cy="300" r="1" fill="%23667eea" opacity="0.2"/><circle cx="600" cy="600" r="1.5" fill="%23764ba2" opacity="0.3"/><circle cx="900" cy="100" r="1" fill="%23667eea" opacity="0.1"/></svg>');
	animation: float 25s ease-in-out infinite;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
	position: relative;
	z-index: 1;
}

.footer-section h3 {
	margin-bottom: 1.5rem;
	color: #e2e8f0;
	font-size: 1.3rem;
	font-weight: 600;
}

.footer-section p {
	margin-bottom: 1.2rem;
	color: #94a3b8;
	line-height: 1.6;
}

.footer-contact p {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: #94a3b8;
	transition: all 0.3s ease;
}

.footer-section ul li a:hover {
	color: #e2e8f0;
	transform: translateX(5px);
}

.footer-bottom {
	text-align: center;
	padding-top: 3rem;
	border-top: 1px solid #334155;
	color: #94a3b8;
	position: relative;
	z-index: 1;
}

/* Cookie Consent */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #333;
	color: white;
	padding: 1rem;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.cookie-consent.show {
	transform: translateY(0);
}

.cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	gap: 2rem;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	align-items: center;
	flex-shrink: 0;
}

.cookie-link {
	color: #007bff;
	text-decoration: underline;
}

.cookie-link:hover {
	color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}

	.nav-menu {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.hero {
		flex-direction: column;
		text-align: center;
		padding: 60px 0;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero-buttons {
		justify-content: center;
	}

	.about-content,
	.about-intro,
	.info-grid,
	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.service-detail {
		grid-template-columns: 1fr;
	}

	.service-detail.reverse {
		direction: ltr;
	}

	.features-grid,
	.services-grid,
	.values-grid,
	.choose-grid,
	.additional-grid,
	.tech-categories,
	.process-steps {
		grid-template-columns: 1fr;
	}

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

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-buttons {
		flex-direction: column;
		width: 100%;
	}

	.cookie-buttons .btn {
		width: 100%;
		margin-bottom: 0.5rem;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 1.8rem;
	}

	.page-header h1 {
		font-size: 2rem;
	}

	.hero-buttons {
		flex-direction: column;
		width: 100%;
	}

	.hero-buttons .btn {
		width: 100%;
	}

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

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

/* Print Styles */
@media print {
	.header,
	.footer,
	.cookie-consent,
	.cta-section {
		display: none;
	}

	.page-header {
		background: none;
		color: #333;
	}

	.hero {
		background: none;
		color: #333;
	}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
	outline: 2px solid #007bff;
	outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
	.feature-card,
	.service-card,
	.mv-card,
	.additional-card,
	.tech-category,
	.hours-item,
	.faq-item {
		border: 2px solid #333;
	}
}
