/**
 * FAQ Section Styles - Standalone
 * Matching the exact Figma design
 */

/* Reset and Base */
.faq-section {
	background-color: #ffffff;
	padding: 80px 20px;
	width: 100%;
}

.faq-section .faq-container {
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
}

.faq-section .faq-grid {
	display: flex;
	flex-direction: column;
	gap: 48px;
	width: 100%;
}

/* Left Column - Image & CTA */
.faq-section .faq-left {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.faq-section .faq-image-card {
	background: #ee2966;
	border-radius: 24px;
	overflow: hidden;
	aspect-ratio: 1;
	width: 100%;
}

.faq-section .faq-image-placeholder {
	width: 100%;
	height: 100%;
	background-color: #d91d59;
	min-height: 480px;
}

.faq-section .faq-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 16px 32px;
	background-color: transparent;
	border: 2px solid #ee2966;
	border-radius: 9999px;
	color: #ee2966;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s;
	cursor: pointer;
	width: auto;
}

.faq-section .faq-cta-button:hover {
	background-color: #ee2966;
	color: white;
}

/* Right Column - FAQ Accordion */
.faq-section .faq-right {
	width: 100%;
	flex: 1;
}

.faq-section .faq-heading {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.2;
	color: #1f2937;
	margin: 0 0 32px 0;
}

.faq-section .faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.faq-section .faq-item {
	border-bottom: 1px solid #e5e7eb;
	transition: opacity 0.3s ease;
}

.faq-section .faq-item-hidden {
	display: none;
}

.faq-section .faq-item.faq-item-show {
	display: block;
}

.faq-section .faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	margin: 0;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	color: #1f2937;
	transition: color 0.3s;
}

.faq-section .faq-question:hover {
	color: #ee2966;
}

.faq-section .faq-question span {
	flex: 1;
	padding-right: 16px;
}

.faq-section .faq-icon {
	flex-shrink: 0;
	transition: transform 0.3s;
	color: #1f2937;
}

.faq-section .faq-question[aria-expanded="true"] .faq-icon {
	transform: rotate(180deg);
}

.faq-section .faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-section .faq-item.faq-active .faq-answer {
	max-height: 2000px;
	transition: max-height 0.5s ease;
}

.faq-section .faq-answer-content {
	padding: 0 0 24px 0;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.6;
	color: #6b7280;
}

.faq-section .faq-answer-content strong {
	color: #1f2937;
	font-weight: 600;
}

.faq-section .faq-show-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 32px;
	padding: 14px 28px;
	background-color: transparent;
	border: 2px solid #ee2966;
	border-radius: 9999px;
	color: #ee2966;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s;
}

.faq-section .faq-show-more:hover {
	background-color: #ee2966;
	color: white;
}

.faq-section .faq-show-more svg {
	transition: transform 0.3s;
}

.faq-section .faq-show-more.faq-expanded svg {
	transform: rotate(180deg);
}

/* Tablet Styles */
@media (min-width: 768px) {
	.faq-section .faq-heading {
		font-size: 42px;
	}
}

/* Desktop Styles */
@media (min-width: 1024px) {
	.faq-section .faq-grid {
		flex-direction: row;
		gap: 80px;
	}
	
	.faq-section .faq-left {
		flex: 0 0 380px;
	}
	
	.faq-section .faq-right {
		flex: 1;
	}
	
	.faq-section .faq-heading {
		font-size: 48px;
	}
}
