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

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #ffffff;
	background-color: #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: 5px;
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
}

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

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

.nav-link {
	color: #cccccc;
	text-decoration: none;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: #ffffff;
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #ffffff;
}

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

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

/* Hero Section */
.hero {
	padding: 120px 0 80px;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

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

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

.hero-content p {
	font-size: 1.2rem;
	color: #cccccc;
	margin-bottom: 2rem;
	line-height: 1.8;
}

.cta-button {
	display: inline-block;
	background: #ffffff;
	color: #0a0a0a;
	padding: 1rem 2rem;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
}

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

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

/* Page Header */
.page-header {
	padding: 120px 0 60px;
	text-align: center;
}

.page-header h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.page-header p {
	font-size: 1.2rem;
	color: #cccccc;
	max-width: 600px;
	margin: 0 auto;
}

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

.section.bg-dark {
	background: #111111;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
}

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

.section-content.reverse {
	grid-template-columns: 1fr auto;
}

.text-content h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

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

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

.emoji-content .big-emoji {
	font-size: 8rem;
	display: block;
}

/* Cards Grid */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

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

.card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.08);
}

.card img {
	width: 100%;
	height: auto;
	margin-bottom: 1.5rem;
	border-radius: 10px;
}

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

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

/* Contact Section */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-info h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.contact-info p {
	color: #cccccc;
	margin-bottom: 2rem;
	line-height: 1.8;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

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

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

/* Contact Form */
.contact-form {
	background: rgba(255, 255, 255, 0.05);
	padding: 2rem;
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group-checkbox {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
}

.form-group-checkbox input[type='checkbox'] {
	width: auto;
	accent-color: #ffffff;
	transform: scale(1.2);
	cursor: pointer;
}

.form-group-checkbox label {
	font-size: 0.9rem;
	color: #cccccc;
	line-height: 1.4;
	cursor: pointer;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: #ffffff;
	font-size: 1rem;
}

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

.form-group select {
	cursor: pointer;
}

.form-group select option {
	background: #222222;
	color: #ffffff;
}

.submit-btn {
	width: 100%;
	padding: 1rem;
	background: #ffffff;
	color: #0a0a0a;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

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

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

.faq-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 1rem;
}

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

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

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

.faq-toggle {
	font-size: 1.5rem;
	font-weight: bold;
	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;
}

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

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

/* Cookie Modal */
.cookie-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: 10000;
}

.cookie-modal.hidden {
	display: none;
}

.cookie-content {
	background: #1a1a1a;
	padding: 2rem;
	border-radius: 15px;
	max-width: 500px;
	margin: 0 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

.btn-accept {
	background: #ffffff;
	color: #0a0a0a;
}

.btn-accept:hover {
	background: #f0f0f0;
}

.btn-decline {
	background: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-decline:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
	background: #111111;
	padding: 3rem 0 1rem;
	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 h4 {
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.footer-section p {
	color: #cccccc;
	line-height: 1.6;
}

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

.footer-section ul li {
	margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
	color: #ffffff;
}

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

/* Form Submission Modal */
.submission-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: 10001; /* Higher than cookie modal */
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.submission-modal.show {
	opacity: 1;
	visibility: visible;
	transition-delay: 0s;
}

.submission-content {
	background: #1a1a1a;
	padding: 2.5rem;
	border-radius: 15px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	min-width: 300px;
}

.submission-content .loader {
	border: 4px solid rgba(255, 255, 255, 0.2);
	border-left-color: #ffffff;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
	margin: 0 auto 1.5rem;
}

.submission-content p {
	font-size: 1.2rem;
	color: #ffffff;
	margin: 0;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

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

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

/* Legal Pages Styles */
.legal-page {
	padding: 120px 0 60px;
	min-height: 100vh;
}

.legal-page .container {
	max-width: 800px;
}

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

.last-updated {
	color: #cccccc;
	font-style: italic;
	margin-bottom: 3rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-page section {
	margin-bottom: 3rem;
}

.legal-page h2 {
	font-size: 1.5rem;
	color: #ffffff;
	margin-bottom: 1rem;
	padding-top: 1rem;
}

.legal-page h3 {
	font-size: 1.3rem;
	color: #ffffff;
	margin-bottom: 0.8rem;
	margin-top: 1.5rem;
}

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

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

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

.legal-page a {
	color: #ffffff;
	text-decoration: underline;
}

.legal-page a:hover {
	color: #f0f0f0;
}

.legal-page strong {
	color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: rgba(10, 10, 10, 0.98);
		flex-direction: column;
		justify-content: start;
		padding: 2rem;
		transition: left 0.3s ease;
	}

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

	.nav-toggle {
		display: flex;
	}

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

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

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

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

	.text-content h2 {
		font-size: 2rem;
	}

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

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

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

	.page-header h1 {
		font-size: 2.5rem;
	}

	.emoji-content .big-emoji {
		font-size: 4rem;
	}

	.legal-page h1 {
		font-size: 2rem;
	}

	.legal-page h2 {
		font-size: 1.5rem;
	}

	.legal-page ul {
		margin-left: 1.5rem;
	}
}

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

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

	.text-content h2 {
		font-size: 1.8rem;
	}

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

	.card {
		padding: 1.5rem;
	}
}
