/**
 * SSS Frontend Stylesheet
 * Contains 5 modern, minimalist, spacious, and impressive themes using CSS variables.
 */

/* General Wrapper */
.sss-faq-wrapper {
	margin: 50px 0;
	border-radius: 20px;
	padding: 40px;
	background: var(--sss-wrapper-bg);
	border: 1px solid var(--sss-border);
	box-shadow: var(--sss-wrapper-shadow, 0 20px 40px rgba(0, 0, 0, 0.02));
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	transition: all 0.4s ease;
}

.sss-faq-title {
	font-size: 24px;
	font-weight: 800;
	color: var(--sss-text-title);
	margin: 0 0 30px 0 !important;
	padding: 0 !important;
	line-height: 1.3;
	letter-spacing: -0.5px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.sss-faq-title::after {
	content: '';
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, var(--sss-border) 0%, rgba(0, 0, 0, 0) 100%);
}

.sss-faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.sss-faq-item {
	border-radius: 14px;
	border: 1px solid var(--sss-border);
	background: var(--sss-item-bg);
	box-shadow: var(--sss-shadow);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	overflow: hidden;
}

.sss-faq-item:hover {
	transform: translateY(-2px);
	border-color: var(--sss-border-hover, var(--sss-accent));
	box-shadow: var(--sss-shadow-hover, 0 12px 24px rgba(0, 0, 0, 0.04));
}

.sss-faq-item.active {
	border-color: var(--sss-accent);
	box-shadow: var(--sss-shadow-active);
	transform: translateY(0);
}

.sss-faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	border: none;
	background: var(--sss-item-question-bg);
	padding: 24px 30px;
	font-size: 17px;
	font-weight: 700;
	color: var(--sss-text-question);
	cursor: pointer;
	outline: none;
	transition: all 0.3s ease;
}

.sss-faq-question:hover {
	background: var(--sss-item-question-bg-hover);
	color: var(--sss-text-question-active);
}

.sss-faq-item.active .sss-faq-question {
	color: var(--sss-text-question-active);
	background: var(--sss-item-question-bg-active, var(--sss-item-question-bg));
}

.sss-faq-question-text {
	padding-right: 20px;
	flex: 1;
	line-height: 1.4;
}

.sss-faq-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--sss-icon-bg, rgba(0, 0, 0, 0.03));
	color: var(--sss-icon-color, var(--sss-accent));
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sss-faq-question:hover .sss-faq-icon {
	background: var(--sss-accent);
	color: #fff;
	transform: scale(1.08);
}

.sss-faq-item.active .sss-faq-icon {
	transform: rotate(180deg);
	background: var(--sss-accent);
	color: #fff;
}

.sss-faq-answer {
	transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sss-faq-answer-content {
	padding: 8px 30px 28px 30px;
	font-size: 15.5px;
	line-height: 1.7;
	color: var(--sss-text-answer);
}

.sss-faq-answer-content a {
	color: var(--sss-accent);
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid rgba(var(--sss-accent-rgb), 0.2);
	padding: 0 2px;
	transition: all 0.2s ease;
}

.sss-faq-answer-content a:hover {
	background: rgba(var(--sss-accent-rgb), 0.08);
	border-bottom-color: var(--sss-accent);
	border-radius: 4px;
}

/* ==========================================
   THEME 1: Minimalist Açık (minimal-light)
   ========================================== */
.sss-theme-minimal-light {
	--sss-wrapper-bg: #ffffff;
	--sss-border: #e2e8f0;
	--sss-border-hover: #cbd5e1;
	--sss-text-title: #0f172a;
	--sss-text-question: #1e293b;
	--sss-text-question-active: #0f172a;
	--sss-text-answer: #475569;
	--sss-accent: #2563eb;
	--sss-accent-rgb: 37, 99, 235;
	--sss-item-bg: #ffffff;
	--sss-item-question-bg: #ffffff;
	--sss-item-question-bg-hover: #f8fafc;
	--sss-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.005);
	--sss-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.03);
	--sss-shadow-active: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
	--sss-icon-bg: #f1f5f9;
	--sss-icon-color: #64748b;
}

/* ==========================================
   THEME 2: Koyu Gri (slate-dark)
   ========================================== */
.sss-theme-slate-dark {
	--sss-wrapper-bg: #0f172a;
	--sss-border: #1e293b;
	--sss-border-hover: #334155;
	--sss-text-title: #f8fafc;
	--sss-text-question: #e2e8f0;
	--sss-text-question-active: #ffffff;
	--sss-text-answer: #cbd5e1;
	--sss-accent: #3b82f6;
	--sss-accent-rgb: 59, 130, 246;
	--sss-item-bg: #1e293b;
	--sss-item-question-bg: #1e293b;
	--sss-item-question-bg-hover: #273549;
	--sss-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
	--sss-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.25);
	--sss-shadow-active: 0 20px 25px -5px rgba(0, 0, 0, 0.35);
	--sss-icon-bg: #0f172a;
	--sss-icon-color: #94a3b8;
}

/* ==========================================
   THEME 3: Cam Efekti (glassmorphism)
   ========================================== */
.sss-theme-glassmorphism {
	--sss-wrapper-bg: rgba(255, 255, 255, 0.4);
	--sss-border: rgba(255, 255, 255, 0.3);
	--sss-border-hover: rgba(255, 255, 255, 0.55);
	--sss-text-title: #0f172a;
	--sss-text-question: #1e293b;
	--sss-text-question-active: #0f172a;
	--sss-text-answer: #334155;
	--sss-accent: #8b5cf6;
	--sss-accent-rgb: 139, 92, 246;
	--sss-item-bg: rgba(255, 255, 255, 0.15);
	--sss-item-question-bg: transparent;
	--sss-item-question-bg-hover: rgba(255, 255, 255, 0.25);
	--sss-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.03);
	--sss-shadow-hover: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
	--sss-shadow-active: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
	--sss-icon-bg: rgba(255, 255, 255, 0.35);
	--sss-icon-color: #8b5cf6;
	--sss-wrapper-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
	backdrop-filter: blur(12px) saturate(180%);
	-webkit-backdrop-filter: blur(12px) saturate(180%);
}

/* ==========================================
   THEME 4: Asil Mavi (elegant-blue)
   ========================================== */
.sss-theme-elegant-blue {
	--sss-wrapper-bg: #f8fafc;
	--sss-border: #e2e8f0;
	--sss-border-hover: #cbd5e1;
	--sss-text-title: #1e3a8a;
	--sss-text-question: #1e293b;
	--sss-text-question-active: #1d4ed8;
	--sss-text-answer: #1e3a8a;
	--sss-accent: #2563eb;
	--sss-accent-rgb: 37, 99, 235;
	--sss-item-bg: #ffffff;
	--sss-item-question-bg: #ffffff;
	--sss-item-question-bg-hover: #f0f7ff;
	--sss-shadow: 0 4px 10px rgba(37, 99, 235, 0.01);
	--sss-shadow-hover: 0 10px 15px rgba(37, 99, 235, 0.03);
	--sss-shadow-active: 0 20px 25px rgba(37, 99, 235, 0.05);
	--sss-icon-bg: #eff6ff;
	--sss-icon-color: #2563eb;
}

/* ==========================================
   THEME 5: Doğal Yeşil (forest-green)
   ========================================== */
.sss-theme-forest-green {
	--sss-wrapper-bg: #fcfdfd;
	--sss-border: #e8f5e9;
	--sss-border-hover: #c8e6c9;
	--sss-text-title: #1b5e20;
	--sss-text-question: #2e7d32;
	--sss-text-question-active: #1b5e20;
	--sss-text-answer: #37474f;
	--sss-accent: #2e7d32;
	--sss-accent-rgb: 46, 125, 50;
	--sss-item-bg: #ffffff;
	--sss-item-question-bg: #ffffff;
	--sss-item-question-bg-hover: #f1f8e9;
	--sss-shadow: 0 4px 10px rgba(46, 125, 50, 0.01);
	--sss-shadow-hover: 0 10px 15px rgba(46, 125, 50, 0.03);
	--sss-shadow-active: 0 20px 25px rgba(46, 125, 50, 0.05);
	--sss-icon-bg: #f1f8e9;
	--sss-icon-color: #2e7d32;
}

/* ==========================================
   THEME 6: Özel Tasarım (custom)
   ========================================== */
.sss-theme-custom {
	--sss-wrapper-bg: #ffffff;
	--sss-border: #f1f5f9;
	--sss-border-hover: var(--sss-accent);
	--sss-text-title: #0f172a;
	--sss-text-question: #1e293b;
	--sss-text-question-active: #0f172a;
	--sss-text-answer: #475569;
	--sss-item-bg: #ffffff;
	--sss-item-question-bg: #f8fafc;
	--sss-item-question-bg-hover: #f1f5f9;
	--sss-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.006);
	--sss-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -2px rgba(0, 0, 0, 0.01);
	--sss-shadow-active: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
	--sss-icon-bg: #f8fafc;
	--sss-icon-color: var(--sss-accent);
}
