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

:root {
	--primary-color: #6366f1;
	--secondary-color: #8b5cf6;
	--accent-color: #06b6d4;
	--text-primary: #1f2937;
	--text-secondary: #6b7280;
	--background-light: #f9fafb;
	--background-white: #ffffff;
	--border-color: #e5e7eb;
	--success-color: #10b981;
	--warning-color: #f59e0b;
	--error-color: #ef4444;
	--gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
	--gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	line-height: 1.6;
	color: var(--text-primary);
	background-color: var(--background-white);
	overflow-x: hidden;
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	box-shadow: var(--shadow-sm);
	transition: all 0.3s ease;
}

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

.logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--primary-color);
	text-decoration: none;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
	margin: 0;
}

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

.nav-links a:hover {
	color: var(--primary-color);
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 1001;
}

.mobile-menu span {
	width: 25px;
	height: 3px;
	background: var(--primary-color);
	margin: 3px 0;
	transition: 0.3s;
}

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

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

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

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

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.btn:hover::before {
	left: 100%;
}

.btn-primary {
	background: var(--gradient-primary);
	color: white;
	box-shadow: var(--shadow-md);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
	background: var(--primary-color);
	color: white;
	transform: translateY(-2px);
}

/* Hero Section */
.hero {
	padding: 150px 0 100px;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23e2e8f0" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" opacity="0.3"/></svg>');
	z-index: -1;
}

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

.hero-content h1 {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

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

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

.hero-image {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 400px;
}

.hero-image img {
	width: 100%;
	height: auto;
	animation: float 3s ease-in-out infinite;
}

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

/* Features Section */
.features {
	padding: 100px 0;
	background: var(--background-white);
}

.features h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.section-subtitle {
	text-align: center;
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

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

.feature-card {
	background: var(--background-white);
	padding: 2rem;
	border-radius: 16px;
	box-shadow: var(--shadow-md);
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
}

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

.feature-icon {
	margin-bottom: 1.5rem;
}

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

.feature-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.feature-card p {
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Innovation Section */
.innovation {
	padding: 100px 0;
	background: var(--background-light);
}

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

.innovation-text h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.innovation-text p {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

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

.innovation-features li {
	padding: 0.5rem 0;
	color: var(--text-secondary);
	font-weight: 500;
}

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

/* FAQ Section */
.faq {
	padding: 100px 0;
	background: var(--background-white);
}

.faq h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	color: var(--text-primary);
}

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

.faq-item {
	background: var(--background-light);
	padding: 2rem;
	border-radius: 16px;
	transition: all 0.3s ease;
}

.faq-item:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.faq-item h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.faq-item p {
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Contact Section */
.contact {
	padding: 100px 0;
	background: var(--background-light);
}

.contact h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

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

.contact-info h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
	color: var(--text-primary);
}

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

.contact-item strong {
	color: var(--primary-color);
	display: block;
	margin-bottom: 0.5rem;
}

.contact-item p {
	color: var(--text-secondary);
	line-height: 1.6;
}

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

.contact-form h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

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

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	background: var(--background-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
}

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

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

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

.checkmark {
	width: 20px;
	height: 20px;
	border: 2px solid var(--border-color);
	border-radius: 4px;
	background: var(--background-white);
	transition: all 0.3s ease;
	flex-shrink: 0;
	position: relative;
	margin-top: 2px;
}

.checkmark::after {
	content: '';
	position: absolute;
	left: 6px;
	top: 2px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	opacity: 0;
	transition: opacity 0.3s ease;
}

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

.checkbox-label input[type='checkbox']:checked + .checkmark::after {
	opacity: 1;
}

.checkbox-label:hover .checkmark {
	border-color: var(--primary-color);
}

/* About Page Styles */
.about-hero {
	padding: 150px 0 100px;
	background: var(--background-light);
}

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

.about-content h1 {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 2rem;
	color: var(--text-primary);
}

.about-content p {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

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

/* Mission Section */
.mission {
	padding: 100px 0;
	background: var(--background-white);
}

.mission h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	color: var(--text-primary);
}

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

.mission-card {
	background: var(--background-light);
	padding: 2rem;
	border-radius: 16px;
	text-align: center;
	transition: all 0.3s ease;
}

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

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

.mission-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.mission-card p {
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Team Section */
.team {
	padding: 100px 0;
	background: var(--background-light);
}

.team h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

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

.team-card {
	background: var(--background-white);
	padding: 2rem;
	border-radius: 16px;
	text-align: center;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
}

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

.team-card img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1rem;
}

.team-card h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.team-card .role {
	color: var(--primary-color);
	font-weight: 500;
	margin-bottom: 1rem;
}

.team-card p {
	color: var(--text-secondary);
	line-height: 1.6;
	font-size: 0.9rem;
}

/* Impact Section */
.impact {
	padding: 100px 0;
	background: var(--background-white);
}

.impact h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	color: var(--text-primary);
}

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

.impact-text p {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.impact-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.stat-item {
	text-align: center;
	padding: 1.5rem;
	background: var(--background-light);
	border-radius: 12px;
}

.stat-item h3 {
	font-size: 2rem;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.stat-item p {
	color: var(--text-secondary);
	font-weight: 500;
}

/* Footer */
.footer {
	background: var(--text-primary);
	color: white;
	padding: 60px 0 20px;
}

.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;
	color: white;
}

.footer-section h3 {
	font-size: 1.5rem;
	font-weight: 800;
}

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

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

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

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

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

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--background-white);
	box-shadow: var(--shadow-xl);
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

.cookie-content {
	padding: 2rem;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.cookie-content h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

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

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

/* Success Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
	background-color: var(--background-white);
	margin: 15% auto;
	padding: 2rem;
	border-radius: 16px;
	width: 90%;
	max-width: 500px;
	text-align: center;
	position: relative;
}

.close {
	position: absolute;
	right: 1rem;
	top: 1rem;
	font-size: 2rem;
	font-weight: bold;
	cursor: pointer;
	color: var(--text-secondary);
}

.close:hover {
	color: var(--text-primary);
}

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

.modal-content p {
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Loading Animation */
.loading-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.spinner {
	width: 40px;
	height: 40px;
	border: 4px solid var(--border-color);
	border-top: 4px solid var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

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

.loading-container h3 {
	color: var(--text-primary);
	margin: 0;
}

.loading-container p {
	color: var(--text-secondary);
	margin: 0;
}

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

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

	.nav-links li {
		margin: 1rem 0;
	}

	.nav-links a {
		font-size: 1.2rem;
		padding: 0.5rem 1rem;
	}

	.mobile-menu {
		display: flex;
	}

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

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

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

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

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

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

	.about-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

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

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

	.impact-stats {
		grid-template-columns: 1fr 1fr;
	}

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

	.cookie-buttons .btn {
		width: 100%;
		max-width: 200px;
	}
}

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

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

	.impact-stats {
		grid-template-columns: 1fr;
	}

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

/* Legal Pages */
.legal-page {
	padding: 150px 0 100px;
	background: var(--background-light);
}

.legal-page h1 {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 auto 1rem;
	color: var(--text-primary);
	text-align: center;
}

.last-updated {
	color: var(--text-secondary);
	font-style: italic;
	margin-bottom: 2rem;
}

.legal-content {
	background: var(--background-white);
	padding: 2rem;
	border-radius: 16px;
	box-shadow: var(--shadow-md);
	max-width: 800px;
	margin: 0 auto;
}

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

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

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

.legal-content ul li {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 0.5rem;
}
