/* Layout shell — complements homepage landing styles on interior pages */

:root {
	--furgoo-primary: #0e23a1;
	--furgoo-accent: #fefa3e;
	--furgoo-dark: #121212;
	--furgoo-light: #ffffff;
	--furgoo-max: 1200px;
	--furgoo-gutter: 24px;
	--furgoo-gutter-mobile: 1.25rem;
	--furgoo-eyebrow: var(--furgoo-primary);
	--furgoo-eyebrow-on-dark: var(--furgoo-accent);
}

body {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	color: var(--furgoo-dark);
	background: var(--furgoo-light);
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.furgoo-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--furgoo-light);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.furgoo-site-header__inner {
	max-width: var(--furgoo-max);
	margin: 0 auto;
	padding: 10px 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	column-gap: 20px;
}

.furgoo-site-header__brand {
	flex-shrink: 0;
	line-height: 0;
	grid-column: 1;
	justify-self: start;
}

.furgoo-site-header__brand .custom-logo-link {
	display: block;
	line-height: 0;
}

.furgoo-site-header__brand .custom-logo,
.furgoo-site-header__brand .custom-logo-link img {
	display: block;
	width: 130px;
	max-width: min(130px, 38vw);
	height: auto;
}

.furgoo-site-header__title {
	font-weight: 900;
	font-size: 1.25rem;
	color: var(--furgoo-primary);
	text-decoration: none;
}

.furgoo-site-header__nav {
	grid-column: 2;
	justify-self: center;
}

.furgoo-site-nav {
	display: flex;
	align-items: center;
}

.furgoo-site-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.furgoo-site-nav__list a {
	display: inline-flex;
	align-items: center;
	color: var(--furgoo-dark);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9rem;
	line-height: 1.2;
}

.furgoo-site-nav__list a:hover {
	color: var(--furgoo-primary);
}

.furgoo-site-nav__list .current-menu-item > a,
.furgoo-site-nav__list .current-menu-ancestor > a {
	color: var(--furgoo-primary);
}

.furgoo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 10px 20px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	border: none;
	cursor: pointer;
	white-space: nowrap;
}

.furgoo-btn-accent {
	background: var(--furgoo-accent);
	color: var(--furgoo-dark);
}

.furgoo-btn-accent:hover,
.furgoo-btn-accent:focus-visible {
	filter: brightness(0.95);
	color: var(--furgoo-dark);
}

.furgoo-site-header__cta {
	grid-column: 3;
	justify-self: end;
	flex-shrink: 0;
	line-height: 1.2;
	padding: 0.65rem 1.35rem;
	text-transform: none;
	background: var(--furgoo-primary);
	color: var(--furgoo-light);
	border-radius: 999px;
}

.furgoo-site-header__cta:hover,
.furgoo-site-header__cta:focus-visible {
	background: var(--furgoo-primary);
	color: var(--furgoo-light);
	filter: brightness(1.08);
}

.furgoo-site-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	border-radius: 10px;
	background: transparent;
	cursor: pointer;
	transition: background 0.2s ease;
}

.furgoo-site-nav-toggle:hover,
.furgoo-site-nav-toggle:focus-visible {
	background: rgba(14, 35, 161, 0.06);
	outline: none;
}

.furgoo-site-nav-toggle__bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--furgoo-dark);
	border-radius: 1px;
	transition:
		transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.2s ease,
		background 0.2s ease;
	transform-origin: center;
}

body.furgoo-nav-open .furgoo-site-nav-toggle__bar {
	background: var(--furgoo-primary);
}

body.furgoo-nav-open .furgoo-site-nav-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.furgoo-nav-open .furgoo-site-nav-toggle__bar:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

body.furgoo-nav-open .furgoo-site-nav-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.furgoo-site-nav-panel {
	display: contents;
}

.furgoo-site-nav-panel__eyebrow {
	display: none;
}

.furgoo-site-nav-panel__head {
	display: none;
}

.furgoo-site-nav-panel__cta {
	display: none;
}

.furgoo-site-nav-overlay {
	display: none;
}

.furgoo-main {
	min-height: 50vh;
}

/* Default page shell: full-width hero + constrained content */
.furgoo-page.furgoo-page--default {
	max-width: none;
	margin: 0;
	padding: 0;
}

.furgoo-page.furgoo-page--default .furgoo-page__content {
	max-width: var(--furgoo-max);
	margin: 0 auto;
	padding: 40px 24px 80px;
}

.furgoo-page.furgoo-page--default .furgoo-page__content--elementor {
	max-width: none;
	padding: 0;
}

/* Full-bleed blocks: avoid 100vw (includes scrollbar width and causes horizontal scroll). */
.furgoo-main > .furgoo-page-hero-default.alignfull,
footer.furgoo-site-footer.alignfull,
footer.furgoo-simple-footer.alignfull {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.furgoo-page-hero-default {
	width: 100%;
	margin: 0;
	background: var(--furgoo-primary);
	color: var(--furgoo-light);
}

.furgoo-page-hero-default__inner {
	min-height: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem 1.5rem 1.75rem;
	gap: 0.65rem;
}

.furgoo-page-hero-default__title {
	margin: 0;
	color: var(--furgoo-light);
	font-size: clamp(1.85rem, 4.5vw, 2.75rem);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.furgoo-page-hero-default__breadcrumbs {
	margin: 0;
}

.furgoo-page-hero-default__crumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
	list-style-type: none;
	padding-inline-start: 0;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

.furgoo-page-hero-default__crumb-list li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.furgoo-page-hero-default__sep {
	color: rgba(255, 255, 255, 0.85);
}

.furgoo-page-hero-default__crumb a,
.furgoo-page-hero-default__crumb span {
	color: var(--furgoo-light);
	text-decoration: none;
}

.furgoo-page-hero-default__crumb a:hover {
	color: var(--furgoo-accent);
}

.furgoo-page-hero-default__crumb.is-current span {
	color: var(--furgoo-accent);
}

.furgoo-page:not(.furgoo-page--default) {
	max-width: var(--furgoo-max);
	margin: 0 auto;
	padding: 40px 24px 80px;
}

/* Footer — aligned with Tantum / landing (blue band + contacts + menu + copyright) */
.furgoo-site-footer,
.furgoo-simple-footer {
	background: var(--furgoo-primary);
	color: var(--furgoo-light);
	margin-top: 0;
	margin-block-start: 0 !important;
}

.furgoo-site-footer__body {
	max-width: var(--furgoo-max);
	margin: 0 auto;
	padding: 2.6rem 2rem 1.25rem;
	text-align: center;
}

.furgoo-site-footer .furgoo-footer-inner,
.furgoo-simple-footer .furgoo-footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.6rem;
	margin: 0;
}

.furgoo-footer-title {
	margin: 0 !important;
	color: var(--furgoo-light);
	font-size: clamp(0.95rem, 1.6vw, 1.2rem);
	font-weight: 700;
	line-height: 1.15;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.furgoo-footer-contacts {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 0.85rem 1.75rem;
	margin: 0;
}

.furgoo-contact-item {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	text-decoration: none;
}

.furgoo-contact-item-icon {
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.furgoo-contact-item-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
	display: block;
}

.furgoo-contact-item-text {
	font-weight: 700;
	letter-spacing: 0.01em;
}

.furgoo-contact-item--footer {
	color: var(--furgoo-light);
	opacity: 0.96;
}

.furgoo-contact-item--footer .furgoo-contact-item-icon {
	width: 16px;
	height: 16px;
	color: var(--furgoo-accent);
}

.furgoo-contact-item--footer .furgoo-contact-item-icon svg {
	fill: none !important;
	stroke: currentColor;
	stroke-width: 1.9;
}

.furgoo-contact-item--footer .furgoo-contact-item-text {
	font-size: clamp(0.9rem, 1.45vw, 1.1rem);
	font-weight: 700;
}

.furgoo-footer-nav {
	margin-top: 1.75rem;
}

.furgoo-footer-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0;
}

.furgoo-footer-nav__list > li {
	display: inline-flex;
	align-items: center;
}

.furgoo-footer-nav__list > li + li::before {
	content: "";
	display: inline-block;
	width: 1px;
	height: 0.85em;
	margin: 0 0.15em;
	background: rgba(255, 255, 255, 0.32);
}

.furgoo-footer-nav__list a {
	display: inline-block;
	padding: 0.45em 1.15em;
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: color 0.15s ease;
}

.furgoo-footer-nav__list a:hover,
.furgoo-footer-nav__list a:focus-visible,
.furgoo-footer-nav__list .current-menu-item > a {
	color: var(--furgoo-accent);
}

.furgoo-site-footer__bar {
	max-width: var(--furgoo-max);
	margin: 0 auto;
	padding: 1rem 1.5rem 1.35rem;
	border-top: 1px solid rgba(255, 255, 255, 0.26);
	text-align: center;
}

.furgoo-footer-company {
	margin: 0 0 0.75rem;
	font-size: 0.72rem;
	line-height: 1.55;
	opacity: 0.88;
}

.furgoo-footer-legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.15rem 0.35rem;
	margin: 0 0 0.65rem;
}

.furgoo-footer-legal a {
	display: inline-block;
	padding: 0.15em 0.5em;
	color: rgba(255, 255, 255, 0.94);
	font-size: 0.75rem;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color 0.15s ease;
}

.furgoo-footer-legal a:hover,
.furgoo-footer-legal a:focus-visible {
	color: var(--furgoo-accent);
}

.furgoo-footer-legal a:not(:first-child)::before {
	content: "·";
	display: inline-block;
	margin-right: 0.55em;
	color: rgba(255, 255, 255, 0.42);
	text-decoration: none;
}

.furgoo-footer-copy {
	margin: 0 !important;
	padding: 0;
	border-top: none;
	font-size: 0.78rem !important;
	opacity: 0.92;
	text-align: center;
}

/* Temporary landing page shell */
.furgoo-landing-page .furgoo-main--landing {
	padding: 0;
	margin: 0;
	max-width: none;
}

.furgoo-header--landing {
	background: transparent;
	box-shadow: none;
	position: relative;
	z-index: 20;
}

.furgoo-header--landing .furgoo-header__inner {
	max-width: none;
	justify-content: center;
	padding: 10px 24px;
}

.furgoo-header--landing .custom-logo-link img {
	max-height: 64px;
	width: auto;
}

@media (max-width: 768px) {
	html {
		overflow-x: clip;
	}

	body {
		overflow-x: clip;
		max-width: 100%;
	}

	.furgoo-site-header__inner {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		padding: 8px var(--furgoo-gutter-mobile);
		gap: 12px;
	}

	.furgoo-site-header__brand .custom-logo,
	.furgoo-site-header__brand .custom-logo-link img {
		width: 110px;
		max-width: min(110px, 42vw);
	}

	.furgoo-site-nav-toggle {
		display: flex;
		margin-left: auto;
		order: 2;
		position: relative;
		z-index: 220;
	}

	body.furgoo-nav-open .furgoo-site-nav-toggle {
		visibility: hidden;
		pointer-events: none;
	}

	.furgoo-site-header .furgoo-site-header__cta {
		display: none;
	}

	.furgoo-site-nav-overlay {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 180;
		border: none;
		padding: 0;
		margin: 0;
		background: rgba(14, 35, 161, 0.42);
		backdrop-filter: blur(4px);
		-webkit-backdrop-filter: blur(4px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition:
			opacity 0.32s ease,
			visibility 0.32s ease;
		cursor: pointer;
	}

	body.furgoo-nav-open .furgoo-site-nav-overlay {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.furgoo-site-nav-panel {
		display: flex;
		flex-direction: column;
		box-sizing: border-box;
		width: 100%;
		height: 100%;
		min-height: 0;
		padding:
			calc(0.85rem + env(safe-area-inset-top, 0px))
			calc(1rem + env(safe-area-inset-right, 0px))
			calc(1rem + env(safe-area-inset-bottom, 0px))
			1.25rem;
		background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
		box-shadow: -12px 0 40px rgba(14, 35, 161, 0.14);
		overflow: hidden;
	}

	.furgoo-site-nav-panel__head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.75rem;
		flex-shrink: 0;
		margin-bottom: 0.75rem;
	}

	.furgoo-site-nav-panel__eyebrow {
		display: block;
		flex: 1;
		margin: 0;
		font-size: 0.68rem;
		font-weight: 700;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: var(--furgoo-primary);
	}

	.furgoo-site-nav-panel__close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		width: 40px;
		height: 40px;
		margin: 0;
		padding: 0;
		border: none;
		border-radius: 10px;
		background: rgba(14, 35, 161, 0.06);
		color: var(--furgoo-primary);
		font-size: 1.5rem;
		line-height: 1;
		cursor: pointer;
		transition: background 0.2s ease, color 0.2s ease;
	}

	.furgoo-site-nav-panel__close span {
		display: block;
		transform: translateY(-1px);
	}

	.furgoo-site-nav-panel__close:hover,
	.furgoo-site-nav-panel__close:focus-visible {
		background: rgba(14, 35, 161, 0.12);
		color: var(--furgoo-primary);
		outline: none;
	}

	.furgoo-site-nav-panel__cta {
		display: inline-flex;
		flex-shrink: 0;
		width: 100%;
		margin-top: 0.75rem;
		padding: 0.95rem 1.25rem;
		border-radius: 999px;
		background: var(--furgoo-primary);
		color: var(--furgoo-light);
		font-size: 1rem;
		box-shadow: 0 10px 24px rgba(14, 35, 161, 0.22);
	}

	.furgoo-site-nav-panel__cta:hover,
	.furgoo-site-nav-panel__cta:focus-visible {
		color: var(--furgoo-light);
		filter: brightness(1.06);
	}

	.furgoo-site-header__nav {
		order: 4;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(88vw, 340px);
		height: 100dvh;
		max-height: 100dvh;
		z-index: 230;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		margin: 0;
		padding: 0;
		background: transparent;
		pointer-events: none;
		visibility: hidden;
		transform: translateX(100%);
		transition:
			transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
			visibility 0.42s ease;
	}

	body.furgoo-nav-open .furgoo-site-header__nav {
		pointer-events: auto;
		visibility: visible;
		transform: translateX(0);
	}

	.furgoo-site-nav__list {
		flex: 1 1 auto;
		flex-direction: column;
		align-items: stretch;
		gap: 0.35rem;
		min-height: 0;
		padding: 0;
		margin: 0;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
	}

	.furgoo-site-nav__list > li {
		opacity: 0;
		transform: translateX(14px);
		transition:
			opacity 0.35s ease,
			transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	}

	body.furgoo-nav-open .furgoo-site-nav__list > li {
		opacity: 1;
		transform: translateX(0);
	}

	body.furgoo-nav-open .furgoo-site-nav__list > li:nth-child(1) { transition-delay: 0.06s; }
	body.furgoo-nav-open .furgoo-site-nav__list > li:nth-child(2) { transition-delay: 0.1s; }
	body.furgoo-nav-open .furgoo-site-nav__list > li:nth-child(3) { transition-delay: 0.14s; }
	body.furgoo-nav-open .furgoo-site-nav__list > li:nth-child(4) { transition-delay: 0.18s; }
	body.furgoo-nav-open .furgoo-site-nav__list > li:nth-child(5) { transition-delay: 0.22s; }
	body.furgoo-nav-open .furgoo-site-nav__list > li:nth-child(6) { transition-delay: 0.26s; }
	body.furgoo-nav-open .furgoo-site-nav__list > li:nth-child(7) { transition-delay: 0.3s; }
	body.furgoo-nav-open .furgoo-site-nav__list > li:nth-child(8) { transition-delay: 0.34s; }

	.furgoo-site-nav__list a {
		display: flex;
		align-items: center;
		min-height: 48px;
		padding: 0.65rem 0.9rem;
		border-radius: 12px;
		font-size: 1.02rem;
		font-weight: 700;
		color: var(--furgoo-dark);
		transition:
			background 0.2s ease,
			color 0.2s ease,
			transform 0.2s ease;
	}

	.furgoo-site-nav__list a:hover,
	.furgoo-site-nav__list a:focus-visible {
		background: rgba(14, 35, 161, 0.07);
		color: var(--furgoo-primary);
		transform: translateX(2px);
		outline: none;
	}

	.furgoo-site-nav__list .current-menu-item > a,
	.furgoo-site-nav__list .current-menu-ancestor > a {
		background: rgba(14, 35, 161, 0.1);
		color: var(--furgoo-primary);
		box-shadow: inset 3px 0 0 var(--furgoo-accent);
	}

	body.furgoo-nav-open {
		overflow: hidden;
	}

	body.furgoo-nav-open .furgoo-site-header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		z-index: 190;
	}

	@media (prefers-reduced-motion: reduce) {
		.furgoo-site-nav-overlay,
		.furgoo-site-header__nav,
		.furgoo-site-nav-toggle__bar,
		.furgoo-site-nav__list > li,
		.furgoo-site-nav__list a {
			transition: none !important;
		}

		.furgoo-site-nav__list > li {
			opacity: 1;
			transform: none;
		}
	}

	.furgoo-page.furgoo-page--default .furgoo-page__content:not(.furgoo-page__content--elementor) {
		padding: 2rem var(--furgoo-gutter-mobile) 3.5rem;
	}

	.furgoo-page:not(.furgoo-page--default) {
		padding: 2rem var(--furgoo-gutter-mobile) 3.5rem;
	}

	.furgoo-page-hero-default__inner {
		min-height: 148px;
		padding: 1.35rem var(--furgoo-gutter-mobile) 1.15rem;
		gap: 0.45rem;
	}

	.furgoo-page-hero-default__title {
		font-size: clamp(1.55rem, 5.5vw, 2rem);
	}

	.furgoo-main .elementor-section.elementor-top-section > .elementor-container {
		padding-left: var(--furgoo-gutter-mobile);
		padding-right: var(--furgoo-gutter-mobile);
	}

	.furgoo-site-footer__body {
		padding: 2rem var(--furgoo-gutter-mobile) 1rem;
	}

	.furgoo-footer-contacts {
		flex-wrap: wrap;
		gap: 0.5rem 1rem;
	}

	.furgoo-footer-nav {
		margin-top: 1.25rem;
	}

	.furgoo-footer-nav__list > li + li::before {
		display: none;
	}

	.furgoo-footer-nav__list a {
		padding: 0.35em 0.75em;
		font-size: 0.7rem;
	}

	.furgoo-site-footer__bar {
		padding: 0.85rem var(--furgoo-gutter-mobile) 1.15rem;
	}

	.furgoo-footer-company {
		font-size: 0.68rem;
	}
}

/* Scroll to top (native; replaces trx_addons on interior pages) */
.furgoo-scroll-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 200;
	width: 48px;
	height: 48px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: var(--furgoo-primary);
	color: var(--furgoo-light);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(14, 35, 161, 0.35);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition:
		opacity 0.2s ease,
		visibility 0.2s ease,
		transform 0.2s ease,
		background 0.15s ease;
}

.furgoo-scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.furgoo-scroll-top:hover,
.furgoo-scroll-top:focus-visible {
	background: #0a1a7a;
	outline: none;
}

@media (prefers-reduced-motion: reduce) {
	.furgoo-scroll-top {
		transition: none;
	}
}

@media (max-width: 768px) {
	.furgoo-scroll-top {
		right: 12px;
		bottom: 12px;
		width: 44px;
		height: 44px;
	}
}
