/* FAQ Section Moderne */
.faq-container {
	padding: 80px 0;
	background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.faq-header {
	text-align: center;
	margin-bottom: 60px;
	animation: fadeInUp 0.6s ease;
}

.faq-header h2 {
	font-size: 42px;
	font-weight: 700;
	color: #2C3E50;
	margin-bottom: 20px;
}

.faq-header h2 .highlight {
	background: linear-gradient(135deg, #8B1538 0%, #A91D4A 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.faq-header h2 .highlight::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #8B1538 0%, #A91D4A 100%);
	border-radius: 2px;
}

.faq-header p {
	font-size: 18px;
	color: #6c757d;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Catégories FAQ */
.faq-category {
	margin-bottom: 60px;
	animation: fadeInUp 0.8s ease;
}

.faq-category-title {
	background: linear-gradient(135deg, #8B1538 0%, #A91D4A 100%);
	color: white;
	padding: 20px 30px;
	border-radius: 15px;
	margin-bottom: 30px;
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 1px;
	box-shadow: 0 10px 30px rgba(139, 21, 56, 0.25);
	position: relative;
	overflow: hidden;
}

.faq-category-title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 1;
	z-index: 0;
}

.faq-category-title span {
	position: relative;
	z-index: 1;
}

/* Accordéon Moderne */
.faq-accordion {
	background: white;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.accordion-item {
	border: none;
	border-bottom: 1px solid #e9ecef;
	transition: all 0.3s ease;
}

.accordion-item:last-child {
	border-bottom: none;
}

.accordion-item:hover {
	background: #f8f9fa;
}

.accordion-header {
	margin: 0;
}

.accordion-button {
	font-size: 18px;
	font-weight: 600;
	color: #2C3E50;
	padding: 25px 30px;
	background: transparent;
	border: none;
	box-shadow: none;
	transition: all 0.3s ease;
	position: relative;
}

.accordion-button:not(.collapsed) {
	color: #8B1538;
	background: linear-gradient(to right, rgba(139, 21, 56, 0.08), transparent);
	box-shadow: none;
}

.accordion-button:focus {
	box-shadow: none;
	border: none;
}

.accordion-button::after {
	width: 2rem;
	height: 2rem;
	background-size: 1.2rem;
	transition: all 0.3s ease;
	opacity: 0.8;
}

.accordion-button:not(.collapsed)::after {
	transform: rotate(180deg);
	opacity: 1;
}

.accordion-button:hover {
	color: #8B1538;
}

.accordion-button:hover::after {
	opacity: 1;
	transform: scale(1.1);
}

.accordion-button:not(.collapsed):hover::after {
	transform: rotate(180deg) scale(1.1);
}

.accordion-body {
	padding: 25px 30px 30px;
	font-size: 16px;
	line-height: 1.8;
	color: #495057;
	background: white;
}

.accordion-body ul {
	margin-top: 15px;
	padding-left: 20px;
}

.accordion-body ul li {
	margin-bottom: 10px;
	line-height: 1.6;
	position: relative;
	padding-left: 10px;
}

.accordion-body ul li::marker {
	color: #8B1538;
	font-weight: bold;
}

.accordion-collapse {
	border: none;
}

/* Badge pour numérotation */
.faq-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, #8B1538 0%, #A91D4A 100%);
	color: white;
	border-radius: 50%;
	font-size: 14px;
	font-weight: 600;
	margin-right: 15px;
	flex-shrink: 0;
}

/* Section Contact CTA */
.faq-cta {
	margin-top: 80px;
	padding: 60px;
	background: linear-gradient(135deg, #8B1538 0%, #A91D4A 100%);
	border-radius: 20px;
	text-align: center;
	color: white;
	box-shadow: 0 20px 60px rgba(139, 21, 56, 0.35);
	position: relative;
	overflow: hidden;
}

.faq-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 1;
}

.faq-cta h3 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
}

.faq-cta p {
	font-size: 18px;
	margin-bottom: 30px;
	opacity: 0.9;
	position: relative;
	z-index: 1;
}

.faq-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 40px;
	background: white;
	color: #8B1538;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
	position: relative;
	z-index: 1;
}

.faq-cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
	color: #8B1538;
}

.faq-cta-btn i {
	transition: transform 0.3s ease;
}

.faq-cta-btn:hover i {
	transform: translateX(5px);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.faq-category:nth-child(1) {
	animation-delay: 0.1s;
}

.faq-category:nth-child(2) {
	animation-delay: 0.2s;
}

.faq-category:nth-child(3) {
	animation-delay: 0.3s;
}

/* Icônes de catégories */
.category-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	margin-right: 15px;
	font-size: 24px;
}

/* Responsive */
@media (max-width: 992px) {
	.faq-container {
		padding: 60px 0;
	}

	.faq-header h2 {
		font-size: 36px;
	}

	.faq-category-title {
		font-size: 22px;
		padding: 18px 25px;
	}

	.accordion-button {
		font-size: 17px;
		padding: 20px 25px;
	}

	.accordion-body {
		padding: 20px 25px 25px;
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	.faq-container {
		padding: 50px 0;
	}

	.faq-header {
		margin-bottom: 40px;
	}

	.faq-header h2 {
		font-size: 32px;
	}

	.faq-header p {
		font-size: 16px;
	}

	.faq-category {
		margin-bottom: 40px;
	}

	.faq-category-title {
		font-size: 20px;
		padding: 15px 20px;
		border-radius: 12px;
	}

	.category-icon {
		width: 40px;
		height: 40px;
		font-size: 20px;
		margin-right: 10px;
	}

	.faq-accordion {
		border-radius: 15px;
	}

	.accordion-button {
		font-size: 16px;
		padding: 18px 20px;
	}

	.accordion-body {
		padding: 18px 20px 22px;
		font-size: 14px;
	}

	.faq-number {
		width: 28px;
		height: 28px;
		font-size: 13px;
		margin-right: 12px;
	}

	.faq-cta {
		margin-top: 60px;
		padding: 40px 30px;
		border-radius: 15px;
	}

	.faq-cta h3 {
		font-size: 26px;
	}

	.faq-cta p {
		font-size: 16px;
	}

	.faq-cta-btn {
		padding: 12px 30px;
		font-size: 15px;
	}
}

@media (max-width: 576px) {
	.faq-header h2 {
		font-size: 28px;
	}

	.faq-header p {
		font-size: 15px;
		padding: 0 15px;
	}

	.faq-category-title {
		font-size: 18px;
		padding: 12px 15px;
	}

	.category-icon {
		display: none;
	}

	.accordion-button {
		font-size: 15px;
		padding: 15px 18px;
		line-height: 1.4;
	}

	.accordion-body {
		padding: 15px 18px 20px;
		font-size: 14px;
	}

	.faq-number {
		width: 24px;
		height: 24px;
		font-size: 12px;
		margin-right: 10px;
	}

	.faq-cta {
		padding: 30px 20px;
	}

	.faq-cta h3 {
		font-size: 22px;
	}

	.faq-cta p {
		font-size: 15px;
	}

	.faq-cta-btn {
		padding: 10px 25px;
		font-size: 14px;
		width: 100%;
		justify-content: center;
	}
}
