/* ===== FAQ SECTION ===== */
.faq-section {
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--border-color);
}

.faq-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--gradient-silver);
}
 
.faq-container {
	max-width: 1400px;
	margin: 0 auto;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.faq-column {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
	border: 1px solid var(--border-color);
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: var(--primary-silver);
	box-shadow: 0 8px 32px rgba(192, 192, 192, 0.2);
}

.faq-item.active {
	border-color: var(--primary-silver);
	box-shadow: 0 12px 40px rgba(192, 192, 192, 0.3);
}

.faq-question {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.75rem 2rem;
	cursor: pointer;
	user-select: none;
	transition: all 0.3s ease;
	position: relative;
}

.faq-question::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 2rem;
	right: 2rem;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.faq-item.active .faq-question::after {
	background: linear-gradient(90deg, transparent, var(--primary-silver), transparent);
}

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

.faq-icon {
	font-size: 1.125rem;
	color: var(--primary-silver);
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.faq-item.active .faq-icon {
	transform: rotate(90deg);
	filter: drop-shadow(0 0 12px rgba(192, 192, 192, 0.6));
}

.faq-question h3 {
	font-size: 1.125rem;
	font-weight: 800;
	color: var(--primary-silver-light);
	margin: 0;
	line-height: 1.5;
	transition: all 0.3s ease;
}

.faq-question h3 i {
	color: var(--primary-silver);
	margin-right: 0.5rem;
}

.faq-item:hover .faq-question h3,
.faq-item.active .faq-question h3 {
	color: var(--primary-silver);
	text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

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

.faq-item.active .faq-answer {
	max-height: 1000px;
	padding: 0 2rem 2rem 2rem;
}

/* Answer Text Styling */
.faq-answer p {
	font-size: 1rem;
	line-height: 1.9;
	color: var(--text-secondary);
	margin: 0 0 1rem 0;
	text-align: justify;
}

.faq-answer p:last-child {
	margin-bottom: 0;
}

.faq-answer p strong {
	color: var(--primary-silver-light);
	font-weight: 700;
	text-shadow: 0 0 10px rgba(192, 192, 192, 0.2);
}

/* List Styling */
.faq-answer ul {
	list-style: none;
	padding: 0;
	margin: 1rem 0 1rem 0;
}

.faq-answer ul li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.75rem;
	line-height: 1.8;
	color: var(--text-secondary);
	transition: all 0.2s ease;
}

.faq-answer ul li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--primary-silver);
	font-weight: bold;
	font-size: 1.1rem;
	line-height: 1.8;
}

.faq-answer ul li:hover {
	color: var(--text-primary);
	padding-left: 2rem;
}

.faq-answer ul li:hover::before {
	color: var(--primary-silver-light);
	text-shadow: 0 0 8px rgba(192, 192, 192, 0.5);
}

.faq-answer ul li strong {
	color: var(--primary-silver-light);
	font-weight: 700;
}

/* Link Styling */
.faq-answer a {
	color: var(--primary-silver);
	text-decoration: none;
	transition: all 0.2s ease;
	display: inline-block;
	word-break: break-all;
	padding: 0.25rem 0;
	border-bottom: 1px solid rgba(192, 192, 192, 0.3);
}

.faq-answer a:hover {
	color: var(--primary-silver-light);
	border-bottom-color: var(--primary-silver);
	text-shadow: 0 0 8px rgba(192, 192, 192, 0.4);
	transform: translateX(4px);
}

/* Section Headers in Answers */
.faq-answer p + ul {
	margin-top: 0.5rem;
}

.faq-answer p:has(+ ul) {
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--text-primary);
}

/* CTA Section */
.faq-cta {
	background: linear-gradient(135deg, rgba(192, 192, 192, 0.15) 0%, rgba(30, 30, 30, 0.95) 100%);
	border: 2px solid var(--primary-silver);
	border-radius: 16px;
	padding: 3rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.faq-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
	animation: rotate 30s linear infinite;
}

.faq-cta-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.faq-cta-content > i {
	font-size: 4rem;
	color: var(--primary-silver);
	filter: drop-shadow(0 0 20px rgba(192, 192, 192, 0.5));
}

.faq-cta-text {
	text-align: left;
	flex: 1;
	min-width: 250px;
}

.faq-cta-text h4 {
	font-size: 1.75rem;
	font-weight: 900;
	color: var(--primary-silver);
	margin-bottom: 0.5rem;
}

.faq-cta-text p {
	font-size: 1.125rem;
	color: var(--text-secondary);
	margin: 0;
}

.faq-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	background: var(--gradient-silver);
	color: var(--dark-bg);
	font-size: 1.125rem;
	font-weight: 900;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 12px;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	box-shadow: 0 8px 24px rgba(192, 192, 192, 0.4);
}

.faq-cta-btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(192, 192, 192, 0.6);
	text-decoration: none;
	color: var(--dark-bg);
}

.faq-cta-btn i {
	font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.faq-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.faq-section {
		padding: 4rem 0;
	}
	
	.faq-question {
		padding: 1.5rem;
	}
	
	.faq-question::after {
		left: 1.5rem;
		right: 1.5rem;
	}
	
	.faq-item.active .faq-answer {
		padding: 0 1.5rem 1.5rem 1.5rem;
	}
	
	.faq-question h3 {
		font-size: 1rem;
	}
	
	.faq-answer p {
		text-align: left;
		font-size: 0.95rem;
	}
	
	.faq-answer ul li {
		font-size: 0.95rem;
	}
	
	.faq-cta {
		padding: 2rem;
	}
	
	.faq-cta-content {
		flex-direction: column;
		text-align: center;
	}
	
	.faq-cta-text {
		text-align: center;
	}
	
	.faq-cta-text h4 {
		font-size: 1.5rem;
	}
	
	.faq-cta-btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.faq-cta-content > i {
		font-size: 3rem;
	}
	
	.faq-cta-text h4 {
		font-size: 1.25rem;
	}
	
	.faq-cta-text p {
		font-size: 1rem;
	}
	
	.faq-question h3 {
		font-size: 0.95rem;
	}
	
	.faq-answer ul li {
		padding-left: 1.5rem;
	}
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
