/* ==========================================================
   FAQ SƏHİFƏSİ
========================================================== */

.vp-faq-page,
.vp-faq-page * {
	box-sizing: border-box;
}

.vp-faq-page {
	color: #10264a;
	background: #f7f9fd;
}

.vp-faq-page a {
	text-decoration: none;
}

.vp-faq-page svg {
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vp-faq-container {
	width: min(calc(100% - 40px), 1240px);
	margin: 0 auto;
}


/* ==========================================================
   HERO
========================================================== */

.vp-faq-hero {
	position: relative;
	padding: 28px 0 52px;
	border-bottom: 1px solid #dde6f2;
	background:
		radial-gradient(
			circle at 78% 28%,
			rgba(7, 92, 246, 0.11) 0,
			rgba(7, 92, 246, 0) 29%
		),
		linear-gradient(
			180deg,
			#ffffff 0%,
			#f4f8ff 100%
		);
	overflow: hidden;
}

.vp-faq-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 36px;
	color: #77849a;
	font-size: 13px;
}

.vp-faq-breadcrumb a {
	color: #5c6f8e;
}

.vp-faq-breadcrumb a:hover {
	color: #075cf6;
}

.vp-faq-breadcrumb span[aria-current="page"] {
	color: #1b3155;
}

.vp-faq-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
	gap: 70px;
	align-items: center;
}

.vp-faq-hero-content {
	max-width: 720px;
}

.vp-faq-eyebrow {
	display: inline-flex;
	align-items: center;
	min-height: 31px;
	margin-bottom: 15px;
	padding: 6px 12px;
	border: 1px solid #d4e2f8;
	border-radius: 999px;
	color: #075cf6;
	background: #edf4ff;
	font-size: 12px;
	font-weight: 800;
}

.vp-faq-hero h1 {
	margin: 0;
	color: #071c4a;
	font-size: clamp(38px, 5vw, 60px);
	font-weight: 850;
	line-height: 1.05;
	letter-spacing: -0.045em;
}

.vp-faq-hero-content > p {
	max-width: 680px;
	margin: 20px 0 0;
	color: #687791;
	font-size: 15px;
	line-height: 1.75;
}

.vp-faq-search-wrap {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 680px;
	margin-top: 28px;
}

.vp-faq-search-wrap input {
	width: 100%;
	height: 58px;
	padding: 0 96px 0 52px;
	border: 1px solid #ccd9ea;
	border-radius: 11px;
	outline: none;
	color: #17345b;
	background: #ffffff;
	font-size: 14px;
	box-shadow: 0 12px 32px rgba(15, 42, 84, 0.06);
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.vp-faq-search-wrap input:focus {
	border-color: #72a2f4;
	box-shadow:
		0 0 0 4px rgba(7, 92, 246, 0.08),
		0 12px 32px rgba(15, 42, 84, 0.06);
}

.vp-faq-search-wrap input::placeholder {
	color: #9ba7b9;
}

.vp-faq-search-icon {
	position: absolute;
	left: 18px;
	z-index: 2;
	color: #075cf6;
	pointer-events: none;
}

.vp-faq-search-icon svg {
	width: 21px;
	height: 21px;
}

#vp-faq-search-clear {
	position: absolute;
	right: 13px;
	padding: 7px 10px;
	border: 0;
	border-radius: 7px;
	color: #5d6d85;
	background: #edf2f8;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
}

#vp-faq-search-clear:hover {
	color: #075cf6;
	background: #e2edff;
}

.vp-faq-hero-visual {
	position: relative;
	min-height: 270px;
}

.vp-faq-visual-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 240px;
	height: 240px;
	border: 1px solid rgba(7, 92, 246, 0.14);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.vp-faq-visual-circle::before {
	position: absolute;
	inset: 27px;
	content: "";
	border: 1px dashed rgba(7, 92, 246, 0.22);
	border-radius: 50%;
}

.vp-faq-visual-card {
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(7, 92, 246, 0.16);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 42px rgba(7, 47, 120, 0.12);
	backdrop-filter: blur(7px);
}

.vp-faq-visual-card-one {
	top: 30px;
	left: 24%;
	width: 126px;
	height: 126px;
	border-radius: 31px;
	color: #075cf6;
	font-size: 70px;
	font-weight: 850;
	transform: rotate(-8deg);
}

.vp-faq-visual-card-two {
	right: 17%;
	bottom: 26px;
	width: 104px;
	height: 104px;
	border-radius: 27px;
	color: #075cf6;
	transform: rotate(9deg);
}

.vp-faq-visual-card-two svg {
	width: 48px;
	height: 48px;
}


/* ==========================================================
   CONTENT
========================================================== */

.vp-faq-content-section {
	padding: 30px 0 70px;
}

.vp-faq-filters {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 24px;
}

.vp-faq-filter {
	min-height: 39px;
	padding: 8px 15px;
	border: 1px solid #d4deeb;
	border-radius: 999px;
	color: #53647e;
	background: #ffffff;
	font-size: 12px;
	font-weight: 750;
	cursor: pointer;
	transition:
		color 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.vp-faq-filter:hover {
	color: #075cf6;
	border-color: #9dbcf0;
}

.vp-faq-filter.is-active {
	color: #ffffff;
	border-color: #075cf6;
	background: #075cf6;
	box-shadow: 0 8px 20px rgba(7, 92, 246, 0.18);
}

.vp-faq-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 24px;
	align-items: start;
}

.vp-faq-main {
	min-width: 0;
}

.vp-faq-heading-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 17px;
}

.vp-faq-heading-row h2 {
	margin: 0;
	color: #071c4a;
	font-size: 25px;
	font-weight: 850;
	letter-spacing: -0.02em;
}

.vp-faq-heading-row p {
	margin: 6px 0 0;
	color: #748199;
	font-size: 13px;
}

#vp-faq-result-count {
	flex: 0 0 auto;
	padding: 7px 11px;
	border-radius: 999px;
	color: #075cf6;
	background: #eaf2ff;
	font-size: 11px;
	font-weight: 800;
}

.vp-faq-list {
	display: grid;
	gap: 12px;
}

.vp-faq-item {
	border: 1px solid #dce5f1;
	border-radius: 13px;
	background: #ffffff;
	box-shadow: 0 7px 24px rgba(14, 37, 78, 0.035);
	overflow: hidden;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.vp-faq-item:hover {
	border-color: #bdcfea;
}

.vp-faq-item.is-open {
	border-color: #9ebcf0;
	box-shadow: 0 12px 30px rgba(7, 92, 246, 0.07);
}

.vp-faq-question {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 25px;
	gap: 14px;
	align-items: center;
	width: 100%;
	padding: 18px 20px;
	border: 0;
	color: #12284b;
	background: transparent;
	text-align: left;
	cursor: pointer;
}

.vp-faq-question-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 11px;
	color: #075cf6;
	background: #eaf2ff;
	font-size: 20px;
	font-weight: 850;
}

.vp-faq-question-text {
	min-width: 0;
}

.vp-faq-question-text small {
	display: block;
	margin-bottom: 4px;
	color: #075cf6;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.035em;
}

.vp-faq-question-text strong {
	display: block;
	color: #13294d;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.45;
}

.vp-faq-chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #7b8ba2;
	transition: transform 0.2s ease;
}

.vp-faq-chevron svg {
	width: 20px;
	height: 20px;
}

.vp-faq-item.is-open .vp-faq-chevron {
	color: #075cf6;
	transform: rotate(180deg);
}

.vp-faq-answer {
	border-top: 1px solid #e5ebf3;
	background: #fbfcff;
}

.vp-faq-answer-inner {
	padding: 21px 24px 23px 78px;
	color: #5d6d86;
	font-size: 14px;
	line-height: 1.75;
}

.vp-faq-answer-inner > :first-child {
	margin-top: 0;
}

.vp-faq-answer-inner > :last-child {
	margin-bottom: 0;
}

.vp-faq-answer-inner a {
	color: #075cf6;
	font-weight: 700;
}

.vp-faq-answer-inner ul,
.vp-faq-answer-inner ol {
	padding-left: 19px;
}

.vp-faq-empty,
.vp-faq-admin-empty {
	padding: 55px 24px;
	border: 1px dashed #cdd9e9;
	border-radius: 13px;
	background: #ffffff;
	text-align: center;
}

.vp-faq-empty > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 14px;
	border-radius: 50%;
	color: #075cf6;
	background: #eaf2ff;
}

.vp-faq-empty svg {
	width: 27px;
	height: 27px;
}

.vp-faq-empty h3,
.vp-faq-admin-empty h3 {
	margin: 0;
	color: #12284b;
	font-size: 19px;
}

.vp-faq-empty p,
.vp-faq-admin-empty p {
	margin: 8px 0 0;
	color: #748199;
	font-size: 13px;
}


/* ==========================================================
   SIDEBAR
========================================================== */

.vp-faq-sidebar {
	position: sticky;
	top: 110px;
	display: grid;
	gap: 14px;
}

.vp-faq-help-card {
	padding: 25px;
	border-radius: 15px;
	color: #ffffff;
	background:
		linear-gradient(
			145deg,
			#0d2764 0%,
			#172b8f 100%
		);
	box-shadow: 0 16px 38px rgba(7, 30, 85, 0.17);
}

.vp-faq-help-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 18px;
	border-radius: 13px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.12);
}

.vp-faq-help-icon svg {
	width: 23px;
	height: 23px;
}

.vp-faq-help-card h2 {
	margin: 0;
	color: #ffffff;
	font-size: 21px;
	font-weight: 850;
	line-height: 1.25;
}

.vp-faq-help-card p {
	margin: 12px 0 21px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 13px;
	line-height: 1.65;
}

.vp-faq-help-primary,
.vp-faq-help-whatsapp {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 46px;
	padding: 10px 15px;
	border-radius: 9px;
	font-size: 12px;
	font-weight: 800;
}

.vp-faq-help-primary {
	color: #0b2e79;
	background: #ffffff;
}

.vp-faq-help-primary:hover {
	color: #075cf6;
	background: #f2f6ff;
}

.vp-faq-help-whatsapp {
	margin-top: 10px;
	border: 1px solid rgba(255, 255, 255, 0.33);
	color: #ffffff;
	background: rgba(255, 255, 255, 0.07);
}

.vp-faq-help-whatsapp:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.14);
}

.vp-faq-phone-card {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 18px 20px;
	border: 1px solid #dce5f1;
	border-radius: 13px;
	background: #ffffff;
}

.vp-faq-phone-card > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 41px;
	height: 41px;
	border-radius: 10px;
	color: #075cf6;
	background: #eaf2ff;
	font-size: 17px;
}

.vp-faq-phone-card small {
	display: block;
	margin-bottom: 3px;
	color: #7a879b;
	font-size: 10px;
	font-weight: 700;
}

.vp-faq-phone-card a {
	color: #11284d;
	font-size: 22px;
	font-weight: 850;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 980px) {

	.vp-faq-hero-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.vp-faq-hero-visual {
		display: none;
	}

	.vp-faq-layout {
		grid-template-columns: 1fr;
	}

	.vp-faq-sidebar {
		position: static;
		grid-template-columns: minmax(0, 1fr) 260px;
	}

}

@media (max-width: 680px) {

	.vp-faq-container {
		width: min(calc(100% - 24px), 1240px);
	}

	.vp-faq-hero {
		padding: 20px 0 37px;
	}

	.vp-faq-breadcrumb {
		margin-bottom: 26px;
	}

	.vp-faq-hero h1 {
		font-size: 38px;
	}

	.vp-faq-hero-content > p {
		font-size: 14px;
	}

	.vp-faq-search-wrap input {
		height: 54px;
	}

	.vp-faq-content-section {
		padding: 24px 0 45px;
	}

	.vp-faq-filters {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 5px;
		scrollbar-width: none;
	}

	.vp-faq-filters::-webkit-scrollbar {
		display: none;
	}

	.vp-faq-filter {
		flex: 0 0 auto;
	}

	.vp-faq-heading-row {
		align-items: flex-start;
	}

	.vp-faq-heading-row h2 {
		font-size: 22px;
	}

	.vp-faq-question {
		grid-template-columns: 39px minmax(0, 1fr) 20px;
		gap: 11px;
		padding: 16px 14px;
	}

	.vp-faq-question-icon {
		width: 38px;
		height: 38px;
	}

	.vp-faq-question-text strong {
		font-size: 13px;
	}

	.vp-faq-answer-inner {
		padding: 18px 16px;
		font-size: 13px;
	}

	.vp-faq-sidebar {
		grid-template-columns: 1fr;
	}

}
