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

body {
	font-family: 'Noto Sans', sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

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

/* Animation Styles */
.animate-section {
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-section.visible {
	opacity: 1;
	transform: scale(1);
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 1000;
	border-bottom: 1px solid #eee;
}

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

.nav-brand {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	text-decoration: none;
	color: #333;
}

.nav-brand img {
	height: 40px;
	width: auto;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-menu a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-menu a:hover {
	color: #007bff;
}

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

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: #333;
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero {
	height: 100vh;
	background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
		url('/assets/img/hero-bg.png');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}

.hero-content {
	max-width: 800px;
	padding: 2rem;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

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

.btn {
	display: inline-block;
	padding: 1rem 2rem;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-primary {
	background: #007bff;
	color: white;
}

.btn-primary:hover {
	background: #0056b3;
	transform: translateY(-2px);
}

.btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.btn-secondary:hover {
	background: white;
	color: #333;
}

/* Services Overview */
.services-overview {
	padding: 6rem 0;
	background: #f8f9fa;
}

.services-overview h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 1rem;
	font-weight: 600;
}

.section-subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

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

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

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

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

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.service-card p {
	color: #666;
	line-height: 1.6;
}

/* About Section */
.about {
	padding: 6rem 0;
	background-image: linear-gradient(
			rgba(255, 255, 255, 0.9),
			rgba(255, 255, 255, 0.9)
		),
		url('/assets/img/team-collaboration.png');
	background-size: cover;
	background-position: center;
}

.about-content {
	max-width: 800px;
	margin: 0 auto;
}

.about h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	font-weight: 600;
}

.about p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: #555;
}

/* FAQ Section */
.faq {
	padding: 6rem 0;
	background: #f8f9fa;
}

.faq h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	font-weight: 600;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	margin-bottom: 1rem;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	cursor: pointer;
	background: white;
	transition: background 0.3s ease;
}

.faq-question:hover {
	background: #f8f9fa;
}

.faq-question h3 {
	font-size: 1.1rem;
	font-weight: 600;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: bold;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 200px;
}

.faq-answer p {
	padding: 0 1.5rem 1.5rem;
	color: #666;
	line-height: 1.6;
}

/* Contact Section */
.contact {
	padding: 6rem 0;
}

.contact h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 1rem;
	font-weight: 600;
}

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

.contact-info h3 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	font-weight: 600;
}

.contact-item {
	margin-bottom: 1.5rem;
}

.contact-item strong {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.contact-form {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 10px;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

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

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

.checkbox-group {
	margin-bottom: 2rem;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #555;
	font-weight: normal;
}

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin-right: 0.75rem;
	margin-top: 0.1rem;
	flex-shrink: 0;
}

.checkbox-label input[type='checkbox']:checked {
	accent-color: #007bff;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
}

.cookie-modal.hidden {
	display: none;
}

.cookie-content {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	max-width: 500px;
	margin: 1rem;
	text-align: center;
}

.cookie-content h3 {
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.cookie-content p {
	margin-bottom: 1.5rem;
	color: #666;
	line-height: 1.6;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.btn-accept {
	background: #007bff;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
}

.btn-decline {
	background: #6c757d;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
}

/* Form Submission Modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10001;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-modal.show {
	opacity: 1;
	visibility: visible;
}

.form-modal-content {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	max-width: 400px;
	margin: 1rem;
	text-align: center;
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.form-modal.show .form-modal-content {
	transform: scale(1);
}

.form-modal h3 {
	margin-bottom: 1rem;
	font-size: 1.5rem;
	color: #333;
}

.form-modal p {
	margin-bottom: 1.5rem;
	color: #666;
	line-height: 1.6;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #007bff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

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

.success-icon {
	width: 60px;
	height: 60px;
	background: #28a745;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: white;
	font-size: 1.5rem;
}

/* Services Page Styles */
.services-hero {
	padding: 8rem 0 4rem;
	text-align: center;
	background-image: linear-gradient(
			rgba(248, 249, 250, 0.95),
			rgba(248, 249, 250, 0.95)
		),
		url('/assets/img/strategy-planning.png');
	background-size: cover;
	background-position: center;
}

.services-hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.services-hero p {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.detailed-services {
	padding: 4rem 0;
	background-image: linear-gradient(
			rgba(255, 255, 255, 0.9),
			rgba(255, 255, 255, 0.9)
		),
		url('/assets/img/digital-transformation.png');
	background-size: cover;
	background-position: center;
}

.service-detail {
	max-width: 800px;
	margin: 0 auto;
}

.service-content h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.service-content p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: #555;
}

.service-features {
	list-style: none;
	margin-top: 2rem;
}

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

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

.process-optimization {
	padding: 4rem 0;
	background: #f8f9fa;
}

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

.optimization-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.optimization-card::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 100px;
	height: 100px;
	background-image: url('/assets/img/process-optimization.png');
	background-size: contain;
	background-repeat: no-repeat;
	opacity: 0.1;
}

.optimization-card h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.optimization-card p {
	color: #666;
	line-height: 1.6;
}

.technology-solutions {
	padding: 4rem 0;
	background-image: linear-gradient(
			rgba(255, 255, 255, 0.9),
			rgba(255, 255, 255, 0.9)
		),
		url('/assets/img/digital-transformation.png');
	background-size: cover;
	background-position: center;
}

.tech-content {
	max-width: 800px;
	margin: 0 auto;
}

.tech-text p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: #555;
}

/* Footer */
.footer {
	background: #333;
	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 h4 {
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

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

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

.footer-section ul li a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid #555;
	padding-top: 1rem;
	text-align: center;
	color: #ccc;
}

/* Legal Pages */
.legal-page {
	padding: 8rem 0 4rem;
	min-height: 80vh;
}

.legal-content {
	max-width: 800px;
	margin: 0 auto;
}

.legal-content h1 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	font-weight: 600;
}

.legal-content h2 {
	font-size: 1.5rem;
	margin: 2rem 0 1rem;
	font-weight: 600;
}

.legal-content p {
	margin-bottom: 1rem;
	line-height: 1.6;
	color: #555;
}

.legal-content ul {
	margin-bottom: 1rem;
	padding-left: 2rem;
}

.legal-content li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
	color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: white;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-toggle {
		display: flex;
	}

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

	.hero p {
		font-size: 1.1rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

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

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

	.services-hero h1 {
		font-size: 2.5rem;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

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

	.services-overview h2,
	.about h2,
	.faq h2,
	.contact h2 {
		font-size: 2rem;
	}

	.service-card {
		padding: 1.5rem;
	}
}
