/**
 * CarsNow FAQ Stylesheet
 */

.vv-faq-page {
	background-color: #0b0c0e;
	color: #ffffff;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	min-height: 100vh;
	padding-top: 100px;
	padding-bottom: 80px;
}

.vv-faq-hero {
	position: relative;
	padding: 60px 0 40px;
	background: radial-gradient(circle at 50% 10%, rgba(232, 0, 28, 0.12) 0%, transparent 65%);
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vv-faq-hero__inner {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 24px;
}

.vv-faq-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(232, 0, 28, 0.12);
	border: 1px solid rgba(232, 0, 28, 0.25);
	color: #ff334b;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 6px 16px;
	border-radius: 100px;
	margin-bottom: 18px;
}

.vv-faq-hero__title {
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.12;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
}

.vv-faq-hero__title em {
	font-style: normal;
	color: #e8001c;
}

.vv-faq-hero__subtitle {
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	max-width: 640px;
	margin: 0 auto 28px;
}

/* Category Filter Tabs */
.vv-faq-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 24px;
}

.vv-faq-tab {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.8);
	font-family: inherit;
	font-size: 0.88rem;
	font-weight: 700;
	padding: 10px 22px;
	border-radius: 100px;
	cursor: pointer;
	transition: all 0.25s ease;
}

.vv-faq-tab:hover,
.vv-faq-tab.active {
	background: #e8001c;
	border-color: #e8001c;
	color: #ffffff;
	box-shadow: 0 4px 16px rgba(232, 0, 28, 0.35);
}

/* FAQ Accordion List */
.vv-faq-container {
	max-width: 860px;
	margin: 50px auto 0;
	padding: 0 24px;
}

.vv-faq-item {
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	margin-bottom: 16px;
	overflow: hidden;
	transition: border-color 0.25s ease, background 0.25s ease;
}

.vv-faq-item.active {
	border-color: rgba(232, 0, 28, 0.3);
	background: rgba(255, 255, 255, 0.04);
}

.vv-faq-question {
	width: 100%;
	text-align: left;
	background: transparent;
	border: none;
	padding: 24px 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	cursor: pointer;
	color: #ffffff;
	font-family: inherit;
	font-size: 1.1rem;
	font-weight: 700;
}

.vv-faq-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.3s ease, background 0.3s ease;
	color: #ffffff;
}

.vv-faq-item.active .vv-faq-icon {
	transform: rotate(45deg);
	background: #e8001c;
}

.vv-faq-icon svg {
	width: 16px;
	height: 16px;
}

.vv-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 0 28px;
}

.vv-faq-item.active .vv-faq-answer {
	padding-bottom: 24px;
}

.vv-faq-answer p {
	font-size: 0.96rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

/* Still have questions CTA */
.vv-faq-help {
	max-width: 860px;
	margin: 60px auto 0;
	padding: 0 24px;
}

.vv-faq-help-card {
	background: linear-gradient(135deg, #181a20 0%, #111215 100%);
	border: 1px solid rgba(232, 0, 28, 0.3);
	border-radius: 20px;
	padding: 40px;
	text-align: center;
}

.vv-faq-help-card h3 {
	font-size: 1.5rem;
	color: #ffffff;
	margin: 0 0 10px;
}

.vv-faq-help-card p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.95rem;
	margin: 0 auto 24px;
	max-width: 500px;
}

.vv-faq-help-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #e8001c;
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.95rem;
	padding: 14px 30px;
	border-radius: 100px;
	box-shadow: 0 4px 20px rgba(232, 0, 28, 0.35);
	transition: all 0.25s ease;
}

.vv-faq-help-btn:hover {
	background: #ff1a35;
	transform: translateY(-2px);
	color: #ffffff;
}

@media (max-width: 768px) {
	.vv-faq-page {
		padding-top: 80px;
		padding-bottom: 60px;
	}
	.vv-faq-question {
		font-size: 0.98rem;
		padding: 20px 20px;
	}
	.vv-faq-answer {
		padding: 0 20px;
	}
	.vv-faq-item.active .vv-faq-answer {
		padding-bottom: 20px;
	}
}
