/* ==========================================================
   Akumentis custom header
   ========================================================== */
:root{
	--akt-purple: #7c3f66;
	--akt-purple-dark: #632f50;
	--akt-text: #1c1c1c;
	--akt-header-height: 90px;
}

.akt-container{
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

/* ---------- Top bar ---------- */
.akt-topbar{
	background: var(--akt-purple);
	color: #fff;
}
.akt-topbar-inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 44px;
}
.akt-social{
	display: flex;
	gap: 14px;
}
.akt-social a{
	color: #fff!important;
	display: inline-flex;
	opacity: .9;
}
.akt-social a:hover{ opacity: 1; }
.akt-contact{
	display: flex;
	gap: 28px;
}
.akt-contact a{
	color: #fff!important;
	text-decoration: none;
	font-size: 14px;
}
.akt-contact a:hover{ text-decoration: underline; }

/* ---------- Main header ---------- */
.akt-main-header{
	background: #fff;
	box-shadow: 0 2px 6px rgba(0,0,0,.06);
}
.akt-main-header-inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--akt-header-height);
}
.akt-logo img{
	max-height: 60px;
	width: auto;
	display: block;
}
.akt-logo-text{
	font-size: 24px;
	font-weight: 700;
	color: var(--akt-purple);
}

/* Desktop nav */
.akt-menu{
	display: flex;
	align-items: center;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.akt-menu li{
	position: relative;
}
.akt-menu > li > a{
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--akt-text)!important;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	padding: 10px 2px;
}
.akt-menu > li.menu-item-has-children > a::after{
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	margin-top: -4px;
}
.akt-menu > li > a:hover,
.akt-menu > li.current-menu-item > a{
	color: var(--akt-purple);
}

/* Desktop dropdown */
.akt-menu ul.sub-menu{
	list-style: none;
	margin: 0;
	padding: 10px 0;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0,0,0,.12);
	border-radius: 6px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all .18s ease;
	z-index: 100;
}
.akt-menu li.menu-item-has-children:hover > ul.sub-menu{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.akt-menu ul.sub-menu li a{
	display: block;
	padding: 8px 20px;
	color: var(--akt-text);
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
}
.akt-menu ul.sub-menu li a:hover{
	color: var(--akt-purple);
	background: #f7f2f5;
}

/* Hamburger toggle button (hidden on desktop) */
.akt-menu-toggle{
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: none;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
}
.akt-menu-toggle span{
	display: block;
	width: 20px;
	height: 2px;
	background: var(--akt-text);
	margin: 0 auto;
}

/* ---------- Mobile slide-in menu ---------- */
.akt-mobile-menu{
	position: fixed;
	top: 0;
	right: 0;
	width: min(320px, 85vw);
	height: 100%;
	background: #fdfdfd;
	box-shadow: -4px 0 20px rgba(0,0,0,.15);
	transform: translateX(100%);
	transition: transform .25s ease;
	z-index: 1001;
	overflow-y: auto;
	padding: 60px 0 30px;
}
.akt-mobile-menu.is-open{
	transform: translateX(0);
}
.akt-menu-close{
	position: absolute;
	top: 14px;
	right: 16px;
	width: 36px;
	height: 36px;
	border: none;
	background: none;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}
.akt-menu-overlay{
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.4);
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease;
	z-index: 1000;
}
.akt-menu-overlay.is-open{
	opacity: 1;
	visibility: visible;
}

.akt-mobile-menu-list{
	list-style: none;
	margin: 0;
	padding: 0;
}
.akt-mobile-menu-list li{
	border-bottom: 1px solid #eee;
}
.akt-mobile-menu-list > li > a,
.akt-mobile-menu-list .akt-mobile-item-row > a{
display: block;
    padding: 10px 24px;
    color: var(--akt-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.akt-mobile-menu-list li.current-menu-item > .akt-mobile-item-row > a,
.akt-mobile-menu-list li.current-menu-item > a{
	color: var(--akt-purple);
	font-weight: 700;
}
.akt-mobile-item-row{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.akt-mobile-item-row > a{
	flex: 1;
}
.akt-submenu-toggle{
	width: 44px;
	height: 44px;
	margin-right: 12px;
	border: 1px solid #ccc;
	border-radius: 999px;
	background: #49253c!important;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
}
.akt-submenu-toggle svg{
	width: 12px;
	height: 12px;
	transition: transform .2s ease;
}
.akt-submenu-toggle.is-open svg{
	transform: rotate(180deg);
}
.akt-mobile-menu-list .sub-menu{
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height .25s ease;
	background: #f7f2f5;
}
.akt-mobile-menu-list .sub-menu.is-open{
	max-height: 600px;
}
.akt-mobile-menu-list .sub-menu li{
	border-bottom: 1px solid #ece2e8;font-size: 12px;
    padding: 10px 0;
}
.akt-mobile-menu-list .sub-menu li a{
    padding: 10px 24px 10px 40px;
    font-size: 13px;
    font-weight: 400;
    border-bottom: none;
    text-decoration: none;
}

/* ---------- Responsive breakpoint ---------- */
@media (max-width: 900px){
	.akt-primary-nav{ display: none; }
	.akt-menu-toggle{ display: flex; }
	.akt-contact{ gap: 14px; }
	.akt-contact a{ font-size: 12px; }
	:root{ --akt-header-height: 76px; }
	.akt-logo img{ max-height: 46px; }
}

@media (max-width: 480px){
	.akt-topbar-inner{ height: auto; padding: 8px 16px; flex-direction: row; }
	.akt-contact{ flex-direction: column; gap: 2px; align-items: flex-end; }
}

body.akt-menu-open{
	overflow: hidden;
}