/* 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;
	background-color: #fff;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Cal Sans', sans-serif;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3rem;
	font-weight: 700;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 1.8rem;
}

p {
	margin-bottom: 1rem;
	color: #666;
}

/* Navigation */
.navbar {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

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

.nav-logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: #333;
	text-decoration: none;
}

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

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

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

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

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

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

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

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

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

.btn-secondary {
	background: transparent;
	color: #007bff;
	border: 2px solid #007bff;
}

.btn-secondary:hover {
	background: #007bff;
	color: white;
	transform: translateY(-2px);
}

/* Sections */
.section {
	padding: 100px 0;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding-top: 120px;
	min-height: 80vh;
	display: flex;
	align-items: center;
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-content h1 {
	font-size: 3.5rem;
	color: #333;
	margin-bottom: 1.5rem;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #666;
}

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

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

/* About Section */
.about {
	background: #fff;
}

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

.about-text h2 {
	color: #333;
	margin-bottom: 2rem;
}

.about-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

/* Services Preview */
.services-preview {
	background: #f8f9fa;
}

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

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

.service-card {
	background: white;
	padding: 2rem;
	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: 1rem;
}

.service-card img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 1rem;
}

.service-card h3 {
	color: #333;
	margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
	background: #fff;
}

.faq h2 {
	text-align: center;
	margin-bottom: 3rem;
	color: #333;
}

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

.faq-item {
	border-bottom: 1px solid #eee;
	margin-bottom: 1rem;
}

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

.faq-question:hover {
	color: #007bff;
}

.faq-question h3 {
	margin: 0;
	font-size: 1.2rem;
}

.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;
	padding-bottom: 1rem;
}

/* Contact Section */
.contact {
	background: #f8f9fa;
}

.contact h2 {
	text-align: center;
	margin-bottom: 3rem;
	color: #333;
}

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

.contact-info h3 {
	color: #333;
	margin-bottom: 2rem;
}

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

.contact-item strong {
	color: #333;
	display: block;
	margin-bottom: 0.5rem;
}

.contact-form h3 {
	color: #333;
	margin-bottom: 2rem;
}

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

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	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-container {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 0.9rem;
	color: #666;
	line-height: 1.4;
}

.checkbox-container input[type='checkbox'] {
	width: auto;
	margin: 0;
	flex-shrink: 0;
	margin-top: 2px;
}

.checkbox-container:hover {
	color: #333;
}

/* Services Page Specific */
.services-hero {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding-top: 120px;
}

.services-hero-content {
	text-align: center;
	margin-bottom: 3rem;
}

.services-hero-content h1 {
	font-size: 3rem;
	color: #333;
	margin-bottom: 1.5rem;
}

.services-hero-image {
	text-align: center;
}

.services-hero-image img {
	max-width: 500px;
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.strategic-consulting {
	background: #fff;
}

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

.service-text h2 {
	color: #333;
	margin-bottom: 2rem;
}

.service-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.process-excellence {
	background: #f8f9fa;
}

.process-excellence h2 {
	text-align: center;
	margin-bottom: 3rem;
	color: #333;
}

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

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

.process-item:hover {
	transform: translateY(-5px);
}

.process-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

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

.technology-integration {
	background: #fff;
}

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

.tech-text h2 {
	color: #333;
	margin-bottom: 2rem;
}

.tech-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

/* 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 {
	color: #007bff;
	margin-bottom: 1rem;
}

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

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

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

.footer-section a:hover {
	color: #007bff;
}

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

/* Cookie Modal */
.cookie-modal {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	z-index: 10000;
	max-width: 400px;
	padding: 2rem;
}

.cookie-modal.show {
	display: block;
}

.cookie-content h3 {
	color: #333;
	margin-bottom: 1rem;
}

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

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

.cookie-buttons .btn {
	flex: 1;
	padding: 10px;
	font-size: 0.9rem;
}

/* Form Submission Modal */
.form-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10001;
	justify-content: center;
	align-items: center;
}

.form-modal.show {
	display: flex;
}

.form-modal-content {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.success-icon {
	font-size: 3rem;
	color: #28a745;
	margin-bottom: 1rem;
}

/* Legal Pages */
.legal-page {
	padding: 120px 0 50px;
	min-height: 80vh;
}

.legal-page h1 {
	font-size: 1.5rem;
	color: #333;
	margin-bottom: 2rem;
}

.legal-page h2 {
	font-size: 1.5rem;
	color: #333;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.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-menu li {
		margin: 1rem 0;
	}

	.hero .container {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

	.about-content {
		grid-template-columns: 1fr;
	}

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

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

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

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

	.tech-content {
		grid-template-columns: 1fr;
	}

	.cookie-modal {
		bottom: 10px;
		right: 10px;
		left: 10px;
		max-width: none;
	}

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

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.8rem;
	}
}

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

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

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

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