/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
		Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #333;
	background: #0a0a0a;
	overflow-x: hidden;
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-brand {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

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

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

.nav-menu a:hover {
	color: #667eea;
}

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

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: #fff;
	margin: 3px 0;
	transition: 0.3s;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: rgba(0, 0, 0, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 20px;
	max-width: 400px;
	z-index: 1001;
	backdrop-filter: blur(10px);
	transform: translateY(100px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.cookie-modal.show {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

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

.cookie-modal p {
	color: #ccc;
	margin-bottom: 15px;
	font-size: 0.9rem;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	text-align: center;
}

.btn-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 20% 80%,
			rgba(102, 126, 234, 0.3) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(118, 75, 162, 0.3) 0%,
			transparent 50%
		);
	pointer-events: none;
}

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

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

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

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

.hero-visual {
	font-size: 8rem;
	text-align: center;
	animation: float 3s ease-in-out infinite;
}

.hero-visual img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

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

/* About Section */
.about {
	padding: 120px 0;
	background: #111;
}

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

.about-text h2 {
	font-size: 2.5rem;
	color: #fff;
	margin-bottom: 1.5rem;
	font-weight: 700;
}

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

.about-features {
	list-style: none;
	margin-top: 2rem;
}

.about-features li {
	color: #ccc;
	padding: 0.5rem 0;
	font-size: 1.1rem;
}

.about-image img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Services Cards */
.services-cards {
	padding: 120px 0;
	background: #0a0a0a;
}

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

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

.service-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
	border-color: rgba(102, 126, 234, 0.3);
}

.service-card img {
	width: 100%;
	height: auto;
	margin-bottom: 1rem;
}

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

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

/* Service Pages */
.service-hero {
	padding: 140px 0 80px;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	text-align: center;
}

.service-hero h1 {
	font-size: 3rem;
	color: #fff;
	margin-bottom: 1rem;
	font-weight: 700;
}

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

.detailed-services {
	padding: 80px 0;
	background: #111;
}

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

.service-content h2 {
	font-size: 2.2rem;
	color: #fff;
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.service-content p {
	color: #ccc;
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	line-height: 1.7;
}

.service-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 2rem;
}

.feature-tag {
	background: rgba(102, 126, 234, 0.2);
	color: #667eea;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
}

.service-image img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.text-only-section {
	padding: 80px 0;
	background: #0a0a0a;
}

.text-only-section h2 {
	font-size: 2rem;
	color: #fff;
	margin-bottom: 2rem;
	font-weight: 700;
	text-align: center;
}

.text-only-section p {
	color: #ccc;
	font-size: 1.2rem;
	line-height: 1.8;
	margin-bottom: 2rem;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

/* FAQ Section */
.faq {
	padding: 120px 0;
	background: #111;
}

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

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

.faq-item {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: rgba(102, 126, 234, 0.3);
}

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

.faq-question h3 {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 600;
}

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

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

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

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

.faq-answer p {
	color: #ccc;
	line-height: 1.6;
}

/* Contact Form */
.contact-form {
	padding: 120px 0;
	background: #0a0a0a;
}

.contact-form h2 {
	text-align: center;
	font-size: 2.5rem;
	color: #fff;
	margin-bottom: 1rem;
	font-weight: 700;
}

.contact-form p {
	text-align: center;
	color: #ccc;
	margin-bottom: 3rem;
	font-size: 1.1rem;
}

.contact-form-container {
	max-width: 600px;
	margin: 0 auto;
}

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

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #999;
}

.form-group select {
	cursor: pointer;
}

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

.form-group.checkbox-group {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.form-group.checkbox-group input[type='checkbox'] {
	width: auto;
	accent-color: #667eea;
}

.form-group.checkbox-group label {
	color: #ccc;
	font-size: 0.9rem;
	cursor: pointer;
}

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

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

.form-modal-content {
	background: rgba(10, 10, 10, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	max-width: 400px;
	width: 90%;
	backdrop-filter: blur(10px);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

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

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

.form-modal h3 {
	color: #fff;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

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

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 3px solid rgba(102, 126, 234, 0.3);
	border-top: 3px solid #667eea;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

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

/* Footer */
.footer {
	background: #111;
	padding: 60px 0 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3,
.footer-section h4 {
	color: #fff;
	margin-bottom: 1rem;
}

.footer-section h3 {
	font-size: 1.5rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-section p,
.footer-section li {
	color: #ccc;
	line-height: 1.6;
}

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

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

.footer-bottom p {
	color: #999;
}

/* Legal Pages */
.legal-page {
	padding: 140px 0 80px;
	background: #0a0a0a;
	min-height: 100vh;
}

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

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

.legal-page h3 {
	color: #fff;
	font-size: 1.3rem;
	margin: 1.5rem 0 1rem;
	font-weight: 600;
}

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

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

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

/* Animations */
.animate-section {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 70px;
		right: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: rgba(10, 10, 10, 0.95);
		backdrop-filter: blur(10px);
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding-top: 2rem;
		transition: right 0.3s ease;
		z-index: 999;
	}

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

	.nav-menu a {
		font-size: 1.2rem;
		margin: 1rem 0;
	}

	.nav-toggle {
		display: flex;
	}

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

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

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

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

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

	.hero-visual {
		font-size: 4rem;
	}

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

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

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

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

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

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

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

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

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

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

	.about-text h2,
	.services-cards h2,
	.faq h2,
	.contact-form h2 {
		font-size: 2rem;
	}

	.container {
		padding: 0 15px;
	}
}
