/* 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.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
	margin-bottom: 1rem;
	font-size: 1.1rem;
	line-height: 1.7;
}

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

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

.btn-secondary {
	background: transparent;
	color: #000;
	padding: 12px 24px;
	border: 2px solid #000;
	border-radius: 8px;
	text-decoration: none;
	display: inline-block;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
	font-size: 1rem;
}

.btn-secondary:hover {
	background: #000;
	color: #fff;
	transform: translateY(-2px);
}

/* Header */
.header {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
}

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

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

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

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

.nav-menu a:hover,
.nav-menu a.active {
	color: #000;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
	padding: 10px;
	border-radius: 4px;
	transition: all 0.3s ease;
	z-index: 1002;
	position: relative;
	background: transparent;
	border: none;
	outline: none;
}

.hamburger:hover {
	background: rgba(0, 0, 0, 0.05);
}

.hamburger:focus {
	background: rgba(0, 0, 0, 0.1);
	outline: 2px solid #000;
	outline-offset: 2px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: #000;
	transition: all 0.3s ease;
	display: block;
	border-radius: 2px;
}

/* Main Content */
main {
	margin-top: 80px;
}

/* 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: #666;
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 120px 0;
}

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

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

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

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

.hero-visual 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;
	margin-top: 60px;
}

.about-card {
	background: #f8f9fa;
	padding: 40px;
	border-radius: 12px;
	text-align: center;
	transition: transform 0.3s ease;
}

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

.card-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
}

.card-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Process Section */
.process {
	background: #f8f9fa;
}

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

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

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

.step-number {
	background: #000;
	color: #fff;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	flex-shrink: 0;
}

.step-content h3 {
	margin-bottom: 0.5rem;
}

.process-visual {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.emoji-large {
	font-size: 4rem;
	opacity: 0.8;
}

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

.services-overview img {
	width: 100%;
	max-width: 600px;
	height: auto;
	border-radius: 12px;
	margin: 40px auto;
	display: block;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.service-card {
	background: #fff;
	border: 1px solid #e9ecef;
	padding: 40px;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.service-card:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}

.service-icon {
	width: 80px;
	height: 80px;
	margin-bottom: 20px;
}

.service-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.service-features {
	list-style: none;
	margin-top: 20px;
}

.service-features li {
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
	border-bottom: none;
}

.service-features li::before {
	content: '✓';
	color: #000;
	font-weight: bold;
	margin-right: 10px;
}

/* Industry Expertise */
.industry-expertise {
	background: #f8f9fa;
}

.expertise-content {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 60px;
	align-items: center;
	margin-top: 60px;
}

.expertise-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: #000;
	display: block;
}

.stat-label {
	font-size: 0.9rem;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.emoji-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.emoji-item {
	font-size: 4rem;
	opacity: 0.8;
}

/* Success Stories */
.stories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.story-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

.story-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.story-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-content {
	padding: 30px;
}

.story-results {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.result-tag {
	background: #000;
	color: #fff;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
}

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

.faq-item {
	border-bottom: 1px solid #e9ecef;
	margin-bottom: 20px;
}

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

.faq-question:hover {
	color: #666;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: 300;
	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;
	padding: 0 20px 0 0;
}

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

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

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

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

.contact-item h3 {
	margin-bottom: 10px;
	font-size: 1.2rem;
}

.contact-form {
	background: #fff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

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

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	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: #000;
}

/* Checkbox Styles */
.checkbox-container {
	display: flex !important;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.4;
	margin-bottom: 0;
}

.checkbox-container input[type='checkbox'] {
	opacity: 0;
	position: absolute;
	width: 0;
	height: 0;
}

.checkmark {
	display: block;
	width: 20px;
	height: 20px;
	border: 2px solid #e9ecef;
	border-radius: 4px;
	background-color: #fff;
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-top: 2px;
}

.checkbox-container:hover .checkmark {
	border-color: #000;
}

.checkbox-container input[type='checkbox']:checked ~ .checkmark {
	background-color: #000;
	border-color: #000;
}

.checkbox-container input[type='checkbox']:checked ~ .checkmark::after {
	content: '';
	position: absolute;
	left: 6px;
	top: 2px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.checkbox-container .checkmark {
	position: relative;
}

/* Footer */
.footer {
	background: #000;
	color: #fff;
	padding: 60px 0 20px;
}

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

.footer-brand h3 {
	font-size: 2rem;
	margin-bottom: 10px;
}

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

.footer-section h4 {
	margin-bottom: 20px;
	color: #ccc;
}

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

.footer-section li {
	margin-bottom: 10px;
}

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

.footer-section a:hover,
.footer-section a.active {
	color: #fff;
}

.footer-bottom {
	padding-top: 20px;
	border-top: 1px solid #333;
	text-align: center;
	color: #aaa;
}

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

.legal-page h1 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.last-updated {
	color: #666;
	font-style: italic;
	margin-bottom: 40px;
}

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

.legal-content h2 {
	margin-top: 40px;
	margin-bottom: 20px;
	color: #000;
	font-size: 1.5rem;
}

.legal-content h3 {
	margin-top: 30px;
	margin-bottom: 15px;
	color: #333;
	font-size: 1.2rem;
}

.contact-info {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
	margin-top: 20px;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #000;
	color: #fff;
	padding: 20px;
	z-index: 2000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 30px;
	align-items: center;
}

.cookie-content h3 {
	margin-bottom: 10px;
	color: #fff;
}

.cookie-content p {
	color: #ccc;
	margin-bottom: 0;
}

.cookie-buttons {
	display: flex;
	gap: 15px;
	flex-shrink: 0;
}

.cookie-buttons .btn-primary {
	background: #fff;
	color: #000;
}

.cookie-buttons .btn-secondary {
	border-color: #fff;
	color: #fff;
}

.cookie-buttons .btn-secondary:hover {
	background: #fff;
	color: #000;
}

/* Form Submit Modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 3000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.form-modal-content {
	background: #fff;
	padding: 40px;
	border-radius: 12px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

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

.form-modal h3 {
	margin-bottom: 20px;
	color: #000;
}

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

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

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

.success-icon {
	width: 60px;
	height: 60px;
	background: #10b981;
	border-radius: 50%;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
}

/* Mobile Menu Overlay */
.nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.nav-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Tablet and Mobile Responsive */
@media (max-width: 1024px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 80px;
		left: 0;
		width: 100%;
		background: #fff;
		flex-direction: column;
		padding: 20px;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
		transform: translateY(-100%);
		transition: all 0.3s ease;
		opacity: 0;
		visibility: hidden;
		z-index: 1001;
		max-height: calc(100vh - 80px);
		overflow-y: auto;
	}

	.nav-menu.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-menu li {
		margin: 10px 0;
		text-align: center;
	}

	.nav-menu a {
		display: block;
		padding: 15px 20px;
		font-size: 1.1rem;
		border-bottom: 1px solid #f0f0f0;
		border-radius: 8px;
		margin: 5px 0;
		transition: all 0.3s ease;
	}

	.nav-menu a:hover {
		background: #f8f9fa;
		color: #000;
		transform: translateX(5px);
	}

	.hamburger.active span:nth-child(1) {
		transform: rotate(-45deg) translate(-5px, 6px);
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(3) {
		transform: rotate(45deg) translate(-5px, -6px);
	}
}

@media (max-width: 768px) {
	.hero .container {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

	.form-row {
		grid-template-columns: 1fr;
	}

	.expertise-stats {
		grid-template-columns: 1fr;
		gap: 20px;
	}

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

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

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

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

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

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

	.services-hero {
		padding: 100px 0 60px;
	}

	.about-card,
	.service-card {
		padding: 30px 20px;
	}

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