/* Shared JLC public header, navigation, language switcher and footer. */


.privacy-policy-btn a {
    display: inline-block;
    padding: 10px 24px;
    background-color: #163A5F;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.privacy-policy-btn a:hover {
    background-color: #0F2A45;
    color: #ffffff;
    transform: translateY(-2px);
}


.index-icon {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1002;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-icon1 {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: white;
	border: 1px solid #e0e0e0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.2s;
}

.contact-icon1:hover {
	transform: scale(1.1);
}


.contact-icon1 img {
	width: 24px;
	height: 24px;
	display: block;
	object-fit: contain;
}







.bubble {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-20%, -30%);
	width: 280px;

	padding: 20px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	z-index: 1001;
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.bubble.show {
	display: block;
	opacity: 1;
}


.bubble::before {
	display: none !important;
}


.static-info {
	font-size: 14px;
	line-height: 1.5;
	color: #333;
}

.bubble-form label {
	display: block;
	font-size: 13px;
	margin-top: 12px;
	color: #444;
}

.bubble-form input,
.bubble-form textarea {
	width: 100%;
	padding: 8px 10px;
	margin-top: 4px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 13px;
	box-sizing: border-box;
}

.bubble-form textarea {
	height: 70px;
	resize: vertical;
}

.bubble-form button {
	margin-top: 16px;
	width: 100%;
	padding: 8px;
	background-color: #25d366;
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: bold;
}

.site-header,
.site-footer {
	--jlc-common-white: #ffffff;
	--jlc-common-dark: #151a1f;
	font-family: "IBM Plex Sans", sans-serif;
}

.site-header *,
.site-footer * {
	box-sizing: border-box;
}

.site-header .container,
.site-footer .container {
	width: min(1180px, calc(100% - 40px));
	margin-right: auto;
	margin-left: auto;
}

.site-header a,
.site-footer a {
	color: inherit;
	text-decoration: none;
}

.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 40;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(21, 26, 31, 0.84);
	color: var(--jlc-common-white);
	backdrop-filter: blur(16px);
}

.site-header .nav {
	min-height: 74px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-header .brand,
.site-footer .brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.site-header .brand {
	flex: 0 0 auto;
}

.site-header .brand-mark,
.site-footer .brand-mark {
	width: 58px;
	height: 46px;
	display: grid;
	place-items: center;
	flex: 0 0 58px;
	border: 0;
	overflow: hidden;
}

.site-header .brand-mark img,
.site-footer .brand-mark img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.site-header .brand-name,
.site-footer .footer-brand-name {
	margin: 0;
	font-family: "Archivo", sans-serif;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.05;
}

.site-header .brand-sub,
.site-footer .brand-sub {
	display: block;
	margin-top: 3px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
}

.site-header .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.site-header .nav-links a {
	position: relative;
	color: rgba(255, 255, 255, 0.78);
	font-size: 17px;
	font-weight: 700;
	white-space: nowrap;
}

.site-header .nav-links a:hover,
.site-header .nav-links a.is-active {
	color: var(--jlc-common-white);
}

.site-header .nav-item {
	position: relative;
	display: flex;
	align-items: center;
}

.site-header .nav-products::after {
	content: "";
	position: absolute;
	top: 100%;
	right: -18px;
	left: -18px;
	height: 18px;
}

.site-header .nav-dropdown {
	position: absolute;
	top: calc(100% + 14px);
	left: 50%;
	z-index: 80; 
	display: grid;
	gap: 2px;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 6px;
	background: rgba(21, 26, 31, 0.97);
	box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, 8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-header .nav-products:hover .nav-dropdown,
.site-header .nav-products:focus-within .nav-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.site-header .nav-dropdown a {
	display: block;
	padding: 10px 12px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 16px;
	font-weight: 700;
	white-space: nowrap;
}

.site-header .nav-dropdown a:hover {
	color: var(--jlc-common-white);
	background: rgba(255, 255, 255, 0.09);
}

.site-header .menu-btn {
	display: none;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	background: transparent;
	color: var(--jlc-common-white);
	font-size: 0;
	cursor: pointer;
}

.site-header .menu-btn span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 5px auto;
	background: currentColor;
}

.site-header .mobile-panel {
	display: none;
}

.site-header .mobile-panel.open {
	display: grid;
	gap: 4px;
	padding: 10px 20px 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(21, 26, 31, 0.98);
}

.site-header .mobile-panel a {
	padding: 10px 0;
	color: rgba(255, 255, 255, 0.82);
	font-weight: 600;
}

.site-header .mobile-panel .mobile-sub {
	padding-left: 16px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
}

.language-switcher {
	position: relative;
	z-index: 80;
	flex: 0 0 auto;
	margin-left: 22px;
	font-family: inherit;
}

.language-toggle {
	min-width: 122px;
	min-height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 0 15px;
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 0;
	color: #1b252c;
	background: linear-gradient(105deg, #f8fafb 0%, #b7c2c8 27%, #eef2f4 49%, #8a969d 76%, #dce2e5 100%);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
	font-family: inherit;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.01em;
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.language-toggle:hover,
.language-toggle:focus-visible,
.language-switcher.is-open .language-toggle {
	border-color: rgba(255, 255, 255, 0.82);
	filter: brightness(1.08);
	transform: translateY(-1px);
	outline: none;
}

.language-globe {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
}

.language-chevron {
	width: 10px;
	height: 7px;
	flex: 0 0 10px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.2s ease;
}

.language-switcher.is-open .language-chevron {
	transform: rotate(180deg);
}

.language-switcher .lang-list {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	width: min(440px, calc(100vw - 28px));
	max-height: min(470px, calc(100vh - 100px));
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 3px;
	margin: 0;
	padding: 12px;
	overflow-y: auto;
	list-style: none;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(16, 22, 27, 0.98);
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.38);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-8px);
	transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.language-switcher.is-open .lang-list {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.language-switcher .lang-list li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.language-switcher .lang-option {
	min-height: 39px;
	display: flex;
	align-items: center;
	padding: 8px 11px;
	border: 1px solid transparent;
	background: transparent;
	color: #d9e0e4;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	text-decoration: none;
	white-space: normal;
	transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.language-switcher .lang-option:hover,
.language-switcher .lang-option:focus-visible {
	border-color: rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	outline: none;
}

.language-switcher .lang-list::-webkit-scrollbar {
	width: 8px;
}

.language-switcher .lang-list::-webkit-scrollbar-thumb {
	border: 2px solid #10161b;
	background: #89959c;
}

.site-footer {
	padding: 54px 0 32px;
	background: linear-gradient(135deg, #080b0e, #252b30 62%, #090c0f);
	color: var(--jlc-common-white);
}

.site-footer .footer-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.65fr 0.8fr 1fr;
	gap: 30px;
}

.site-footer h4 {
	margin: 0 0 12px;
	font-family: "Archivo", sans-serif;
}

.site-footer p,
.site-footer a,
.site-footer .footer-bottom {
	color: rgba(255, 255, 255, 0.66);
}

.site-footer .footer-link {
	display: block;
	margin: 7px 0;
}

.site-footer a.footer-link:hover,
.site-footer a:hover {
	color: #ffffff;
}

.site-footer .footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin-top: 34px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	font-size: 14px;
}

@media (max-width: 1100px) {
	.site-footer .footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1080px) {
	.site-header .brand-sub {
		display: none;
	}

	.site-header .nav-links {
		gap: 18px;
	}
}

@media (max-width: 980px) {
	.site-header .nav-links {
		display: none;
	}

	.site-header .brand-sub {
		display: block;
	}

	.site-header .menu-btn {
		display: block;
	}

	.language-switcher {
		margin-right: 10px;
		margin-left: auto;
	}
}

@media (max-width: 620px) {
	.site-footer .footer-grid {
		grid-template-columns: 1fr;
	}

	.site-footer .footer-bottom {
		display: block;
	}

	.site-footer .footer-bottom span {
		display: block;
		margin-top: 8px;
	}
}

@media (max-width: 560px) {
	.language-switcher {
		margin-right: 8px;
	}

	.language-toggle {
		min-width: 46px;
		width: 46px;
		padding: 0;
		gap: 0;
	}

	.language-label,
	.language-chevron {
		display: none;
	}

	.language-switcher .lang-list {
		position: fixed;
		top: 70px;
		right: 14px;
		left: 14px;
		width: auto;
		max-height: calc(100vh - 88px);
		grid-template-columns: 1fr;
	}
}

@media (max-width: 420px) {

	.site-header .container,
	.site-footer .container {
		width: min(100% - 24px, 1180px);
	}

	.site-header .brand-mark {
		width: 48px;
		flex-basis: 48px;
	}

	.site-header .brand-name {
		font-size: 13px;
	}

	.site-header .brand-sub {
		display: none;
	}
}