/* Reset and Base Styles */
* {
	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-color: #fff;
}

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

/* Header */
.header {
	background: #ffffff;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.navbar {
	padding: 1rem 0;
}

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

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

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

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

.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;
	position: relative;
}

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

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #007bff;
	transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
	width: 100%;
}

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

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

/* Hero Section */
.hero {
	height: 100vh;
	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;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	position: relative;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	opacity: 0;
	transform: translateY(50px);
	animation: fadeInUp 1s ease forwards;
}

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

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

.hero-secondary {
	height: 60vh;
	background: linear-gradient(135deg, #007bff, #0056b3);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	margin-top: 80px;
}

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

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

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

.btn-primary:hover {
	background: #0056b3;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
	background: #6c757d;
	color: white;
}

.btn-secondary:hover {
	background: #545b62;
}

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

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

.section-content {
	max-width: 1000px;
	margin: 0 auto;
}

.section h2 {
	font-size: 2.5rem;
	margin-bottom: 3rem;
	text-align: center;
	color: #333;
	font-weight: 700;
}

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

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

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

.about-image {
	text-align: center;
}

.about-image img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.emoji-display {
	font-size: 8rem;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

/* Services Section */
.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 20px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.service-icon .emoji-display {
	font-size: 3rem;
}

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

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

/* Detailed Services */
.detailed-services {
	padding: 80px 0;
}

.services-detailed {
	display: grid;
	gap: 4rem;
}

.service-detailed {
	padding: 2rem;
	background: white;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.service-detailed ul {
	list-style: none;
	padding: 0;
}

.service-detailed ul li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
	color: #555;
}

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

/* Industries Section */
.industries {
	background: #f8f9fa;
	padding: 80px 0;
}

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

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

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

.industry-icon {
	margin-bottom: 1rem;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
}

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

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

/* Process Section */
.process {
	padding: 80px 0;
}

.process-steps {
	display: grid;
	gap: 3rem;
}

.process-step {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
}

.process-step-image {
	width: 150px;
	height: 100px;
	flex-shrink: 0;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.process-step-content {
	flex: 1;
}

.step-number {
	width: 60px;
	height: 60px;
	background: #007bff;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	flex-shrink: 0;
	margin-bottom: 1rem;
}

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

.process-step-content p {
	color: #555;
	line-height: 1.7;
}

/* FAQ Section */
.faq {
	background: #f8f9fa;
	padding: 80px 0;
}

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

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

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

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

.faq-question h3 {
	color: #333;
	font-size: 1.1rem;
	margin: 0;
}

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

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

.faq-answer.active {
	padding: 1.5rem;
	max-height: 200px;
}

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

.faq-answer p {
	color: #555;
	line-height: 1.7;
}

/* Contact Section */
.contact {
	padding: 80px 0;
}

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

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

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

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

.contact-item p {
	color: #555;
	margin: 0;
}

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

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

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

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

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

/* Checkbox Styling */
.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.4;
}

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

.checkbox-label:hover {
	color: #007bff;
}

/* Footer */
.footer {
	background: #343a40;
	color: white;
	padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
	margin-bottom: 0.5rem;
	color: white;
}

.footer-brand p {
	color: #adb5bd;
}

.footer-links ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

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

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

.footer-nav ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

.form-modal-content {
	background: white;
	padding: 3rem 2rem;
	border-radius: 15px;
	max-width: 400px;
	margin: 0 20px;
	text-align: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

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

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

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

.form-modal-content p {
	color: #555;
	line-height: 1.6;
	margin: 0;
}

.form-modal-content.success h3 {
	color: #28a745;
}

.form-modal-content.success .loading-spinner {
	display: none;
}

.form-modal-content.success::before {
	content: '✓';
	display: block;
	font-size: 3rem;
	color: #28a745;
	margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

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

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

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

	.nav-menu {
		position: fixed;
		top: 80px;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 2rem;
		box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 1000;
	}

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

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

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

	.section h2 {
		font-size: 2rem;
	}

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

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

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

	.footer-links ul {
		justify-content: center;
	}

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

	.process-step {
		flex-direction: column;
		text-align: center;
	}

	.process-step-image {
		width: 100%;
		height: 200px;
	}

	.emoji-display {
		font-size: 4rem;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 2rem;
	}

	.section {
		padding: 60px 0;
	}

	.container {
		padding: 0 15px;
	}

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