/* =========================================================
   A K INFOTECH - CUSTOM HEADER
   File: /wp-content/themes/astra-child/header.css
   ========================================================= */

:root {
	--ak-primary: #0d4ed8;
	--ak-primary-dark: #073b9d;
	--ak-primary-deep: #062f7b;
	--ak-secondary: #0b1736;
	--ak-accent: #ffb400;
	--ak-text: #182033;
	--ak-muted: #667085;
	--ak-border: #e6eaf0;
	--ak-surface: #ffffff;
	--ak-surface-soft: #f7f9fc;
	--ak-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
	--ak-radius: 16px;
	--ak-container: 1240px;
}

/* -----------------------------
   GLOBAL HEADER RESET
----------------------------- */

.ak-site-header,
.ak-site-header *,
.ak-site-header *::before,
.ak-site-header *::after {
	box-sizing: border-box;
}

.ak-site-header {
	position: relative;
	z-index: 9999;
	width: 100%;
	background: #ffffff;
	color: var(--ak-text);
	font-family: inherit;
}

.ak-site-header img {
	display: block;
	max-width: 100%;
	height: auto;
}

.ak-site-header a {
	text-decoration: none;
}

.ak-site-header button,
.ak-site-header input {
	font: inherit;
}

.ak-container {
	width: min(100% - 32px, var(--ak-container));
	margin: 0 auto;
}

/* -----------------------------
   TOP BAR
----------------------------- */

.ak-topbar {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, #06388f 0%, #0d4ed8 55%, #1761e8 100%);
	color: #ffffff;
}

.ak-topbar::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 15% 30%, rgba(255,255,255,0.12), transparent 32%),
		radial-gradient(circle at 82% 20%, rgba(255,255,255,0.08), transparent 30%);
}

.ak-topbar-inner {
	position: relative;
	z-index: 1;
	min-height: 38px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.ak-topbar-left,
.ak-topbar-right {
	display: flex;
	align-items: center;
}

.ak-topbar-left {
	min-width: 0;
	gap: 8px;
}

.ak-topbar-right {
	gap: 20px;
	flex-shrink: 0;
}

.ak-topbar-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	flex-shrink: 0;
}

.ak-topbar-text {
	font-size: 13px;
	line-height: 1.35;
	font-weight: 600;
	letter-spacing: 0.01em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ak-topbar-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	line-height: 1;
	font-weight: 600;
	color: #ffffff;
	transition: opacity 0.2s ease;
}

.ak-topbar-link:hover,
.ak-topbar-link:focus {
	color: #ffffff;
	opacity: 0.82;
}

/* -----------------------------
   MAIN HEADER
----------------------------- */

.ak-main-header {
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid rgba(17, 24, 39, 0.08);
	box-shadow: 0 5px 18px rgba(15, 23, 42, 0.04);
}

.ak-header-inner {
	min-height: 88px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
}

.ak-brand-area {
	display: flex;
	align-items: center;
	gap: 13px;
	min-width: 0;
	flex-shrink: 0;
}

.ak-logo-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ak-logo-shell {
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 50%;
	overflow: hidden;
	background: #ffffff;
	border: 2px solid #eef2f8;
	box-shadow:
		0 7px 18px rgba(15, 23, 42, 0.09),
		inset 0 0 0 4px #ffffff;
}

.ak-site-logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	border-radius: 50%;
	background: #ffffff;
}

.ak-brand-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-width: 0;
}

.ak-brand-name {
	display: inline-flex;
	align-items: baseline;
	gap: 5px;
	font-size: 24px;
	line-height: 1.05;
	font-weight: 800;
	letter-spacing: -0.035em;
	color: var(--ak-secondary);
	white-space: nowrap;
}

.ak-brand-name span {
	color: var(--ak-primary);
}

.ak-brand-name:hover,
.ak-brand-name:focus {
	color: var(--ak-secondary);
}

.ak-brand-tagline {
	margin-top: 5px;
	font-size: 11.5px;
	line-height: 1.25;
	font-weight: 600;
	color: var(--ak-muted);
	white-space: nowrap;
}

/* -----------------------------
   DESKTOP NAV
----------------------------- */

.ak-desktop-navigation {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	min-width: 0;
	flex: 1;
}

.ak-primary-nav {
	min-width: 0;
}

.ak-primary-nav ul,
.ak-primary-nav .ak-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ak-primary-nav .ak-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 2px;
}

.ak-primary-nav .ak-menu > li {
	position: relative;
	margin: 0;
	padding: 0;
}

.ak-primary-nav .ak-menu > li > a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 12px;
	border-radius: 10px;
	font-size: 13.5px;
	line-height: 1;
	font-weight: 700;
	color: #20283a;
	white-space: nowrap;
	transition:
		color 0.2s ease,
		background 0.2s ease,
		transform 0.2s ease;
}

.ak-primary-nav .ak-menu > li > a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 4px;
	width: 0;
	height: 2px;
	border-radius: 999px;
	background: var(--ak-primary);
	transform: translateX(-50%);
	transition: width 0.2s ease;
}

.ak-primary-nav .ak-menu > li > a:hover,
.ak-primary-nav .ak-menu > li > a:focus,
.ak-primary-nav .ak-menu > li.current-menu-item > a,
.ak-primary-nav .ak-menu > li.current_page_item > a,
.ak-primary-nav .ak-menu > li.current-menu-ancestor > a {
	color: var(--ak-primary);
	background: #f5f8ff;
}

.ak-primary-nav .ak-menu > li > a:hover::after,
.ak-primary-nav .ak-menu > li > a:focus::after,
.ak-primary-nav .ak-menu > li.current-menu-item > a::after,
.ak-primary-nav .ak-menu > li.current_page_item > a::after {
	width: calc(100% - 24px);
}

/* Dropdowns */

.ak-primary-nav .ak-menu li.menu-item-has-children > a {
	padding-right: 26px;
}

.ak-primary-nav .ak-menu li.menu-item-has-children > a::before {
	content: "";
	position: absolute;
	right: 10px;
	top: 50%;
	width: 6px;
	height: 6px;
	border-right: 1.7px solid currentColor;
	border-bottom: 1.7px solid currentColor;
	transform: translateY(-65%) rotate(45deg);
}

.ak-primary-nav .ak-menu .sub-menu {
	position: absolute;
	top: calc(100% + 9px);
	left: 0;
	z-index: 100;
	min-width: 215px;
	margin: 0;
	padding: 8px;
	list-style: none;
	border: 1px solid #e8edf4;
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition:
		opacity 0.18s ease,
		transform 0.18s ease,
		visibility 0.18s ease;
}

.ak-primary-nav .ak-menu li:hover > .sub-menu,
.ak-primary-nav .ak-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ak-primary-nav .ak-menu .sub-menu li {
	position: relative;
	margin: 0;
	padding: 0;
}

.ak-primary-nav .ak-menu .sub-menu a {
	display: flex;
	align-items: center;
	min-height: 40px;
	padding: 10px 12px;
	border-radius: 9px;
	font-size: 13px;
	line-height: 1.3;
	font-weight: 600;
	color: #263247;
	transition:
		background 0.2s ease,
		color 0.2s ease;
}

.ak-primary-nav .ak-menu .sub-menu a:hover,
.ak-primary-nav .ak-menu .sub-menu a:focus {
	color: var(--ak-primary);
	background: #f4f7fd;
}

.ak-primary-nav .ak-menu .sub-menu .sub-menu {
	top: -8px;
	left: calc(100% + 8px);
}

/* -----------------------------
   HEADER ACTIONS
----------------------------- */

.ak-header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.ak-search-toggle {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid #e5eaf1;
	border-radius: 12px;
	outline: none;
	background: #ffffff;
	color: var(--ak-secondary);
	cursor: pointer;
	box-shadow: none;
	transition:
		color 0.2s ease,
		border-color 0.2s ease,
		background 0.2s ease,
		transform 0.2s ease;
}

.ak-search-toggle:hover,
.ak-search-toggle:focus-visible {
	color: var(--ak-primary);
	border-color: #bfd0f8;
	background: #f6f9ff;
	transform: translateY(-1px);
}

.ak-apply-btn {
	min-height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 16px;
	border-radius: 11px;
	background:
		linear-gradient(135deg, var(--ak-primary-dark), var(--ak-primary));
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 9px 20px rgba(13, 78, 216, 0.2);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		filter 0.2s ease;
}

.ak-apply-btn:hover,
.ak-apply-btn:focus {
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(13, 78, 216, 0.28);
	filter: brightness(1.03);
}

.ak-apply-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* -----------------------------
   DESKTOP SEARCH PANEL
----------------------------- */

.ak-header-search {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 998;
	width: 100%;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-8px);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease,
		visibility 0.2s ease;
}

.ak-header-search.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.ak-search-panel {
	padding: 15px 0;
}

.ak-search-form {
	margin: 0;
	padding: 0;
}

.ak-search-field-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	max-width: 720px;
	margin-left: auto;
	padding: 8px 8px 8px 16px;
	border: 1px solid #e1e7ef;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: var(--ak-shadow);
}

.ak-search-field-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #7b8495;
	flex-shrink: 0;
}

.ak-search-input {
	flex: 1;
	min-width: 0;
	height: 42px;
	padding: 0;
	border: 0 !important;
	outline: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #182033;
	font-size: 14px;
	line-height: 1;
}

.ak-search-input::placeholder {
	color: #98a2b3;
}

.ak-search-submit {
	height: 42px;
	min-width: 100px;
	padding: 0 18px;
	border: 0;
	border-radius: 11px;
	background: var(--ak-primary);
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	transition:
		background 0.2s ease,
		transform 0.2s ease;
}

.ak-search-submit:hover,
.ak-search-submit:focus {
	background: var(--ak-primary-dark);
	transform: translateY(-1px);
}

/* -----------------------------
   MOBILE TOGGLE
----------------------------- */

.ak-mobile-toggle {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	padding: 0;
	border: 1px solid #e4e9f0;
	border-radius: 12px;
	background: #ffffff;
	cursor: pointer;
	box-shadow: none;
}

.ak-mobile-toggle-line {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: var(--ak-secondary);
	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
}

/* -----------------------------
   MOBILE NAV DRAWER
----------------------------- */

.ak-mobile-navigation {
	position: fixed;
	inset: 0;
	z-index: 10050;
	visibility: hidden;
	pointer-events: none;
}

.ak-mobile-navigation.is-open {
	visibility: visible;
	pointer-events: auto;
}

.ak-mobile-nav-inner {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	width: min(88vw, 390px);
	height: 100%;
	padding: 18px;
	overflow-y: auto;
	background: #ffffff;
	box-shadow: -18px 0 45px rgba(15, 23, 42, 0.17);
	transform: translateX(100%);
	transition: transform 0.28s ease;
	overscroll-behavior: contain;
}

.ak-mobile-navigation.is-open .ak-mobile-nav-inner {
	transform: translateX(0);
}

.ak-mobile-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: rgba(8, 18, 40, 0.56);
	opacity: 0;
	cursor: pointer;
	transition: opacity 0.25s ease;
}

.ak-mobile-navigation.is-open .ak-mobile-overlay {
	opacity: 1;
}

.ak-mobile-nav-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-bottom: 16px;
	border-bottom: 1px solid #edf0f4;
}

.ak-mobile-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.ak-mobile-logo-shell {
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 50%;
	border: 1px solid #e8edf4;
	background: #ffffff;
}

.ak-mobile-logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	border-radius: 50%;
	background: #ffffff;
}

.ak-mobile-brand-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.ak-mobile-brand-text strong {
	color: var(--ak-secondary);
	font-size: 15px;
	line-height: 1.15;
	font-weight: 800;
}

.ak-mobile-brand-text span {
	margin-top: 4px;
	color: var(--ak-muted);
	font-size: 10.5px;
	line-height: 1.25;
	font-weight: 600;
}

.ak-mobile-close {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 0;
	border: 1px solid #e4e9f0;
	border-radius: 11px;
	background: #ffffff;
	color: var(--ak-secondary);
	cursor: pointer;
}

.ak-mobile-search {
	padding: 16px 0 14px;
}

.ak-mobile-search form {
	margin: 0;
}

.ak-mobile-search-wrap {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 46px;
	padding: 0 13px;
	border: 1px solid #e5eaf0;
	border-radius: 12px;
	background: #f8fafc;
	color: #7a8495;
}

.ak-mobile-search-wrap input {
	width: 100%;
	min-width: 0;
	height: 44px;
	padding: 0;
	border: 0 !important;
	outline: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--ak-text);
	font-size: 13px;
}

.ak-mobile-search-wrap input::placeholder {
	color: #98a2b3;
}

/* -----------------------------
   MOBILE MENU
----------------------------- */

.ak-mobile-menu-wrap {
	padding: 2px 0 8px;
}

.ak-mobile-menu-wrap ul,
.ak-mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ak-mobile-menu > li {
	margin: 0;
	border-bottom: 1px solid #edf1f5;
}

.ak-mobile-menu > li > a {
	display: flex;
	align-items: center;
	min-height: 49px;
	padding: 0 4px;
	color: #1f2937;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

.ak-mobile-menu > li.current-menu-item > a,
.ak-mobile-menu > li.current_page_item > a,
.ak-mobile-menu > li > a:hover,
.ak-mobile-menu > li > a:focus {
	color: var(--ak-primary);
}

.ak-mobile-menu .sub-menu {
	padding: 0 0 8px 12px;
}

.ak-mobile-menu .sub-menu li {
	margin: 0;
}

.ak-mobile-menu .sub-menu a {
	display: block;
	padding: 8px 6px;
	color: #667085;
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.35;
}

.ak-mobile-menu .sub-menu a:hover,
.ak-mobile-menu .sub-menu a:focus {
	color: var(--ak-primary);
}

/* -----------------------------
   MOBILE QUICK ACTIONS
----------------------------- */

.ak-mobile-quick-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding-top: 16px;
}

.ak-mobile-apply,
.ak-mobile-contact {
	min-height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 0 12px;
	border-radius: 11px;
	font-size: 12.5px;
	line-height: 1;
	font-weight: 800;
	text-align: center;
}

.ak-mobile-apply {
	background:
		linear-gradient(135deg, var(--ak-primary-dark), var(--ak-primary));
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(13, 78, 216, 0.2);
}

.ak-mobile-apply:hover,
.ak-mobile-apply:focus {
	color: #ffffff;
}

.ak-mobile-contact {
	border: 1px solid #dce5f2;
	background: #f7faff;
	color: var(--ak-primary-dark);
}

.ak-mobile-contact:hover,
.ak-mobile-contact:focus {
	color: var(--ak-primary);
	background: #eff5ff;
}

.ak-mobile-footer-info {
	margin-top: 18px;
	padding: 14px;
	border-radius: 12px;
	background: #f7f9fc;
	border: 1px solid #edf0f4;
}

.ak-mobile-footer-info p {
	margin: 0 0 7px;
	color: #667085;
	font-size: 11.5px;
	line-height: 1.45;
	font-weight: 600;
}

.ak-mobile-footer-info a {
	color: var(--ak-primary);
	font-size: 11.5px;
	line-height: 1.3;
	font-weight: 700;
	word-break: break-word;
}

/* -----------------------------
   BODY LOCK WHEN MENU OPEN
----------------------------- */

body.ak-menu-open {
	overflow: hidden;
}

/* -----------------------------
   ASTRA CONFLICT PROTECTION
----------------------------- */

.ast-primary-header-bar,
.ast-mobile-header-wrap,
.site-header-primary-section-left,
.site-header-primary-section-right,
.ast-builder-grid-row-container {
	box-sizing: border-box;
}

body .ak-site-header ul,
body .ak-site-header li {
	margin-left: 0;
	margin-right: 0;
}

body .ak-site-header button,
body .ak-site-header input[type="search"] {
	min-height: 0;
}

/* -----------------------------
   RESPONSIVE - LARGE DESKTOP
----------------------------- */

@media (max-width: 1180px) {

	.ak-header-inner {
		gap: 18px;
	}

	.ak-brand-name {
		font-size: 22px;
	}

	.ak-brand-tagline {
		font-size: 10.5px;
	}

	.ak-primary-nav .ak-menu > li > a {
		padding-left: 9px;
		padding-right: 9px;
		font-size: 12.5px;
	}

	.ak-primary-nav .ak-menu li.menu-item-has-children > a {
		padding-right: 23px;
	}

	.ak-apply-btn {
		padding: 0 13px;
		font-size: 12px;
	}

	.ak-logo-shell {
		width: 64px;
		height: 64px;
	}
}

/* -----------------------------
   RESPONSIVE - TABLET / MOBILE
----------------------------- */

@media (max-width: 1024px) {

	.ak-desktop-navigation {
		display: none;
	}

	.ak-mobile-toggle {
		display: inline-flex;
	}

	.ak-header-inner {
		min-height: 78px;
	}

	.ak-header-search {
		display: none;
	}
}

/* -----------------------------
   MOBILE
----------------------------- */

@media (max-width: 767px) {

	.ak-container {
		width: min(100% - 22px, var(--ak-container));
	}

	.ak-topbar-inner {
		min-height: 34px;
		justify-content: center;
	}

	.ak-topbar-left {
		width: 100%;
		justify-content: center;
	}

	.ak-topbar-right {
		display: none;
	}

	.ak-topbar-text {
		font-size: 11px;
		font-weight: 700;
		text-align: center;
		white-space: nowrap;
	}

	.ak-topbar-badge {
		display: none;
	}

	.ak-header-inner {
		min-height: 70px;
		gap: 12px;
	}

	.ak-brand-area {
		gap: 9px;
		min-width: 0;
	}

	.ak-logo-shell {
		width: 52px;
		height: 52px;
		border-width: 1px;
		box-shadow: 0 5px 14px rgba(15, 23, 42, 0.08);
	}

	.ak-brand-content {
		min-width: 0;
		max-width: calc(100vw - 130px);
	}

	.ak-brand-name {
		font-size: 18px;
		letter-spacing: -0.025em;
	}

	.ak-brand-tagline {
		max-width: 100%;
		margin-top: 3px;
		overflow: hidden;
		font-size: 9.5px;
		line-height: 1.2;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.ak-mobile-toggle {
		width: 40px;
		height: 40px;
		border-radius: 10px;
		flex-shrink: 0;
	}

	.ak-mobile-toggle-line {
		width: 18px;
	}

	.ak-mobile-nav-inner {
		width: min(92vw, 370px);
		padding: 15px;
	}
}

/* -----------------------------
   SMALL MOBILE
----------------------------- */

@media (max-width: 420px) {

	.ak-container {
		width: min(100% - 18px, var(--ak-container));
	}

	.ak-topbar-text {
		font-size: 10.3px;
	}

	.ak-header-inner {
		min-height: 66px;
	}

	.ak-logo-shell {
		width: 48px;
		height: 48px;
	}

	.ak-brand-name {
		font-size: 16px;
	}

	.ak-brand-tagline {
		font-size: 8.8px;
	}

	.ak-mobile-toggle {
		width: 38px;
		height: 38px;
	}

	.ak-mobile-quick-actions {
		grid-template-columns: 1fr;
	}
}

/* -----------------------------
   EXTRA SMALL DEVICES
----------------------------- */

@media (max-width: 350px) {

	.ak-brand-tagline {
		display: none;
	}

	.ak-brand-name {
		font-size: 15px;
	}

	.ak-logo-shell {
		width: 44px;
		height: 44px;
	}

	.ak-brand-content {
		max-width: calc(100vw - 115px);
	}
}

/* -----------------------------
   ACCESSIBILITY
----------------------------- */

.ak-site-header a:focus-visible,
.ak-site-header button:focus-visible,
.ak-site-header input:focus-visible {
	outline: 2px solid var(--ak-primary);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

	.ak-site-header *,
	.ak-site-header *::before,
	.ak-site-header *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}