/* GA FAQ Accordion widget — base structural styles.
   Colors, spacing and typography here are fallbacks;
   Elementor's Style tab controls override them per-instance. */

.ga-faq {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
	font-family: inherit;
	overflow-x: hidden;
}

.ga-faq *,
.ga-faq *::before,
.ga-faq *::after {
	box-sizing: border-box;
	font-family: inherit;
}

.ga-faq__heading {
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.25;
	margin: 0 0 28px;
}

.ga-faq__list {
	display: flex;
	flex-direction: column;
}

.ga-faq__item {
	background: #f7f7f5;
	border-radius: 12px;
	margin-bottom: 14px;
	border-left: 0 solid transparent;
	border-right: none;
	transition: background-color 0.25s ease, border-left-color 0.25s ease;
	overflow: hidden;
}

.ga-faq__item--extra {
	display: none;
}

.ga-faq__list:not(.ga-faq__list--collapsed) .ga-faq__item--extra {
	display: block;
}

.ga-faq__category {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #c9a227;
	margin: 26px 4px 10px;
}

.ga-faq__category:first-child {
	margin-top: 4px;
}

.ga-faq__toggle-wrap {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

.ga-faq__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	padding: 0 32px;
	background: #eeeeee;
	color: #1a1a1a;
	border: none;
	border-radius: 8px;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.ga-faq__item:last-child {
	margin-bottom: 0;
}

.ga-faq__item--open {
	background: #eeeeee;
	border-left-color: #c9a227;
}

.ga-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	font: inherit;
}

.ga-faq__question-text {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 17px;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.4;
	overflow-wrap: break-word;
	word-break: break-word;
}

.ga-faq__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #1a1a1a;
	transition: transform 0.3s ease, color 0.25s ease;
}

.ga-faq__item--open .ga-faq__icon {
	transform: rotate(180deg);
	color: #c9a227;
}

.ga-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.ga-faq__answer-inner {
	padding: 0 22px 22px;
	color: #4a4a4a;
	font-size: 15px;
	line-height: 1.65;
	overflow-wrap: break-word;
	word-break: break-word;
}

.ga-faq__answer-inner p {
	margin: 0 0 12px;
}

.ga-faq__answer-inner p:last-child {
	margin-bottom: 0;
}

.ga-faq__answer-inner a {
	color: inherit;
	text-decoration: underline;
}

/* ---------- Entrance animation ---------- */
.ga-faq .ga-anim {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.ga-faq .ga-anim.ga-anim--visible {
	opacity: 1;
	transform: none;
}

.ga-faq__heading.ga-anim { transition-delay: 0s; }

@media (prefers-reduced-motion: reduce) {
	.ga-faq .ga-anim {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.ga-faq__answer {
		transition: none;
	}
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
	.ga-faq {
		padding: 16px;
	}

	.ga-faq__heading {
		font-size: 24px;
	}

	.ga-faq__question {
		padding: 16px;
		gap: 12px;
		align-items: flex-start;
	}

	.ga-faq__icon {
		margin-top: 2px;
	}

	.ga-faq__question-text {
		font-size: 16px;
	}

	.ga-faq__answer-inner {
		padding: 0 16px 16px;
		font-size: 14px;
	}

	.ga-faq__category {
		font-size: 13px;
		margin: 20px 2px 8px;
	}

	.ga-faq__toggle {
		width: 100%;
		padding: 0 20px;
	}
}

@media (max-width: 380px) {
	.ga-faq {
		padding: 12px;
	}

	.ga-faq__heading {
		font-size: 21px;
	}

	.ga-faq__question {
		padding: 14px;
	}

	.ga-faq__question-text {
		font-size: 15px;
	}

	.ga-faq__answer-inner {
		padding: 0 14px 14px;
	}
}
