@charset "utf-8";

/*--------------------------------------------------------------
## Gereral stuff - START
--------------------------------------------------------------*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	min-height: 100vh;
	height: 100%;
	display: block;
	background-color: var(--main--theme-page-bgr-color);
	overflow-x: hidden;
}
body {
	min-height: 100vh;
	height: 100%;
	display: block;
	margin: 0;
	overflow-x: hidden;
}

/* overflow controlled per breakpoint — see desktop media query (min-width:1101px) */

body, body.pushable {
	background-color: var(--main--theme-page-bgr-color) !important;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-weight: 600;
	line-height: 1;
	clear: both;
}

i.icon {
	margin: 0;
}

@media (max-width:600px) {
	#wpadminbar {
		position: fixed;
	}

}

/* Override Fomantic UI: body.pushable>.pusher{background:#fff} loads after this file.
   Use !important + high specificity to ensure our override wins. */
body.pushable > .pusher {
	background: var(--main--theme-page-bgr-color) !important;
}

/* Override Fomantic UI: .pushable.pushable.pushable{height:100%} caps body at viewport.
   We need body to grow with content so no white gap appears below. */
.pushable.pushable.pushable.pushable {
	height: auto !important;
	min-height: 100vh;
}

.pusher {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

#page {
	flex: 1;
}

/* On home page, make #page a flex column so main fills it fully — no gap below */
body.home #page {
	display: flex;
	flex-direction: column;
}
body.home main.site-main {
	flex: 1;
}

/* Stacked layout: break the flex height chain so columns size to content */
@media (max-width: 1100px) {
	.pusher {
		min-height: auto;
	}
	body.home #page {
		display: block;
	}
	body.home main.site-main {
		min-height: auto !important;
		height: auto !important;
		display: block !important;
	}
}

main.site-main {
	margin: 0 0 0 40px;
	width: calc(100% - 40px);
	height: 100%;
}

body.home main.site-main {
	margin: 0 0 0 40px;
	width: calc(100% - 40px);
	height: auto;
	margin-bottom: 0;
	min-height: 100vh;
	background-color: var(--main--theme-page-bgr-color);
	/* Flex container so article.page can stretch via flex:1 — unbroken chain */
	display: flex;
	flex-direction: column;
}

/* On desktop, paint the teal/grey split directly on main so the background
   always covers the full scrollable height regardless of column heights. */
@media (min-width: 1101px) {
	body.home main.site-main {
		background: linear-gradient(to right,
			var(--main--theme-color) 50%,
			var(--main--theme-page-bgr-color) 50%
		);
	}
}
@media (min-width: 1441px) {
	body.home main.site-main {
		background: linear-gradient(to right,
			var(--main--theme-color) 42%,
			var(--main--theme-page-bgr-color) 42%
		);
	}
}
@media (min-width: 1921px) {
	body.home main.site-main {
		background: linear-gradient(to right,
			var(--main--theme-color) 35%,
			var(--main--theme-page-bgr-color) 35%
		);
	}
}

@media (max-width:1100px) {
	main.site-main, body.home main.site-main {
		margin: 0 0 0 40px;
		width: calc(100% - 40px);
		height: auto;
	}
}

/* Mobile: navbar is horizontal at top, so no left offset needed */
@media (max-width:768px) {
	main.site-main, body.home main.site-main {
		margin: 0;
		width: 100%;
	}
}


/*--------------------------------------------------------------
## Gereral stuff - END
--------------------------------------------------------------*/



/*--------------------------------------------------------------
## Header - START
--------------------------------------------------------------*/

/* Home Page Login Section */
.home-page-login {
	padding: 0;
	background: transparent;
	border: 3px solid rgba(255,255,255,0.3);
	border-radius: 16px;
	backdrop-filter: none;
	margin-bottom: 20px;
	overflow: hidden;
	width: 100%;
	max-width: 400px;
}

.login-card-logo {
	padding: 22px 20px 14px;
	text-align: center;
	background: rgba(255,255,255,0.06);
	border-bottom: 1px solid rgba(255,255,255,0.10);
}

.login-card-logo img {
	height: 48px;
	width: auto;
	object-fit: contain;
	display: inline-block;
}

.home-page-login h5 {
	margin: 0;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255,255,255,0.95);
	line-height: 1.4;
	padding: 12px 20px;
	background: rgba(23, 162, 184, 0.2);
	border-left: 3px solid rgba(255,255,255,0.6);
	border-radius: 0;
}

.home-page-login h5 span {
	font-weight: 500;
}

.home-page-login h5 i {
	margin: 0 !important;
	position: static !important;
	top: auto !important;
	left: auto !important;
	font-size: 14px;
	flex-shrink: 0;
}

.home-page-login > article {
	margin: 0;
	background: #fff;
	border-radius: 0;
	padding: 0;
	overflow: hidden;
}

.home-page-login aside {
	margin-top: 0;
	text-align: center;
}

.home-page-login aside a {
	color: var(--main--theme-color);
	font-size: 13px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.home-page-login aside a:hover {
	color: var(--main--theme-color);
	background: rgba(255,255,255,0.15);
}

/* Home Page Logo */
.home-page-logo {
	margin: 0 0 35px 0;
	text-align: center;
	padding: 20px 0;
}

.home-page-logo img {
	max-width: 100%;
	height: auto;
	max-height: 100px;
	min-height: 70px;
	object-fit: contain;
	display: inline-block;
}

/* Login card — max-width container centred in the column */
.login-card-wrap {
	width: 100%;
	max-width: 420px;
}

@media (max-width: 1368px) {
	.login-card-wrap {
		max-width: 360px;
	}
}

@media (max-width: 992px) {
	.login-card-wrap {
		max-width: 320px;
	}
}

@media (max-width: 768px) {
	.login-card-wrap {
		max-width: 340px;
	}
}

/* ── User Info Panel ─────────────────────────────────────────────────────── */
.logged-in-panel {
	padding: 0;
	background: linear-gradient(145deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.04) 100%);
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,.15);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	margin-bottom: 0;
	overflow: hidden;
	width: 100%;
	max-width: 380px;
	box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

/* Welcome greeting */
.lip-welcome {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	padding: 16px 22px 4px;
	letter-spacing: -.2px;
}

.logged-in-panel .panel-header {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: rgba(255,255,255,0.5);
	margin-bottom: 12px;
	padding: 0 22px;
}

.user-info {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 0 22px 14px;
}

.user-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(255,255,255,.25) 0%, rgba(255,255,255,.10) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(255,255,255,.35);
	box-shadow: 0 0 0 3px rgba(255,255,255,.08);
	flex-shrink: 0;
	color: rgba(255,255,255,.9);
}

.user-avatar svg {
	width: 26px;
	height: 26px;
}

.user-details {
	flex: 1;
	min-width: 0;
}

.user-details .username {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	word-break: break-word;
	line-height: 1.3;
}

.user-details .logout-link {
	display: inline-block;
	margin-top: 6px;
	padding: 4px 10px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 6px;
	color: rgba(255,255,255,.85);
	text-decoration: none;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .5px;
	transition: all .25s ease;
}

.user-details .logout-link:hover {
	background: rgba(255,255,255,.25);
	color: #fff;
}

/* Quick-action buttons inside logged-in panel */
.lip-actions {
	display: flex;
	gap: 0;
	border-top: 1px solid rgba(255,255,255,.10);
}

.lip-action-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 11px 10px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .4px;
	color: #fff;
	text-decoration: none;
	transition: background .2s;
	border-right: 1px solid rgba(255,255,255,.12);
	background: rgba(255,255,255,.06);
}

.lip-action-btn:visited,
.lip-action-btn:link {
	color: #fff;
}

.lip-action-btn:last-child {
	border-right: none;
}

.lip-action-btn:hover {
	background: rgba(255,255,255,.20);
	color: #fff;
}

.lip-action-btn svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

/* Home Services */
.home-services {
	margin-bottom: 25px;
}

.home-services .services-title {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: rgba(255,255,255,0.7);
	margin-bottom: 12px;
}

.services-grid {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.service-link {
	display: block;
	padding: 10px 14px;
	background: rgba(255,255,255,0.1);
	border-radius: 8px;
	color: rgba(255,255,255,0.9);
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.3s ease;
	text-align: center;
}

.service-link:hover {
	background: rgba(255,255,255,0.18);
	color: #fff;
	transform: translateY(-1px);
}

/* Info Section - Right Column */
.info-section {
	margin-bottom: 18px;
}

.info-section h3,
.additional-services-title {
	margin: 0 0 20px 0;
	padding: 0;
	font-size: 24px;
	font-weight: 700;
	color: var(--main--theme-color);
	text-transform: none;
	position: relative;
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.info-section h3::after,
.additional-services-title::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: var(--main--theme-color);
	margin-top: 10px;
}

.additional-services-title {
	margin-top: 28px !important;
	margin-bottom: 4px !important;
}

.calc-subtitle {
	margin: 6px 0 0 0;
	font-size: 13px;
	color: #666;
	line-height: 1.5;
}

.info-text p {
	margin: 0 0 12px 0;
	font-size: 15px;
	line-height: 1.6;
	color: #333;
}

.info-text p {
	margin: 0 0 12px 0;
	font-size: 15px;
	line-height: 1.6;
	color: #333;
}

.info-text p:last-child {
	margin-bottom: 0;
}

/* ── Icon bullet list ───────────────────────────────────────────────────── */
.info-bullets {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.info-bullet {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.info-bullet-icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(0,178,178,.15), rgba(0,178,178,.06));
	border: 1px solid rgba(0,178,178,.18);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--main--theme-color);
	margin-top: 1px;
}

.info-bullet-icon svg {
	width: 20px;
	height: 20px;
}

.info-bullet > div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.info-bullet strong {
	font-size: 14px;
	font-weight: 700;
	color: #222;
}

.info-bullet span {
	font-size: 13px;
	line-height: 1.5;
	color: #555;
}

/* ── Stats strip in left (teal) column ─────────────────────────────────── */
.column--left .home-stats-strip {
	width: 100%;
	box-shadow: none;
	margin-top: 24px;
	border-top: 1px solid rgba(255,255,255,.12);
}
.column--left .home-stats-strip .home-stat {
	background: rgba(255,255,255,.08);
	border-right-color: rgba(255,255,255,.15);
	padding: 16px 8px;
}
.column--left .home-stats-strip .home-stat-num {
	white-space: nowrap;
}

/* ── Stats strip ────────────────────────────────────────────────────────── */
.home-stats-strip {
	display: flex;
	gap: 0;
	margin: 16px 0 0 0;
	border-radius: 0;
	overflow: hidden;
	box-shadow: none;
}

.home-stat {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 16px 12px;
	background: var(--main--theme-color);
	color: #fff;
	text-align: center;
	border-right: 1px solid rgba(255,255,255,.15);
}

.home-stat:last-child {
	border-right: none;
}

.home-stat-num {
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -.5px;
	line-height: 1;
	flex-shrink: 0;
}

.home-stat-plus {
	font-size: 18px;
	font-weight: 700;
}

.home-stat-lbl {
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .5px;
	opacity: .85;
	line-height: 1.3;
	white-space: normal;
	word-break: break-word;
	margin-top: 2px;
}

/* Mid-desktop: scale down left column content to fit narrower column */
@media (min-width: 1101px) and (max-width: 1440px) {
	.home-stat {
		padding: 10px 6px;
	}
	.home-stat-num {
		font-size: 20px;
	}
	.home-stat-plus {
		font-size: 14px;
	}
	.home-stat-lbl {
		font-size: 9.5px;
		letter-spacing: .2px;
	}
	.logged-in-panel {
		max-width: 340px;
	}
	.lip-welcome {
		font-size: 16px;
		padding: 12px 18px 4px;
	}
	.user-info {
		padding: 0 18px 12px;
		gap: 10px;
	}
	.user-avatar {
		width: 42px;
		height: 42px;
	}
	.user-avatar svg {
		width: 22px;
		height: 22px;
	}
	.user-details .username {
		font-size: 13px;
	}
	.lip-action-btn {
		font-size: 10px;
		padding: 10px 6px;
		gap: 5px;
	}
	.lip-action-btn svg {
		width: 14px;
		height: 14px;
	}
	.left-col-badge {
		font-size: 10.5px;
		padding: 4px 9px;
	}
	.home-page-login {
		max-width: 340px;
	}
	.home-page-login h5 {
		font-size: 11.5px;
		padding: 14px 14px;
	}
}

/* Tighter mid-desktop: further reduction */
@media (min-width: 1101px) and (max-width: 1280px) {
	.home-stat-num {
		font-size: 18px;
	}
	.home-stat-lbl {
		font-size: 9px;
	}
	.left-col-badges {
		gap: 5px;
	}
	.left-col-badge {
		font-size: 10px;
		padding: 4px 7px;
	}
	.logged-in-panel {
		max-width: 300px;
	}
	.home-page-login {
		max-width: 300px;
	}
	.lip-welcome {
		font-size: 15px;
	}
	.lip-action-btn {
		font-size: 9.5px;
		padding: 9px 5px;
	}
}

@media (max-width: 600px) {
	.home-stats-strip { flex-wrap: wrap; }
	.home-stat { flex-basis: 50%; flex-direction: column; gap: 4px; text-align: center; border-right: 1px solid rgba(255,255,255,.18); }
	.home-stat:nth-child(2n) { border-right: none; }
	.home-stat:nth-child(2n) { border-right: none; }
	.home-stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.18); }
}

/* ── How it works ───────────────────────────────────────────────────────── */
.how-it-works {
	display: flex;
	align-items: flex-start;
	gap: 0;
	margin-top: 4px;
}

.hiw-step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	padding: 4px 8px;
}

.hiw-num {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--main--theme-color);
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hiw-body {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.hiw-body strong {
	font-size: 13px;
	font-weight: 700;
	color: #222;
}

.hiw-body span {
	font-size: 12px;
	line-height: 1.45;
	color: #666;
}

.hiw-arrow {
	align-self: center;
	font-size: 20px;
	color: var(--main--theme-color);
	opacity: .5;
	flex-shrink: 0;
	padding: 0 2px;
	margin-top: -6px;
}

/* Compact 'How it works' tip below calculator — styled as mini-cards */
.how-it-works.hiw-tip {
	margin-top: 20px;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	gap: 10px;
	align-items: stretch;
}

.hiw-tip .hiw-step {
	flex: 1;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	text-align: left;
	gap: 10px;
	padding: 12px 14px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 1px 6px rgba(0,0,0,.06);
	border: 1px solid rgba(0,178,178,.10);
}

.hiw-tip .hiw-num {
	width: 22px;
	height: 22px;
	font-size: 11px;
	flex-shrink: 0;
	margin-top: 1px;
}

.hiw-tip .hiw-body {
	gap: 2px;
}

.hiw-tip .hiw-body strong {
	font-size: 12px;
}

.hiw-tip .hiw-body span {
	font-size: 11px;
	color: #777;
}

.hiw-tip .hiw-arrow {
	display: none;
}

.hiw-tip .hiw-step + .hiw-step {
	border-left: 1px solid rgba(0,178,178,.15);
}

@media (max-width: 600px) {
	.how-it-works { flex-direction: column; align-items: stretch; }
	.hiw-arrow { transform: rotate(90deg); text-align: center; }
	.hiw-step { flex-direction: row; text-align: left; }
}

/* Modern Login Form Styling */
.login-form-section {
	margin: 0;
}

.login-form-section .alog-login {
	background: #fff;
	border: none;
	border-radius: 0;
	padding: 25px;
	box-shadow: none;
}

.login-form-section .alog-login .field {
	margin-bottom: 16px;
}

.login-form-section .alog-login .field:last-of-type {
	margin-bottom: 20px;
}

.login-input {
	padding: 12px 15px !important;
	border: 1px solid #e0e0e0 !important;
	border-radius: 8px !important;
	font-size: 14px !important;
	transition: all 0.3s ease !important;
}

.login-input:focus {
	border-color: var(--main--theme-color) !important;
	box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1) !important;
}

.alog-login .forgot-password {
	display: inline-block;
	margin-top: 8px;
	color: var(--main--theme-color);
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}

.alog-login .forgot-password:hover {
	text-decoration: underline;
	color: #138496;
}

.alog-login .ui.button,
.alog-login .ui.button.teal {
	padding: 14px 20px !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	border-radius: 8px !important;
	transition: all 0.3s ease !important;
}

.alog-login .ui.button.teal:hover {
	background-color: #138496 !important;
	box-shadow: 0 4px 12px rgba(19, 132, 150, 0.3) !important;
}

/* Modernized Login Links */
.home-page-login .login-links {
	margin-top: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 0 20px 20px 20px;
	background: #fff;
}

.request-account-link {
	display: block;
	padding: 14px 20px;
	background: var(--main--theme-color);
	color: #fff !important;
	text-decoration: none;
	border-radius: 8px;
	font-size: 14px !important;
	font-weight: 600 !important;
	font-style: normal !important;
	text-align: center;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px !important;
	box-shadow: 0 3px 12px rgba(23, 162, 184, 0.25);
	border: none;
}

.request-account-link:hover {
	background-color: #138496 !important;
	color: #fff !important;
	box-shadow: 0 4px 12px rgba(19, 132, 150, 0.3) !important;
}

/* sidebar */
.ui.sidebar.visible.sidebar--page, .ui.sidebar.sidebar--page {
	min-width: 300px;
	border: none;
	display: flex;
	flex-direction: column;
    flex: 1;
	padding-top: 50px;
	background-color: #017070 !important;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Mobile: sidebar expands to full screen, overlays content without pushing */
@media (max-width: 768px) {
	/* Full-viewport width, above mobile header (CSS fallback — JS onShow also enforces this) */
	.ui.left.sidebar.sidebar--page {
		width: 100vw !important;
		max-width: 100vw !important;
		min-width: 0 !important;
		z-index: 1001 !important;
	}
	/* Smooth slide animation — applies during both open and close */
	.ui.left.sidebar.sidebar--page,
	.animating.ui.left.sidebar.sidebar--page {
		transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
	}
	/* Clip any residual horizontal overflow so no scrollbar appears.
	   Must target both html and body — setting only body is unreliable across browsers. */
	html, body.pushable {
		overflow-x: hidden !important;
	}
}

/* User Profile Section in Sidebar */
.sidebar--page > div[style*="order:1"] {
	display: flex !important;
	flex-direction: column !important;
	order: 1;
	flex-shrink: 0;
	z-index: 10;
}

.sidebar--page > i {
	position: absolute;
	top: 0;
	left: 0;
	/* Oversized padding creates a 44px+ tap target without changing the icon's visual position */
	padding: 20px 20px 20px 25px;
	margin: 0;
	cursor: pointer;
	z-index: 100;
	/* Eliminates the 300ms synthetic-click delay on mobile without needing any
	   touch event JS — the browser fires click immediately on finger-lift */
	touch-action: manipulation;
}

.ui.sidebar.visible.sidebar--page .widget, .ui.sidebar.sidebar--page .widget {
	padding: 0 50px 0 25px;
	width: 100%;
	flex: 1;
	background-color: #017070;
	color: #fff;
	order: 2;
}


.sidebar--page .menu li {
	position: relative;
}

.sidebar--page .menu li:before {
	display: block;
	position: absolute;
	top: 8px;
	left: -15px;
	content: '';
	width: 7px;
	height: 7px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	background-color: #fff;
	opacity: 0;
	vertical-align: top;
	-webkit-transition: opacity .1s;
	-moz-transition: opacity .1s;
	-ms-transition: opacity .1s;
	-o-transition: opacity .1s;
	transition: opacity .1s;
}
.sidebar--page .menu li.current-menu-item:before,
.sidebar--page .menu li:hover:before {
	opacity: 1;
}


.sidebar--page .menu li.separator a {
	display: none;
}


.sidebar--page .menu li.lang-item a img,
.sidebar--page .menu li.lang-item a span {
	display: inline-block;
}

.sidebar--page .menu li.lang-item a span {
	margin-left: 10px !important;
}


.sidebar--page .menu li a {
	display: block;
	margin: 17px 0;
	font-weight: 700;
	font-size: 17px;
	line-height: 1.4;
	text-transform: uppercase;
	color: #fff;
}

.sidebar--page .menu li a:hover {
	text-shadow: 0 0 0 #fff;
}


/* side-menu */
.side-menu {
	z-index: 1000;
	display: inline-block;
	position: fixed;
	top: 0;
	width: 100%;
	max-width: 40px;
	height: 100%;
	min-height: 768px;
	background-color: #017070;
	color: #fff;
	vertical-align: top;
	transition: background-color 0.3s ease;
}

@media (max-width:768px) {
	.side-menu {
		max-width: calc(25px + 2*1rem);
		height: auto;
		min-height: initial;
		background-color: var(--main--theme-header-bgr-color);
		color: var(--main--theme-color);
	}
}

.side-menu--left {
	left: 0;
}

.side-menu--right {
	right: 0;
}

@media (max-width:768px) {
	.side-menu--left article {
		margin-left: 1rem;
		padding-left: 1rem;
	}
	.side-menu--right article {
		margin-right: 1rem;
		padding-right: 1rem;
	}
}

/* Hamburger icon — smooth morph animation */
.side-menu article i {
	display: block;
	margin: 15px auto 0;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.side-menu article i:hover {
	opacity: 0.75;
	transform: scale(1.15);
}

@media (max-width:768px) {
	.side-menu article i {
		margin: 25px 0 24px 0;
		max-width: 25px;
	}
}

/* header */
.site-header {
	z-index: 1000;
	display: none;
	position: fixed;
	top: 0;
	left: calc(25px + 2*1rem);
	width: calc(100% - 2*25px - 2*2*1rem);
	background-color: var(--main--theme-header-bgr-color);
}

body.home .site-header {
	width: calc(100% - 1*25px - 1*2*1rem);
}

@media (max-width:768px) {
	.site-header {
		display: block;
	}
	/* Home page: modern teal header bar with logo centred — no duplicate since
	   we hide the login-card-logo from the left column panel at this breakpoint */
	body.home .site-header {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		background-color: var(--main--theme-color) !important;
		left: 0 !important;
		width: 100% !important;
		height: 72px !important;
		box-shadow: 0 2px 12px rgba(0,0,0,.18);
	}
	body.home .site-branding {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		margin: 0 !important;
		position: static !important;
		left: auto !important;
		max-width: 180px !important;
	}
	body.home .site-branding img {
		height: 38px !important;
		width: auto !important;
		filter: brightness(0) invert(1) !important;
	}
	/* Side-menu hamburger: fixed, transparent, above header */
	body.home .side-menu.side-menu--left {
		background-color: transparent !important;
		position: fixed !important;
		top: 0 !important;
		height: 72px !important;
		min-height: 0 !important;
		z-index: 1001;
		display: flex !important;
		align-items: center !important;
	}
	body.home .side-menu.side-menu--left article {
		margin: 0 !important;
		padding: 0 0 0 14px !important;
	}
	body.home .side-menu.side-menu--left article i {
		margin: 0 !important;
		color: rgba(255,255,255,.9) !important;
	}
	/* Hide duplicate logo in the panel card on mobile */
	body.home .login-card-logo {
		display: none !important;
	}
	/* Push page content below the fixed 72px header — teal bg so no white gap */
	body.home main.site-main {
		padding-top: 72px !important;
		background-color: var(--main--theme-color) !important;
	}
	/* Ensure user-info panel elements are visible at mobile */
	body.home .user-info {
		display: flex !important;
		align-items: center !important;
		gap: 10px !important;
		padding: 0 18px 12px !important;
	}
	body.home .user-details {
		display: block !important;
		flex: 1 !important;
		min-width: 0 !important;
	}
	body.home .user-details .username {
		display: block !important;
		color: #fff !important;
	}
	body.home .user-details .logout-link {
		display: inline-block !important;
		color: rgba(255,255,255,.85) !important;
	}
	/* Right column restores its own lighter background */
	body.home .home-page-grid .column--right {
		background-color: var(--main--theme-page-bgr-color) !important;
	}
}

/* site-branding */
.site-branding {
	display: block;
	position: relative;
	margin: 14px auto;
	width: 100%;
	max-width: 120px;
}

body.home .site-branding {
	left: calc(-1*(25px + 2*1rem)/2);
}

.site-branding a {
	display: block;
}

/*--------------------------------------------------------------
## Header - END
--------------------------------------------------------------*/



/*--------------------------------------------------------------
## HOME PAGE - START
--------------------------------------------------------------*/
.home-page {
	margin: 0;
	width: 100%;
}

.home-page-grid {
	margin: 0 !important;
	height: 100%;
	min-height: 100vh;
	padding: 0 !important;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0 !important;
	column-gap: 0 !important;
	width: 100% !important;
	box-sizing: border-box;
}

@media (max-width: 1100px) {
	.home-page-grid {
		display: block !important;
		height: auto !important;
		min-height: 0 !important;
	}
}

/* Paint teal on left half via ::before that tracks exact column width.
   This avoids gradient-vs-column misalignment from scrollbar offsets. */
.home-front-grid::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 50%;
	background: var(--main--theme-color);
	z-index: 0;
	pointer-events: none;
}
.home-front-grid {
	position: relative;
}

@media (max-width:1100px) {
	.home-page-grid {
		height: auto !important;
		min-height: auto !important;
	}
	.home-front-grid::before {
		display: none;
	}
	body.home main.site-main {
		background: none;
		min-height: auto;
	}
}
/* Desktop only: full-viewport columns */
@media (min-width: 1101px) {
	.home-page-grid .column--left,
	.home-page-grid .column--right {
		min-height: 100vh;
	}
}

.home-page-grid .wp-block-column {
	margin: 0 !important;
	padding: 0 !important;
	flex: 1;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}

/* Contain the absolutely-positioned cargo figure — prevents extra scroll */
.home-page-grid .column--left {
	position: relative;
	overflow: hidden;
}
/* Desktop: left column stretches to full page height for unbroken teal bg */
@media (min-width: 1101px) {
	.home-page-grid .column--left {
		overflow: visible;
	}
}

/* Stacked: remove BFC/overflow and reset flex on columns */
@media (max-width: 1100px) {
	.home-page-grid .column--left {
		overflow: visible !important;
	}
	.home-page-grid .wp-block-column {
		flex: none !important;
	}
}

/* Subtle radial gradient overlay for depth + dot pattern */
.home-page-grid .column--left::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle, rgba(255,255,255,.09) 1px, transparent 1px),
		radial-gradient(ellipse at 30% 20%, rgba(255,255,255,.08) 0%, transparent 60%),
		radial-gradient(ellipse at 80% 80%, rgba(0,0,0,.10) 0%, transparent 50%);
	background-size: 28px 28px, 100% 100%, 100% 100%;
	pointer-events: none;
	z-index: 0;
}

.home-page-grid .column--left > article {
	z-index: 1;
}

/* Left column: tagline */
.left-col-tagline {
	text-align: center;
	margin-bottom: 18px;
	max-width: 380px;
	width: 100%;
}

.left-col-tagline p {
	font-size: 12px;
	font-weight: 700;
	color: rgba(255,255,255,.6);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 0;
}

/* Left column: trust badges */
.left-col-badges {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 20px;
	flex-wrap: wrap;
	max-width: 380px;
	width: 100%;
}

.left-col-badge {
	display: flex;
	align-items: center;
	gap: 5px;
	background: rgba(255,255,255,.10);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 20px;
	padding: 5px 12px;
	font-size: 11.5px;
	font-weight: 600;
	color: rgba(255,255,255,.80);
	white-space: nowrap;
	letter-spacing: .3px;
}

.left-col-badge svg {
	width: 13px;
	height: 13px;
	flex-shrink: 0;
}

@media (max-width: 480px) {
	.left-col-tagline {
		display: none;
	}
	.left-col-badges {
		margin-top: 12px;
	}
}

/* Stack columns on tablets and below */
@media (max-width:1100px) {
	/* Kill flex layout — block children can't be stretched */
	.home-page-grid.home-page-grid {
		display: block !important;
		height: auto !important;
		min-height: 0 !important;
	}
	.home-page-grid .wp-block-column.wp-block-column {
		display: block !important;
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		flex: none !important;
		padding: 0 !important;
		margin: 0 !important;
		float: none !important;
	}
	.home-page-grid .column--left > article {
		display: flex !important;
		flex-direction: column !important;
		height: auto !important;
		min-height: 0 !important;
		padding: 40px 28px 0 !important;
	}

	/* Let stacked columns size to their content, not split the viewport */
	.home .entry-content {
		min-height: auto;
		display: block;
	}
	.home-page-grid {
		align-content: flex-start;
	}

	/* Allow document to grow beyond viewport height for native device scroll */
	html, body {
		height: auto;
	}

	/* Override Semantic UI sidebar JS which injects overflow:hidden on .pusher */
	.pusher {
		overflow: visible !important;
		height: auto !important;
	}

	/* Re-enable page scroll on home page */
	body.home {
		overflow-y: auto;
	}
	/* Hide horizontal scroll on all pages at tablet and below.
	   Must target both html and body — setting only body is unreliable across browsers. */
	html, body {
		overflow-x: hidden;
	}

	/* Right column: normal document scroll, no viewport cap */
	body.home .home-page-grid .column--right > article {
		overflow-y: visible;
		overflow-x: visible;
		max-height: none;
	}

	/* Right column: tidy padding for stacked layout */
	.home-page-grid .column--right > article {
		padding: 32px 20px 40px;
	}

	/* Clamp wide elements so nothing overflows horizontally */
	.home-stats-strip,
	.info-bullets,
	.how-it-works.hiw-tip,
	#alog-pub-calc {
		max-width: 100%;
	}

	/* Entire parent chain: kill height constraints */
	body.home main.site-main,
	body.home .page,
	body.home .entry-content,
	body.home .home-page,
	body.home .home-front-page {
		height: auto !important;
		min-height: 0 !important;
		display: block !important;
		flex: none !important;
	}
}

.home-page-grid .column--left {
	background-color: var(--main--theme-color);
	color: #fff;
}

.home-page-grid .column--right {
	background-color: var(--main--theme-page-bgr-color);
	color: var(--main--theme-color);
}

/* ── Front page specific overrides ─────────────────────────────────────── */
/* Dedicated class so main page styling doesn't leak to other pages */
.home-front-grid .column--right {
	background-color: var(--main--theme-page-bgr-color);
}
.home-front-grid .column--right > article {
	padding-bottom: 40px;
	margin-bottom: 0;
}
/* Ensure no gap below the grid — footer/body don't add extra space */
.home-front-page {
	margin-bottom: 0 !important;
}
body.home .site-footer {
	display: none;
}

/* Mobile: let right column size to content — no forced viewport height */
@media (max-width:768px) {
	.home-page-grid .column--right {
		min-height: auto;
	}
}

/* Desktop only: sticky left column + body scroll → scrollbar is the browser's
   native one, always flush with the true viewport right edge */
@media (min-width:1101px) {
	/* Body scrolls naturally — scrollbar at true viewport edge */
	body.home {
		overflow-y: auto;
	}
	.pusher {
		overflow: visible !important;
	}

	/* Left column stretches to match right column height (flex stretch)
	   so the teal background covers the full page.
	   The article INSIDE becomes sticky instead. */
	body.home .home-page-grid .column--left {
		position: relative;
		height: auto;
		overflow: visible;
		align-self: stretch;
		display: flex;
		flex-direction: column;
	}

	/* Article inside left column is sticky — content stays in viewport */
	body.home .home-page-grid .column--left > article {
		position: sticky;
		top: 0;
		height: 100vh;
		overflow-y: auto;
		overflow-x: hidden;
		scrollbar-width: none;
	}
	body.home .home-page-grid .column--left > article::-webkit-scrollbar {
		display: none;
	}

	/* Right column: natural flow, no height cap */
	body.home .home-page-grid .column--right,
	body.home .home-page-grid .column--right > article {
		overflow: visible;
		max-height: none;
	}

	/* Exact 50/50 split within the flex parent — percentages avoid scrollbar-offset issues */
	.home-page-grid .column--left {
		flex: 0 0 50% !important;
		max-width: 50% !important;
	}
	.home-page-grid .column--right {
		flex: 0 0 50% !important;
		max-width: 50% !important;
	}

	/* Reduce right column padding to give calculator maximum room */
	.home-front-grid .column--right > article {
		padding: 20px 8px 30px 10px !important;
	}
}

/* Wider calculator column on large screens (1440p+) */
@media (min-width:1441px) {
	.home-front-grid .column--left {
		flex: 0 0 42% !important;
		max-width: 42% !important;
	}
	.home-front-grid .column--right {
		flex: 0 0 58% !important;
		max-width: 58% !important;
	}
	.home-front-grid::before {
		width: 42%;
	}
}
@media (min-width:1921px) {
	.home-front-grid .column--left {
		flex: 0 0 35% !important;
		max-width: 35% !important;
	}
	.home-front-grid .column--right {
		flex: 0 0 65% !important;
		max-width: 65% !important;
	}
	.home-front-grid::before {
		width: 35%;
	}
}

.home-page-grid .wp-block-column > article {
	padding: 50px 25px 25px 25px;
}

@media (max-width:1600px) {
	.home-page-grid .wp-block-column > article {
		padding-top: 35px;
	}

}

@media (max-width:1200px) {
	.home-page-grid .wp-block-column > article {
		padding-top: 25px;
	}

}

@media (max-width:768px) {
	.home-page-grid .wp-block-column > article {
		padding: 0;
		text-align: center;
	}

}

/* left column article */
.home-page-grid .column--left > article {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	box-sizing: border-box;
	padding: 48px 36px;
	position: relative;
}

/* Stacked: article must not use grid or force height */
@media (max-width: 1100px) {
	.home-page-grid .column--left > article {
		position: static !important;
		display: flex !important;
		flex-direction: column !important;
		grid-template-rows: none !important;
		height: auto !important;
		min-height: 0 !important;
		overflow: visible !important;
		padding: 36px 28px 0 !important;
	}
	/* left-col-inner must not stretch — only size to its content */
	.home-page-grid .column--left > article > .left-col-inner {
		flex: 0 0 auto !important;
		align-self: center !important;
		width: 100% !important;
	}
	/* stats strip: stay after content, no auto margin push */
	.home-page-grid .column--left > article > .home-stats-strip {
		flex: 0 0 auto !important;
		margin-top: 20px !important;
		width: 100% !important;
	}
}
/* Mobile: kill top padding on left article — must come AFTER the 1100px rule above */
@media (max-width: 768px) {
	.home-page-grid .column--left > article {
		padding: 12px 16px 0 !important;
	}
	.left-col-tagline {
		display: none !important;
	}
}

/* Hide the decorative cargo image — it competes with the panel for space */
.home-page .column--left figure { display: none !important; }

/* Desktop: CSS Grid on the article.
   Row 1 (1fr): .left-col-inner — vertically centered
   Row 2 (auto): .home-stats-strip — pinned to bottom */
@media (min-width: 1101px) {
	.home-page-grid .column--left > article {
		display: grid;
		height: 100vh;
		grid-template-rows: 1fr auto;
		padding: 0 36px;
		grid-template-columns: 1fr;
	}
	.home-page-grid .column--left > article > .left-col-inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
		padding: 32px 0;
	}
	.home-page-grid .column--left > article > .home-stats-strip {
		margin-top: 0;
		border-radius: 0;
		width: 100%;
	}
}

/* Narrower desktops: tighten left column padding */
@media (max-width: 1440px) and (min-width: 1101px) {
	.home-page-grid .column--left > article {
		padding-left: 24px;
		padding-right: 24px;
	}
}

/* Tablet padding on left article — handled above in stacking block */

/* Mobile: tighten left column padding and cap panel widths */
@media (max-width: 480px) {
	.home-page-grid .column--left > article {
		padding: 28px 16px 0;
	}
	.logged-in-panel {
		max-width: 100%;
	}
	.lip-welcome {
		font-size: 15px;
		padding: 12px 16px 4px;
	}
	.lip-action-btn {
		font-size: 10px;
		padding: 9px 6px;
		gap: 4px;
	}
	.lip-action-btn svg {
		width: 13px;
		height: 13px;
	}
	.home-page-login {
		max-width: 100%;
	}
}

/* Small phone: stats in 2×2 grid already handled at 600px */


.home-page-grid .column--left > article h2 {
	margin-top: 45px;
	max-width: 450px;
	font-weight: 700;
	font-size: 34px;
	line-height: 1.3;
}

@media (max-width:1600px) {
	.home-page-grid .column--left > article h2 {
		margin-top: 40px;
		font-size: 32px;
	}

}

@media (max-width:1200px) {
	.home-page-grid .column--left > article h2 {
		margin-top: 35px;
		font-size: 30px;
	}

}

@media (max-width:992px) {
	.home-page-grid .column--left > article h2 {
		margin-top: 30px;
		font-size: 28px;
	}

}

@media (max-width:768px) {
	.home-page-grid .column--left > article h2 {
		margin: 0 auto;
		font-size: 24px;
	}

}

@media (max-width:480px) {
	.home-page-grid .column--left > article h2 {
		font-size: 20px;
	}

}

/* left column - form shortcode — responsive max-widths */
@media (max-width: 1600px) {
	.home-page-login {
		max-width: 360px;
	}
}
@media (max-width: 1100px) {
	/* Stacked: let login card breathe at a comfortable width */
	.home-page-login {
		max-width: 420px;
	}
}
@media (max-width: 768px) {
	.home-page-login {
		max-width: 380px;
	}
}

.home-page-login h6 {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 21px;
	line-height: 1.3;
}
@media (max-width: 480px) {
	.home-page-login h6 {
		margin-bottom: 15px;
		font-size: 19px;
	}
}

.home-page-login h6 i {
	float: right;
}

/* Login card h5 override — ensure consistent look within left-column card */
.home-page-login h5 {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	padding: 12px 20px;
	width: 100%;
	background: rgba(23, 162, 184, 0.2);
	border-left: 3px solid rgba(255,255,255,0.6);
	border-radius: 0;
	font-weight: 500;
	font-size: 13px;
	line-height: 1.4;
	color: rgba(255,255,255,0.95);
	box-sizing: border-box;
}

.home-page-login h5 span {
	font-weight: 500;
}

.home-page-login h5 i {
	margin: 0 !important;
	position: static !important;
	top: auto !important;
	left: auto !important;
	font-size: 14px;
	flex-shrink: 0;
	color: rgba(255,255,255,.8);
}

/* Login form body */
.home-page-login > article {
	display: block;
	padding: 20px 18px;
	width: 100%;
	border-top: none;
	background-color: #fff;
	box-sizing: border-box;
}


.home-page-login > article a.ui.button,
.home-page-login form.ui.form button.ui {
	margin-top: 5px;
	width: 100%;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	border-radius: 30px;
	border: none;
	background-color: var(--main--theme-color);
	font-family: 'Ubuntu', sans-serif;
	font-weight: 400;
	font-size: 17px;
	line-height: 1.65;
	letter-spacing: 0.68px;
	text-transform: uppercase;
	color: #fff;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.home-page-login form.ui.form button.ui {
	display: inline-block;
	margin-top: 10px;
	padding: .352em;	
	vertical-align: top;
}
.home-page-login > article a.ui.button:hover,
.home-page-login > article a.ui.button:active,
.home-page-login > article a.ui.button:link,
.home-page-login > article a.ui.button:visited,
.home-page-login > article a.ui.button:focus,
.home-page-login form.ui.form button.ui:hover,
.home-page-login form.ui.form button.ui:active,
.home-page-login form.ui.form button.ui:link,
.home-page-login form.ui.form button.ui:visited,
.home-page-login form.ui.form button.ui:focus {
	background-color: var(--main--theme-color);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
	border: none;
	color: #fff;
}
.home-page-login > article a.ui.button:hover,
.home-page-login form.ui.form button.ui:hover {
	text-shadow: 0 0 0 #fff !important;
}


/* Login links below form */
.home-page-login > aside {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0;
	width: 100%;
	background-color: #fff;
	box-sizing: border-box;
	overflow: hidden;
}

.home-page-login > aside a {
	display: block;
	padding: 12px 18px;
	font-style: normal;
	font-weight: 500;
	font-size: 13px;
	line-height: 1.3;
	text-align: center;
	color: var(--main--theme-color);
	text-decoration: none;
	border-top: 1px solid rgba(0,0,0,.06);
	transition: background .2s;
}

.home-page-login > aside a:hover {
	background: rgba(0,178,178,.06);
	color: var(--main--theme-color);
	text-shadow: none;
}

.home-page-login > aside a:after {
	display: none;
}

/* Cargo figure: hidden via article-level rule — legacy responsive blocks removed */


/* right column — extra left padding in desktop side-by-side layout only */
@media (min-width: 1101px) {
	.home-page-grid:not(.home-front-grid) .column--right > article {
		padding-left: 60px;
	}
}

@media (max-width:992px) {
	.home-page-grid .column--right > article {
		padding-left: 25px;
	}

}

@media (max-width:768px) {
	.home-page-grid .column--right > article {
		padding-left: 0;
	}

}

@media (max-width:768px) {
	.home-page-grid .column--right > article figure {
		display: table;
		margin: 0 auto;
	}

}

.home-page-grid .column--right > article h3 {
	display: block;
	margin-top: 35px;
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 32px;
	line-height: 1.3;
}

@media (max-width:1600px) {
	.home-page-grid .column--right > article h3 {
		margin-top: 28px;
		font-size: 30px;
	}

}

@media (max-width:1200px) {
	.home-page-grid .column--right > article h3 {
		margin-top: 105px;
		font-size: 28px;
	}

}

@media (max-width:992px) {
	.home-page-grid .column--right > article h3 {
		margin-top: 85px;
		font-size: 26px;
	}

}

@media (max-width:768px) {
	.home-page-grid .column--right > article h3 {
		margin-top: 45px;
		font-size: 22px;
	}

}

@media (max-width:480px) {
	.home-page-grid .column--right > article h3 {
		margin-top: 35px;
		font-size: 18px;
	}

}

.home-page-grid .column--right > article h3:after {
	display: block;
	margin-top: 10px;
	content: '';
	width: 100%;
	height: 2px;
	background-color: var(--main--theme-color);
}


.home-page-grid .column--right > article .wp-block-buttons {
	display: block;
}
@media (max-width:768px) {
	.home-page-grid .column--right > article .wp-block-buttons {
		display: table;
		margin: 0 auto;
	}

}

.home-page-grid .column--right > article .wp-block-buttons .wp-block-button {
	display: block;
	margin: 0 0 35px;
	max-width: 350px;
}

@media (max-width:1200px) {
	.home-page-grid .column--right > article .wp-block-buttons .wp-block-button {
		margin-bottom: 30px;
	}

}

@media (max-width:768px) {
	.home-page-grid .column--right > article .wp-block-buttons .wp-block-button {
		margin-bottom: 15px;
	}

}

.home-page-grid .column--right > article .wp-block-buttons .wp-block-button:last-of-type {
	margin-bottom: 0;
}

.home-page-grid .column--right > article .wp-block-buttons a.ui.button {
	margin: 0;
	padding: 1em 40px;
	word-wrap: break-word;
	width: 100%;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	border-radius: 30px;
	border: 3px solid #fff;
	font-weight: 700;
	font-size: 17px;
	line-height: 1.55;
	text-transform: uppercase;
	word-break: keep-all;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
@media (max-width: 1919px) {
	.home-page-grid .column--right > article .wp-block-buttons a.ui.button {
		padding: 1em 40px;
	}
}
@media (max-width: 1368px) {
	.home-page-grid .column--right > article .wp-block-buttons a.ui.button {
		padding: 1em 35px;
	}
}
@media (max-width: 1200px) {
	.home-page-grid .column--right > article .wp-block-buttons a.ui.button {
		padding: 1em 30px;
	}
}
@media (max-width: 992px) {
	.home-page-grid .column--right > article .wp-block-buttons a.ui.button {
		padding: 1em 25px;
	}
}
@media (max-width: 768px) {
	.home-page-grid .column--right > article .wp-block-buttons a.ui.button {
		font-size: 15px;
	}
}
@media (max-width: 480px) {
	.home-page-grid .column--right > article .wp-block-buttons a.ui.button {
		font-size: 14px;
	}
}

.home-page-grid .column--right > article .wp-block-buttons a.ui.button:hover,
.home-page-grid .column--right > article .wp-block-buttons a.ui.button:active,
.home-page-grid .column--right > article .wp-block-buttons a.ui.button:link,
.home-page-grid .column--right > article .wp-block-buttons a.ui.button:visited,
.home-page-grid .column--right > article .wp-block-buttons a.ui.button:focus {
	-webkit-box-shadow: 0 3px 6px #ccc;
	-moz-box-shadow: 0 3px 6px #ccc;
	-ms-box-shadow: 0 3px 6px #ccc;
	-o-box-shadow: 0 3px 6px #ccc;
	box-shadow: 0 3px 6px #ccc;
	background-color: #fff;
	color: var(--main--theme-text-color);
}

.home-page-grid .column--right > article .wp-block-buttons a.ui.button:hover {
	border-color: var(--main--theme-color);
	text-shadow: 0 0 0 var(--main--theme-text-color) !important;
}

/* lang */
.home-page-grid .column--right > article > div.ui.segment a img,
.home-page-grid .column--right > article > div.ui.segment a span {
	display: inline-block;
}

.home-page-grid .column--right > article > div.ui.segment a span {
	margin-left: 10px;
	font-weight: 700;
	font-size: 15px;
	text-transform: uppercase;
	color: var(--main--theme-row-color);
}
.home-page-grid .column--right > article > div.ui.segment a:hover span {
    text-shadow: 0 0 0 var(--main--theme-row-color);
}

/* ── Right column extra left padding: reduce on mid-size screens ────────── */
@media (min-width: 1101px) and (max-width: 1440px) {
	.home-page-grid .column--right > article {
		padding-left: 40px;
	}
}

/* ── Height-based responsive: 1080p (~1000px viewport height) ────────────── */
@media (max-height: 1000px) {
	.home-page-grid .wp-block-column > article {
		padding-top: 20px;
	}
	.home-page-grid .column--right > article h3 {
		margin-top: 14px;
	}
	.info-section {
		margin-bottom: 12px;
	}
	.info-bullets {
		gap: 10px;
	}
	.home-stats-strip {
		margin-top: 12px;
	}
	.home-stat {
		padding: 12px 8px;
	}
	.home-stat-num {
		font-size: 22px;
	}
	.home-stat-plus {
		font-size: 15px;
	}
	.additional-services-title {
		margin-top: 18px !important;
	}
	.calc-subtitle {
		margin-top: 4px;
	}
	.how-it-works.hiw-tip {
		margin-top: 12px;
		gap: 8px;
	}
}

/* ── Height-based responsive: 1366×768 / very short screens ─────────────── */
@media (max-height: 780px) {
	.home-page-grid .wp-block-column > article {
		padding-top: 12px;
	}
	.home-page-grid .column--right > article h3 {
		margin-top: 12px;
	}
	.info-section {
		margin-bottom: 8px;
	}
	.info-bullets {
		gap: 7px;
	}
	.info-bullet-icon {
		width: 30px;
		height: 30px;
	}
	.info-bullet-icon svg {
		width: 15px;
		height: 15px;
	}
	.info-section h3,
	.additional-services-title {
		font-size: 20px;
	}
	.home-stats-strip {
		margin-top: 8px;
	}
	.home-stat {
		padding: 8px 6px;
	}
	.home-stat-num {
		font-size: 18px;
	}
	.home-stat-plus {
		font-size: 12px;
	}
	.home-stat-lbl {
		font-size: 10px;
		margin-top: 3px;
	}
	.additional-services-title {
		margin-top: 12px !important;
	}
	.calc-subtitle {
		font-size: 12px;
		margin-top: 3px;
	}
	.how-it-works.hiw-tip {
		margin-top: 8px;
		gap: 6px;
	}
	.hiw-tip .hiw-num {
		width: 22px;
		height: 22px;
		font-size: 10px;
	}
	.hiw-tip .hiw-body strong {
		font-size: 11px;
	}
	.hiw-tip .hiw-body span {
		font-size: 10px;
	}
}

/* ── Left panel: height-responsive scale-downs (desktop only) ───────────── */

/* Gentle: most monitors ≤ 900px viewport height */
@media (min-width: 1101px) and (max-height: 900px) {
	.home-page-grid .column--left > article {
		padding-top: 18px;
		padding-bottom: 18px;
	}
	.login-card-logo {
		padding: 14px 20px 10px;
	}
	.login-card-logo img {
		height: 38px;
	}
	.lip-welcome {
		font-size: 16px;
		padding: 10px 16px 4px;
	}
	.logged-in-panel {
		margin-bottom: 14px;
	}
	.left-col-badges {
		margin-top: 10px;
	}
	.column--left .home-stats-strip {
		margin-top: 10px;
	}
}

/* Compact: 768 p laptops — ~680–780 px viewport height */
@media (min-width: 1101px) and (max-height: 780px) {
	.home-page-grid .column--left > article {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.logged-in-panel {
		margin-bottom: 10px;
	}
	.login-card-logo {
		padding: 10px 16px 8px;
	}
	.login-card-logo img {
		height: 30px;
	}
	.lip-welcome {
		font-size: 14px;
		padding: 8px 14px 4px;
	}
	.user-info {
		padding: 0 14px 8px;
		gap: 8px;
	}
	.user-avatar {
		width: 36px;
		height: 36px;
	}
	.user-avatar svg {
		width: 18px;
		height: 18px;
	}
	.user-details .username {
		font-size: 13px;
	}
	.user-details .logout-link {
		margin-top: 4px;
		padding: 3px 8px;
		font-size: 9px;
	}
	.lip-action-btn {
		padding: 8px 6px;
		font-size: 10px;
	}
	.left-col-badges {
		margin-top: 8px;
	}
	.left-col-badge {
		padding: 3px 8px;
		font-size: 10px;
	}
	.column--left .home-stats-strip {
		margin-top: 8px;
	}
	/* Login card compact */
	.home-page-login {
		max-width: 320px;
	}
	.home-page-login h5 {
		padding: 8px 14px;
		font-size: 11.5px;
	}
	.home-page-login > article {
		padding: 16px 14px;
	}
}

/* ── Tablet: ensure centre-alignment of subtitle and stats ──────────────── */
@media (max-width: 768px) {
	.calc-subtitle {
		text-align: center;
	}
	.home-stats-strip {
		text-align: center;
	}
}

/* ── Mobile: tighten further ────────────────────────────────────────────── */
@media (max-width: 480px) {
	.info-bullet {
		gap: 10px;
	}
	.info-bullet-icon {
		width: 32px;
		height: 32px;
	}
	.calc-subtitle {
		font-size: 12px;
	}
}

/*--------------------------------------------------------------
## HOME PAGE - END
--------------------------------------------------------------*/



/*--------------------------------------------------------------
## LOGOUT PAGE - START
--------------------------------------------------------------*/
.home .ui.logout {
	padding: 5em 0;
	height: 100%;
	background-color: #fff;
}


.home .ui.logout * {
	color: var(--main--theme-color);
}
/*--------------------------------------------------------------
## LOGOUT PAGE - END
--------------------------------------------------------------*/



/*--------------------------------------------------------------
## FORM PAGES - START
--------------------------------------------------------------*/
.form-page.ui.container {
	margin-top: calc(50px - 1em);
	margin-bottom: calc(50px - 1em);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
	border: none;
	background-color: transparent;
	text-align: center;
}

.form-page.ui.container > figure {
	display: table;
	margin: 0 auto;
}
@media (max-width: 768px) {
	.form-page.ui.container > figure {
		display: none;
	}
}

.form-page.ui.container > h2,
.form-page.ui.container h2 {
	margin-top: 20px;
	font-size: 30px;
	color: var(--main--theme-text-color);
}
@media (max-width: 992px) {
	.form-page.ui.container > h2,
	.form-page.ui.container h2 {
		margin-top: 15px;
		font-size: 28px;
	}
}
@media (max-width: 768px) {
	.form-page.ui.container > h2,
	.form-page.ui.container h2 {
		font-size: 24px;
	}
}
@media (max-width: 480px) {
	.form-page.ui.container > h2,
	.form-page.ui.container h2 {
		font-size: 20px;
	}
}


/* form - Caldera & UI */
.form-page .caldera-grid,
.form-page .ui > section {
	display: block;
	margin: 35px auto;
	padding: 45px 25px 30px;
	width: 100%;
	max-width: 350px;
	-webkit-box-shadow: 0 10px 10px #ccc;
	-moz-box-shadow: 0 10px 10px #ccc;
	-ms-box-shadow: 0 10px 10px #ccc;
	-o-box-shadow: 0 10px 10px #ccc;
	border: 0 10px 10px #ccc;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	-ms-border-radius: 25px;
	-o-border-radius: 25px;
	border-radius: 25px;
	border: 2px solid var(--main--theme-color);
}
.form-page .ui > section {
	margin: 5px auto;
}
@media (max-width: 480px) {
	.form-page .caldera-grid,
	.form-page .ui > section {
		padding: 40px 20px 25px;
	}
}

.form-page .caldera-grid form > .row {
	display: inline-block;
	width: 100%;
	vertical-align: top;
}

.form-page .caldera-grid form .has-error .parsley-required {
	font-size: 15px;
}
@media (max-width: 768px) {
	.form-page .caldera-grid form .has-error .parsley-required {
		font-size: 14px;
	}
}


.form-page form.ui.form .field {
	margin-bottom: 1.5em;
}


.form-page .caldera-grid form .form-control,
form.ui.form .field input {
	padding: 10px 20px;
	width: 100%;
	height: auto;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
	border: 1px solid #fff;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.3;
	color: var(--main--theme-text-color);
	-webkit-transition: border-color .5s;
	-moz-transition: border-color .5s;
	-ms-transition: border-color .5s;
	-o-transition: border-color .5s;
	transition: border-color .5s;
}

.form-page .caldera-grid form .form-control:hover,
form.ui.form .field input:hover {
	border-color: var(--main--theme-color);
}

.form-page .caldera-grid form .form-control:not(.parsley-error),
.form-page .caldera-grid form .form-control:focus:not(.parsley-error),
form.ui.form .field input:focus {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
}

.form-page .caldera-grid form .form-control::-webkit-input-placeholder,
form.ui.form .field input::-webkit-input-placeholder {	/* Chrome/Opera/Safari */
	color: var(--main--theme-text-color);
	opacity: 1;
}

.form-page .caldera-grid form .form-control::-moz-placeholder,
form.ui.form .field input::-moz-placeholder {	/* Firefox 19+ */
	color: var(--main--theme-text-color);
	opacity: 1;
}

.form-page .caldera-grid form .form-control:-ms-input-placeholder,
form.ui.form .field input:-ms-input-placeholder {	/* IE 10+ */
	color: var(--main--theme-text-color);
	opacity: 1;
}

.form-page .caldera-grid form .form-control:-moz-placeholder,
form.ui.form .field input:-moz-placeholder {	/* Firefox 18- */
	color: var(--main--theme-text-color);
	opacity: 1;
}

.form-page .caldera-grid form .form-control::placeholder,
form.ui.form .field input:placeholder {	/* All */
	color: var(--main--theme-text-color);
	opacity: 1;
}

.form-page .caldera-grid form .select div {
	display: inline-block;
	position: relative;
	width: 100%;
	vertical-align: top;
}

.form-page .caldera-grid form .select div:after {
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -3px;
	content: '';
	width: 12px;
	height: 12px;
	border-top: 2px solid var(--main--theme-color);
	border-right: 2px solid var(--main--theme-color);
	pointer-events: none;
	-webkit-transform: translateY(-50%) rotate(135deg);
	-moz-transform: translateY(-50%) rotate(135deg);
	-ms-transform: translateY(-50%) rotate(135deg);
	-o-transform: translateY(-50%) rotate(135deg);
	transform: translateY(-50%) rotate(135deg);
}

.form-page .caldera-grid form select {
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}

.form-page .caldera-grid form .btn,
.form-page form button.ui {
	margin-top: 5px;
	width: 100%;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	border-radius: 30px;
	border: none;
	background-color: var(--main--theme-color);
	font-family: 'Ubuntu', sans-serif;
	font-size: 17px;
	line-height: 1.65;
	letter-spacing: 0.68px;
	text-transform: uppercase;
	color: #fff;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.form-page form button.ui {
	margin: 0;
	padding: .352em;
	font-weight: 400;
}

.form-page .caldera-grid form .btn:hover,
.form-page .caldera-grid form .btn:active,
.form-page .caldera-grid form .btn:link,
.form-page .caldera-grid form .btn:visited,
.form-page .caldera-grid form .btn:focus,
.form-page form button.ui:hover,
.form-page form button.ui:active,
.form-page form button.ui:link,
.form-page form button.ui:visited,
.form-page form button.ui.btn:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
	border: none;
}

.form-page .caldera-grid form .btn:hover,
.form-page form button.ui.btn:hover {
	text-shadow: 0 0 0 #fff !important;
}

/*--------------------------------------------------------------
## FORM PAGES - END
--------------------------------------------------------------*/



/*--------------------------------------------------------------
## UI Semantic - START
--------------------------------------------------------------*/
.ui[class*="top attached"].segment {
	-webkit-border-radius: initial;
	-moz-border-radius: initial;
	-ms-border-radius: initial;
	-o-border-radius: initial;
	border-radius: initial;
}

/* SKG - disabled, will overwrite all segments 
.ui.top.segment.segment.segment.segment.segment:not(.inverted) {
	border-top-color: var(--main--theme-color);
}
.ui.bottom.segment.segment.segment.segment.segment:not(.inverted) {
	border-top-color: var(--main--theme-row-color);
} */
.ui.top.segment:not(.inverted) {
	border-top-color: var(--main--theme-color);
}


/* buttons */
.ui.button {
	padding-top: .676em;
	padding-bottom: .676em;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	border-radius: 30px;
	border: none;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 400;
	font-size: 17px;
	letter-spacing: 0.68px;
	text-transform: uppercase;
	
}

/*--------------------------------------------------------------
## UI Semantic - END
--------------------------------------------------------------*/



/*--------------------------------------------------------------
## Help page - END
--------------------------------------------------------------*/
.help-tabs.su-tabs {
	margin: -1rem;
	padding: 0;
	border: none;
	-webkit-border-radius: initial; 
	-moz-border-radius: initial; 
	-ms-border-radius: initial; 
	-o-border-radius: initial; 
	border-radius: initial; 
	background: transparent;
}


/* tabs nav */
.help-tabs.su-tabs .su-tabs-nav {
	padding: 25px 0;
	background-color: var(--main--theme-header-bgr-color);
	text-align: center;
}


.help-tabs.su-tabs .su-tabs-nav span {
	margin: 0;
	padding: 3px 15px 5px;
	min-width: 270px;
	min-height: initial;
	-webkit-border-radius: initial; 
	-moz-border-radius: initial; 
	-ms-border-radius: initial; 
	-o-border-radius: initial; 
	border-radius: initial; 
	background-color: var(--main--theme-page-bgr-color);
	font-size: 17px;
	line-height: 1.3;
	color: var(--main--theme-row-color);
	vertical-align: top;
}
@media (max-width: 1200px) {
	.help-tabs.su-tabs .su-tabs-nav span {
		min-width: 20%;
	}
}
@media (max-width: 992px) {
	.help-tabs.su-tabs .su-tabs-nav span {
		padding: 8px 15px 10px;
	}
}
@media (max-width: 768px) {
	.help-tabs.su-tabs .su-tabs-nav span {
		padding: 13px 15px 15px;
	}
}
.help-tabs.su-tabs .su-tabs-nav span:hover,
.help-tabs.su-tabs .su-tabs-nav span:focus,
.help-tabs.su-tabs .su-tabs-nav span:active {
	text-shadow: 0 0 0 var(--main--theme-row-color);
	color: var(--main--theme-row-color);
}
.help-tabs.su-tabs .su-tabs-nav span.su-tabs-current {
	background-color: var(--main--theme-row-color);
	color: #fff;
}
.help-tabs.su-tabs .su-tabs-nav span.su-tabs-current:hover,
.help-tabs.su-tabs .su-tabs-nav span.su-tabs-current:focus,
.help-tabs.su-tabs .su-tabs-nav span.su-tabs-current:active {
	text-shadow: 0 0 0 #fff;
	color: #fff;
}


/* tabs panes all */
.help-tabs.su-tabs .su-tabs-panes {
	padding: 5rem 15rem;
}
@media (max-width: 1919px) {
	.help-tabs.su-tabs .su-tabs-panes {
		padding: 4rem 12rem;
	}
}
@media (max-width: 1600px) {
	.help-tabs.su-tabs .su-tabs-panes {
		padding: 3rem 10rem;
	}
}
@media (max-width: 1368px) {
	.help-tabs.su-tabs .su-tabs-panes {
		padding: 2rem 7rem;
	}
}
@media (max-width: 1200px) {
	.help-tabs.su-tabs .su-tabs-panes {
		padding: 1.5rem 5rem;
	}
}
@media (max-width: 768px) {
	.help-tabs.su-tabs .su-tabs-panes {
		padding: 1.2rem 2rem;
	}
}



/* tabs panes single */
.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane {
	padding: 0;
	font-size: 1.2rem;
	line-height: 1.5;
}


.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane h2 {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--main--theme-icon-color);
	font-weight: 400;
	font-size: 23px; 
	line-height: 1.2;
	color: var(--main--theme-text-color);
}
@media (max-width: 1600px) {
	.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane h2 {
		margin-bottom: 10px;
		font-size: 21px;
	}
}
@media (max-width: 1200px) {
	.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane h2 {
		margin-bottom: 5px;
		font-size: 19px;
	}
}
@media (max-width: 992px) {
	.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane h2 {
		padding-bottom: 10px;
		font-size: 17px;
		line-height: 1.15;		
	}
}


.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane ul,
.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane ul li,
.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane ol,
.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane ol li {
	margin: revert;
	padding: revert;
	list-style: revert;
}

.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane ol {
	list-style-type:lower-roman;
}

.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane ol ul {
	list-style-type:decimal;
}



.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane ul li {
	margin: 15px 0;
}
@media (max-width: 768px) {
	.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane ul li {
		margin: 10px 0;
	}
}


.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane ul li li {
	margin: 10px 0;
}
@media (max-width: 768px) {
	.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane ul li li {
		margin: 5px 0;
	}
}


.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane ul p {
	display: inline-block;
	margin: 0;
}

.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane p:empty {
	display: none;
}


.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane ul i {
	display: block;
	font-style: normal;
}


.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane span.su-lightbox {
	display: inline-block;
	position: relative;
	margin-right: 10px;
	filter: grayscale(75%);
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}
.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane span.su-lightbox:hover {
	filter: grayscale(0);
}

.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane span.su-lightbox.table {
	display: table;	
	margin-bottom: 10px;
}

.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane span.su-lightbox:before {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 0 10px;
	content: '\002B';
	border: 1px solid var(--main--theme-text-color);
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	border-radius: 100%;
	font-weight: 100;
	font-size: 3rem;
	line-height: 1;
	color: var(--main--theme-text-color);
	opacity: 1;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: opacity .1s;
	-moz-transition: opacity .1s;
	-ms-transition: opacity .1s;
	-o-transition: opacity .1s;
	transition: opacity .1s;
}
.help-tabs.su-tabs .su-tabs-panes .su-tabs-pane span.su-lightbox:hover:before {
	opacity: 0;
}
/*--------------------------------------------------------------
## Help page - END
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Modern Sidebar Navigation
--------------------------------------------------------------*/

/* Hide right sidebar */
.ui.right.sidebar,
.side-menu.side-menu--right {
	display: none !important;
}

/* User Profile Section */
.sidebar-user-section {
	background: rgba(255, 255, 255, 0.1);
	padding: 20px 25px;
	margin: 80px 25px 10px 25px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.user-profile-info {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.user-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.4);
	flex-shrink: 0;
}

.user-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.user-details {
	flex: 1;
	min-width: 0;
}

.user-name {
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	margin: 0 0 3px 0;
	line-height: 1.2;
}

.user-role {
	color: rgba(255, 255, 255, 0.7);
	font-size: 11px;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.user-actions {
	display: flex;
	gap: 8px;
}

.user-action-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: #fff;
	text-decoration: none;
	transition: all 0.2s ease;
}

.user-action-btn:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.user-action-btn.logout:hover {
	background: rgba(255, 76, 76, 0.3);
	border-color: rgba(255, 76, 76, 0.5);
}

.user-action-btn i {
	margin: 0;
	font-size: 16px;
}

/* Modern menu items - full width */
.sidebar--page .widget {
	padding: 0 !important;
}

.sidebar--page .menu {
	padding: 0 !important;
	list-style: none !important;
	margin: 0 !important;
}

.sidebar--page .menu li {
	margin: 0 10px 4px 10px !important;
	padding: 0 !important;
	list-style: none !important;
}

.sidebar--page .menu li a {
	display: block;
	margin: 0;
	padding: 14px 20px;
	width: 100%;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.3;
	text-transform: uppercase;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	border-left: 4px solid transparent;
	transition: all 0.25s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
}

.sidebar--page .menu li a:hover {
	background: rgba(255, 255, 255, 0.18);
	border-left-color: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	text-shadow: 0 0 0 #fff;
}

.sidebar--page .menu li.current-menu-item > a {
	background: rgba(255, 255, 255, 0.22);
	border-left-color: #fff;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Parent item with submenu - chevron indicator */
.sidebar--page .menu li.menu-item-has-children > a {
	position: relative;
	padding-right: 44px;
}

.sidebar--page .menu li.menu-item-has-children > a::after {
	content: '';
	position: absolute;
	right: 18px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 2px solid rgba(255,255,255,0.8);
	border-bottom: 2px solid rgba(255,255,255,0.8);
	transform: translateY(-65%) rotate(45deg);
	transition: transform 0.25s ease;
}

.sidebar--page .menu li.menu-item-has-children.open > a::after {
	transform: translateY(-30%) rotate(225deg);
}

/* Sub-menu hidden by default */
.sidebar--page .menu li .sub-menu {
	display: none;
	background: rgba(0, 0, 0, 0.18);
	border-radius: 8px;
	margin: 4px 0 0 0;
	padding: 6px 0;
	list-style: none;
}

.sidebar--page .menu li .sub-menu li {
	padding: 3px 10px !important;
}

.sidebar--page .menu li .sub-menu li a {
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 500;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	border-left: 3px solid transparent;
}

.sidebar--page .menu li .sub-menu li a:hover {
	background: rgba(255, 255, 255, 0.13);
	border-left-color: rgba(255,255,255,0.6);
}

/* Separator line */
.sidebar--page .menu li.separator {
	display: none;
}

/* Language switcher */
.sidebar--page .menu li.lang-item a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

.sidebar--page .menu li.lang-item a img {
	width: 20px;
	height: auto;
}

/* Remove bullet point */
.sidebar--page .menu li:before {
	display: none;
}


/* Remove bullet point */
.sidebar--page .menu li:before {
	display: none;
}


/* Menu styling */
.ui.left.sidebar .ui.menu {
	border: none !important;
	background: transparent !important;
	margin: 0 !important;
	padding: 8px 0 !important;
}

.ui.left.sidebar .item {
	color: rgba(255, 255, 255, 0.95) !important;
	border-left: 4px solid transparent !important;
	border-radius: 0 !important;
	margin: 0 !important;
	padding: 12px 16px !important;
	transition: all 0.2s ease !important;
	font-weight: 500 !important;
	font-size: 14px !important;
	position: relative;
}

.ui.left.sidebar .item:hover {
	background: rgba(255, 255, 255, 0.12) !important;
	color: #fff !important;
	border-left-color: #fff !important;
	padding-left: 20px !important;
}

.ui.left.sidebar .item.active {
	background: rgba(255, 255, 255, 0.18) !important;
	color: #fff !important;
	border-left-color: #fff !important;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.ui.left.sidebar .item i {
	margin-right: 10px !important;
	opacity: 0.95;
	min-width: 20px;
}

/* Nested menu items */
.ui.left.sidebar .menu .menu {
	background: rgba(0, 0, 0, 0.25) !important;
	border-left: 2px solid rgba(255, 255, 255, 0.15) !important;
	margin: 4px 0 !important;
	padding: 4px 0 !important;
}

.ui.left.sidebar .menu .menu .item {
	border-left: none !important;
	padding-left: 32px !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	color: rgba(255, 255, 255, 0.85) !important;
}

.ui.left.sidebar .menu .menu .item:hover {
	padding-left: 36px !important;
	color: #fff !important;
}

.ui.left.sidebar .menu .menu .item.active {
	background: rgba(255, 255, 255, 0.15) !important;
	color: #fff !important;
}

/* Arrow toggle icon */
.ui.left.sidebar .arrow.icon {
	color: rgba(255, 255, 255, 0.9) !important;
	transition: transform 0.3s ease !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.ui.left.sidebar {
		width: 280px !important;
	}
	
	.user-details {
		display: none;
	}
	
	.user-avatar {
		width: 40px;
		height: 40px;
	}
	
	.sidebar-user-section {
		padding: 12px 0 !important;
	}
	
	.user-profile-info {
		padding: 0 10px !important;
	}
	
	.user-actions {
		padding: 0 10px !important;
	}
}

@media (max-width: 480px) {
	.ui.left.sidebar {
		width: 250px !important;
	}
	
	.ui.left.sidebar .item {
		padding: 10px 12px !important;
		font-size: 12px !important;
	}
	
	.ui.left.sidebar .item i {
		margin-right: 8px !important;
	}
	
	.user-avatar {
		width: 36px;
		height: 36px;
	}
}

/*--------------------------------------------------------------
## Sidebar Navigation - END
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Entry Title - always hidden (theme outputs <h1 class="entry-title hide">
## but style.css uses font-size:0/opacity:0 not display:none, leaving ghost space)
--------------------------------------------------------------*/
h1.entry-title { display: none !important; }
