/* =========================================================
   VERGİ PORTAL — HEADER VƏ FOOTER
   Bu fayl yalnız .vp-header və .vp-footer daxilini idarə edir.
========================================================= */

.vp-header svg,
.vp-footer svg,
.vp-scroll-top svg {
	display: block;
	max-width: none;
	border-radius: 0;
	background: transparent;
}

/* =========================================================
   HEADER
========================================================= */

.vp-header {
	position: relative;
	z-index: 1000;
	width: 100%;
	border-bottom: 1px solid #e8edf4;
	background: #ffffff;
}

.vp-header-top {
	height: 44px;
	border-bottom: 1px solid #e8edf4;
	background: #fbfcfe;
}

.vp-header-top__inner {
	display: flex;
	height: 44px;
	align-items: center;
	justify-content: space-between;
}

.vp-header-top__left,
.vp-header-top__right {
	display: flex;
	align-items: center;
}

.vp-header-top__right {
	gap: 25px;
}

.vp-language-button,
.vp-header-top__link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #102743;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
}

.vp-language-button svg,
.vp-header-top__link svg {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vp-language-button__arrow {
	width: 12px !important;
	height: 12px !important;
}

.vp-language-button:hover,
.vp-header-top__link:hover {
	color: #0865e7;
}

.vp-cabinet-button {
	display: inline-flex;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 7px 15px;
	border-radius: 6px;
	background: #0865e7;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 5px 13px rgba(8, 101, 231, 0.17);
}

.vp-cabinet-button:hover {
	background: #0654c8;
	color: #ffffff;
}

.vp-cabinet-button svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Əsas sətr */

.vp-header-main {
	background: #ffffff;
}

.vp-header-main__inner {
	display: flex;
	height: 92px;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.vp-brand {
	display: inline-flex;
	min-width: 325px;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}

.vp-brand__logo {
	display: flex;
	width: 58px;
	height: 58px;
	flex: 0 0 58px;
	align-items: center;
	justify-content: center;
}

.vp-brand__image {
	width: 58px;
	height: 58px;
	object-fit: contain;
}

.vp-brand__placeholder {
	display: flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #0865e7;
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
}

.vp-brand__text {
	display: flex;
	flex-direction: column;
	color: #102743;
	line-height: 1.22;
	text-transform: uppercase;
}

.vp-brand__text small {
	margin-bottom: 3px;
	color: #4f6074;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.015em;
}

.vp-brand__text strong {
	font-size: 16px;
	font-weight: 800;
	letter-spacing: -0.015em;
}

/* Menyu */

.vp-main-navigation {
	display: flex;
	margin-left: auto;
	align-self: stretch;
}

.vp-main-menu,
.vp-main-menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.vp-main-menu {
	display: flex;
	height: 100%;
	align-items: stretch;
	gap: 6px;
}

.vp-main-menu > li {
	position: relative;
	display: flex;
	align-items: stretch;
}

.vp-main-menu > li > a {
	position: relative;
	display: flex;
	height: 100%;
	align-items: center;
	padding: 0 20px;
	color: #102743;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.vp-main-menu > li > a::after {
	position: absolute;
	right: 20px;
	bottom: 0;
	left: 20px;
	height: 3px;
	border-radius: 3px 3px 0 0;
	background: #0865e7;
	content: "";
	opacity: 0;
	transform: scaleX(0.35);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}

.vp-main-menu > li > a:hover,
.vp-main-menu > li.current-menu-item > a,
.vp-main-menu > li.current_page_item > a,
.vp-main-menu > li.current-menu-ancestor > a {
	color: #0865e7;
}

.vp-main-menu > li > a:hover::after,
.vp-main-menu > li.current-menu-item > a::after,
.vp-main-menu > li.current_page_item > a::after,
.vp-main-menu > li.current-menu-ancestor > a::after {
	opacity: 1;
	transform: scaleX(1);
}

/* Alt menyu */

.vp-main-menu .sub-menu {
	position: absolute;
	z-index: 50;
	top: calc(100% - 5px);
	left: 0;
	display: block;
	width: 250px;
	padding: 9px;
	border: 1px solid #dce5ef;
	border-radius: 10px;
	background: #ffffff;
	box-shadow: 0 14px 35px rgba(5, 38, 78, 0.12);
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}

.vp-main-menu li:hover > .sub-menu,
.vp-main-menu li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.vp-main-menu .sub-menu li {
	display: block;
}

.vp-main-menu .sub-menu a {
	display: block;
	padding: 10px 12px;
	border-radius: 7px;
	color: #102743;
	font-size: 13px;
	font-weight: 600;
}

.vp-main-menu .sub-menu a:hover {
	background: #edf5ff;
	color: #0865e7;
}

/* Mobil menyu düyməsi */

.vp-mobile-menu-button {
	display: none;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
	padding: 0;
	border: 1px solid #dce5ef;
	border-radius: 8px;
	background: #ffffff;
	color: #102743;
	cursor: pointer;
}

.vp-mobile-menu-button span {
	display: block;
	width: 19px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
}

/* Mobil menyu */

.vp-mobile-navigation {
	border-top: 1px solid #e8edf4;
	background: #ffffff;
	box-shadow: 0 12px 25px rgba(5, 38, 78, 0.08);
}

.vp-mobile-navigation[hidden],
.vp-search-panel[hidden] {
	display: none;
}

.vp-mobile-navigation .vp-container {
	padding-top: 12px;
	padding-bottom: 22px;
}

.vp-mobile-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.vp-mobile-menu > li > a {
	display: block;
	padding: 13px 2px;
	border-bottom: 1px solid #edf1f6;
	color: #102743;
	font-size: 14px;
	font-weight: 700;
}

.vp-mobile-menu .sub-menu {
	padding: 4px 0 4px 18px;
	margin: 0;
	list-style: none;
}

.vp-mobile-menu .sub-menu a {
	display: block;
	padding: 10px 0;
	color: #65758a;
	font-size: 13px;
	font-weight: 600;
}

.vp-mobile-cabinet {
	display: flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	margin-top: 18px;
	border-radius: 7px;
	background: #0865e7;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
}

/* Axtarış paneli */

.vp-search-panel {
	position: absolute;
	z-index: 100;
	top: 44px;
	right: 0;
	left: 0;
	padding: 17px 0;
	border-bottom: 1px solid #dce5ef;
	background: #ffffff;
	box-shadow: 0 13px 30px rgba(5, 38, 78, 0.1);
}

.vp-search-form {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}

.vp-search-form > svg {
	position: absolute;
	left: 17px;
	width: 19px;
	height: 19px;
	fill: none;
	stroke: #65758a;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vp-search-form input {
	width: 100%;
	height: 50px;
	padding: 0 50px;
	border: 1px solid #dce5ef;
	border-radius: 8px;
	background: #ffffff;
	color: #102743;
	outline: none;
}

.vp-search-form input:focus {
	border-color: #0865e7;
	box-shadow: 0 0 0 3px rgba(8, 101, 231, 0.1);
}

.vp-search-form button[type="submit"] {
	height: 50px;
	padding: 0 25px;
	border: 0;
	border-radius: 8px;
	background: #0865e7;
	color: #ffffff;
	font-weight: 700;
	cursor: pointer;
}

.vp-search-close {
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border: 0;
	border-radius: 8px;
	background: #edf2f8;
	color: #102743;
	font-size: 23px;
	cursor: pointer;
}

/* =========================================================
   FOOTER
========================================================= */

.vp-footer {
	width: 100%;
	padding: 52px 0 0;
	background:
		radial-gradient(
			circle at 88% 20%,
			rgba(25, 93, 170, 0.23),
			transparent 34%
		),
		linear-gradient(
			135deg,
			#061d39 0%,
			#06284f 100%
		);
	color: #ffffff;
}

.vp-footer__main {
	display: grid;
	grid-template-columns:
		minmax(250px, 1.45fr)
		minmax(150px, 0.85fr)
		minmax(150px, 0.85fr)
		minmax(240px, 1.25fr);
	gap: 65px;
	padding-bottom: 42px;
}

.vp-footer__brand {
	min-width: 0;
}

.vp-footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.vp-footer-brand__logo {
	display: flex;
	width: 61px;
	height: 61px;
	flex: 0 0 61px;
	align-items: center;
	justify-content: center;
}

.vp-footer-brand__image {
	width: 61px;
	height: 61px;
	object-fit: contain;
}

.vp-footer-brand__text {
	display: flex;
	flex-direction: column;
	color: #ffffff;
	line-height: 1.25;
	text-transform: uppercase;
}

.vp-footer-brand__text small {
	margin-bottom: 3px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.015em;
}

.vp-footer-brand__text strong {
	max-width: 230px;
	font-size: 14px;
	font-weight: 800;
}

/* Sosial ikonlar */

.vp-footer-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px;
}

.vp-footer-socials a {
	display: flex;
	width: 39px;
	height: 39px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	color: #ffffff;
	transition:
		border-color 0.2s ease,
		background-color 0.2s ease;
}

.vp-footer-socials a:hover {
	border-color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
}

.vp-footer-socials svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vp-footer-socials a:first-child svg {
	fill: currentColor;
	stroke: none;
}

/* Footer sütunları */

.vp-footer__column h2 {
	margin: 0 0 17px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.3;
	text-transform: uppercase;
}

.vp-footer-menu,
.vp-footer__contact ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.vp-footer-menu li + li,
.vp-footer__contact li + li {
	margin-top: 8px;
}

.vp-footer-menu a,
.vp-footer__contact li,
.vp-footer__contact a {
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	line-height: 1.5;
}

.vp-footer-menu a:hover,
.vp-footer__contact a:hover {
	color: #ffffff;
}

.vp-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
}

.vp-footer__contact svg {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	margin-top: 2px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Alt sətr */

.vp-footer__bottom {
	display: flex;
	min-height: 67px;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.vp-footer__bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
}

.vp-footer__legal {
	display: flex;
	align-items: center;
	gap: 28px;
}

.vp-footer__legal a {
	color: rgba(255, 255, 255, 0.76);
	font-size: 12px;
}

.vp-footer__legal a:hover {
	color: #ffffff;
}

/* Yuxarı qayıt düyməsi */

.vp-scroll-top {
	position: fixed;
	z-index: 900;
	right: 28px;
	bottom: 26px;
	display: flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #ffffff;
	color: #0865e7;
	box-shadow: 0 10px 25px rgba(2, 24, 51, 0.22);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}

.vp-scroll-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.vp-scroll-top svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

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

@media (max-width: 1150px) {
	.vp-header-main__inner {
		gap: 25px;
	}

	.vp-brand {
		min-width: 290px;
	}

	.vp-main-menu > li > a {
		padding-right: 13px;
		padding-left: 13px;
		font-size: 13px;
	}

	.vp-main-menu > li > a::after {
		right: 13px;
		left: 13px;
	}

	.vp-footer__main {
		grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
		gap: 35px;
	}
}

@media (max-width: 940px) {
	.vp-header-top__right {
		gap: 18px;
	}

	.vp-header-main__inner {
		height: 78px;
	}

	.vp-main-navigation {
		display: none;
	}

	.vp-mobile-menu-button {
		display: flex;
		margin-left: auto;
	}

	.vp-brand {
		min-width: 0;
	}

	.vp-brand__logo,
	.vp-brand__image {
		width: 50px;
		height: 50px;
		flex-basis: 50px;
	}

	.vp-footer__main {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 40px 60px;
	}
}

@media (max-width: 650px) {
	.vp-header-top {
		height: 40px;
	}

	.vp-header-top__inner {
		height: 40px;
	}

	.vp-header-top__right {
		gap: 14px;
	}

	.vp-header-top__link span {
		display: none;
	}

	.vp-header-top__link svg {
		width: 18px;
		height: 18px;
	}

	.vp-cabinet-button {
		min-height: 31px;
		padding-right: 11px;
		padding-left: 11px;
		font-size: 11px;
	}

	.vp-cabinet-button svg {
		display: none;
	}

	.vp-header-main__inner {
		height: 72px;
		gap: 15px;
	}

	.vp-brand {
		gap: 10px;
	}

	.vp-brand__logo,
	.vp-brand__image {
		width: 44px;
		height: 44px;
		flex-basis: 44px;
	}

	.vp-brand__text small {
		font-size: 8px;
	}

	.vp-brand__text strong {
		max-width: 185px;
		font-size: 11px;
	}

	.vp-search-panel {
		top: 40px;
	}

	.vp-search-form {
		flex-wrap: wrap;
	}

	.vp-search-form input {
		flex: 1 1 calc(100% - 52px);
	}

	.vp-search-form button[type="submit"] {
		width: calc(100% - 52px);
		margin-left: auto;
	}

	.vp-footer {
		padding-top: 42px;
	}

	.vp-footer__main {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-bottom: 34px;
	}

	.vp-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		padding: 20px 0;
		gap: 12px;
	}

	.vp-footer__legal {
		flex-wrap: wrap;
		gap: 10px 22px;
	}

	.vp-scroll-top {
		right: 16px;
		bottom: 16px;
	}
}
/* =========================================================
   DİL MENYUSU
========================================================= */

.vp-language-switcher {
	position: relative;
}

.vp-language-menu {
	position: absolute;
	z-index: 200;
	top: calc(100% + 13px);
	left: 0;
	width: 190px;
	padding: 7px;
	border: 1px solid #dce5ef;
	border-radius: 9px;
	background: #ffffff;
	box-shadow: 0 14px 35px rgba(5, 38, 78, 0.14);
}

.vp-language-menu[hidden] {
	display: none;
}

.vp-language-menu a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 11px;
	border-radius: 7px;
	color: #102743;
	font-size: 13px;
	font-weight: 600;
}

.vp-language-menu a:hover,
.vp-language-menu a.is-active {
	background: #edf5ff;
	color: #0865e7;
}

.vp-language-menu a span {
	display: inline-flex;
	width: 30px;
	height: 24px;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	background: #f0f4f9;
	color: #102743;
	font-size: 11px;
	font-weight: 800;
}

.vp-language-menu a.is-active span {
	background: #0865e7;
	color: #ffffff;
}

.vp-language-button[aria-expanded="true"]
.vp-language-button__arrow {
	transform: rotate(180deg);
}

.vp-language-button__arrow {
	transition: transform 0.2s ease;
}
/* =========================================================
   DİL SEÇİMİ SVG İKONUNUN DÜZƏLDİLMƏSİ
========================================================= */

.vp-language-switcher {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.vp-language-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #102743;
	font: inherit;
	cursor: pointer;
	line-height: 1;
}

.vp-language-button svg {
	display: block !important;
	width: 15px !important;
	height: 15px !important;
	min-width: 15px !important;
	max-width: 15px !important;
	min-height: 15px !important;
	max-height: 15px !important;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 1.7 !important;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vp-language-button svg circle,
.vp-language-button svg path {
	fill: none !important;
	stroke: currentColor !important;
}

.vp-language-button .vp-language-button__arrow {
	width: 11px !important;
	height: 11px !important;
	min-width: 11px !important;
	max-width: 11px !important;
	min-height: 11px !important;
	max-height: 11px !important;
}