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

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
		sans-serif;
	line-height: 1.6;
	color: #ffffff;
	background-color: #171717;
	overflow-x: hidden;
}

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

/* Typography */
h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1rem;
}

h2 {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

p {
	font-size: 1.1rem;
	color: #cccccc;
	margin-bottom: 1rem;
}

.highlight {
	color: #ff3533;
	position: relative;
}

.highlight::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #ff3533, #ff6b69);
}

.contact-link {
	color: #ff3533;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.contact-link:hover {
	color: #ff6b69;
}

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

.btn-primary {
	background: #ff3533;
	color: white;
	box-shadow: 0 4px 15px rgba(255, 53, 51, 0.3);
}
.btn-primary:hover {
	background: #e62e2c;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 53, 51, 0.4);
}
.btn-primary.copied {
	background: #10b981; /* Green background for success */
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.btn-primary.copied:hover {
	background: #059669; /* Slightly darker green on hover */
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid #ffffff;
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(23, 23, 23, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-logo {
	display: flex;
	align-items: center;
}
.nav-logo-img {
	height: 30px;
	margin-right: 10px;
}

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

.nav-logo h2 {
	color: #ff3533;
	font-size: 1.8rem;
	margin: 0;
}

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

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

.nav-logo-link {
	text-decoration: none;
	color: inherit;
}
.nav-logo-link:hover {
	color: inherit;
}

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

.nav-cta {
	background: #ff3533;
	color: white !important;
	padding: 10px 20px;
	border-radius: 8px;
	font-weight: 600;
}

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

.hamburger span {
	width: 25px;
	height: 3px;
	background: white;
	margin: 3px 0;
	transition: 0.3s;
}

/* FAQ Hero Section */
.faq-hero {
	padding: 120px 0 60px;
	background: linear-gradient(135deg, #171717 0%, #1f1f1f 50%, #171717 100%);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.faq-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 80%, rgba(255, 53, 51, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255, 107, 105, 0.1) 0%, transparent 50%);
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: #cccccc;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* FAQ Section */
.faq-section {
	padding: 80px 0;
	background: #1a1a1a;
}

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

/* FAQ Search */
.faq-search {
	position: relative;
	margin-bottom: 3rem;
}

.faq-search input {
	width: 100%;
	padding: 16px 50px 16px 20px;
	border: 2px solid #333;
	border-radius: 12px;
	background: #222222;
	color: white;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.faq-search input:focus {
	outline: none;
	border-color: #ff3533;
}

.faq-search input::placeholder {
	color: #999;
}

.search-icon {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	font-size: 1.2rem;
}

/* FAQ Categories */
.faq-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 3rem;
	justify-content: center;
}

.category-btn {
	padding: 10px 20px;
	border: 2px solid #333;
	border-radius: 25px;
	background: transparent;
	color: #cccccc;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
	border-color: #ff3533;
	color: #ff3533;
	background: rgba(255, 53, 51, 0.1);
}

/* FAQ Items */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq-item {
	background: #222222;
	border-radius: 16px;
	border: 1px solid #333;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item.active {
	border-color: #ff3533;
	box-shadow: 0 4px 20px rgba(255, 53, 51, 0.1);
}

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

.faq-question:hover {
	background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: white;
	flex: 1;
	padding-right: 1rem;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: 300;
	color: #ff3533;
	transition: transform 0.3s ease;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 53, 51, 0.1);
}

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

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
	max-height: 200px;
	border-top-color: #333;
}

.faq-answer p {
	padding: 0 2rem 1.5rem 2rem;
	color: #cccccc;
	margin: 0;
	line-height: 1.6;
}

/* No Results */
.no-results {
	text-align: center;
	padding: 4rem 2rem;
}

.no-results-content h3 {
	color: white;
	margin-bottom: 1rem;
}

.no-results-content p {
	color: #cccccc;
	margin: 0;
}

.no-results-content a {
	color: #ff3533;
	text-decoration: none;
	font-weight: 600;
}

.no-results-content a:hover {
	color: #ff6b69;
}

/* Contact CTA */
.contact-cta {
	padding: 80px 0;
	background: linear-gradient(135deg, #1f1f1f 0%, #171717 100%);
	text-align: center;
}

.cta-content h2 {
	color: white;
	margin-bottom: 1rem;
}

.cta-content p {
	color: #cccccc;
	margin-bottom: 2rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

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

/* Footer */
.footer {
	background: #0f0f0f;
	padding: 60px 0 30px;
	border-top: 1px solid #333;
}

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

.footer-logo h3 {
	color: #ff3533;
	margin-bottom: 1rem;
}

.footer-logo p {
	color: #999;
	margin-bottom: 2rem;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-link {
	color: #cccccc;
	text-decoration: none;
	padding: 8px 16px;
	border: 1px solid #333;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.social-link:hover {
	color: #ff3533;
	border-color: #ff3533;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.link-group h4 {
	color: white;
	margin-bottom: 1rem;
	font-size: 1rem;
	font-weight: 600;
}

.link-group a {
	display: block;
	color: #cccccc;
	text-decoration: none;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

.link-group a:hover {
	color: #ff3533;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: rgba(23, 23, 23, 0.95);
		backdrop-filter: blur(10px);
		flex-direction: column;
		padding: 1rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	.nav-menu.active {
		display: flex;
	}
	.hamburger {
		display: flex;
	}

	.faq-categories {
		gap: 0.5rem;
	}

	.category-btn {
		font-size: 0.8rem;
		padding: 8px 16px;
	}

	.faq-question {
		padding: 1rem 1.5rem;
	}

	.faq-answer p {
		padding: 0 1.5rem 1rem 1.5rem;
	}

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

	.footer-links {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.btn-primary,
	.btn-secondary {
		width: 100%;
		max-width: 300px;
	}
}

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

	.faq-hero {
		padding: 100px 0 40px;
	}

	.faq-categories {
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 1rem;
		flex-wrap: nowrap;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.faq-categories::-webkit-scrollbar {
		display: none;
	}

	.category-btn {
		white-space: nowrap;
		flex-shrink: 0;
	}

	.footer-links {
		grid-template-columns: 1fr;
	}
}

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

.fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Focus states for accessibility */
button:focus,
input:focus,
select:focus,
a:focus {
	outline: 2px solid #ff3533;
	outline-offset: 2px;
}

/* Hidden state for filtered items */
.faq-item.hidden {
	display: none;
}
