/* ======================================
   FAQ PAGE STYLES
   ====================================== */

.faq-section {
	padding: 80px 0;
	background: #fff;
}

.faq-intro {
	text-align: center;
	margin-bottom: 60px;
	animation: fadeInUp 0.8s ease-out;
}

.faq-intro-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: #3e3a7f;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}

.faq-intro-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #3e3a7f, #e72c32);
	border-radius: 2px;
}

.faq-intro-text {
	font-size: 1.1rem;
	color: #555;
	line-height: 1.8;
	max-width: 800px;
	margin: 40px auto 0;
	animation: fadeInUp 1s ease-out 0.2s both;
}

.faq-categories {
	margin-bottom: 60px;
	animation: fadeIn 0.8s ease-out 0.4s both;
}

.faq-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 40px;
	justify-content: center;
}

.faq-tab-btn {
	padding: 12px 25px;
	background: #f0f0f0;
	border: 2px solid #e0e0e0;
	border-radius: 50px;
	cursor: pointer;
	font-weight: 600;
	color: #333;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	font-family: 'Epunda Sans', sans-serif;
	font-size: 0.95rem;
}

.faq-tab-btn:hover,
.faq-tab-btn.active {
	background: linear-gradient(90deg, #3e3a7f, #e72c32);
	color: #fff;
	border-color: transparent;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(189, 45, 46, 0.3);
	letter-spacing: 1px;
}

.faq-content {
	display: none;
	animation: fadeIn 0.4s ease-out;
}

.faq-content.active {
	display: block;
}

.faq-item {
	background: #fff;
	border: 2px solid #e8e8e8;
	border-radius: 10px;
	margin-bottom: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: #e72c32;
	box-shadow: 0 5px 20px rgba(189, 45, 46, 0.1);
}

.faq-question {
	padding: 20px;
	background: #f9f9f9;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	user-select: none;
}

.faq-item.active .faq-question {
	background: linear-gradient(135deg, #3e3a7f, #e72c32);
	color: #fff;
}

.faq-question-text {
	font-size: 1.05rem;
	font-weight: 600;
	color: #3e3a7f;
	letter-spacing: 1px;
	flex: 1;
	transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
	color: #fff;
}

.faq-toggle-icon {
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(189, 45, 46, 0.2);
	border-radius: 50%;
	margin-left: 15px;
	font-size: 1.2rem;
	flex-shrink: 0;
	transition: transform 0.3s ease;
	color: #e72c32;
}

.faq-item.active .faq-toggle-icon {
	transform: rotate(180deg);
	background: rgba(255, 255, 255, 0.3);
	color: #fff;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 20px;
	letter-spacing: 1px;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	padding: 20px;
}

.faq-answer-text {
	color: #555;
	font-size: 0.95rem;
	line-height: 1.8;
}

.faq-answer-text strong {
	color: #3e3a7f;
}

.faq-answer-list {
	list-style: none;
	padding: 0;
	margin: 15px 0 0 0;
}

.faq-answer-list li {
	padding: 8px 0 8px 25px;
	position: relative;
	color: #555;
	line-height: 1.6;
}

.faq-answer-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #e72c32;
	font-weight: bold;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.faq-intro-title {
		font-size: 1.5rem;
	}

	.faq-intro-text {
		font-size: 0.95rem;
	}

	.faq-section {
		padding: 50px 0;
	}

	.faq-tabs {
		gap: 10px;
	}

	.faq-tab-btn {
		padding: 10px 20px;
		font-size: 0.85rem;
	}

	.faq-question {
		padding: 15px;
		flex-direction: column;
		align-items: flex-start;
	}

	.faq-question-text {
		font-size: 0.95rem;
		margin-bottom: 10px;
	}

	.faq-toggle-icon {
		align-self: flex-end;
		margin-left: 0;
		margin-top: -25px;
	}

	.faq-answer {
		padding: 0 15px;
	}

	.faq-item.active .faq-answer {
		padding: 15px;
	}
}

@media (max-width: 576px) {
	.faq-intro-title {
		font-size: 1.2rem;
	}

	.faq-intro-text {
		font-size: 0.9rem;
	}

	.faq-tabs {
		gap: 8px;
	}

	.faq-tab-btn {
		padding: 8px 15px;
		font-size: 0.8rem;
	}

	.faq-question-text {
		font-size: 0.9rem;
	}

	.faq-answer-text {
		font-size: 0.85rem;
	}
}
