/* ==========================================================
   XİDMƏTLƏR SƏHİFƏSİ
========================================================== */

.vp-services-page,
.vp-services-page * {
	box-sizing: border-box;
}

.vp-services-page {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	background: #f7faff;
	color: #10264a;
}

.vp-services-container {
	width: min(calc(100% - 40px), 1480px);
	margin: 0 auto;
	padding: 30px 0 40px;
}


/* ==========================================================
   BREADCRUMB
========================================================== */

.vp-services-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	margin: 0 0 14px;
	color: #6d7c93;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
}

.vp-services-breadcrumb a {
	color: #50627c;
	text-decoration: none;
	transition: color 0.2s ease;
}

.vp-services-breadcrumb a:hover {
	color: #1769e8;
}

.vp-services-breadcrumb-separator {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #9aa8ba;
}


/* ==========================================================
   BAŞLIQ VƏ AXTARIŞ
========================================================== */

.vp-services-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin: 0 0 28px;
}

.vp-services-heading {
	min-width: 0;
}

.vp-services-title {
	margin: 0 0 10px;
	color: #10264a;
	font-size: clamp(34px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.vp-services-description {
	max-width: 760px;
	margin: 0;
	color: #5d6f88;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.65;
}

.vp-services-search {
	position: relative;
	flex: 0 0 330px;
	width: 330px;
	max-width: 100%;
}

.vp-services-search-input {
	display: block;
	width: 100%;
	height: 48px;
	padding: 11px 48px 11px 16px;
	color: #10264a;
	font-size: 14px;
	line-height: 1.5;
	background: #ffffff;
	border: 1px solid #d2deeb;
	border-radius: 8px;
	box-shadow: none;
	outline: none;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background-color 0.2s ease;
}

.vp-services-search-input::placeholder {
	color: #8b9aaf;
	opacity: 1;
}

.vp-services-search-input:hover {
	border-color: #b5c5d8;
}

.vp-services-search-input:focus {
	background: #ffffff;
	border-color: #1769e8;
	box-shadow: 0 0 0 3px rgba(23, 105, 232, 0.1);
}

.vp-services-search-button {
	position: absolute;
	top: 50%;
	right: 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	color: #17345b;
	cursor: pointer;
	background: transparent;
	border: 0;
	border-radius: 6px;
	transform: translateY(-50%);
	transition:
		color 0.2s ease,
		background-color 0.2s ease;
}

.vp-services-search-button:hover {
	color: #1769e8;
	background: #edf4ff;
}

.vp-services-search-button:focus-visible {
	outline: 3px solid rgba(23, 105, 232, 0.2);
	outline-offset: 2px;
}


/* ==========================================================
   ƏSAS LAYOUT
========================================================== */

.vp-services-layout {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	align-items: start;
	gap: 24px;
	width: 100%;
	min-width: 0;
}

.vp-services-content {
	width: 100%;
	min-width: 0;
}


/* ==========================================================
   KATEQORİYALAR
========================================================== */

.vp-services-sidebar {
	position: sticky;
	top: 110px;
	width: 100%;
	min-width: 0;
	padding: 20px 16px;
	background: #ffffff;
	border: 1px solid #dbe5f0;
	border-radius: 10px;
	box-shadow:
		0 5px 20px rgba(19, 54, 99, 0.035),
		0 1px 2px rgba(19, 54, 99, 0.02);
}

.vp-services-sidebar-title {
	margin: 0 0 16px;
	padding: 0 6px;
	color: #10264a;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
}

.vp-services-category-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 6px;
	width: 100%;
	min-width: 0;
	overflow: visible;
}

.vp-services-category {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	min-width: 0;
	min-height: 48px;
	padding: 7px 9px;
	color: #53657d;
	text-align: left;
	cursor: pointer;
	background: transparent;
	border: 0;
	border-radius: 8px;
	transition:
		color 0.2s ease,
		background-color 0.2s ease;
}

.vp-services-category:hover {
	color: #1769e8;
	background: #f3f7fd;
}

.vp-services-category.is-active {
	color: #1769e8;
	background: #eaf2ff;
}

.vp-services-category-left {
	display: flex;
	align-items: center;
	gap: 9px;
	flex: 1 1 auto;
	min-width: 0;
}

.vp-services-category-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	color: #1769e8;
	background: #edf4ff;
	border-radius: 50%;
}

.vp-services-category:not(.is-active):nth-child(3n + 2)
	.vp-services-category-icon {
	color: #17a45a;
	background: #eaf8f0;
}

.vp-services-category:not(.is-active):nth-child(3n + 3)
	.vp-services-category-icon {
	color: #7540dc;
	background: #f0ebff;
}

.vp-services-category:not(.is-active):nth-child(3n + 4)
	.vp-services-category-icon {
	color: #ed6b2d;
	background: #fff0e8;
}

.vp-services-category.is-active .vp-services-category-icon {
	color: #1769e8;
	background: #dbe9ff;
}

.vp-services-category-name {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	color: inherit;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	white-space: normal;
	overflow-wrap: anywhere;
}

.vp-services-category-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 25px;
	height: 25px;
	padding: 0 7px;
	color: #65758b;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	background: #f0f4f8;
	border-radius: 999px;
}

.vp-services-category.is-active .vp-services-category-count {
	color: #1769e8;
	background: #ffffff;
}

.vp-services-category:focus-visible {
	outline: 3px solid rgba(23, 105, 232, 0.18);
	outline-offset: 2px;
}


/* ==========================================================
   TOOLBAR
========================================================== */

.vp-services-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 0 0 16px;
}

.vp-services-results-count {
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 0;
	color: #66778f;
	font-size: 14px;
	line-height: 1.5;
}

.vp-services-results-count strong {
	color: #10264a;
	font-size: 14px;
	font-weight: 700;
}

.vp-services-sort-wrapper {
	flex: 0 0 auto;
}

.vp-services-sort {
	min-width: 245px;
	height: 44px;
	padding: 9px 38px 9px 14px;
	color: #52657f;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	background-color: #ffffff;
	border: 1px solid #d2deeb;
	border-radius: 8px;
	box-shadow: none;
	outline: none;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.vp-services-sort:hover {
	border-color: #b5c5d8;
}

.vp-services-sort:focus {
	border-color: #1769e8;
	box-shadow: 0 0 0 3px rgba(23, 105, 232, 0.1);
}


/* ==========================================================
   XİDMƏT KARTLARI
========================================================== */

.vp-services-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	width: 100%;
	min-width: 0;
}

.vp-service-card {
	width: 100%;
	min-width: 0;
	min-height: 180px;
}

.vp-service-card[hidden] {
	display: none !important;
}

.vp-service-card-link {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 180px;
	padding: 20px 18px 18px;
	color: #10264a;
	text-decoration: none;
	background: #ffffff;
	border: 1px solid #dbe5f0;
	border-radius: 10px;
	box-shadow:
		0 5px 18px rgba(19, 54, 99, 0.035),
		0 1px 2px rgba(19, 54, 99, 0.02);
	overflow: hidden;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.vp-service-card-link:hover {
	color: #10264a;
	border-color: #a9c3ea;
	box-shadow:
		0 12px 30px rgba(24, 77, 145, 0.1),
		0 2px 5px rgba(19, 54, 99, 0.04);
	transform: translateY(-3px);
}

.vp-service-card-link:focus-visible {
	outline: 3px solid rgba(23, 105, 232, 0.2);
	outline-offset: 3px;
}

.vp-service-card-header {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	min-width: 0;
	margin: 0 0 14px;
	padding-right: 8px;
}

.vp-service-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
}

.vp-service-card-icon img {
	display: block;
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.vp-service-card-icon-blue {
	color: #1769e8;
	background: #eaf2ff;
}

.vp-service-card-icon-green {
	color: #16a45a;
	background: #eaf8f0;
}

.vp-service-card-icon-purple {
	color: #7643df;
	background: #f0ebff;
}

.vp-service-card-icon-orange {
	color: #f06a2d;
	background: #fff0e8;
}

.vp-service-card-title {
	flex: 1 1 auto;
	min-width: 0;
	margin: 1px 0 0;
	color: #10264a;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.01em;
	overflow-wrap: anywhere;
}

.vp-service-card-description {
	margin: 0;
	padding-right: 26px;
	color: #697a91;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.6;
	overflow-wrap: anywhere;
}

.vp-service-card-arrow {
	position: absolute;
	right: 16px;
	bottom: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #1769e8;
	transition: transform 0.2s ease;
}

.vp-service-card-link:hover .vp-service-card-arrow {
	transform: translateX(4px);
}


/* ==========================================================
   BOŞ NƏTİCƏ
========================================================== */

.vp-services-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 340px;
	padding: 40px 24px;
	text-align: center;
	background: #ffffff;
	border: 1px solid #dbe5f0;
	border-radius: 10px;
}

.vp-services-empty[hidden] {
	display: none !important;
}

.vp-services-empty-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	margin: 0 0 18px;
	color: #1769e8;
	background: #eaf2ff;
	border-radius: 50%;
}

.vp-services-empty h2 {
	margin: 0 0 9px;
	color: #10264a;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.35;
}

.vp-services-empty p {
	max-width: 440px;
	margin: 0;
	color: #6a7a91;
	font-size: 14px;
	line-height: 1.6;
}

.vp-services-reset {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin-top: 20px;
	padding: 10px 19px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	background: #1769e8;
	border: 1px solid #1769e8;
	border-radius: 7px;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.vp-services-reset:hover {
	background: #0f59d0;
	border-color: #0f59d0;
	transform: translateY(-1px);
}


/* ==========================================================
   PAGINATION
========================================================== */

.vp-services-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 28px 0 0;
}

.vp-services-pagination:empty {
	display: none;
}

.vp-services-page-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	color: #51647d;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	background: #ffffff;
	border: 1px solid #d6e1ed;
	border-radius: 7px;
	transition:
		color 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.vp-services-page-button:hover:not(:disabled) {
	color: #1769e8;
	background: #f4f8ff;
	border-color: #a9c3ea;
	transform: translateY(-1px);
}

.vp-services-page-button.is-active {
	color: #ffffff;
	background: #1769e8;
	border-color: #1769e8;
}

.vp-services-page-button:disabled {
	color: #a7b3c3;
	cursor: not-allowed;
	background: #f5f7fa;
	border-color: #e1e7ee;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1240px) {

	.vp-services-container {
		width: min(calc(100% - 32px), 1180px);
	}

	.vp-services-layout {
		grid-template-columns: 230px minmax(0, 1fr);
		gap: 20px;
	}

	.vp-services-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

}


/* ==========================================================
   TABLET / KİÇİK LAPTOP
========================================================== */

@media (max-width: 920px) {

	.vp-services-container {
		padding-top: 24px;
	}

	.vp-services-header {
		align-items: stretch;
		flex-direction: column;
		gap: 20px;
	}

	.vp-services-search {
		flex: none;
		width: 100%;
	}

	.vp-services-layout {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.vp-services-sidebar {
		position: static;
		padding: 18px;
	}

	.vp-services-category-list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		overflow: visible;
	}

	.vp-services-category {
		width: 100%;
		min-width: 0;
	}

	.vp-services-category-name {
		white-space: normal;
	}

	.vp-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 680px) {

	.vp-services-container {
		width: 100%;
		max-width: 100%;
		margin: 0;
		padding: 20px 14px 30px;
	}

	.vp-services-title {
		font-size: 34px;
	}

	.vp-services-description {
		font-size: 14px;
		line-height: 1.6;
	}

	.vp-services-header {
		margin-bottom: 22px;
	}

	.vp-services-layout {
		display: block;
		width: 100%;
		min-width: 0;
	}

	.vp-services-sidebar {
		width: 100%;
		min-width: 0;
		padding: 18px 14px;
		border-radius: 10px;
	}

	.vp-services-sidebar-title {
		margin-bottom: 12px;
		padding: 0;
		font-size: 17px;
	}

	.vp-services-category-list {
		display: grid;
		grid-template-columns: 1fr;
		gap: 6px;
		width: 100%;
		min-width: 0;
		padding: 0;
		overflow: visible;
	}

	.vp-services-category {
		display: flex;
		width: 100%;
		min-width: 0;
		min-height: 44px;
		padding: 6px 8px;
	}

	.vp-services-category-left {
		flex: 1 1 auto;
		min-width: 0;
	}

	.vp-services-category-icon {
		flex: 0 0 30px;
		width: 30px;
		height: 30px;
	}

	.vp-services-category-name {
		flex: 1 1 auto;
		min-width: 0;
		font-size: 13px;
		white-space: normal;
		overflow-wrap: anywhere;
	}

	.vp-services-category-count {
		flex: 0 0 auto;
		min-width: 24px;
		height: 24px;
	}

	.vp-services-content {
		width: 100%;
		min-width: 0;
		margin-top: 22px;
	}

	.vp-services-toolbar {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
	}

	.vp-services-sort-wrapper {
		width: 100%;
	}

	.vp-services-sort {
		width: 100%;
		min-width: 0;
	}

	.vp-services-grid {
		grid-template-columns: 1fr;
		gap: 14px;
		width: 100%;
		min-width: 0;
	}

	.vp-service-card,
	.vp-service-card-link {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.vp-service-card {
		min-height: 0;
	}

	.vp-service-card-link {
		min-height: 165px;
		padding: 18px 16px;
	}

	.vp-service-card-header {
		gap: 11px;
		padding-right: 4px;
	}

	.vp-service-card-icon {
		flex-basis: 42px;
		width: 42px;
		height: 42px;
	}

	.vp-service-card-title {
		font-size: 14px;
		line-height: 1.4;
	}

	.vp-service-card-description {
		padding-right: 22px;
		font-size: 13px;
	}

	.vp-services-empty {
		min-height: 300px;
		padding: 34px 18px;
	}

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 420px) {

	.vp-services-container {
		padding-right: 12px;
		padding-left: 12px;
	}

	.vp-services-breadcrumb {
		font-size: 12px;
	}

	.vp-services-title {
		font-size: 30px;
	}

	.vp-services-sidebar {
		padding: 16px 12px;
	}

	.vp-services-category {
		padding-right: 7px;
		padding-left: 7px;
	}

	.vp-service-card-link {
		padding-right: 15px;
		padding-left: 15px;
	}

	.vp-service-card-arrow {
		right: 14px;
		bottom: 14px;
	}

	.vp-services-page-button {
		min-width: 36px;
		height: 36px;
	}

}
/* ==========================================================
   TƏK XİDMƏT SƏHİFƏSİ
   ========================================================== */

:root {
	--vp-service-single-navy: #071c4a;
	--vp-service-single-blue: #075cf6;
	--vp-service-single-blue-dark: #0047c9;
	--vp-service-single-blue-soft: #edf4ff;
	--vp-service-single-cyan-soft: #eefaff;
	--vp-service-single-green: #12a76a;
	--vp-service-single-green-soft: #ecfbf4;
	--vp-service-single-text: #172440;
	--vp-service-single-muted: #68758e;
	--vp-service-single-border: #dce5f1;
	--vp-service-single-border-dark: #cbd7e7;
	--vp-service-single-background: #f6f9fd;
	--vp-service-single-white: #ffffff;
	--vp-service-single-radius-sm: 8px;
	--vp-service-single-radius-md: 12px;
	--vp-service-single-radius-lg: 16px;
	--vp-service-single-shadow:
		0 10px 32px rgba(7, 28, 74, 0.055);
}


/* ==========================================================
   Əsas səhifə
   ========================================================== */

.vp-service-single {
	min-height: 100vh;
	color: var(--vp-service-single-text);
	background:
		linear-gradient(
			180deg,
			#f9fbff 0%,
			var(--vp-service-single-background) 100%
		);
}

.vp-service-single *,
.vp-service-single *::before,
.vp-service-single *::after {
	box-sizing: border-box;
}

.vp-service-single a {
	color: inherit;
	text-decoration: none;
}

.vp-service-single button,
.vp-service-single input,
.vp-service-single textarea,
.vp-service-single select {
	font: inherit;
}

.vp-service-single svg {
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vp-service-single .vp-container {
	width: min(100% - 40px, 1360px);
	margin-inline: auto;
}

.vp-service-single-hero {
	padding: 30px 0 52px;
}


/* ==========================================================
   Breadcrumb
   ========================================================== */

.vp-service-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 22px;
	color: #73809a;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
}

.vp-service-breadcrumb a {
	transition: color 0.2s ease;
}

.vp-service-breadcrumb a:hover {
	color: var(--vp-service-single-blue);
}

.vp-service-breadcrumb > span[aria-hidden="true"] {
	color: #a4afc1;
	font-size: 17px;
	line-height: 1;
}

.vp-service-breadcrumb span[aria-current="page"] {
	display: inline-block;
	overflow: hidden;
	max-width: 380px;
	text-overflow: ellipsis;
	white-space: nowrap;
}


/* ==========================================================
   İki sütunlu layout
   ========================================================== */

.vp-service-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 30px;
	align-items: start;
}

.vp-service-single-main {
	display: grid;
	gap: 18px;
	min-width: 0;
}

.vp-service-single-sidebar {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 110px;
}


/* ==========================================================
   Başlıq sahəsi
   ========================================================== */

.vp-service-single-header {
	margin-bottom: 2px;
}

.vp-service-single-title {
	max-width: 920px;
	margin: 0;
	color: var(--vp-service-single-navy);
	font-size: clamp(27px, 2.5vw, 39px);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.03em;
	overflow-wrap: anywhere;
}

.vp-service-single-description {
	max-width: 850px;
	margin: 12px 0 0;
	color: var(--vp-service-single-muted);
	font-size: 15px;
	line-height: 1.7;
}

.vp-service-single-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 15px;
}

.vp-service-single-tags a {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 10px;
	border: 1px solid #d7e4f8;
	border-radius: 7px;
	color: var(--vp-service-single-blue);
	background: #f2f7ff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	transition:
		color 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease;
}

.vp-service-single-tags a:hover {
	color: #ffffff;
	background: var(--vp-service-single-blue);
	border-color: var(--vp-service-single-blue);
}


/* ==========================================================
   Xidmət haqqında böyük kart
   ========================================================== */

.vp-service-overview-card {
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr);
	gap: 26px;
	align-items: center;
	padding: 28px;
	border: 1px solid var(--vp-service-single-border);
	border-radius: var(--vp-service-single-radius-md);
	background:
		linear-gradient(
			135deg,
			#f3f7ff 0%,
			#ffffff 72%
		);
	box-shadow: var(--vp-service-single-shadow);
}

.vp-service-overview-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 190px;
}

.vp-service-overview-visual img {
	display: block;
	width: 100%;
	max-width: 210px;
	height: auto;
	max-height: 210px;
	object-fit: contain;
}

.vp-service-overview-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 190px;
	height: 190px;
	border-radius: 24px;
	color: var(--vp-service-single-blue);
	background:
		radial-gradient(
			circle at 50% 35%,
			#ffffff 0%,
			#eef5ff 62%,
			#e2edff 100%
		);
}

.vp-service-overview-placeholder svg {
	width: 135px;
	height: 135px;
	stroke-width: 2;
}

.vp-service-overview-content {
	min-width: 0;
}

.vp-service-overview-content h2 {
	margin: 0 0 12px;
	color: var(--vp-service-single-navy);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.3;
}

.vp-service-overview-text {
	color: #51607a;
	font-size: 14px;
	line-height: 1.75;
}

.vp-service-overview-text > *:first-child {
	margin-top: 0;
}

.vp-service-overview-text > *:last-child {
	margin-bottom: 0;
}

.vp-service-overview-text p {
	margin: 0 0 14px;
}

.vp-service-overview-meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid #e0e8f3;
}

.vp-service-overview-meta-item {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.vp-service-meta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	color: var(--vp-service-single-blue);
	background: var(--vp-service-single-blue-soft);
}

.vp-service-meta-icon svg {
	width: 18px;
	height: 18px;
}

.vp-service-overview-meta-item > span:last-child {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.vp-service-overview-meta-item small {
	color: #77839a;
	font-size: 11px;
	line-height: 1.2;
}

.vp-service-overview-meta-item strong {
	color: var(--vp-service-single-navy);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
	overflow-wrap: anywhere;
}


/* ==========================================================
   Ümumi xidmət bölmə kartları
   ========================================================== */

.vp-service-section-card {
	padding: 24px 26px;
	border: 1px solid var(--vp-service-single-border);
	border-radius: var(--vp-service-single-radius-md);
	background: var(--vp-service-single-white);
	box-shadow: var(--vp-service-single-shadow);
}

.vp-service-section-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.vp-service-section-header h2 {
	margin: 0;
	color: var(--vp-service-single-navy);
	font-size: 19px;
	font-weight: 800;
	line-height: 1.35;
}

.vp-service-section-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	color: var(--vp-service-single-blue);
	background: var(--vp-service-single-blue-soft);
}

.vp-service-section-icon svg {
	width: 21px;
	height: 21px;
}

.vp-service-section-content {
	color: #596780;
	font-size: 14px;
	line-height: 1.75;
}

.vp-service-section-content > *:first-child {
	margin-top: 0;
}

.vp-service-section-content > *:last-child {
	margin-bottom: 0;
}

.vp-service-section-content p {
	margin: 0 0 14px;
}

.vp-service-section-content h3,
.vp-service-section-content h4 {
	margin: 20px 0 10px;
	color: var(--vp-service-single-navy);
	font-weight: 800;
	line-height: 1.4;
}

.vp-service-section-content h3 {
	font-size: 17px;
}

.vp-service-section-content h4 {
	font-size: 15px;
}

.vp-service-section-content ul,
.vp-service-section-content ol {
	margin: 12px 0;
	padding-left: 22px;
}

.vp-service-section-content li {
	margin-bottom: 8px;
}

.vp-service-section-content a {
	color: var(--vp-service-single-blue);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.vp-service-section-content a:hover {
	color: var(--vp-service-single-blue-dark);
}


/* ==========================================================
   Yaşıl işarəli siyahılar
   ========================================================== */

.vp-service-check-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vp-service-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 0;
	color: #53617a;
	font-size: 14px;
	line-height: 1.55;
}

.vp-service-check-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	color: var(--vp-service-single-green);
}

.vp-service-check-icon svg {
	width: 19px;
	height: 19px;
	stroke-width: 2;
}


/* ==========================================================
   Müraciət qeydi
   ========================================================== */

.vp-service-section-note {
	margin-top: 18px;
	padding: 14px 16px;
	border: 1px solid #dce7f7;
	border-radius: 8px;
	color: #53617b;
	background: #f1f6ff;
	font-size: 13px;
	line-height: 1.6;
}

.vp-service-section-note > *:first-child {
	margin-top: 0;
}

.vp-service-section-note > *:last-child {
	margin-bottom: 0;
}


/* ==========================================================
   FAQ
   ========================================================== */

.vp-service-faq {
	padding: 24px 26px;
	border: 1px solid var(--vp-service-single-border);
	border-radius: var(--vp-service-single-radius-md);
	background: var(--vp-service-single-white);
	box-shadow: var(--vp-service-single-shadow);
}

.vp-service-faq > h2 {
	margin: 0 0 16px;
	color: var(--vp-service-single-navy);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.35;
}

.vp-service-faq-list {
	display: grid;
	gap: 8px;
}

.vp-service-faq-item {
	overflow: hidden;
	border: 1px solid #dfe7f2;
	border-radius: 9px;
	background: #ffffff;
}

.vp-service-faq-question {
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr) 20px;
	gap: 10px;
	align-items: center;
	width: 100%;
	min-height: 48px;
	padding: 10px 14px;
	border: 0;
	color: #263553;
	background: #ffffff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
	text-align: left;
	cursor: pointer;
	transition:
		color 0.2s ease,
		background-color 0.2s ease;
}

.vp-service-faq-question:hover,
.vp-service-faq-question[aria-expanded="true"] {
	color: var(--vp-service-single-blue);
	background: #f5f8ff;
}

.vp-service-faq-symbol {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	color: var(--vp-service-single-blue);
	background: var(--vp-service-single-blue-soft);
	font-size: 14px;
	font-weight: 800;
}

.vp-service-faq-question > svg {
	width: 18px;
	height: 18px;
	transition: transform 0.25s ease;
}

.vp-service-faq-question[aria-expanded="true"] > svg {
	transform: rotate(180deg);
}

.vp-service-faq-answer {
	padding: 4px 54px 17px;
	color: #5d6b82;
	font-size: 13px;
	line-height: 1.7;
}

.vp-service-faq-answer > *:first-child {
	margin-top: 0;
}

.vp-service-faq-answer > *:last-child {
	margin-bottom: 0;
}


/* ==========================================================
   Sidebar ümumi kartlar
   ========================================================== */

.vp-service-application-card,
.vp-service-sidebar-card,
.vp-service-help-card {
	padding: 22px;
	border: 1px solid var(--vp-service-single-border);
	border-radius: var(--vp-service-single-radius-md);
	background: var(--vp-service-single-white);
	box-shadow: var(--vp-service-single-shadow);
}

.vp-service-sidebar-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 14px;
	border-radius: 50%;
	color: var(--vp-service-single-blue);
	background: var(--vp-service-single-blue-soft);
}

.vp-service-sidebar-icon svg {
	width: 22px;
	height: 22px;
}

.vp-service-application-card h2,
.vp-service-sidebar-card h2,
.vp-service-help-card h2 {
	margin: 0;
	color: var(--vp-service-single-navy);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.4;
}

.vp-service-application-card p,
.vp-service-help-card p {
	margin: 10px 0 18px;
	color: var(--vp-service-single-muted);
	font-size: 13px;
	line-height: 1.65;
}


/* ==========================================================
   Əsas düymələr
   ========================================================== */

.vp-service-primary-button,
.vp-service-whatsapp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 44px;
	padding: 10px 16px;
	border-radius: var(--vp-service-single-radius-sm);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	transition:
		color 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.vp-service-primary-button {
	border: 1px solid var(--vp-service-single-blue);
	color: #ffffff;
	background:
		linear-gradient(
			135deg,
			#075cf6 0%,
			#044fe0 100%
		);
}

.vp-service-primary-button:hover {
	color: #ffffff;
	border-color: var(--vp-service-single-blue-dark);
	background: var(--vp-service-single-blue-dark);
	box-shadow: 0 8px 20px rgba(7, 92, 246, 0.2);
	transform: translateY(-1px);
}

.vp-service-whatsapp-button {
	margin-top: 10px;
	border: 1px solid #a9e4c8;
	color: var(--vp-service-single-green);
	background: #ffffff;
}

.vp-service-whatsapp-button svg {
	width: 18px;
	height: 18px;
}

.vp-service-whatsapp-button:hover {
	color: #ffffff;
	border-color: var(--vp-service-single-green);
	background: var(--vp-service-single-green);
	transform: translateY(-1px);
}


/* ==========================================================
   Digər xidmətlər
   ========================================================== */

.vp-service-sidebar-card > h2 {
	margin-bottom: 15px;
}

.vp-service-sidebar-links {
	display: grid;
}

.vp-service-sidebar-links a {
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr);
	gap: 9px;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #e5ebf3;
	color: #35425d;
	font-size: 13px;
	font-weight: 650;
	line-height: 1.45;
	transition:
		color 0.2s ease,
		padding-left 0.2s ease;
}

.vp-service-sidebar-links a:hover {
	padding-left: 3px;
	color: var(--vp-service-single-blue);
}

.vp-service-sidebar-links a:last-child {
	border-bottom: 0;
}

.vp-service-sidebar-link-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	color: var(--vp-service-single-blue);
	background: var(--vp-service-single-blue-soft);
}

.vp-service-sidebar-link-icon svg {
	width: 16px;
	height: 16px;
}

.vp-service-sidebar-more {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 13px;
	color: var(--vp-service-single-blue);
	font-size: 13px;
	font-weight: 800;
}

.vp-service-sidebar-more:hover {
	text-decoration: underline;
}


/* ==========================================================
   Kömək kartı
   ========================================================== */

.vp-service-help-card {
	color: #ffffff;
	border-color: transparent;
	background:
		linear-gradient(
			145deg,
			#15216f 0%,
			#241b8b 100%
		);
}

.vp-service-help-card h2 {
	color: #ffffff;
}

.vp-service-help-card p {
	color: rgba(255, 255, 255, 0.76);
}

.vp-service-help-card > a {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 12px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
}

.vp-service-help-card > a:last-child {
	justify-content: center;
	min-height: 42px;
	margin-top: 18px;
	padding: 9px 14px;
	border-radius: 7px;
	color: #15216f;
	background: #ffffff;
}

.vp-service-help-card > a:last-child:hover {
	color: var(--vp-service-single-blue);
}


/* ==========================================================
   Aşağı CTA
   ========================================================== */

.vp-service-bottom-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 28px;
	padding: 20px 24px;
	border: 1px solid #dbe6f6;
	border-radius: var(--vp-service-single-radius-md);
	background:
		linear-gradient(
			135deg,
			#eef4ff 0%,
			#f8fbff 100%
		);
	box-shadow: var(--vp-service-single-shadow);
}

.vp-service-bottom-cta > div:first-child {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.vp-service-bottom-cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: var(--vp-service-single-blue);
	background: #ffffff;
}

.vp-service-bottom-cta-icon svg {
	width: 22px;
	height: 22px;
}

.vp-service-bottom-cta > div:first-child > span:last-child {
	display: grid;
	gap: 4px;
}

.vp-service-bottom-cta strong {
	color: var(--vp-service-single-navy);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.3;
}

.vp-service-bottom-cta small {
	color: var(--vp-service-single-muted);
	font-size: 13px;
	line-height: 1.4;
}

.vp-service-bottom-cta-actions {
	display: grid;
	grid-template-columns: 160px 220px;
	gap: 12px;
	flex: 0 0 auto;
}

.vp-service-bottom-cta-actions .vp-service-whatsapp-button {
	margin-top: 0;
}


/* ==========================================================
   Focus
   ========================================================== */

.vp-service-single a:focus-visible,
.vp-service-single button:focus-visible {
	outline: 3px solid rgba(7, 92, 246, 0.23);
	outline-offset: 3px;
}


/* ==========================================================
   Planşet
   ========================================================== */

@media (max-width: 1100px) {

	.vp-service-single-layout {
		grid-template-columns: minmax(0, 1fr) 290px;
		gap: 22px;
	}

	.vp-service-overview-card {
		grid-template-columns: 190px minmax(0, 1fr);
		padding: 24px;
	}

	.vp-service-overview-placeholder {
		width: 165px;
		height: 165px;
	}

	.vp-service-overview-placeholder svg {
		width: 118px;
		height: 118px;
	}

	.vp-service-overview-meta {
		grid-template-columns: 1fr;
		gap: 13px;
	}

	.vp-service-bottom-cta {
		align-items: flex-start;
	}

	.vp-service-bottom-cta-actions {
		grid-template-columns: 150px;
	}

}


/* ==========================================================
   Kiçik planşet
   ========================================================== */

@media (max-width: 900px) {

	.vp-service-single .vp-container {
		width: min(100% - 28px, 1360px);
	}

	.vp-service-single-layout {
		grid-template-columns: 1fr;
	}

	.vp-service-single-sidebar {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vp-service-application-card {
		grid-row: span 2;
	}

	.vp-service-overview-meta {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.vp-service-bottom-cta-actions {
		grid-template-columns: 145px 210px;
	}

}


/* ==========================================================
   Mobil
   ========================================================== */

@media (max-width: 700px) {

	.vp-service-single-hero {
		padding: 22px 0 40px;
	}

	.vp-service-breadcrumb {
		margin-bottom: 18px;
		font-size: 12px;
	}

	.vp-service-breadcrumb span[aria-current="page"] {
		max-width: 210px;
	}

	.vp-service-single-title {
		font-size: 29px;
		line-height: 1.22;
	}

	.vp-service-single-description {
		font-size: 14px;
	}

	.vp-service-overview-card {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 22px 20px;
	}

	.vp-service-overview-visual {
		min-height: 145px;
	}

	.vp-service-overview-placeholder {
		width: 145px;
		height: 145px;
	}

	.vp-service-overview-placeholder svg {
		width: 103px;
		height: 103px;
	}

	.vp-service-overview-meta {
		grid-template-columns: 1fr;
	}

	.vp-service-section-card,
	.vp-service-faq {
		padding: 21px 19px;
	}

	.vp-service-check-list {
		grid-template-columns: 1fr;
	}

	.vp-service-single-sidebar {
		grid-template-columns: 1fr;
	}

	.vp-service-application-card {
		grid-row: auto;
	}

	.vp-service-bottom-cta {
		display: grid;
	}

	.vp-service-bottom-cta-actions {
		grid-template-columns: 1fr 1fr;
		width: 100%;
	}

}


/* ==========================================================
   Dar mobil
   ========================================================== */

@media (max-width: 480px) {

	.vp-service-single .vp-container {
		width: min(100% - 20px, 1360px);
	}

	.vp-service-single-title {
		font-size: 26px;
	}

	.vp-service-breadcrumb span[aria-current="page"] {
		max-width: 150px;
	}

	.vp-service-overview-card,
	.vp-service-section-card,
	.vp-service-faq,
	.vp-service-application-card,
	.vp-service-sidebar-card,
	.vp-service-help-card {
		padding: 17px;
	}

	.vp-service-overview-content h2 {
		font-size: 20px;
	}

	.vp-service-section-header {
		align-items: flex-start;
	}

	.vp-service-section-header h2 {
		font-size: 17px;
	}

	.vp-service-faq-question {
		grid-template-columns: 27px minmax(0, 1fr) 18px;
		padding-inline: 10px;
	}

	.vp-service-faq-answer {
		padding: 4px 14px 16px 47px;
	}

	.vp-service-bottom-cta {
		padding: 17px;
	}

	.vp-service-bottom-cta-actions {
		grid-template-columns: 1fr;
	}

}


/* ==========================================================
   Çap
   ========================================================== */

@media print {

	.vp-service-single {
		background: #ffffff;
	}

	.vp-service-breadcrumb,
	.vp-service-single-sidebar,
	.vp-service-bottom-cta,
	header,
	footer {
		display: none !important;
	}

	.vp-service-single-hero {
		padding: 0;
	}

	.vp-service-single-layout {
		display: block;
	}

	.vp-service-single-main {
		display: block;
	}

	.vp-service-single-main > * {
		margin-bottom: 18px;
	}

	.vp-service-overview-card,
	.vp-service-section-card,
	.vp-service-faq {
		border: 1px solid #cccccc;
		box-shadow: none;
		break-inside: avoid;
	}

}
.vp-service-primary-button.is-loading,
.vp-service-whatsapp-button.is-loading {
	opacity: 0.68;
	cursor: wait;
	pointer-events: none;
}
/* Müraciət düyməsinin mətn rəngi */
.vp-service-single a.vp-service-primary-button,
.vp-service-single a.vp-service-primary-button:visited {
	color: #ffffff;
}

.vp-service-single a.vp-service-primary-button:hover,
.vp-service-single a.vp-service-primary-button:focus {
	color: #ffffff;
}