/* =========================================================
   SSS (Sık Sorulan Sorular) sayfası — Figma tasarımına göre
   ========================================================= */

.page-sss {
	background: var(--color-bg);
	padding-block: 72px 0;
}

.container--narrow {
	max-width: var(--container-narrow);
	margin-inline: auto;
	padding-inline: var(--container-pad);
}

/* ---------- HERO ---------- */
.sss-hero {
	text-align: center;
	margin-bottom: 48px;
}

.sss-hero__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.32em;
	color: #2f5da8;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.sss-hero__title {
	font-family: var(--font-heading);
	font-size: clamp(34px, 5vw, 52px);
	font-weight: 500;
	line-height: 1.15;
	color: var(--color-heading);
	margin-bottom: 18px;
}

.sss-hero__subtitle {
	font-size: 16px;
	line-height: 1.6;
	color: #111;
	max-width: 540px;
	margin-inline: auto;
}

/* ---------- KATEGORİ FİLTRELERİ ---------- */
.faq-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 36px;
}

.faq-chip {
	padding: 10px 22px;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	background: #fff;
	color: var(--color-heading);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.faq-chip:hover {
	border-color: var(--color-gold);
	color: var(--color-gold);
}

.faq-chip.is-active {
	background: var(--color-navy);
	border-color: var(--color-navy);
	color: #fff;
}

.faq-chip.is-active:hover {
	color: #fff;
}

/* ---------- AKORDEON ---------- */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

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

.faq-item {
	background: var(--color-card);
	border: 1px solid var(--color-border);
	border-radius: 14px;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.is-open {
	border-color: #e2dccb;
	box-shadow: 0 8px 30px rgba(11, 31, 68, 0.06);
}

.faq-item__heading {
	margin: 0;
}

.faq-item__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 26px 28px;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
}

.faq-item__question {
	font-size: 17px;
	font-weight: 600;
	color: var(--color-heading);
	line-height: 1.4;
}

.faq-item__icon {
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--color-navy);
	background: var(--color-section);
	transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.faq-item.is-open .faq-item__icon {
	transform: rotate(180deg);
	background: var(--color-navy);
	color: #fff;
}

.faq-item__panel {
	overflow: hidden;
}

.faq-item__answer {
	padding: 0 28px 28px;
	font-size: 15px;
	line-height: 1.75;
	color: #111;
}

.faq-item__answer p {
	margin-bottom: 14px;
}

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

.faq-empty {
	background: var(--color-section);
	border-radius: 14px;
	padding: 32px;
	text-align: center;
	color: var(--color-text);
}

/* ---------- WHATSAPP CTA ---------- */
.sss-cta {
	background: var(--color-navy);
	color: #fff;
	padding: 72px 0;
}

.sss-cta__title {
	font-family: var(--font-heading);
	font-size: clamp(24px, 3.5vw, 32px);
	font-weight: 500;
	margin-bottom: 12px;
}

.sss-cta__text {
	font-size: 15px;
	color: #fff;
	margin-bottom: 26px;
}

.sss-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: #fff;
	color: var(--color-navy);
	font-size: 15px;
	font-weight: 600;
	padding: 13px 26px;
	border-radius: 10px;
	transition: transform 0.18s ease, background 0.18s ease;
}

.sss-cta__btn:hover {
	background: #eef1f6;
	transform: translateY(-1px);
}

@media (max-width: 600px) {
	.faq-item__trigger {
		padding: 20px;
	}

	.faq-item__answer {
		padding: 0 20px 22px;
	}

	.sss-cta {
		padding: 40px 22px;
	}
}
