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

body {
	font-family: 'Cal Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	line-height: 1.6;
	color: #333;
	background: #fff;
}

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

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

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

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

.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: #000;
}

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

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

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background-image: linear-gradient(
			103deg,
			rgba(18, 18, 17, 0.78) 2.03%,
			rgba(18, 18, 17, 0.6) 58.46%,
			rgba(18, 18, 17, 0) 90.36%
		),
		url('../img/h1.webp');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	text-align: center;
	padding-top: 80px;
}

.hero-content h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #fff;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	color: #fff;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2rem;
	background: #000;
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	transform: translateY(0);
}

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

/* Sections */
section {
	padding: 5rem 0;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

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

/* Services Section */
.services {
	background: #fff;
}

.services h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #000;
}

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

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

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

.service-card .emoji {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.service-card .service-image {
	width: 80px;
	height: 80px;
	background: #ddd;
	border-radius: 50%;
	margin: 0 auto 1rem;
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #000;
}

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

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

.about h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #000;
}

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

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

.contact h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #000;
}

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

.contact-info .contact-item {
	margin-bottom: 2rem;
}

.contact-info h3,
.contact-info h4 {
	color: #000;
	margin-bottom: 0.5rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

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

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

.form-group textarea {
	min-height: 120px;
	resize: vertical;
}

.submit-btn {
	padding: 1rem 2rem;
	background: #000;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
}

.submit-btn:hover {
	background: #333;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
	font-size: 0.9rem;
	color: #555;
	line-height: 1.4;
	gap: 0.5rem;
}

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

.checkbox-label:hover {
	color: #000;
}

/* Consulting Page Styles */
.consulting-hero {
	padding: 8rem 0 5rem;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	text-align: center;
}

.consulting-hero h1 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: #000;
}

.consulting-hero p {
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto;
	color: #555;
}

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

.section-content.reverse {
	direction: rtl;
}

.section-content.reverse > * {
	direction: ltr;
}

.content-image {
	background: #ddd;
	border-radius: 12px;
}

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

.content-text h2 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: #000;
}

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

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

.faq h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #000;
}

.faq-item {
	background: #fff;
	margin-bottom: 1rem;
	border-radius: 8px;
	overflow: hidden;
}

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

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

.faq-question h3 {
	color: #000;
	font-size: 1.1rem;
}

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

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

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

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

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	z-index: 10000;
	padding: 2rem;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

.cookie-content {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
}

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

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

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

.btn-accept,
.btn-decline {
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-accept {
	background: #fff;
	color: #000;
}

.btn-decline {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
}

.btn-accept:hover,
.btn-decline:hover {
	transform: translateY(-2px);
}

/* Form Submission Modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	z-index: 10000;
	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: 3rem;
	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: 1rem;
	color: #000;
	font-size: 1.5rem;
}

.form-modal p {
	color: #555;
	margin-bottom: 2rem;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #000;
	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%;
	margin: 0 auto 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2rem;
}

/* Footer */
.footer {
	background: #000;
	color: #fff;
	padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
	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: #fff;
}

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

/* Legal Pages */
.legal-page {
	padding-top: 120px;
	min-height: calc(100vh - 80px);
}

.legal-page section {
	opacity: 1;
	transform: none;
	padding: 0;
}

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

.legal-page h2 {
	font-size: 1.5rem;
	margin: 2rem 0 1rem;
	color: #000;
}

.legal-page h3 {
	font-size: 1.4rem;
	margin: 1.5rem 0 0.5rem;
	color: #000;
}

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

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

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

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: #fff;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		padding: 2rem 0;
	}

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

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

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

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

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

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

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

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

	section {
		padding: 3rem 0;
	}

	.hero {
		padding-top: 100px;
	}

	.consulting-hero {
		padding: 6rem 0 3rem;
	}
}
