* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #2c3e50;
	--secondary-color: #34495e;
	--accent-color: #3498db;
	--text-color: #333;
	--text-light: #666;
	--bg-light: #f8f9fa;
	--white: #ffffff;
	--border-color: #e9ecef;
	--shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	--shadow-hover: 0 5px 25px rgba(0, 0, 0, 0.15);
}

body {
	font-family: 'Noto Sans', sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--white);
}

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

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

h1 {
	font-size: 3rem;
}
h2 {
	font-size: 2.5rem;
}
h3 {
	font-size: 1.8rem;
}
h4 {
	font-size: 1.4rem;
}

p {
	margin-bottom: 1rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-accept,
.btn-decline {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 16px;
}

.btn-primary {
	background: var(--primary-color);
	color: white;
}

.btn-primary:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
}

.btn-secondary {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
	background: var(--primary-color);
	color: white;
}

.btn-accept {
	background: var(--accent-color);
	color: white;
}

.btn-decline {
	background: transparent;
	color: var(--text-color);
	border: 2px solid var(--border-color);
}

/* 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;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.cookie-modal.active {
	opacity: 1;
	visibility: visible;
}

.cookie-content {
	background: white;
	padding: 40px;
	border-radius: 12px;
	max-width: 500px;
	margin: 20px;
	text-align: center;
}

.cookie-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin: 20px 0;
	flex-wrap: wrap;
}

.cookie-link {
	color: var(--accent-color);
	text-decoration: none;
	font-size: 14px;
}

/* Navigation */
.navbar {
	background: white;
	box-shadow: var(--shadow);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

.nav-brand {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.1eem;
	font-weight: 600;
	color: var(--primary-color);
	text-decoration: none;
}

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

.nav-menu {
	display: flex;
	gap: 30px;
}

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

.nav-menu a:hover {
	color: var(--accent-color);
}

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

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: var(--primary-color);
	margin: 3px 0;
	transition: 0.3s;
}

/* Sections */
section {
	padding: 80px 0;
}

.section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
}

.section-header p {
	font-size: 1.2rem;
	color: var(--text-light);
}

/* Hero Section */
.hero {
	padding: 150px 0 80px;
	background: var(--bg-light);
}

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

.hero-content h1 {
	color: var(--primary-color);
	margin-bottom: 20px;
}

.hero-content p {
	font-size: 1.2rem;
	color: var(--text-light);
	margin-bottom: 30px;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

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

/* About Section */
.about-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.about-item {
	text-align: center;
	padding: 30px;
	background: white;
	border-radius: 12px;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
}

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

.about-icon {
	font-size: 3rem;
	margin-bottom: 20px;
}

/* Services Preview */
.services-preview {
	background: var(--bg-light);
}

.services-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.services-list {
	list-style: none;
	margin: 30px 0;
}

.services-list li {
	padding: 8px 0;
	border-bottom: 1px solid var(--border-color);
	position: relative;
	padding-left: 20px;
}

.services-list li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-weight: bold;
}

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

/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 20px;
}

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

.faq-question:hover {
	color: var(--accent-color);
}

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

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

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

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

/* Contact Section */
.contact {
	background: var(--bg-light);
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.contact-details {
	margin-top: 30px;
}

.contact-item {
	margin-bottom: 20px;
}

.contact-item strong {
	color: var(--primary-color);
	display: block;
	margin-bottom: 5px;
}

.contact-form {
	background: white;
	padding: 40px;
	border-radius: 12px;
	box-shadow: var(--shadow);
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
	color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	font-size: 16px;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent-color);
}

.form-group textarea {
	resize: vertical;
}

.checkbox-group {
	margin-bottom: 25px;
}

.checkbox-label {
	display: flex !important;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.4;
	margin-bottom: 0;
}

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin: 0;
	opacity: 0;
	position: absolute;
}

.checkmark {
	width: 20px;
	height: 20px;
	border: 2px solid var(--border-color);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-top: 2px;
}

.checkbox-label input[type='checkbox']:checked + .checkmark {
	background: var(--accent-color);
	border-color: var(--accent-color);
}

.checkbox-label input[type='checkbox']:checked + .checkmark::after {
	content: '✓';
	color: white;
	font-size: 14px;
	font-weight: bold;
}

.checkbox-label input[type='checkbox']:focus + .checkmark {
	outline: 2px solid var(--accent-color);
	outline-offset: 2px;
}

/* Services Page Specific */
.services-hero {
	padding: 150px 0 80px;
	background: var(--bg-light);
}

.services-hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.service-cards {
	padding: 80px 0;
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 40px;
}

.service-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
}

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

.card-image img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.card-content {
	padding: 30px;
}

.card-content ul {
	list-style: none;
	margin-top: 20px;
}

.card-content li {
	padding: 5px 0;
	border-bottom: 1px solid var(--border-color);
	position: relative;
	padding-left: 20px;
}

.card-content li:before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-weight: bold;
}

.process {
	background: var(--bg-light);
}

.process-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
	align-items: center;
}

.process-steps {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.process-step {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.step-number {
	background: var(--primary-color);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	flex-shrink: 0;
}

.industries-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.industry-item {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
}

.industry-item:hover {
	transform: translateY(-3px);
}

/* Footer */
.footer {
	background: var(--primary-color);
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	margin-bottom: 40px;
}

.footer-brand h3 {
	font-size: 1.8rem;
	margin-bottom: 15px;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.footer-column h4 {
	margin-bottom: 20px;
	color: white;
}

.footer-column a {
	display: block;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	margin-bottom: 10px;
	transition: color 0.3s ease;
}

.footer-column a:hover {
	color: white;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
}

/* Custom Animations (AOS.js handles animations now) */

/* Submission Modal */
.submission-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: all 0.3s ease;
}

.submission-modal.active {
	opacity: 1;
	visibility: visible;
}

.submission-content {
	background: white;
	padding: 40px;
	border-radius: 12px;
	max-width: 400px;
	margin: 20px;
	text-align: center;
	animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
	from {
		transform: translateY(-30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid var(--border-color);
	border-top: 4px solid var(--accent-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}

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

.submission-content h3 {
	margin-bottom: 15px;
	color: var(--primary-color);
}

.submission-content p {
	color: var(--text-light);
	margin: 0;
}

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

	h1 {
		font-size: 1.7rem;
	}
	h2 {
		font-size: 1.5rem;
	}
	h3 {
		font-size: 1rem;
	}

	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: white;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding-top: 50px;
		transition: left 0.3s ease;
		box-shadow: var(--shadow);
	}

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

	.nav-toggle {
		display: flex;
	}

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

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

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

	.services-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

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

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

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-links {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media (max-width: 480px) {
	section {
		padding: 60px 0;
	}

	.hero {
		padding: 120px 0 60px;
	}

	.cookie-content {
		padding: 30px;
		margin: 15px;
	}

	.cookie-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.contact-form {
		padding: 30px;
	}
}
