:root {
	--primary-color: #2563eb;
	--primary-hover: #1d4ed8;
	--secondary-color: #64748b;
	--accent-color: #06b6d4;
	--text-primary: #1e293b;
	--text-secondary: #64748b;
	--background: #ffffff;
	--surface: #f8fafc;
	--border: #e2e8f0;
	--border-hover: #cbd5e1;
	--success: #059669;
	--error: #dc2626;
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
		0 4px 6px -4px rgb(0 0 0 / 0.1);
	--radius: 8px;
	--font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	--transition: all 0.2s ease-in-out;
}

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

body {
	font-family: var(--font-family);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-primary);
	background-color: var(--background);
	overflow-x: hidden;
}

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

/* Header */
.header {
	background: var(--background);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(10px);
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 20px;
	max-width: 1200px;
	margin: 0 auto;
}

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

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

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
}

.nav-menu a {
	text-decoration: none;
	color: var(--text-primary);
	font-weight: 500;
	transition: var(--transition);
	position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
	color: var(--primary-color);
}

.dropdown {
	position: relative;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--background);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: var(--transition);
	z-index: 1000;
}

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

.dropdown-menu li {
	list-style: none;
}

.dropdown-menu a {
	display: block;
	padding: 0.75rem 1rem;
	color: var(--text-primary);
	text-decoration: none;
	transition: var(--transition);
}

.dropdown-menu a:hover {
	background: var(--surface);
	color: var(--primary-color);
}

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

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--text-primary);
	transition: var(--transition);
}

/* Sections */
.section {
	padding: 4rem 0;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Hero Section */
.hero {
	background: linear-gradient(
		135deg,
		var(--surface) 0%,
		var(--background) 100%
	);
	padding: 6rem 0;
}

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

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

.hero-content p {
	font-size: 1.125rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

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

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
}

/* Features Section */
.features {
	background: var(--surface);
}

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

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

.feature-card {
	background: var(--background);
	padding: 2rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	text-align: center;
	transition: var(--transition);
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

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

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

/* Text Section */
.text-section {
	max-width: 800px;
	margin: 0 auto;
}

.text-content h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	text-align: center;
}

.text-content p {
	font-size: 1.125rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: var(--text-secondary);
}

/* Contact Section */
.contact {
	background: var(--surface);
}

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

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

.contact-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
}

.contact-item img {
	width: 48px;
	height: 48px;
	border-radius: var(--radius);
}

.contact-item h3 {
	margin-bottom: 0.5rem;
}

.contact-form {
	background: var(--background);
	padding: 2rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
}

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

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font-family: inherit;
	font-size: 1rem;
	transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-message {
	margin-top: 1rem;
	padding: 0.75rem;
	border-radius: var(--radius);
	display: none;
}

.form-message.success {
	background: #dcfce7;
	color: var(--success);
	border: 1px solid #bbf7d0;
}

.form-message.error {
	background: #fee2e2;
	color: var(--error);
	border: 1px solid #fecaca;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--text-secondary);
	cursor: pointer;
}

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

.checkmark {
	width: 18px;
	height: 18px;
	border: 2px solid var(--border);
	border-radius: 3px;
	position: relative;
	flex-shrink: 0;
	margin-top: 2px;
	transition: var(--transition);
}

.checkbox-label input[type='checkbox']:checked + .checkmark {
	background: var(--primary-color);
	border-color: var(--primary-color);
}

.checkbox-label input[type='checkbox']:checked + .checkmark::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 12px;
	font-weight: bold;
}

.checkbox-label input[type='checkbox']:focus + .checkmark {
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* FAQ Section */
.faq h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
}

.faq-item {
	background: var(--background);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	margin-bottom: 1rem;
	overflow: hidden;
}

.faq-question {
	padding: 1.5rem;
	font-size: 1.125rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--transition);
}

.faq-question:hover {
	background: var(--surface);
}

.faq-question::after {
	content: '+';
	font-size: 1.5rem;
	font-weight: 300;
	transition: var(--transition);
}

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

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

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

.faq-answer p {
	padding: 0 1.5rem 1.5rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* About Page Specific Styles */
.about-hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

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

.about-hero-image img {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
}

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

.mission-text h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
}

.mission-text p {
	font-size: 1.125rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: var(--text-secondary);
}

.mission-image img {
	width: 100%;
	border-radius: var(--radius);
}

.values {
	background: var(--surface);
}

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

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

.value-card {
	background: var(--background);
	padding: 2rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	text-align: center;
	transition: var(--transition);
}

.value-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

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

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

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

.story-content h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	text-align: center;
}

.story-content p {
	font-size: 1.125rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: var(--text-secondary);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: var(--radius);
	border: none;
	cursor: pointer;
	transition: var(--transition);
	text-align: center;
}

.btn-primary {
	background: var(--primary-color);
	color: white;
}

.btn-primary:hover {
	background: var(--primary-hover);
	transform: translateY(-1px);
}

.btn-secondary {
	background: var(--secondary-color);
	color: white;
}

.btn-secondary:hover {
	background: #475569;
}

.btn-outline {
	background: transparent;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.btn-outline:hover {
	background: var(--primary-color);
	color: white;
}

/* Cookie Modal */
.cookie-modal {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: var(--background);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	max-width: 400px;
	padding: 1.5rem;
	z-index: 1000;
	transform: translateY(100px);
	opacity: 0;
	transition: var(--transition);
}

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

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

.cookie-content p {
	margin-bottom: 1.5rem;
	color: var(--text-secondary);
}

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

/* Legal Pages */
.legal-page {
	padding: 2rem 0;
	min-height: calc(100vh - 200px);
}

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

.legal-page h2 {
	font-size: 1.5rem;
	margin: 2rem 0 1rem 0;
	color: var(--primary-color);
}

.legal-page h3 {
	font-size: 1.25rem;
	margin: 1.5rem 0 0.75rem 0;
}

.legal-page p {
	margin-bottom: 1rem;
	line-height: 1.7;
	color: var(--text-secondary);
}

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

.legal-page li {
	margin-bottom: 0.5rem;
	color: var(--text-secondary);
}

/* Footer */
.footer {
	background: var(--text-primary);
	color: white;
	padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.footer-brand p {
	color: #94a3b8;
}

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

.footer-column h4 {
	margin-bottom: 1rem;
}

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

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

.footer-column a {
	color: #94a3b8;
	text-decoration: none;
	transition: var(--transition);
}

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

.footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 1rem;
	text-align: center;
	color: #94a3b8;
}

/* Form Modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2000;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

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

.form-modal-content {
	background: var(--background);
	padding: 2rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	max-width: 400px;
	width: 90%;
	text-align: center;
	transform: scale(0.7);
	transition: transform 0.3s ease;
}

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

.form-modal h3 {
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.form-modal p {
	margin-bottom: 1.5rem;
	color: var(--text-secondary);
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid var(--border);
	border-top: 4px solid var(--primary-color);
	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: var(--success);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: white;
	font-size: 2rem;
	opacity: 0;
	transform: scale(0);
	transition: all 0.3s ease;
}

.success-icon.show {
	opacity: 1;
	transform: scale(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero .container,
	.about-hero .container,
	.mission-content,
	.contact-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

	.mission-image {
		order: -1;
	}
}

@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: var(--background);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: var(--shadow-md);
		padding: 2rem 0;
	}

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

	.hamburger {
		display: flex;
	}

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

	.hamburger.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

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

	.section {
		padding: 2rem 0;
	}

	.hero {
		padding: 3rem 0;
	}

	.features h2,
	.text-content h2,
	.contact h2,
	.faq h2,
	.values h2,
	.mission-text h2,
	.story-content h2 {
		font-size: 2rem;
	}

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

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

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

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

	.navbar {
		padding: 1rem 15px;
	}

	.hero-content h1,
	.about-hero-content h1 {
		font-size: 1.75rem;
	}

	.btn {
		padding: 0.75rem 1rem;
		font-size: 0.9rem;
	}

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