/* ==========================================================================
   Jusoor Cargo — جسور للشحن
   Main stylesheet
   --------------------------------------------------------------------------
   1.  Design tokens
   2.  Reset & base
   3.  Layout primitives
   4.  Buttons & badges
   5.  Site header & navigation
   6.  Hero
   7.  Regional network map
   8.  Services
   9.  Why Jusoor
   10. Tracking preview
   11. Call to action
   12. Site footer
   13. Inner page hero & content
   14. About page
   15. Services page
   16. Tracking page
   17. Blog / archive / 404 fallbacks
   18. Motion & accessibility
   19. Responsive
   ========================================================================== */

/* ==========================================================================
   1. Design tokens
   ========================================================================== */

:root {
	/* Brand — driven by the Customizer, these are the fallbacks. */
	--jc-primary: #0b2a5b;
	--jc-secondary: #ffc20e;

	/* Derived navy scale */
	--jc-navy-900: #051530;
	--jc-navy-800: #08214a;
	--jc-navy-700: var(--jc-primary);
	--jc-navy-600: #123a78;
	--jc-navy-500: #1a4d97;
	--jc-navy-400: #2f66b8;

	/* Derived yellow scale */
	--jc-yellow-600: #d99f00;
	--jc-yellow-500: var(--jc-secondary);
	--jc-yellow-400: #ffd24d;
	--jc-yellow-300: #ffe28c;

	/* Neutrals */
	--jc-white: #ffffff;
	--jc-gray-50: #f7f9fd;
	--jc-gray-100: #eef2f9;
	--jc-gray-200: #dde5f1;
	--jc-gray-300: #c3cfe1;
	--jc-muted: #64748b;
	--jc-ink: #16233c;

	/* Status colours */
	--jc-success: #17a673;
	--jc-danger: #d64545;

	/* Typography */
	--jc-font-ar: "Tajawal", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
	--jc-font-en: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
	--jc-font: var(--jc-font-ar);

	--jc-fs-hero: clamp(2.1rem, 1.15rem + 3.6vw, 4rem);
	--jc-fs-h1: clamp(1.9rem, 1.2rem + 2.6vw, 3.1rem);
	--jc-fs-h2: clamp(1.6rem, 1.1rem + 1.9vw, 2.5rem);
	--jc-fs-h3: clamp(1.2rem, 1rem + 0.8vw, 1.5rem);
	--jc-fs-lead: clamp(1rem, 0.95rem + 0.35vw, 1.18rem);
	--jc-fs-body: 1rem;
	--jc-fs-sm: 0.9rem;
	--jc-fs-xs: 0.8rem;

	/* Space */
	--jc-space-section: clamp(4rem, 2.5rem + 5vw, 7.5rem);
	--jc-container: 1220px;
	--jc-gutter: clamp(1.15rem, 0.6rem + 2vw, 2.5rem);

	/* Radii */
	--jc-radius-sm: 10px;
	--jc-radius: 18px;
	--jc-radius-lg: 26px;
	--jc-radius-xl: 34px;
	--jc-radius-pill: 999px;

	/* Elevation */
	--jc-shadow-xs: 0 2px 6px rgba(8, 33, 74, 0.06);
	--jc-shadow-sm: 0 6px 18px rgba(8, 33, 74, 0.08);
	--jc-shadow: 0 18px 45px -18px rgba(8, 33, 74, 0.28);
	--jc-shadow-lg: 0 40px 80px -32px rgba(8, 33, 74, 0.42);
	--jc-shadow-glow: 0 22px 50px -20px rgba(255, 194, 14, 0.55);

	/* Glass */
	--jc-glass-bg: rgba(255, 255, 255, 0.09);
	--jc-glass-border: rgba(255, 255, 255, 0.18);
	--jc-glass-bg-light: rgba(255, 255, 255, 0.72);
	--jc-glass-border-light: rgba(255, 255, 255, 0.85);

	/* Motion */
	--jc-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--jc-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--jc-dur: 0.55s;

	/* Layered gradients */
	--jc-grad-navy: linear-gradient(135deg, var(--jc-navy-900) 0%, var(--jc-navy-700) 48%, var(--jc-navy-500) 100%);
	--jc-grad-gold: linear-gradient(135deg, var(--jc-yellow-400) 0%, var(--jc-yellow-500) 55%, var(--jc-yellow-600) 100%);

	/* Header offset, kept in sync by JS */
	--jc-header-h: 86px;
}

html[lang^="en"] {
	--jc-font: var(--jc-font-en);
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--jc-header-h) + 24px);
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--jc-font);
	font-size: var(--jc-fs-body);
	line-height: 1.8;
	color: var(--jc-ink);
	background-color: var(--jc-white);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.6em;
	font-weight: 800;
	line-height: 1.28;
	color: var(--jc-navy-800);
	letter-spacing: -0.01em;
}

p {
	margin: 0 0 1.15em;
}

p:last-child {
	margin-bottom: 0;
}

ul, ol {
	padding-inline-start: 1.35em;
}

a {
	color: var(--jc-navy-600);
	text-decoration: none;
	transition: color 0.25s var(--jc-ease);
}

a:hover,
a:focus {
	color: var(--jc-yellow-600);
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

figure {
	margin: 0;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

:focus-visible {
	outline: 3px solid var(--jc-yellow-500);
	outline-offset: 3px;
	border-radius: 6px;
}

::selection {
	background: var(--jc-yellow-500);
	color: var(--jc-navy-900);
}

hr {
	border: 0;
	height: 1px;
	background: var(--jc-gray-200);
	margin: 2.5rem 0;
}

/* ==========================================================================
   3. Layout primitives
   ========================================================================== */

.jc-container {
	width: 100%;
	max-width: var(--jc-container);
	margin-inline: auto;
	padding-inline: var(--jc-gutter);
}

.jc-container--narrow {
	max-width: 880px;
}

.jc-section {
	position: relative;
	padding-block: var(--jc-space-section);
}

.jc-section--tight {
	padding-block: clamp(3rem, 2rem + 3vw, 5rem);
}

.jc-section--gray {
	background:
		radial-gradient(1100px 480px at 85% -10%, rgba(255, 194, 14, 0.10), transparent 62%),
		linear-gradient(180deg, var(--jc-white) 0%, var(--jc-gray-50) 24%, var(--jc-gray-50) 76%, var(--jc-white) 100%);
}

.jc-section--navy {
	background: var(--jc-grad-navy);
	color: rgba(255, 255, 255, 0.86);
	overflow: hidden;
}

.jc-section--navy h1,
.jc-section--navy h2,
.jc-section--navy h3,
.jc-section--navy h4 {
	color: var(--jc-white);
}

.jc-section__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.jc-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	opacity: 0.55;
	pointer-events: none;
}

.jc-blob--gold {
	background: radial-gradient(circle, rgba(255, 194, 14, 0.55), transparent 70%);
}

.jc-blob--blue {
	background: radial-gradient(circle, rgba(47, 102, 184, 0.55), transparent 70%);
}

/* Section heading block */
.jc-head {
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
	margin-bottom: clamp(2.25rem, 1.5rem + 2.4vw, 3.75rem);
}

.jc-head--start {
	text-align: start;
	margin-inline: 0;
}

.jc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.42rem 1.05rem;
	border-radius: var(--jc-radius-pill);
	background: rgba(255, 194, 14, 0.14);
	border: 1px solid rgba(255, 194, 14, 0.34);
	color: var(--jc-yellow-600);
	font-size: var(--jc-fs-xs);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 1.1rem;
}

.jc-eyebrow::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--jc-yellow-500);
	box-shadow: 0 0 0 4px rgba(255, 194, 14, 0.22);
}

.jc-section--navy .jc-eyebrow {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
	color: var(--jc-yellow-400);
}

.jc-head__title {
	font-size: var(--jc-fs-h2);
	margin-bottom: 0.65rem;
}

.jc-head__text {
	font-size: var(--jc-fs-lead);
	color: var(--jc-muted);
	margin: 0;
}

.jc-section--navy .jc-head__text {
	color: rgba(255, 255, 255, 0.72);
}

.jc-underline {
	position: relative;
	display: inline-block;
}

.jc-underline::after {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	bottom: 0.08em;
	width: 100%;
	height: 0.32em;
	background: var(--jc-grad-gold);
	opacity: 0.4;
	border-radius: 4px;
	z-index: -1;
}

.jc-text-gold {
	background: var(--jc-grad-gold);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.jc-grid {
	display: grid;
	gap: clamp(1.25rem, 0.8rem + 1.6vw, 2rem);
}

.jc-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.jc-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ==========================================================================
   4. Buttons & badges
   ========================================================================== */

.jc-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.95rem 1.85rem;
	border: 1px solid transparent;
	border-radius: var(--jc-radius-pill);
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1.2;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	transition:
		transform 0.35s var(--jc-ease),
		box-shadow 0.35s var(--jc-ease),
		background-color 0.3s var(--jc-ease),
		color 0.3s var(--jc-ease),
		border-color 0.3s var(--jc-ease);
	will-change: transform;
}

.jc-btn__icon {
	width: 1.15em;
	height: 1.15em;
	flex: none;
	transition: transform 0.35s var(--jc-ease);
}

.jc-btn:hover .jc-btn__icon,
.jc-btn:focus-visible .jc-btn__icon {
	transform: translateX(var(--jc-arrow-shift, -3px));
}

.jc-btn--primary {
	background: var(--jc-grad-gold);
	color: var(--jc-navy-900);
	box-shadow: var(--jc-shadow-glow);
}

.jc-btn--primary:hover,
.jc-btn--primary:focus-visible {
	color: var(--jc-navy-900);
	transform: translateY(-3px);
	box-shadow: 0 28px 60px -22px rgba(255, 194, 14, 0.75);
}

.jc-btn--navy {
	background: var(--jc-navy-700);
	color: var(--jc-white);
	box-shadow: var(--jc-shadow);
}

.jc-btn--navy:hover,
.jc-btn--navy:focus-visible {
	background: var(--jc-navy-600);
	color: var(--jc-white);
	transform: translateY(-3px);
}

.jc-btn--ghost {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.28);
	color: var(--jc-white);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.jc-btn--ghost:hover,
.jc-btn--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--jc-white);
	transform: translateY(-3px);
}

.jc-btn--outline {
	background: transparent;
	border-color: var(--jc-gray-300);
	color: var(--jc-navy-700);
}

.jc-btn--outline:hover,
.jc-btn--outline:focus-visible {
	border-color: var(--jc-navy-700);
	background: var(--jc-navy-700);
	color: var(--jc-white);
	transform: translateY(-3px);
}

.jc-btn--sm {
	padding: 0.65rem 1.3rem;
	font-size: 0.88rem;
}

.jc-btn--block {
	width: 100%;
}

.jc-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	align-items: center;
}

.jc-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.4rem 0.95rem;
	border-radius: var(--jc-radius-pill);
	background: var(--jc-gray-100);
	border: 1px solid var(--jc-gray-200);
	font-size: var(--jc-fs-xs);
	font-weight: 700;
	color: var(--jc-navy-700);
}

/* ==========================================================================
   5. Site header & navigation
   ========================================================================== */

.jc-header {
	position: fixed;
	inset-block-start: 0;
	inset-inline: 0;
	z-index: 900;
	transition: background-color 0.4s var(--jc-ease), box-shadow 0.4s var(--jc-ease), padding 0.4s var(--jc-ease);
	padding-block: 0.85rem;
	background: transparent;
}

.jc-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
}

/* Solid state: scrolled, or any page without a dark hero behind the bar. */
.jc-header.is-solid,
body:not(.jc-has-dark-hero) .jc-header {
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: saturate(180%) blur(18px);
	-webkit-backdrop-filter: saturate(180%) blur(18px);
	box-shadow: 0 10px 34px -22px rgba(8, 33, 74, 0.55);
	border-bottom: 1px solid rgba(8, 33, 74, 0.07);
}

.admin-bar .jc-header {
	inset-block-start: 32px;
}

/* Branding */
.jc-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	flex: none;
	min-width: 0;
}

.jc-brand__logo img {
	display: block;
	width: auto;
	height: clamp(44px, 3.4vw, 58px);
	max-height: 62px;
	object-fit: contain;
	transition: height 0.4s var(--jc-ease);
}

.jc-brand__mark {
	width: 52px;
	height: 52px;
	flex: none;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--jc-grad-navy);
	border: 2px solid var(--jc-yellow-500);
	box-shadow: var(--jc-shadow-sm);
	overflow: hidden;
}

.jc-brand__mark svg {
	width: 100%;
	height: 100%;
}

.jc-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
	min-width: 0;
}

.jc-brand__name {
	font-size: 1.12rem;
	font-weight: 900;
	color: var(--jc-navy-800);
	white-space: nowrap;
	transition: color 0.35s var(--jc-ease);
}

.jc-brand__tagline {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--jc-yellow-600);
	white-space: nowrap;
}

body.jc-has-dark-hero .jc-header:not(.is-solid) .jc-brand__name {
	color: var(--jc-white);
}

body.jc-has-dark-hero .jc-header:not(.is-solid) .jc-brand__tagline {
	color: var(--jc-yellow-400);
}

/* Desktop navigation */
.jc-nav {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin-inline-start: auto;
}

.jc-nav ul {
	display: flex;
	align-items: center;
	gap: 0.2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.jc-nav li {
	position: relative;
}

.jc-nav a {
	position: relative;
	display: block;
	padding: 0.6rem 0.95rem;
	border-radius: var(--jc-radius-pill);
	font-size: 0.96rem;
	font-weight: 700;
	color: var(--jc-navy-800);
	transition: color 0.28s var(--jc-ease), background-color 0.28s var(--jc-ease);
}

.jc-nav a::after {
	content: "";
	position: absolute;
	inset-inline-start: 50%;
	bottom: 0.28rem;
	width: 0;
	height: 3px;
	border-radius: 3px;
	background: var(--jc-grad-gold);
	transform: translateX(-50%);
	transition: width 0.35s var(--jc-ease);
}

.jc-nav a:hover::after,
.jc-nav a:focus-visible::after,
.jc-nav .current-menu-item > a::after,
.jc-nav .current_page_item > a::after,
.jc-nav .current-menu-ancestor > a::after {
	width: 22px;
}

.jc-nav .current-menu-item > a,
.jc-nav .current_page_item > a {
	color: var(--jc-navy-600);
}

body.jc-has-dark-hero .jc-header:not(.is-solid) .jc-nav a {
	color: rgba(255, 255, 255, 0.88);
}

body.jc-has-dark-hero .jc-header:not(.is-solid) .jc-nav a:hover,
body.jc-has-dark-hero .jc-header:not(.is-solid) .jc-nav .current-menu-item > a,
body.jc-has-dark-hero .jc-header:not(.is-solid) .jc-nav .current_page_item > a {
	color: var(--jc-white);
}

/* Sub menus */
.jc-nav ul ul {
	position: absolute;
	inset-block-start: calc(100% + 10px);
	inset-inline-start: 0;
	display: block;
	min-width: 220px;
	padding: 0.5rem;
	border-radius: var(--jc-radius);
	background: var(--jc-white);
	box-shadow: var(--jc-shadow);
	border: 1px solid var(--jc-gray-200);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s var(--jc-ease), transform 0.3s var(--jc-ease), visibility 0.3s;
	z-index: 5;
}

.jc-nav li:hover > ul,
.jc-nav li:focus-within > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.jc-nav ul ul a {
	color: var(--jc-navy-800) !important;
	border-radius: var(--jc-radius-sm);
	padding: 0.6rem 0.85rem;
}

.jc-nav ul ul a:hover {
	background: var(--jc-gray-100);
}

.jc-nav ul ul a::after {
	display: none;
}

.jc-header__actions {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	flex: none;
}

/* Hamburger */
.jc-burger {
	display: none;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid var(--jc-gray-200);
	border-radius: 14px;
	background: var(--jc-white);
	cursor: pointer;
	position: relative;
	box-shadow: var(--jc-shadow-xs);
	transition: background-color 0.3s var(--jc-ease), border-color 0.3s var(--jc-ease);
}

.jc-burger__box {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
}

.jc-burger__line {
	position: absolute;
	width: 20px;
	height: 2px;
	border-radius: 2px;
	background: var(--jc-navy-800);
	transition: transform 0.4s var(--jc-ease), opacity 0.25s var(--jc-ease), background-color 0.3s var(--jc-ease);
}

.jc-burger__line:nth-child(1) { transform: translateY(-6px); }
.jc-burger__line:nth-child(3) { transform: translateY(6px); }

.jc-burger[aria-expanded="true"] .jc-burger__line:nth-child(1) { transform: rotate(45deg); }
.jc-burger[aria-expanded="true"] .jc-burger__line:nth-child(2) { opacity: 0; }
.jc-burger[aria-expanded="true"] .jc-burger__line:nth-child(3) { transform: rotate(-45deg); }

body.jc-has-dark-hero .jc-header:not(.is-solid) .jc-burger {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.25);
}

body.jc-has-dark-hero .jc-header:not(.is-solid) .jc-burger__line {
	background: var(--jc-white);
}

/* Mobile drawer */
.jc-drawer {
	position: fixed;
	inset: 0;
	z-index: 950;
	visibility: hidden;
	pointer-events: none;
}

.jc-drawer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(5, 21, 48, 0.55);
	opacity: 0;
	transition: opacity 0.4s var(--jc-ease);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.jc-drawer__panel {
	position: absolute;
	inset-block: 0;
	inset-inline-end: 0;
	width: min(360px, 88vw);
	padding: 1.5rem 1.4rem 2.25rem;
	background: var(--jc-grad-navy);
	color: var(--jc-white);
	overflow-y: auto;
	transform: translateX(var(--jc-drawer-offset, 105%));
	transition: transform 0.45s var(--jc-ease);
	box-shadow: var(--jc-shadow-lg);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.jc-drawer.is-open {
	visibility: visible;
	pointer-events: auto;
}

.jc-drawer.is-open .jc-drawer__overlay { opacity: 1; }
.jc-drawer.is-open .jc-drawer__panel { transform: translateX(0); }

.jc-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 1.1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.jc-drawer__title {
	font-size: 1.05rem;
	font-weight: 900;
	color: var(--jc-white);
	margin: 0;
}

.jc-drawer__close {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.08);
	color: var(--jc-white);
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: background-color 0.3s var(--jc-ease), transform 0.3s var(--jc-ease);
}

.jc-drawer__close:hover {
	background: rgba(255, 255, 255, 0.18);
	transform: rotate(90deg);
}

.jc-drawer__nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.jc-drawer__nav ul ul {
	margin-block-start: 0.35rem;
	padding-inline-start: 0.9rem;
	border-inline-start: 2px solid rgba(255, 194, 14, 0.35);
}

.jc-drawer__nav a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem 1rem;
	border-radius: var(--jc-radius-sm);
	color: rgba(255, 255, 255, 0.9);
	font-weight: 700;
	font-size: 1.02rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	transition: background-color 0.3s var(--jc-ease), color 0.3s var(--jc-ease), transform 0.3s var(--jc-ease);
}

.jc-drawer__nav a:hover,
.jc-drawer__nav .current-menu-item > a,
.jc-drawer__nav .current_page_item > a {
	background: rgba(255, 194, 14, 0.16);
	border-color: rgba(255, 194, 14, 0.35);
	color: var(--jc-white);
}

.jc-drawer__foot {
	margin-block-start: auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.jc-drawer__countries {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.jc-drawer__countries span {
	font-size: 0.8rem;
	padding: 0.3rem 0.7rem;
	border-radius: var(--jc-radius-pill);
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.82);
}

body.jc-drawer-open {
	overflow: hidden;
}

/* ==========================================================================
   6. Hero
   ========================================================================== */

.jc-hero {
	position: relative;
	isolation: isolate;
	padding-block: calc(var(--jc-header-h) + clamp(2.5rem, 1.5rem + 5vw, 5.5rem)) clamp(3.5rem, 2rem + 6vw, 7rem);
	background: var(--jc-grad-navy);
	color: rgba(255, 255, 255, 0.82);
	overflow: hidden;
}

.jc-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
}

.jc-hero__grid-lines {
	position: absolute;
	inset: -20%;
	background-image:
		linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 62px 62px;
	transform: perspective(600px) rotateX(58deg) translateZ(-90px);
	transform-origin: center bottom;
	mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 62%);
	-webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 62%);
	opacity: 0.9;
}

.jc-hero__glow-a {
	position: absolute;
	inset-block-start: -18%;
	inset-inline-end: -8%;
	width: min(640px, 70vw);
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(255, 194, 14, 0.32), transparent 68%);
	filter: blur(20px);
}

.jc-hero__glow-b {
	position: absolute;
	inset-block-end: -22%;
	inset-inline-start: -12%;
	width: min(560px, 66vw);
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(47, 102, 184, 0.45), transparent 68%);
	filter: blur(24px);
}

.jc-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(2rem, 1rem + 4vw, 4rem);
}

.jc-hero__content {
	position: relative;
	z-index: 2;
	max-width: 620px;
}

.jc-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.5rem 1.1rem;
	border-radius: var(--jc-radius-pill);
	background: var(--jc-glass-bg);
	border: 1px solid var(--jc-glass-border);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	font-size: var(--jc-fs-xs);
	font-weight: 800;
	letter-spacing: 0.05em;
	color: var(--jc-yellow-400);
	margin-bottom: 1.4rem;
}

.jc-hero__badge .jc-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--jc-yellow-500);
	position: relative;
}

.jc-hero__badge .jc-dot::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--jc-yellow-500);
	animation: jc-ping 2.4s var(--jc-ease) infinite;
}

.jc-hero__eyebrow {
	display: block;
	font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.12rem);
	font-weight: 800;
	letter-spacing: 0.16em;
	color: var(--jc-yellow-400);
	margin-bottom: 0.85rem;
	text-transform: none;
}

.jc-hero__title {
	font-size: var(--jc-fs-hero);
	font-weight: 900;
	line-height: 1.16;
	color: var(--jc-white);
	margin-bottom: 1.1rem;
	text-wrap: balance;
}

.jc-hero__title .jc-word {
	display: inline-block;
}

.jc-hero__text {
	font-size: var(--jc-fs-lead);
	color: rgba(255, 255, 255, 0.76);
	max-width: 34em;
	margin-bottom: 2rem;
}

.jc-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 2.25rem;
	margin-block-start: 2.5rem;
	padding-block-start: 1.75rem;
	border-block-start: 1px solid rgba(255, 255, 255, 0.12);
}

.jc-hero__meta-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.92rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.82);
}

.jc-hero__meta-icon {
	width: 40px;
	height: 40px;
	flex: none;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: rgba(255, 194, 14, 0.14);
	border: 1px solid rgba(255, 194, 14, 0.3);
	color: var(--jc-yellow-400);
}

.jc-hero__meta-icon svg {
	width: 20px;
	height: 20px;
}

/* Hero visual */
.jc-hero__visual {
	position: relative;
	z-index: 1;
	perspective: 1400px;
}

.jc-hero__stage {
	position: relative;
	transform-style: preserve-3d;
	transform: rotateY(var(--jc-tilt-y, -6deg)) rotateX(var(--jc-tilt-x, 3deg));
	transition: transform 0.6s var(--jc-ease);
}

.jc-hero__truck {
	position: relative;
	width: 100%;
	filter: drop-shadow(0 40px 55px rgba(0, 0, 0, 0.42));
}

.jc-float-card {
	position: absolute;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.85rem 1.1rem;
	border-radius: var(--jc-radius);
	background: var(--jc-glass-bg-light);
	border: 1px solid var(--jc-glass-border-light);
	backdrop-filter: blur(16px) saturate(160%);
	-webkit-backdrop-filter: blur(16px) saturate(160%);
	box-shadow: var(--jc-shadow-lg);
	color: var(--jc-navy-800);
	font-weight: 800;
	font-size: 0.86rem;
	white-space: nowrap;
	transform: translateZ(60px);
}

.jc-float-card__icon {
	width: 38px;
	height: 38px;
	flex: none;
	display: grid;
	place-items: center;
	border-radius: 11px;
	background: var(--jc-grad-gold);
	color: var(--jc-navy-900);
	box-shadow: 0 8px 18px -8px rgba(255, 194, 14, 0.9);
}

.jc-float-card__icon svg {
	width: 20px;
	height: 20px;
}

.jc-float-card__label {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--jc-muted);
	letter-spacing: 0.04em;
}

.jc-float-card--a {
	inset-block-start: 6%;
	inset-inline-start: -4%;
	animation: jc-float 7s ease-in-out infinite;
}

.jc-float-card--b {
	inset-block-end: 14%;
	inset-inline-end: -3%;
	animation: jc-float 8.5s ease-in-out infinite reverse;
}

.jc-hero__scroll {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin-block-start: 2.5rem;
	font-size: var(--jc-fs-xs);
	font-weight: 700;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.55);
}

.jc-hero__scroll-line {
	width: 46px;
	height: 2px;
	background: linear-gradient(90deg, var(--jc-yellow-500), transparent);
	border-radius: 2px;
	position: relative;
	overflow: hidden;
}

.jc-hero__wave {
	position: absolute;
	inset-inline: 0;
	inset-block-end: -1px;
	width: 100%;
	height: clamp(48px, 6vw, 90px);
	color: var(--jc-white);
	z-index: 2;
}

/* ==========================================================================
   7. Regional network map
   ========================================================================== */

.jc-map-section {
	position: relative;
	background:
		radial-gradient(900px 420px at 12% 0%, rgba(18, 58, 120, 0.07), transparent 60%),
		linear-gradient(180deg, var(--jc-white), var(--jc-gray-50));
	overflow: hidden;
}

.jc-map-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 330px);
	gap: clamp(1.5rem, 1rem + 3vw, 3rem);
	align-items: center;
}

.jc-map-frame {
	position: relative;
	border-radius: var(--jc-radius-xl);
	padding: clamp(0.85rem, 0.4rem + 1.4vw, 1.5rem);
	background: linear-gradient(150deg, var(--jc-navy-900), var(--jc-navy-700) 55%, var(--jc-navy-500));
	box-shadow: var(--jc-shadow-lg);
	overflow: hidden;
}

.jc-map-frame::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 44px 44px;
	pointer-events: none;
}

.jc-map-frame::after {
	content: "";
	position: absolute;
	inset-block-start: -30%;
	inset-inline-end: -15%;
	width: 55%;
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(255, 194, 14, 0.22), transparent 68%);
	pointer-events: none;
}

.jc-map {
	position: relative;
	width: 100%;
	height: auto;
	display: block;
	z-index: 1;
}

/* Map SVG pieces */
.jc-map__context {
	fill: rgba(255, 255, 255, 0.035);
	stroke: rgba(255, 255, 255, 0.07);
	stroke-width: 1.2;
}

.jc-map__sea {
	fill: rgba(10, 40, 92, 0.55);
}

.jc-map__country {
	fill: rgba(255, 216, 110, 0.17);
	stroke: rgba(255, 194, 14, 0.72);
	stroke-width: 2.4;
	stroke-linejoin: round;
	transition: fill 0.4s var(--jc-ease), stroke 0.4s var(--jc-ease), filter 0.4s var(--jc-ease);
	cursor: pointer;
}

.jc-map__country:hover,
.jc-map__country.is-active {
	fill: rgba(255, 194, 14, 0.34);
	stroke: var(--jc-yellow-400);
	filter: drop-shadow(0 0 14px rgba(255, 194, 14, 0.55));
}

.jc-map__route {
	fill: none;
	stroke: rgba(255, 194, 14, 0.42);
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-dasharray: 9 11;
}

.jc-map__route-anim {
	fill: none;
	stroke: var(--jc-yellow-400);
	stroke-width: 3.4;
	stroke-linecap: round;
	filter: drop-shadow(0 0 8px rgba(255, 194, 14, 0.8));
	stroke-dasharray: 130 1400;
	stroke-dashoffset: 1530;
	animation: jc-route-dash 6s linear infinite;
}

.jc-map__pin-core {
	fill: var(--jc-yellow-500);
	stroke: var(--jc-navy-900);
	stroke-width: 2;
}

.jc-map__pin-pulse {
	fill: rgba(255, 194, 14, 0.5);
	transform-box: fill-box;
	transform-origin: center;
	animation: jc-pulse-ring 2.8s var(--jc-ease) infinite;
}

.jc-map__label {
	fill: var(--jc-white);
	font-family: var(--jc-font);
	font-size: 27px;
	font-weight: 800;
	paint-order: stroke;
	stroke: rgba(5, 21, 48, 0.75);
	stroke-width: 4px;
	stroke-linejoin: round;
	pointer-events: none;
}

.jc-map__label--sm {
	font-size: 14px;
	fill: rgba(255, 255, 255, 0.55);
	font-weight: 700;
	stroke-width: 3px;
}

.jc-map-legend {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.jc-country-card {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0.85rem 1.05rem;
	border-radius: var(--jc-radius);
	background: var(--jc-white);
	border: 1px solid var(--jc-gray-200);
	box-shadow: var(--jc-shadow-xs);
	cursor: pointer;
	text-align: start;
	width: 100%;
	font: inherit;
	transition: transform 0.35s var(--jc-ease), box-shadow 0.35s var(--jc-ease), border-color 0.35s var(--jc-ease);
}

.jc-country-card:hover,
.jc-country-card.is-active {
	transform: translateY(-3px);
	border-color: rgba(255, 194, 14, 0.65);
	box-shadow: var(--jc-shadow);
}

.jc-country-card__flag {
	font-size: 1.6rem;
	line-height: 1;
	flex: none;
	filter: drop-shadow(0 3px 6px rgba(8, 33, 74, 0.18));
}

.jc-country-card__body {
	min-width: 0;
}

.jc-country-card__name {
	display: block;
	font-weight: 800;
	color: var(--jc-navy-800);
	font-size: 1rem;
	line-height: 1.35;
}

.jc-country-card__meta {
	display: block;
	font-size: var(--jc-fs-xs);
	color: var(--jc-muted);
	font-weight: 600;
}

.jc-country-card__dot {
	margin-inline-start: auto;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--jc-yellow-500);
	flex: none;
	box-shadow: 0 0 0 4px rgba(255, 194, 14, 0.18);
}

/* ==========================================================================
   8. Services
   ========================================================================== */

.jc-service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: var(--jc-radius-lg);
	background: var(--jc-white);
	border: 1px solid var(--jc-gray-200);
	box-shadow: var(--jc-shadow-sm);
	overflow: hidden;
	transition: transform 0.5s var(--jc-ease), box-shadow 0.5s var(--jc-ease), border-color 0.5s var(--jc-ease);
	will-change: transform;
}

.jc-service-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--jc-shadow-lg);
	border-color: rgba(255, 194, 14, 0.55);
}

.jc-service-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(150deg, var(--jc-navy-800), var(--jc-navy-500));
}

.jc-service-card__media img,
.jc-service-card__media svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--jc-ease);
}

.jc-service-card:hover .jc-service-card__media img,
.jc-service-card:hover .jc-service-card__media svg {
	transform: scale(1.06);
}

.jc-service-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(5, 21, 48, 0.55));
	pointer-events: none;
}

.jc-service-card__icon {
	position: absolute;
	z-index: 2;
	inset-block-end: -26px;
	inset-inline-start: 1.6rem;
	width: 62px;
	height: 62px;
	display: grid;
	place-items: center;
	border-radius: 20px;
	background: var(--jc-grad-gold);
	color: var(--jc-navy-900);
	box-shadow: 0 16px 32px -14px rgba(255, 194, 14, 0.9);
	border: 3px solid var(--jc-white);
	transition: transform 0.5s var(--jc-ease);
}

.jc-service-card:hover .jc-service-card__icon {
	transform: rotate(-8deg) scale(1.06);
}

.jc-service-card__icon svg {
	width: 28px;
	height: 28px;
}

.jc-service-card__body {
	padding: 2.6rem 1.6rem 1.75rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 0.6rem;
}

.jc-service-card__index {
	position: absolute;
	inset-block-start: 1.1rem;
	inset-inline-end: 1.25rem;
	z-index: 2;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	color: var(--jc-white);
	padding: 0.32rem 0.7rem;
	border-radius: var(--jc-radius-pill);
	background: rgba(5, 21, 48, 0.42);
	border: 1px solid rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.jc-service-card__title {
	font-size: var(--jc-fs-h3);
	margin: 0;
}

.jc-service-card__text {
	color: var(--jc-muted);
	margin: 0;
	flex: 1;
}

.jc-service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-block-start: 0.85rem;
	font-weight: 800;
	font-size: 0.92rem;
	color: var(--jc-navy-600);
}

.jc-service-card__link svg {
	width: 1.05em;
	height: 1.05em;
	transition: transform 0.35s var(--jc-ease);
}

.jc-service-card__link:hover svg {
	transform: translateX(var(--jc-arrow-shift, -4px));
}

/* ==========================================================================
   9. Why Jusoor
   ========================================================================== */

.jc-why {
	position: relative;
	overflow: hidden;
}

.jc-why__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 0.6rem + 1.4vw, 1.6rem);
}

.jc-feature {
	position: relative;
	padding: 1.75rem 1.5rem;
	border-radius: var(--jc-radius);
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.11);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	overflow: hidden;
	transition: transform 0.45s var(--jc-ease), background-color 0.45s var(--jc-ease), border-color 0.45s var(--jc-ease);
}

.jc-feature::before {
	content: "";
	position: absolute;
	inset-block-start: 0;
	inset-inline-start: 0;
	width: 100%;
	height: 3px;
	background: var(--jc-grad-gold);
	transform: scaleX(0);
	transform-origin: var(--jc-origin, right);
	transition: transform 0.55s var(--jc-ease);
}

.jc-feature:hover {
	transform: translateY(-7px);
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(255, 194, 14, 0.42);
}

.jc-feature:hover::before {
	transform: scaleX(1);
}

.jc-feature__icon {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: 17px;
	margin-bottom: 1.1rem;
	background: rgba(255, 194, 14, 0.13);
	border: 1px solid rgba(255, 194, 14, 0.3);
	color: var(--jc-yellow-400);
	transition: transform 0.45s var(--jc-ease), background-color 0.45s var(--jc-ease);
}

.jc-feature:hover .jc-feature__icon {
	transform: translateY(-3px) scale(1.05);
	background: rgba(255, 194, 14, 0.22);
}

.jc-feature__icon svg {
	width: 26px;
	height: 26px;
}

.jc-feature__title {
	font-size: 1.12rem;
	margin-bottom: 0.45rem;
	color: var(--jc-white);
}

.jc-feature__text {
	margin: 0;
	font-size: 0.94rem;
	color: rgba(255, 255, 255, 0.68);
}

/* Light variant used on inner pages */
.jc-feature--light {
	background: var(--jc-white);
	border-color: var(--jc-gray-200);
	box-shadow: var(--jc-shadow-xs);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.jc-feature--light:hover {
	background: var(--jc-white);
	border-color: rgba(255, 194, 14, 0.55);
	box-shadow: var(--jc-shadow);
}

.jc-feature--light .jc-feature__icon {
	background: rgba(255, 194, 14, 0.14);
	color: var(--jc-yellow-600);
}

.jc-feature--light .jc-feature__title { color: var(--jc-navy-800); }
.jc-feature--light .jc-feature__text { color: var(--jc-muted); }

/* ==========================================================================
   10. Tracking preview & timeline
   ========================================================================== */

.jc-track-preview__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(1.75rem, 1rem + 3vw, 3.5rem);
	align-items: center;
}

.jc-track-panel {
	position: relative;
	padding: clamp(1.4rem, 1rem + 1.6vw, 2.4rem);
	border-radius: var(--jc-radius-xl);
	background: var(--jc-white);
	border: 1px solid var(--jc-gray-200);
	box-shadow: var(--jc-shadow-lg);
	overflow: hidden;
}

.jc-track-panel::before {
	content: "";
	position: absolute;
	inset-block-start: 0;
	inset-inline: 0;
	height: 5px;
	background: var(--jc-grad-gold);
}

.jc-track-panel__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 1.25rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px dashed var(--jc-gray-200);
}

.jc-track-panel__label {
	display: block;
	font-size: var(--jc-fs-xs);
	font-weight: 800;
	letter-spacing: 0.1em;
	color: var(--jc-muted);
	text-transform: uppercase;
	margin-bottom: 0.3rem;
}

.jc-track-panel__number {
	font-family: var(--jc-font-en);
	font-size: clamp(1.15rem, 1rem + 0.8vw, 1.6rem);
	font-weight: 900;
	color: var(--jc-navy-800);
	letter-spacing: 0.04em;
	direction: ltr;
	unicode-bidi: isolate;
}

.jc-status-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.05rem;
	border-radius: var(--jc-radius-pill);
	font-size: 0.85rem;
	font-weight: 800;
	background: rgba(23, 166, 115, 0.12);
	color: #0d7a53;
	border: 1px solid rgba(23, 166, 115, 0.3);
}

.jc-status-pill::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 4px rgba(23, 166, 115, 0.16);
}

.jc-status-pill--progress {
	background: rgba(255, 194, 14, 0.14);
	color: var(--jc-yellow-600);
	border-color: rgba(255, 194, 14, 0.36);
}

.jc-status-pill--progress::before {
	box-shadow: 0 0 0 4px rgba(255, 194, 14, 0.2);
}

/* Timeline */
.jc-timeline {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
	padding-inline-start: 2.6rem;
}

.jc-timeline::before {
	content: "";
	position: absolute;
	inset-block: 0.75rem 0.9rem;
	inset-inline-start: 15px;
	width: 3px;
	border-radius: 3px;
	background: var(--jc-gray-200);
}

.jc-timeline__progress {
	position: absolute;
	inset-block-start: 0.75rem;
	inset-inline-start: 15px;
	width: 3px;
	border-radius: 3px;
	background: var(--jc-grad-gold);
	height: 0;
	transition: height 1.4s var(--jc-ease-out);
	box-shadow: 0 0 12px rgba(255, 194, 14, 0.7);
}

.jc-timeline__item {
	position: relative;
	padding-block: 0.55rem;
	margin-bottom: 1.1rem;
	opacity: 0.55;
	transition: opacity 0.5s var(--jc-ease), transform 0.5s var(--jc-ease);
}

.jc-timeline__item:last-child {
	margin-bottom: 0;
}

.jc-timeline__item::before {
	content: "";
	position: absolute;
	inset-block-start: 0.95rem;
	inset-inline-start: -2.6rem;
	width: 33px;
	height: 33px;
	border-radius: 50%;
	background: var(--jc-white);
	border: 3px solid var(--jc-gray-200);
	transform: translateX(0);
	transition: border-color 0.5s var(--jc-ease), background-color 0.5s var(--jc-ease), box-shadow 0.5s var(--jc-ease);
	z-index: 1;
}

.jc-timeline__item::after {
	content: "";
	position: absolute;
	inset-block-start: 1.42rem;
	inset-inline-start: -2.03rem;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--jc-gray-300);
	z-index: 2;
	transition: background-color 0.5s var(--jc-ease), transform 0.5s var(--jc-ease);
}

.jc-timeline__item.is-done,
.jc-timeline__item.is-current {
	opacity: 1;
}

.jc-timeline__item.is-done::before,
.jc-timeline__item.is-current::before {
	border-color: var(--jc-yellow-500);
}

.jc-timeline__item.is-done::after,
.jc-timeline__item.is-current::after {
	background: var(--jc-yellow-500);
}

.jc-timeline__item.is-current::before {
	background: var(--jc-navy-800);
	box-shadow: 0 0 0 6px rgba(255, 194, 14, 0.18);
	animation: jc-pulse-soft 2.4s var(--jc-ease) infinite;
}

.jc-timeline__item.is-current::after {
	transform: scale(1.15);
}

.jc-timeline__title {
	display: block;
	font-size: 1.04rem;
	font-weight: 800;
	color: var(--jc-navy-800);
	margin-bottom: 0.15rem;
}

.jc-timeline__text {
	display: block;
	font-size: 0.9rem;
	color: var(--jc-muted);
	margin: 0;
}

.jc-timeline__badge {
	display: inline-block;
	margin-inline-start: 0.5rem;
	padding: 0.15rem 0.6rem;
	border-radius: var(--jc-radius-pill);
	background: var(--jc-grad-gold);
	color: var(--jc-navy-900);
	font-size: 0.68rem;
	font-weight: 900;
	vertical-align: middle;
}

/* ==========================================================================
   11. Call to action
   ========================================================================== */

.jc-cta {
	position: relative;
	overflow: hidden;
}

.jc-cta__box {
	position: relative;
	border-radius: var(--jc-radius-xl);
	padding: clamp(2.25rem, 1.5rem + 3.5vw, 4.25rem);
	background: var(--jc-grad-navy);
	box-shadow: var(--jc-shadow-lg);
	overflow: hidden;
	text-align: center;
	isolation: isolate;
}

.jc-cta__box::before {
	content: "";
	position: absolute;
	inset-block-start: -45%;
	inset-inline-start: -10%;
	width: 60%;
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(255, 194, 14, 0.28), transparent 65%);
	z-index: -1;
}

.jc-cta__box::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.9), transparent 72%);
	-webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.9), transparent 72%);
	z-index: -1;
}

.jc-cta__title {
	font-size: var(--jc-fs-h2);
	color: var(--jc-white);
	margin-bottom: 0.85rem;
}

.jc-cta__text {
	color: rgba(255, 255, 255, 0.74);
	font-size: var(--jc-fs-lead);
	max-width: 620px;
	margin-inline: auto;
	margin-bottom: 2rem;
}

.jc-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	justify-content: center;
}

/* ==========================================================================
   12. Site footer
   ========================================================================== */

.jc-footer {
	position: relative;
	background: linear-gradient(180deg, var(--jc-navy-900), #030d20);
	color: rgba(255, 255, 255, 0.68);
	overflow: hidden;
}

.jc-footer::before {
	content: "";
	position: absolute;
	inset-block-start: 0;
	inset-inline: 0;
	height: 4px;
	background: var(--jc-grad-gold);
	opacity: 0.85;
}

.jc-footer__top {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 1rem + 3vw, 3.5rem);
	padding-block: clamp(3rem, 2rem + 3vw, 4.5rem);
}

.jc-footer__brand {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 1.15rem;
}

.jc-footer__brand img {
	height: 62px;
	width: auto;
	object-fit: contain;
}

.jc-footer__name {
	font-size: 1.3rem;
	font-weight: 900;
	color: var(--jc-white);
	line-height: 1.2;
	margin: 0;
}

.jc-footer__name span {
	display: block;
	font-family: var(--jc-font-en);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--jc-yellow-500);
	margin-block-start: 0.25rem;
}

.jc-footer__about {
	max-width: 40ch;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.6);
}

.jc-footer__title {
	font-size: 1rem;
	font-weight: 800;
	color: var(--jc-white);
	margin-bottom: 1.15rem;
	position: relative;
	padding-bottom: 0.7rem;
}

.jc-footer__title::after {
	content: "";
	position: absolute;
	inset-block-end: 0;
	inset-inline-start: 0;
	width: 34px;
	height: 3px;
	border-radius: 3px;
	background: var(--jc-grad-gold);
}

.jc-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.jc-footer__list a {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.95rem;
	font-weight: 600;
	transition: color 0.3s var(--jc-ease), transform 0.3s var(--jc-ease), padding 0.3s var(--jc-ease);
}

.jc-footer__list a::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--jc-yellow-500);
	opacity: 0.5;
	flex: none;
	transition: opacity 0.3s var(--jc-ease), transform 0.3s var(--jc-ease);
}

.jc-footer__list a:hover {
	color: var(--jc-white);
	padding-inline-start: 0.3rem;
}

.jc-footer__list a:hover::before {
	opacity: 1;
	transform: scale(1.4);
}

.jc-footer__countries {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 0.6rem;
}

.jc-footer__country {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.55rem 0.8rem;
	border-radius: var(--jc-radius-sm);
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.9rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.78);
	transition: background-color 0.3s var(--jc-ease), border-color 0.3s var(--jc-ease), transform 0.3s var(--jc-ease);
}

.jc-footer__country:hover {
	background: rgba(255, 194, 14, 0.1);
	border-color: rgba(255, 194, 14, 0.3);
	transform: translateY(-2px);
}

.jc-footer__country-flag {
	font-size: 1.15rem;
	line-height: 1;
}

.jc-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: 1.5rem;
	border-block-start: 1px solid rgba(255, 255, 255, 0.09);
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.5);
}

.jc-footer__bottom a {
	color: rgba(255, 255, 255, 0.7);
}

.jc-footer__bottom a:hover {
	color: var(--jc-yellow-400);
}

/* Back to top */
.jc-top {
	position: fixed;
	inset-block-end: 24px;
	inset-inline-end: 24px;
	z-index: 800;
	width: 50px;
	height: 50px;
	display: grid;
	place-items: center;
	border: none;
	border-radius: 50%;
	background: var(--jc-grad-gold);
	color: var(--jc-navy-900);
	box-shadow: var(--jc-shadow-glow);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px) scale(0.9);
	transition: opacity 0.4s var(--jc-ease), transform 0.4s var(--jc-ease), visibility 0.4s;
}

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

.jc-top:hover {
	transform: translateY(-3px) scale(1.05);
}

.jc-top svg {
	width: 22px;
	height: 22px;
}

/* ==========================================================================
   13. Inner page hero & content
   ========================================================================== */

.jc-page-hero {
	position: relative;
	padding-block: calc(var(--jc-header-h) + clamp(2.5rem, 1.5rem + 4vw, 4.5rem)) clamp(3rem, 2rem + 4vw, 5rem);
	background: var(--jc-grad-navy);
	color: rgba(255, 255, 255, 0.8);
	overflow: hidden;
	isolation: isolate;
	text-align: center;
}

.jc-page-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
}

.jc-page-hero__bg::before {
	content: "";
	position: absolute;
	inset-block-start: -40%;
	inset-inline-end: -10%;
	width: min(620px, 75vw);
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(255, 194, 14, 0.24), transparent 66%);
}

.jc-page-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 52px 52px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 85%);
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 85%);
}

.jc-page-hero__inner {
	position: relative;
	max-width: 780px;
	margin-inline: auto;
}

.jc-page-hero__title {
	font-size: var(--jc-fs-h1);
	color: var(--jc-white);
	margin-bottom: 0.85rem;
	text-wrap: balance;
}

.jc-page-hero__text {
	font-size: var(--jc-fs-lead);
	color: rgba(255, 255, 255, 0.74);
	margin: 0 auto;
	max-width: 56ch;
}

.jc-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-block-start: 1.5rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
}

.jc-breadcrumbs a {
	color: rgba(255, 255, 255, 0.78);
	font-weight: 700;
}

.jc-breadcrumbs a:hover {
	color: var(--jc-yellow-400);
}

.jc-breadcrumbs__sep {
	opacity: 0.5;
}

/* Editor content */
.jc-content {
	font-size: 1.02rem;
	color: #2b3a55;
}

.jc-content > * + * {
	margin-block-start: 1.15em;
}

.jc-content h2 { font-size: var(--jc-fs-h2); margin-block-start: 1.8em; }
.jc-content h3 { font-size: var(--jc-fs-h3); margin-block-start: 1.5em; }

.jc-content img,
.jc-content .wp-block-image img {
	border-radius: var(--jc-radius);
	box-shadow: var(--jc-shadow-sm);
}

.jc-content blockquote {
	margin: 2rem 0;
	padding: 1.25rem 1.5rem;
	border-inline-start: 4px solid var(--jc-yellow-500);
	background: var(--jc-gray-50);
	border-radius: var(--jc-radius-sm);
	font-size: 1.06rem;
	color: var(--jc-navy-800);
}

.jc-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.jc-content th,
.jc-content td {
	padding: 0.75rem 1rem;
	border: 1px solid var(--jc-gray-200);
	text-align: start;
}

.jc-content th {
	background: var(--jc-gray-100);
	font-weight: 800;
	color: var(--jc-navy-800);
}

.jc-content code,
.jc-content pre {
	background: var(--jc-gray-100);
	border-radius: var(--jc-radius-sm);
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 0.9em;
}

.jc-content code { padding: 0.15em 0.45em; }
.jc-content pre { padding: 1.1rem 1.25rem; overflow-x: auto; direction: ltr; }

/* ==========================================================================
   14. About page
   ========================================================================== */

.jc-split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.75rem, 1rem + 3.5vw, 4rem);
	align-items: center;
}

.jc-split--reverse .jc-split__media {
	order: 2;
}

.jc-split__media {
	position: relative;
	border-radius: var(--jc-radius-xl);
	overflow: hidden;
	box-shadow: var(--jc-shadow-lg);
	background: linear-gradient(150deg, var(--jc-navy-800), var(--jc-navy-500));
	aspect-ratio: 4 / 3;
}

.jc-split__media img,
.jc-split__media svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jc-split__media::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: inherit;
	pointer-events: none;
}

.jc-split__accent {
	position: absolute;
	z-index: 2;
	inset-block-end: 1.25rem;
	inset-inline-start: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.8rem 1.1rem;
	border-radius: var(--jc-radius);
	background: var(--jc-glass-bg-light);
	border: 1px solid var(--jc-glass-border-light);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: var(--jc-shadow);
	font-weight: 800;
	font-size: 0.88rem;
	color: var(--jc-navy-800);
}

.jc-split__accent svg {
	width: 22px;
	height: 22px;
	color: var(--jc-yellow-600);
	flex: none;
}

.jc-pillar-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 0.6rem + 1.5vw, 1.75rem);
}

.jc-pillar {
	position: relative;
	padding: 2rem 1.6rem;
	border-radius: var(--jc-radius-lg);
	background: var(--jc-white);
	border: 1px solid var(--jc-gray-200);
	box-shadow: var(--jc-shadow-sm);
	overflow: hidden;
	transition: transform 0.45s var(--jc-ease), box-shadow 0.45s var(--jc-ease);
}

.jc-pillar:hover {
	transform: translateY(-8px);
	box-shadow: var(--jc-shadow-lg);
}

.jc-pillar::after {
	content: "";
	position: absolute;
	inset-block-start: -40px;
	inset-inline-end: -40px;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 194, 14, 0.16), transparent 70%);
	pointer-events: none;
}

.jc-pillar__icon {
	width: 58px;
	height: 58px;
	border-radius: 18px;
	display: grid;
	place-items: center;
	background: var(--jc-grad-navy);
	color: var(--jc-yellow-400);
	margin-bottom: 1.2rem;
	box-shadow: var(--jc-shadow-sm);
}

.jc-pillar__icon svg {
	width: 26px;
	height: 26px;
}

.jc-pillar__title {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.jc-pillar__text {
	color: var(--jc-muted);
	margin: 0;
	font-size: 0.97rem;
}

.jc-value-list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.jc-value-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-weight: 600;
	color: #33415c;
}

.jc-value-list li svg {
	width: 22px;
	height: 22px;
	flex: none;
	margin-block-start: 0.28rem;
	color: var(--jc-yellow-600);
}

/* ==========================================================================
   15. Services page
   ========================================================================== */

.jc-service-block {
	position: relative;
	padding-block: clamp(3rem, 2rem + 3vw, 5rem);
	scroll-margin-top: calc(var(--jc-header-h) + 20px);
}

.jc-service-block + .jc-service-block {
	border-block-start: 1px solid var(--jc-gray-200);
}

.jc-service-block__layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.75rem, 1rem + 3.5vw, 4rem);
	align-items: center;
}

.jc-service-block:nth-child(even) .jc-service-block__media {
	order: 2;
}

.jc-service-block__media {
	position: relative;
	border-radius: var(--jc-radius-xl);
	overflow: hidden;
	box-shadow: var(--jc-shadow-lg);
	aspect-ratio: 4 / 3;
	background: linear-gradient(150deg, var(--jc-navy-800), var(--jc-navy-500));
}

.jc-service-block__media img,
.jc-service-block__media svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jc-service-block__number {
	position: absolute;
	z-index: 2;
	inset-block-start: 1.1rem;
	inset-inline-start: 1.1rem;
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	border-radius: 17px;
	background: var(--jc-grad-gold);
	color: var(--jc-navy-900);
	font-weight: 900;
	font-size: 1.25rem;
	font-family: var(--jc-font-en);
	box-shadow: 0 14px 30px -12px rgba(255, 194, 14, 0.85);
}

.jc-service-block__icon {
	width: 62px;
	height: 62px;
	border-radius: 20px;
	display: grid;
	place-items: center;
	background: rgba(255, 194, 14, 0.14);
	border: 1px solid rgba(255, 194, 14, 0.3);
	color: var(--jc-yellow-600);
	margin-bottom: 1.35rem;
}

.jc-service-block__icon svg {
	width: 30px;
	height: 30px;
}

.jc-service-block__title {
	font-size: var(--jc-fs-h2);
	margin-bottom: 0.75rem;
}

.jc-service-block__text {
	font-size: var(--jc-fs-lead);
	color: var(--jc-muted);
	margin-bottom: 1.5rem;
}

.jc-check-list {
	list-style: none;
	margin: 0 0 1.85rem;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}

.jc-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	color: #33415c;
	font-weight: 600;
	font-size: 0.98rem;
}

.jc-check-list li::before {
	content: "";
	width: 22px;
	height: 22px;
	flex: none;
	margin-block-start: 0.3rem;
	border-radius: 50%;
	background:
		var(--jc-grad-gold)
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23051530' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
		center / 13px 13px no-repeat;
	box-shadow: 0 6px 14px -6px rgba(255, 194, 14, 0.9);
}

/* ==========================================================================
   16. Tracking page
   ========================================================================== */

.jc-track-search {
	position: relative;
	z-index: 5;
	max-width: 760px;
	margin-inline: auto;
	margin-block-start: clamp(-4rem, -3vw - 2rem, -2.5rem);
}

.jc-track-search__box {
	padding: clamp(1.25rem, 0.9rem + 1.4vw, 2rem);
	border-radius: var(--jc-radius-xl);
	background: var(--jc-white);
	border: 1px solid var(--jc-gray-200);
	box-shadow: var(--jc-shadow-lg);
}

.jc-track-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: stretch;
}

.jc-track-form__field {
	position: relative;
	flex: 1 1 260px;
	min-width: 0;
}

.jc-track-form__icon {
	position: absolute;
	inset-block-start: 50%;
	inset-inline-start: 1.05rem;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	color: var(--jc-muted);
	pointer-events: none;
}

.jc-track-form__input {
	width: 100%;
	height: 60px;
	padding-inline: 3.1rem 1.1rem;
	border-radius: var(--jc-radius-pill);
	border: 2px solid var(--jc-gray-200);
	background: var(--jc-gray-50);
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--jc-navy-800);
	letter-spacing: 0.03em;
	transition: border-color 0.3s var(--jc-ease), box-shadow 0.3s var(--jc-ease), background-color 0.3s var(--jc-ease);
}

.jc-track-form__input::placeholder {
	color: #9aa8bf;
	font-weight: 600;
	letter-spacing: normal;
}

.jc-track-form__input:focus {
	outline: none;
	background: var(--jc-white);
	border-color: var(--jc-yellow-500);
	box-shadow: 0 0 0 5px rgba(255, 194, 14, 0.16);
}

.jc-track-form__submit {
	height: 60px;
	flex: 0 0 auto;
	padding-inline: 2.1rem;
}

.jc-track-form__hint {
	margin-block-start: 0.9rem;
	font-size: var(--jc-fs-sm);
	color: var(--jc-muted);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem;
}

.jc-track-form__hint code {
	font-family: var(--jc-font-en);
	background: var(--jc-gray-100);
	border: 1px solid var(--jc-gray-200);
	border-radius: 6px;
	padding: 0.1rem 0.5rem;
	font-weight: 800;
	color: var(--jc-navy-700);
	direction: ltr;
	unicode-bidi: isolate;
}

.jc-track-form.is-loading .jc-track-form__submit {
	opacity: 0.7;
	pointer-events: none;
}

/* Result area */
.jc-track-result {
	margin-block-start: clamp(2rem, 1.5rem + 2vw, 3.25rem);
}

.jc-track-result[hidden] {
	display: none;
}

.jc-track-dash {
	border-radius: var(--jc-radius-xl);
	overflow: hidden;
	background: var(--jc-white);
	border: 1px solid var(--jc-gray-200);
	box-shadow: var(--jc-shadow-lg);
}

.jc-track-dash__head {
	position: relative;
	padding: clamp(1.4rem, 1rem + 1.6vw, 2.25rem);
	background: var(--jc-grad-navy);
	color: rgba(255, 255, 255, 0.8);
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
}

.jc-track-dash__head::after {
	content: "";
	position: absolute;
	inset-block-start: -60%;
	inset-inline-end: -8%;
	width: 320px;
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(255, 194, 14, 0.24), transparent 66%);
	pointer-events: none;
}

.jc-track-dash__id {
	position: relative;
	z-index: 1;
}

.jc-track-dash__label {
	display: block;
	font-size: var(--jc-fs-xs);
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--jc-yellow-400);
	margin-bottom: 0.35rem;
}

.jc-track-dash__number {
	font-family: var(--jc-font-en);
	font-size: clamp(1.35rem, 1.1rem + 1.2vw, 2rem);
	font-weight: 900;
	color: var(--jc-white);
	letter-spacing: 0.05em;
	margin: 0;
	direction: ltr;
	unicode-bidi: isolate;
}

.jc-track-dash__status {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.7rem 1.35rem;
	border-radius: var(--jc-radius-pill);
	background: var(--jc-grad-gold);
	color: var(--jc-navy-900);
	font-weight: 900;
	font-size: 0.98rem;
	box-shadow: 0 16px 34px -16px rgba(255, 194, 14, 0.9);
}

.jc-track-dash__status svg {
	width: 20px;
	height: 20px;
}

.jc-track-dash__meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 1px;
	background: var(--jc-gray-200);
	border-block-end: 1px solid var(--jc-gray-200);
}

.jc-track-meta {
	background: var(--jc-white);
	padding: 1.35rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.9rem;
	transition: background-color 0.3s var(--jc-ease);
}

.jc-track-meta:hover {
	background: var(--jc-gray-50);
}

.jc-track-meta__icon {
	width: 44px;
	height: 44px;
	flex: none;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: rgba(18, 58, 120, 0.08);
	color: var(--jc-navy-600);
}

.jc-track-meta__icon svg {
	width: 21px;
	height: 21px;
}

.jc-track-meta__label {
	display: block;
	font-size: var(--jc-fs-xs);
	font-weight: 800;
	letter-spacing: 0.06em;
	color: var(--jc-muted);
	text-transform: uppercase;
	margin-bottom: 0.12rem;
}

.jc-track-meta__value {
	display: block;
	font-size: 1.02rem;
	font-weight: 800;
	color: var(--jc-navy-800);
	line-height: 1.4;
	overflow-wrap: anywhere;
}

.jc-track-dash__body {
	padding: clamp(1.5rem, 1rem + 1.8vw, 2.5rem);
}

.jc-track-dash__body-title {
	font-size: 1.2rem;
	margin-bottom: 1.75rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.jc-track-dash__body-title svg {
	width: 22px;
	height: 22px;
	color: var(--jc-yellow-600);
}

.jc-track-progress {
	margin-bottom: 2rem;
}

.jc-track-progress__bar {
	position: relative;
	height: 10px;
	border-radius: var(--jc-radius-pill);
	background: var(--jc-gray-100);
	overflow: hidden;
	border: 1px solid var(--jc-gray-200);
}

.jc-track-progress__fill {
	position: absolute;
	inset-block: 0;
	inset-inline-start: 0;
	width: 0;
	border-radius: var(--jc-radius-pill);
	background: var(--jc-grad-gold);
	transition: width 1.3s var(--jc-ease-out);
	box-shadow: 0 0 14px rgba(255, 194, 14, 0.65);
}

.jc-track-progress__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-block-start: 0.7rem;
	font-size: var(--jc-fs-sm);
	font-weight: 700;
	color: var(--jc-muted);
}

.jc-track-progress__value {
	color: var(--jc-navy-700);
	font-family: var(--jc-font-en);
	font-weight: 900;
}

/* Empty / error state */
.jc-track-empty {
	text-align: center;
	padding: clamp(2.25rem, 1.5rem + 3vw, 3.5rem) 1.5rem;
	border-radius: var(--jc-radius-xl);
	background: var(--jc-white);
	border: 1px solid var(--jc-gray-200);
	box-shadow: var(--jc-shadow-sm);
}

.jc-track-empty__icon {
	width: 84px;
	height: 84px;
	margin: 0 auto 1.35rem;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(214, 69, 69, 0.09);
	color: var(--jc-danger);
	border: 1px solid rgba(214, 69, 69, 0.2);
}

.jc-track-empty__icon svg {
	width: 38px;
	height: 38px;
}

.jc-track-empty__title {
	font-size: var(--jc-fs-h3);
	margin-bottom: 0.5rem;
}

.jc-track-empty__text {
	color: var(--jc-muted);
	margin: 0 auto;
	max-width: 40ch;
}

.jc-track-empty--info .jc-track-empty__icon {
	background: rgba(18, 58, 120, 0.07);
	color: var(--jc-navy-600);
	border-color: rgba(18, 58, 120, 0.16);
}

/* Skeleton loader */
.jc-skeleton {
	border-radius: var(--jc-radius-xl);
	overflow: hidden;
	border: 1px solid var(--jc-gray-200);
	background: var(--jc-white);
	padding: 1.75rem;
	display: grid;
	gap: 1rem;
}

.jc-skeleton__line {
	height: 16px;
	border-radius: 8px;
	background: linear-gradient(90deg, var(--jc-gray-100) 25%, var(--jc-gray-200) 37%, var(--jc-gray-100) 63%);
	background-size: 400% 100%;
	animation: jc-shimmer 1.5s ease-in-out infinite;
}

.jc-skeleton__line--lg { height: 34px; width: 55%; }
.jc-skeleton__line--sm { width: 35%; }

/* ==========================================================================
   17. Blog / archive / 404 fallbacks
   ========================================================================== */

.jc-main {
	min-height: 40vh;
}

.jc-post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: clamp(1.25rem, 0.8rem + 1.6vw, 2rem);
}

.jc-post-card {
	display: flex;
	flex-direction: column;
	border-radius: var(--jc-radius-lg);
	overflow: hidden;
	background: var(--jc-white);
	border: 1px solid var(--jc-gray-200);
	box-shadow: var(--jc-shadow-xs);
	transition: transform 0.45s var(--jc-ease), box-shadow 0.45s var(--jc-ease);
}

.jc-post-card:hover {
	transform: translateY(-7px);
	box-shadow: var(--jc-shadow);
}

.jc-post-card__media {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--jc-gray-100);
}

.jc-post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--jc-ease);
}

.jc-post-card:hover .jc-post-card__media img {
	transform: scale(1.05);
}

.jc-post-card__body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	flex: 1;
}

.jc-post-card__meta {
	font-size: var(--jc-fs-xs);
	font-weight: 700;
	color: var(--jc-yellow-600);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.jc-post-card__title {
	font-size: 1.18rem;
	margin: 0;
}

.jc-post-card__excerpt {
	color: var(--jc-muted);
	font-size: 0.95rem;
	margin: 0;
	flex: 1;
}

.jc-article {
	max-width: 820px;
	margin-inline: auto;
}

.jc-article__thumb {
	border-radius: var(--jc-radius-lg);
	overflow: hidden;
	margin-bottom: 2rem;
	box-shadow: var(--jc-shadow);
}

.jc-pagination {
	margin-block-start: 3rem;
	display: flex;
	justify-content: center;
}

.jc-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	align-items: center;
}

.jc-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 46px;
	height: 46px;
	padding-inline: 0.75rem;
	border-radius: 14px;
	background: var(--jc-white);
	border: 1px solid var(--jc-gray-200);
	font-weight: 800;
	color: var(--jc-navy-700);
	transition: background-color 0.3s var(--jc-ease), color 0.3s var(--jc-ease), transform 0.3s var(--jc-ease);
}

.jc-pagination .page-numbers:hover,
.jc-pagination .page-numbers.current {
	background: var(--jc-navy-700);
	border-color: var(--jc-navy-700);
	color: var(--jc-white);
	transform: translateY(-2px);
}

.jc-404 {
	text-align: center;
	padding-block: clamp(3rem, 2rem + 4vw, 5rem);
}

.jc-404__code {
	font-family: var(--jc-font-en);
	font-size: clamp(4.5rem, 3rem + 10vw, 9rem);
	font-weight: 900;
	line-height: 1;
	background: var(--jc-grad-gold);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 0.5rem;
}

.jc-comments {
	max-width: 820px;
	margin: 3rem auto 0;
	padding-block-start: 2.5rem;
	border-block-start: 1px solid var(--jc-gray-200);
}

.jc-comments .comment-list {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
}

.jc-comments .comment-list li {
	margin-bottom: 1.25rem;
	padding: 1.25rem;
	border-radius: var(--jc-radius);
	background: var(--jc-gray-50);
	border: 1px solid var(--jc-gray-200);
}

.jc-comments input[type="text"],
.jc-comments input[type="email"],
.jc-comments input[type="url"],
.jc-comments textarea {
	width: 100%;
	padding: 0.85rem 1.05rem;
	border-radius: var(--jc-radius-sm);
	border: 2px solid var(--jc-gray-200);
	background: var(--jc-white);
	transition: border-color 0.3s var(--jc-ease);
}

.jc-comments input:focus,
.jc-comments textarea:focus {
	outline: none;
	border-color: var(--jc-yellow-500);
}

.jc-comments .submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.85rem;
	border: none;
	border-radius: var(--jc-radius-pill);
	background: var(--jc-grad-gold);
	color: var(--jc-navy-900);
	font-weight: 800;
	cursor: pointer;
	box-shadow: var(--jc-shadow-glow);
}

/* Widget-free sidebar-less layout helper */
.jc-notice {
	padding: 1.15rem 1.35rem;
	border-radius: var(--jc-radius);
	background: rgba(255, 194, 14, 0.1);
	border: 1px solid rgba(255, 194, 14, 0.3);
	color: var(--jc-navy-800);
	font-weight: 600;
}

/* ==========================================================================
   18. Motion & accessibility
   ========================================================================== */

@keyframes jc-float {
	0%, 100% { transform: translateZ(60px) translateY(0); }
	50%      { transform: translateZ(60px) translateY(-14px); }
}

@keyframes jc-ping {
	0%   { transform: scale(1); opacity: 0.85; }
	75%  { transform: scale(2.6); opacity: 0; }
	100% { transform: scale(2.6); opacity: 0; }
}

@keyframes jc-pulse-ring {
	0%   { transform: scale(0.55); opacity: 0.85; }
	70%  { transform: scale(2.2);  opacity: 0; }
	100% { transform: scale(2.2);  opacity: 0; }
}

@keyframes jc-pulse-soft {
	0%, 100% { box-shadow: 0 0 0 6px rgba(255, 194, 14, 0.18); }
	50%      { box-shadow: 0 0 0 12px rgba(255, 194, 14, 0.05); }
}

@keyframes jc-route-dash {
	to { stroke-dashoffset: 0; }
}

@keyframes jc-shimmer {
	0%   { background-position: 100% 50%; }
	100% { background-position: 0 50%; }
}

@keyframes jc-truck-roll {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-5px); }
}

@keyframes jc-road-dash {
	to { stroke-dashoffset: -260; }
}

@keyframes jc-speed-line {
	0%   { opacity: 0; transform: translateX(0) scaleX(0.4); }
	35%  { opacity: 1; }
	100% { opacity: 0; transform: translateX(var(--jc-speed-x, 90px)) scaleX(1); }
}

@keyframes jc-spin {
	to { transform: rotate(360deg); }
}

/* Scroll reveal — without JavaScript everything stays visible. */
.no-js [data-reveal] {
	opacity: 1 !important;
	transform: none !important;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(34px);
	transition:
		opacity 0.85s var(--jc-ease-out),
		transform 0.85s var(--jc-ease-out);
	transition-delay: var(--jc-reveal-delay, 0ms);
	will-change: opacity, transform;
}

[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="zoom"]  { transform: scale(0.93); }

[data-reveal].is-revealed {
	opacity: 1;
	transform: none;
}

/* Truck & road animation hooks (inside the hero SVG) */
.jc-truck-body {
	transform-box: fill-box;
	transform-origin: center;
	animation: jc-truck-roll 3.2s ease-in-out infinite;
}

.jc-wheel {
	transform-box: fill-box;
	transform-origin: center;
	animation: jc-spin 1.6s linear infinite;
}

.jc-road-line {
	stroke-dasharray: 26 22;
	animation: jc-road-dash 2.2s linear infinite;
}

.jc-speed-line {
	animation: jc-speed-line 2.1s ease-out infinite;
}

.jc-speed-line--2 { animation-delay: 0.45s; }
.jc-speed-line--3 { animation-delay: 0.9s; }

.jc-parallax {
	will-change: transform;
	transition: transform 0.15s linear;
}

.jc-spinner {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2.5px solid rgba(5, 21, 48, 0.25);
	border-block-start-color: var(--jc-navy-900);
	animation: jc-spin 0.75s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}

	[data-reveal] {
		opacity: 1 !important;
		transform: none !important;
	}

	.jc-hero__stage {
		transform: none !important;
	}

	.jc-parallax {
		transform: none !important;
	}

	.jc-timeline__progress,
	.jc-track-progress__fill {
		transition: none !important;
	}
}

/* ==========================================================================
   19. Responsive
   ========================================================================== */

@media (max-width: 1080px) {
	.jc-hero__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.jc-hero__content {
		margin-inline: auto;
	}

	.jc-hero__text {
		margin-inline: auto;
	}

	.jc-hero__btns,
	.jc-hero__meta {
		justify-content: center;
	}

	.jc-hero__visual {
		max-width: 620px;
		margin-inline: auto;
		width: 100%;
	}

	.jc-map-layout {
		grid-template-columns: 1fr;
	}

	.jc-map-legend {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.jc-country-card {
		flex: 1 1 200px;
		width: auto;
	}

	.jc-track-preview__layout {
		grid-template-columns: 1fr;
	}

	.jc-footer__top {
		grid-template-columns: 1fr 1fr;
	}

	.jc-footer__intro {
		grid-column: 1 / -1;
	}
}

@media (max-width: 991px) {
	.jc-nav,
	.jc-header__cta {
		display: none;
	}

	.jc-burger {
		display: block;
	}

	.jc-grid--3,
	.jc-why__grid,
	.jc-pillar-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jc-split,
	.jc-service-block__layout {
		grid-template-columns: 1fr;
	}

	.jc-split--reverse .jc-split__media,
	.jc-service-block:nth-child(even) .jc-service-block__media {
		order: 0;
	}

	.jc-float-card--a { inset-inline-start: 0; }
	.jc-float-card--b { inset-inline-end: 0; }
}

@media (max-width: 719px) {
	:root {
		--jc-header-h: 74px;
	}

	.jc-grid--3,
	.jc-grid--2,
	.jc-why__grid,
	.jc-pillar-grid {
		grid-template-columns: 1fr;
	}

	.jc-footer__top {
		grid-template-columns: 1fr;
	}

	.jc-brand__text {
		display: none;
	}

	.jc-brand__logo img {
		height: 46px;
	}

	.jc-float-card {
		font-size: 0.78rem;
		padding: 0.65rem 0.85rem;
	}

	.jc-float-card__icon {
		width: 32px;
		height: 32px;
	}

	.jc-track-form__submit {
		width: 100%;
	}

	.jc-hero__meta {
		gap: 1rem 1.5rem;
	}

	.jc-timeline {
		padding-inline-start: 2.35rem;
	}

	.jc-map__label {
		font-size: 34px;
	}

	.jc-map__label--sm {
		display: none;
	}
}

@media (max-width: 480px) {
	.jc-btn {
		padding: 0.85rem 1.4rem;
		font-size: 0.92rem;
	}

	.jc-btn-row .jc-btn {
		flex: 1 1 100%;
	}
}

@media print {
	.jc-header,
	.jc-drawer,
	.jc-top,
	.jc-footer,
	.jc-track-search,
	.jc-cta {
		display: none !important;
	}

	body {
		color: #000;
	}
}

/* ==========================================================================
   20. Direction-aware defaults (LTR baseline — see rtl.css for the flips)
   ========================================================================== */

:root {
	--jc-arrow-shift: 4px;   /* how far arrow icons nudge on hover        */
	--jc-drawer-offset: 105%; /* off-canvas start position for the drawer */
	--jc-origin: left;        /* transform-origin for underline sweeps    */
}

/* ==========================================================================
   21. Hero photograph
   --------------------------------------------------------------------------
   A single image fills the hero edge to edge, beneath the decorative grid and
   the copy. The scrim is what keeps white type legible over it, and it is
   direction-aware: the heaviest wash sits on the side the copy occupies, which
   is the right in Arabic and the left in English.
   ========================================================================== */

.jc-hero__photo {
	position: absolute;
	inset: 0;
	z-index: -3;
	overflow: hidden;
	pointer-events: none;
}

.jc-hero__photo-pic,
.jc-hero__photo-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;          /* fills the section, never distorts */
	object-position: center 52%;
	display: block;
}

.jc-hero__photo-scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to var(--jc-wash, right),
			rgba(4, 17, 38, 0.94) 0%,
			rgba(4, 17, 38, 0.80) 26%,
			rgba(4, 17, 38, 0.42) 54%,
			rgba(4, 17, 38, 0.14) 78%,
			rgba(4, 17, 38, 0.04) 100%),
		linear-gradient(to bottom,
			rgba(4, 17, 38, 0.76) 0%,
			rgba(4, 17, 38, 0.20) 22%,
			rgba(4, 17, 38, 0.14) 58%,
			rgba(4, 17, 38, 0.60) 88%,
			rgba(4, 17, 38, 0.86) 100%);
}

/* the copy sits on the right in Arabic, so the wash flows the other way */
[dir="rtl"] .jc-hero__photo-scrim {
	--jc-wash: left;
}

/* the decorative grid and glows soften so they read as light on a photograph */
.jc-hero--photo .jc-hero__grid-lines {
	opacity: 0.24;
}

.jc-hero--photo .jc-hero__glow-a,
.jc-hero--photo .jc-hero__glow-b {
	opacity: 0.46;
}

@media (max-width: 719px) {
	.jc-hero__photo-pic,
	.jc-hero__photo-img {
		object-position: center 44%;
	}

	/* stacked layout: the copy spans the full width, so the wash is vertical */
	.jc-hero__photo-scrim {
		background:
			linear-gradient(to bottom,
				rgba(4, 17, 38, 0.86) 0%,
				rgba(4, 17, 38, 0.70) 18%,
				rgba(4, 17, 38, 0.66) 46%,
				rgba(4, 17, 38, 0.82) 78%,
				rgba(4, 17, 38, 0.94) 100%);
	}
}

/* ==========================================================================
   22. Language switcher · page background · WhatsApp · credit
   ========================================================================== */

/* ── language switcher ─────────────────────────────────────────────────── */
.jc-lang {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	padding: 4px 6px;
	border-radius: var(--jc-radius-pill);
	border: 1px solid var(--jc-gray-200);
	background: var(--jc-white);
	box-shadow: var(--jc-shadow-xs);
	flex: none;
}

.jc-lang__opt {
	display: inline-block;
	padding: 5px 11px;
	border-radius: var(--jc-radius-pill);
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--jc-muted);
	white-space: nowrap;
	transition: color .28s var(--jc-ease), background-color .28s var(--jc-ease);
}

.jc-lang__opt:hover,
.jc-lang__opt:focus-visible { color: var(--jc-navy-700); }

.jc-lang__opt.is-on {
	background: var(--jc-grad-gold);
	color: var(--jc-navy-900);
}

.jc-lang__sep { color: var(--jc-gray-300); font-size: 0.8rem; }

body.jc-has-dark-hero .jc-header:not(.is-solid) .jc-lang {
	background: rgba(255, 255, 255, .09);
	border-color: rgba(255, 255, 255, .24);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: none;
}

body.jc-has-dark-hero .jc-header:not(.is-solid) .jc-lang__opt { color: rgba(255, 255, 255, .78); }
body.jc-has-dark-hero .jc-header:not(.is-solid) .jc-lang__opt:hover { color: #fff; }
body.jc-has-dark-hero .jc-header:not(.is-solid) .jc-lang__opt.is-on { color: var(--jc-navy-900); }
body.jc-has-dark-hero .jc-header:not(.is-solid) .jc-lang__sep { color: rgba(255, 255, 255, .34); }

.jc-lang--drawer {
	width: 100%;
	justify-content: center;
	background: rgba(255, 255, 255, .06);
	border-color: rgba(255, 255, 255, .14);
	box-shadow: none;
	padding: 6px;
}

.jc-lang--drawer .jc-lang__opt { flex: 1; text-align: center; color: rgba(255, 255, 255, .8); font-size: .95rem; padding: 10px 12px; }
.jc-lang--drawer .jc-lang__opt.is-on { color: var(--jc-navy-900); }
.jc-lang--drawer .jc-lang__sep { display: none; }

/* ── page background ───────────────────────────────────────────────────── */
body.jc-has-pagebg::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	background-image: var(--jc-pagebg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: var(--jc-pagebg-alpha, 0.18);
	pointer-events: none;
}

body.jc-pagebg--tile::before {
	background-size: auto;
	background-repeat: repeat;
}

/* light sections turn translucent so the ground reads through them */
body.jc-has-pagebg .jc-section--gray {
	background:
		radial-gradient(1100px 480px at 85% -10%, rgba(255, 194, 14, 0.10), transparent 62%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.66) 0%, rgba(247, 249, 253, 0.74) 24%,
			rgba(247, 249, 253, 0.74) 76%, rgba(255, 255, 255, 0.66) 100%);
}

body.jc-has-pagebg .jc-map-section {
	background:
		radial-gradient(900px 420px at 12% 0%, rgba(18, 58, 120, 0.07), transparent 60%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(247, 249, 253, 0.72));
}

body.jc-has-pagebg .jc-track-panel,
body.jc-has-pagebg .jc-track-search__box,
body.jc-has-pagebg .jc-track-dash,
body.jc-has-pagebg .jc-empty,
body.jc-has-pagebg .jc-tile,
body.jc-has-pagebg .jc-pillar,
body.jc-has-pagebg .jc-service-card,
body.jc-has-pagebg .jc-post-card {
	background-color: rgba(255, 255, 255, 0.94);
}

/* ── WhatsApp ──────────────────────────────────────────────────────────── */
.jc-wa {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border-radius: var(--jc-radius);
	background: rgba(37, 211, 102, 0.10);
	border: 1px solid rgba(37, 211, 102, 0.30);
	color: rgba(255, 255, 255, 0.9);
	transition: background-color .3s var(--jc-ease), border-color .3s var(--jc-ease), transform .3s var(--jc-ease);
}

.jc-wa:hover,
.jc-wa:focus-visible {
	background: rgba(37, 211, 102, 0.18);
	border-color: rgba(37, 211, 102, 0.55);
	color: #fff;
	transform: translateY(-2px);
}

.jc-wa__icon {
	width: 42px;
	height: 42px;
	flex: none;
	display: grid;
	place-items: center;
	border-radius: 13px;
	background: #25d366;
	color: #06331a;
	box-shadow: 0 10px 22px -10px rgba(37, 211, 102, 0.8);
}

.jc-wa__icon svg { width: 22px; height: 22px; }
.jc-wa__body { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }

.jc-wa__label {
	font-size: var(--jc-fs-xs);
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #7ae3a6;
}

.jc-wa__num {
	font-family: var(--jc-font-en);
	font-size: 1.02rem;
	font-weight: 800;
	letter-spacing: .03em;
	direction: ltr;
	unicode-bidi: isolate;
	white-space: nowrap;
}

/* ── created by ────────────────────────────────────────────────────────── */
.jc-credit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.44);
}

.jc-credit__by { white-space: nowrap; }

.jc-credit__name {
	font-family: var(--jc-font-en);
	font-weight: 800;
	letter-spacing: .02em;
	color: var(--jc-yellow-500);
	direction: ltr;
	unicode-bidi: isolate;
	transition: color .3s var(--jc-ease);
}

a.jc-credit__name:hover { color: var(--jc-yellow-400); }

/* ── footer now carries a contact column ───────────────────────────────── */
.jc-footer__top {
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr) minmax(0, 1fr) minmax(0, 1.05fr);
}

@media (max-width: 1080px) {
	.jc-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991px) {
	/* only the bar copy hides — the drawer copy is exactly where it is needed */
	.jc-header__actions .jc-lang { display: none; }
}

@media (max-width: 719px) {
	.jc-footer__top { grid-template-columns: 1fr; }
	.jc-wa { width: 100%; }
	.jc-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* the contact column only exists once a WhatsApp number is set, so the footer
   grid adapts instead of leaving a gap */
.jc-footer__top:has(.jc-footer__col:nth-of-type(3)) {
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr) minmax(0, 1fr) minmax(0, 1.05fr);
}

.jc-footer__top:not(:has(.jc-footer__col:nth-of-type(3))) {
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1.15fr);
}

@media (max-width: 1080px) {
	.jc-footer__top:has(.jc-footer__col:nth-of-type(3)),
	.jc-footer__top:not(:has(.jc-footer__col:nth-of-type(3))) {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 719px) {
	.jc-footer__top:has(.jc-footer__col:nth-of-type(3)),
	.jc-footer__top:not(:has(.jc-footer__col:nth-of-type(3))) {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   23. Floating WhatsApp · footer social links
   ========================================================================== */

/* ── floating WhatsApp ─────────────────────────────────────────────────── */
.jc-wafloat {
	position: fixed;
	right: 22px;                 /* deliberately physical: the convention is
	                                bottom-right in both reading directions */
	bottom: 22px;
	z-index: 840;
	width: 58px;
	height: 58px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .62), 0 4px 10px rgba(6, 24, 44, .22);
	transition: transform .35s var(--jc-ease), box-shadow .35s var(--jc-ease), background-color .3s var(--jc-ease);
}

.jc-wafloat:hover,
.jc-wafloat:focus-visible {
	background: #1fbe5a;
	color: #fff;
	transform: translateY(-3px) scale(1.04);
	box-shadow: 0 18px 40px -10px rgba(37, 211, 102, .75), 0 6px 14px rgba(6, 24, 44, .26);
}

.jc-wafloat__icon { position: relative; z-index: 1; display: grid; place-items: center; }
.jc-wafloat__icon svg { width: 30px; height: 30px; display: block; }

.jc-wafloat__pulse {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: #25d366;
	opacity: .55;
	animation: jc-wa-pulse 2.6s var(--jc-ease) infinite;
	pointer-events: none;
}

@keyframes jc-wa-pulse {
	0%        { transform: scale(1);   opacity: .5; }
	70%, 100% { transform: scale(1.9); opacity: 0; }
}

/* the back-to-top button shares the right edge in LTR, so it stacks above */
html[dir="ltr"] .jc-top { inset-block-end: 92px; }

@media (max-width: 719px) {
	.jc-wafloat { width: 52px; height: 52px; right: 16px; bottom: 16px; }
	.jc-wafloat__icon svg { width: 27px; height: 27px; }
	html[dir="ltr"] .jc-top { inset-block-end: 80px; }
	.jc-top { inset-inline-end: 16px; inset-block-end: 16px; }
	html[dir="ltr"] .jc-top { inset-block-end: 80px; }
}

/* ── footer social links ───────────────────────────────────────────────── */
.jc-social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 14px 0 0;
	padding: 0;
}

.jc-social__a {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 13px;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .12);
	color: rgba(255, 255, 255, .78);
	transition: background-color .3s var(--jc-ease), border-color .3s var(--jc-ease),
				color .3s var(--jc-ease), transform .3s var(--jc-ease);
}

.jc-social__a svg { width: 20px; height: 20px; display: block; }

.jc-social__a:hover,
.jc-social__a:focus-visible {
	transform: translateY(-2px);
	color: #fff;
}

.jc-social__a--facebook:hover,
.jc-social__a--facebook:focus-visible {
	background: rgba(24, 119, 242, .18);
	border-color: rgba(24, 119, 242, .55);
}

.jc-social__a--instagram:hover,
.jc-social__a--instagram:focus-visible {
	background: rgba(214, 41, 118, .18);
	border-color: rgba(214, 41, 118, .55);
}
