/* ==================================================================
   دوام العالمية للتجارة — التنسيقات الرئيسية
   الهوية: أسود فحمي × أزرق دوام (#1E75C0) — مستوحاة من الشعار
   ================================================================== */

:root {
	--blue: #1E75C0;
	--blue-bright: #2E8FE0;
	--blue-sky: #7fc0ff;
	--ink: #0B0F15;
	--ink-2: #10161f;
	--ink-3: #16202c;
	--paper: #F5F7FA;
	--card: #ffffff;
	--line: #E4E9F0;
	--line-dark: rgba(126, 180, 235, .14);
	--text: #1B2430;
	--muted: #5B6B7E;
	--text-on-dark: #E8EEF5;
	--muted-on-dark: #9FB0C3;
	--radius: 16px;
	--shadow: 0 10px 40px -12px rgba(11, 15, 21, .14);
	--font: "IBM Plex Sans Arabic", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font);
	color: var(--text);
	background: var(--paper);
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }

.container {
	width: min(1180px, 92%);
	margin-inline: auto;
}

section[id], [id] { scroll-margin-top: 96px; }

h1, h2, h3, h4 { line-height: 1.35; margin: 0 0 .5em; }

.grad {
	background: linear-gradient(120deg, var(--blue-bright), var(--blue-sky));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.eyebrow {
	display: inline-block;
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .06em;
	color: var(--blue);
	background: rgba(30, 117, 192, .1);
	border: 1px solid rgba(30, 117, 192, .22);
	padding: .25rem .9rem;
	border-radius: 999px;
	margin-bottom: 1rem;
}

/* ---------- الأزرار ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .72rem 1.6rem;
	border-radius: 12px;
	font-family: inherit;
	font-size: .95rem;
	font-weight: 600;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
	background: linear-gradient(135deg, var(--blue-bright), var(--blue));
	color: #fff;
	box-shadow: 0 8px 24px -8px rgba(30, 117, 192, .55);
}
.btn-primary:hover { box-shadow: 0 12px 30px -8px rgba(30, 117, 192, .7); transform: translateY(-2px); }
.btn-primary:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; transform: none; }

.btn-ghost {
	background: transparent;
	color: var(--text-on-dark);
	border-color: rgba(159, 176, 195, .35);
}
.btn-ghost:hover { border-color: var(--blue-sky); color: var(--blue-sky); }
.section .btn-ghost, .portal-card .btn-ghost { color: var(--muted); border-color: var(--line); }

.btn-whatsapp {
	background: #16a34a;
	color: #fff;
	box-shadow: 0 8px 24px -10px rgba(22, 163, 74, .6);
}
.btn-whatsapp:hover { transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ==================================================================
   الترويسة
   ================================================================== */
.site-header {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 100;
	background: rgba(11, 15, 21, .72);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled {
	background: rgba(11, 15, 21, .92);
	border-bottom-color: var(--line-dark);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 74px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: .7rem;
	color: #fff;
}
.brand-mark { width: 38px; height: 50px; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 1.35rem; font-weight: 700; color: #fff; }
.brand-text small {
	font-size: .6rem;
	letter-spacing: .08em;
	color: var(--muted-on-dark);
	direction: ltr;
	text-align: right;
}

.main-nav { display: flex; gap: 1.6rem; }
.main-nav a {
	color: var(--muted-on-dark);
	font-size: .93rem;
	font-weight: 500;
	position: relative;
	padding-block: .3rem;
	transition: color .18s ease;
}
.main-nav a::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--blue-bright), var(--blue-sky));
	transform: scaleX(0);
	transition: transform .22s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: .8rem; }

/* ---------- أيقونات اللغات ---------- */
.lang-switch {
	display: inline-flex;
	align-items: center;
	gap: .1rem;
	background: rgba(22, 32, 44, .7);
	border: 1px solid var(--line-dark);
	border-radius: 999px;
	padding: .22rem .6rem .22rem .35rem;
}
.lang-globe { color: var(--muted-on-dark); margin-inline-end: .25rem; flex-shrink: 0; }
.lang-item {
	min-width: 26px;
	text-align: center;
	padding: .12rem .4rem;
	border-radius: 999px;
	font-size: .74rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--muted-on-dark);
	transition: color .15s ease, background .15s ease;
}
.lang-item.active {
	background: linear-gradient(135deg, var(--blue-bright), var(--blue));
	color: #fff;
}
a.lang-item:not(.active):hover { color: #fff; background: rgba(127, 192, 255, .15); }
.lang-item.soon { opacity: .45; cursor: default; }

.btn-login {
	background: linear-gradient(135deg, var(--blue-bright), var(--blue));
	color: #fff;
	padding: .55rem 1.2rem;
	font-size: .88rem;
	box-shadow: 0 6px 18px -6px rgba(30, 117, 192, .55);
}
.btn-login:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -6px rgba(30, 117, 192, .7); }

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	padding: .4rem;
	cursor: pointer;
}
.nav-toggle span {
	width: 24px; height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: transform .25s ease, opacity .25s ease;
}

/* ==================================================================
   البطل
   ================================================================== */
.hero {
	position: relative;
	background: var(--ink);
	color: var(--text-on-dark);
	padding-top: 74px;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(60% 45% at 82% 18%, rgba(30, 117, 192, .22), transparent 65%),
		radial-gradient(45% 40% at 12% 85%, rgba(30, 117, 192, .14), transparent 60%),
		linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}
.hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(126, 180, 235, .05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(126, 180, 235, .05) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 100%);
}

.hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	gap: 3rem;
	padding-block: 5.5rem 4.5rem;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	font-size: .85rem;
	font-weight: 600;
	color: var(--blue-sky);
	background: rgba(30, 117, 192, .12);
	border: 1px solid rgba(126, 180, 235, .25);
	padding: .35rem 1rem;
	border-radius: 999px;
	margin-bottom: 1.4rem;
}
.pulse-dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: #38d97c;
	box-shadow: 0 0 0 0 rgba(56, 217, 124, .6);
	animation: pulse 2s infinite;
}
@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(56, 217, 124, .55); }
	70% { box-shadow: 0 0 0 9px rgba(56, 217, 124, 0); }
	100% { box-shadow: 0 0 0 0 rgba(56, 217, 124, 0); }
}

.hero h1 {
	font-size: clamp(2.1rem, 4.6vw, 3.4rem);
	font-weight: 700;
	color: #fff;
	margin-bottom: 1.1rem;
}
.hero h1 .grad { display: block; }

.hero-sub {
	font-size: 1.06rem;
	color: var(--muted-on-dark);
	max-width: 34rem;
	margin-bottom: 1.8rem;
}
.hero-sub strong { color: var(--blue-sky); font-weight: 600; }

.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.6rem; }

.hero-stats {
	display: flex;
	gap: 2.2rem;
	flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num { display: inline-flex; align-items: baseline; gap: 2px; }
.stat b, .stat i {
	font-style: normal;
	font-size: 1.9rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}
.stat i { color: var(--blue-sky); }
.stat > span:last-child { font-size: .85rem; color: var(--muted-on-dark); }

/* ---------- لوحة المسار ---------- */
.hero-art { position: relative; }
.route-wrap {
	position: relative;
	background: rgba(16, 22, 31, .65);
	border: 1px solid var(--line-dark);
	border-radius: 22px;
	box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .8);
	overflow: hidden;
}
.route-svg { display: block; width: 100%; height: auto; }

.route-dash { animation: dashFlow 1.6s linear infinite; }
@keyframes dashFlow { to { stroke-dashoffset: -22; } }

.node .ring {
	fill: none;
	stroke: var(--blue-sky);
	stroke-width: 2;
	opacity: .8;
	animation: ringPulse 2.4s ease-out infinite;
	transform-origin: center;
	transform-box: fill-box;
}
.node-sa .ring { animation-delay: 1.2s; }
@keyframes ringPulse {
	0% { transform: scale(1); opacity: .8; }
	100% { transform: scale(3.2); opacity: 0; }
}

.route-label {
	position: absolute;
	font-size: .85rem;
	font-weight: 700;
	color: #fff;
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}
.route-label small { font-size: .62rem; font-weight: 400; color: var(--muted-on-dark); direction: ltr; }
.label-cn { top: 22%; right: 6%; text-align: right; }
.label-sa { bottom: 12%; left: 17%; text-align: left; }

.chip {
	position: absolute;
	display: flex;
	align-items: center;
	gap: .5rem;
	background: rgba(22, 32, 44, .92);
	border: 1px solid var(--line-dark);
	color: var(--text-on-dark);
	font-size: .78rem;
	font-weight: 600;
	padding: .45rem .9rem;
	border-radius: 12px;
	box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .7);
	animation: floaty 5s ease-in-out infinite;
	white-space: nowrap;
}
.chip .ok { color: #38d97c; font-weight: 700; }
.chip .dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--blue-sky);
	animation: pulse 2s infinite;
}
.chip-1 { top: 12%; left: 8%; animation-delay: 0s; }
.chip-2 { top: 44%; right: 26%; animation-delay: 1.6s; }
.chip-3 { bottom: 9%; right: 8%; animation-delay: 3.2s; }
@keyframes floaty {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-9px); }
}

/* ---------- الشريط المتحرك ---------- */
.marquee {
	position: relative;
	border-top: 1px solid var(--line-dark);
	background: rgba(16, 22, 31, .8);
	overflow: hidden;
	padding-block: .85rem;
}
.marquee-track {
	display: flex;
	align-items: center;
	gap: 2.2rem;
	width: max-content;
	animation: marquee 30s linear infinite;
}
.marquee span {
	color: var(--muted-on-dark);
	font-size: .88rem;
	font-weight: 600;
	white-space: nowrap;
}
.marquee em { color: var(--blue); font-style: normal; font-size: .6rem; }
@keyframes marquee {
	to { transform: translateX(50%); }
}

/* ==================================================================
   الأقسام العامة
   ================================================================== */
.section { padding-block: 5.5rem; }

.section-head {
	text-align: center;
	max-width: 46rem;
	margin: 0 auto 3.2rem;
}
.section-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 700; }
.section-head p { color: var(--muted); margin: 0; }

.section-dark {
	background:
		radial-gradient(50% 40% at 15% 10%, rgba(30, 117, 192, .14), transparent 60%),
		var(--ink-2);
	color: var(--text-on-dark);
}
.section-dark .section-head p { color: var(--muted-on-dark); }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-tint { background: #EDF2F8; }

/* ---------- بطاقات الخدمات ---------- */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
}

.card {
	position: relative;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.8rem 1.6rem;
	box-shadow: 0 2px 10px -4px rgba(11, 15, 21, .06);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
	overflow: hidden;
}
.card::before {
	content: "";
	position: absolute;
	inset-inline: 0;
	top: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue-bright), var(--blue-sky));
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .3s ease;
}
.card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
	border-color: rgba(30, 117, 192, .35);
}
.card:hover::before { transform: scaleX(1); }

.card-tag {
	position: absolute;
	top: 1.1rem;
	inset-inline-end: 1.1rem;
	font-size: .68rem;
	font-weight: 700;
	color: var(--blue);
	background: rgba(30, 117, 192, .1);
	border: 1px solid rgba(30, 117, 192, .25);
	padding: .15rem .6rem;
	border-radius: 999px;
}

.card-icon {
	width: 54px; height: 54px;
	display: grid;
	place-items: center;
	color: var(--blue);
	background: linear-gradient(135deg, rgba(30, 117, 192, .12), rgba(127, 192, 255, .12));
	border: 1px solid rgba(30, 117, 192, .2);
	border-radius: 14px;
	margin-bottom: 1.1rem;
	transition: transform .25s ease;
}
.card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }

.card h3 { font-size: 1.12rem; font-weight: 700; }
.card p { color: var(--muted); font-size: .92rem; margin: 0; }

a.card { display: block; color: var(--text); }
.card-more {
	display: inline-block;
	margin-top: 1rem;
	font-size: .88rem;
	font-weight: 700;
	color: var(--blue);
}
.card-more i { font-style: normal; display: inline-block; transition: transform .2s ease; }
.card:hover .card-more i { transform: translateX(-4px); }

/* ---------- رحلة الشحنة ---------- */
.journey {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
	counter-reset: step;
}

.step {
	position: relative;
	display: flex;
	gap: 1rem;
	background: rgba(22, 32, 44, .6);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
	padding: 1.5rem 1.4rem;
	transition: border-color .22s ease, background .22s ease, transform .22s ease;
}
.step:hover {
	border-color: rgba(126, 180, 235, .4);
	background: rgba(22, 32, 44, .95);
	transform: translateY(-4px);
}

.step-num {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	background: linear-gradient(160deg, var(--blue-sky), var(--blue));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	flex-shrink: 0;
	padding-top: .2rem;
}

.step h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: .3rem; }
.step p { color: var(--muted-on-dark); font-size: .88rem; margin: 0; }

/* ---------- لماذا دوام ---------- */
.why-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 3.5rem;
	align-items: center;
}
.why-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.why-copy p { color: var(--muted); margin-bottom: 1.6rem; }

.why-points { display: grid; gap: 1rem; }
.point {
	display: flex;
	gap: 1rem;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.2rem 1.3rem;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.point:hover {
	transform: translateX(-6px);
	border-color: rgba(30, 117, 192, .35);
	box-shadow: var(--shadow);
}
.point-ico {
	font-size: 1.5rem;
	flex-shrink: 0;
	width: 48px; height: 48px;
	display: grid;
	place-items: center;
	background: rgba(30, 117, 192, .08);
	border-radius: 12px;
}
.point h3 { font-size: 1rem; font-weight: 700; margin-bottom: .2rem; }
.point p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ---------- المكاتب ---------- */
.offices-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.4rem;
}
.office {
	position: relative;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 2rem 1.8rem;
	overflow: hidden;
	transition: transform .22s ease, box-shadow .22s ease;
}
.office:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.office::after {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--blue-bright), var(--blue-sky));
}
.office-flag { font-size: 2rem; margin-bottom: .6rem; }
.office h3 { font-size: 1.15rem; font-weight: 700; }
.office-addr { color: var(--muted); font-size: .92rem; margin-bottom: 1.2rem; }
.office ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.office li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	font-size: .9rem;
	border-top: 1px dashed var(--line);
	padding-top: .55rem;
}
.office li span { color: var(--muted); }
.office li a { font-weight: 600; }
.office li b { font-weight: 600; color: var(--text); }

/* ---------- التواصل ---------- */
.section-contact {
	background:
		radial-gradient(55% 50% at 85% 15%, rgba(30, 117, 192, .18), transparent 60%),
		var(--ink);
	color: var(--text-on-dark);
}
.contact-grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 3.5rem;
	align-items: center;
}
.contact-copy h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.contact-copy p { color: var(--muted-on-dark); margin-bottom: 1.6rem; }

.contact-form-wrap {
	background: rgba(22, 32, 44, .75);
	border: 1px solid var(--line-dark);
	border-radius: 20px;
	padding: 2rem;
	backdrop-filter: blur(8px);
}

.form-note {
	padding: .8rem 1.1rem;
	border-radius: 12px;
	font-size: .9rem;
	font-weight: 600;
	margin-bottom: 1.2rem;
}
.form-note.ok { background: rgba(56, 217, 124, .12); color: #6ee7a0; border: 1px solid rgba(56, 217, 124, .3); }
.form-note.err { background: rgba(239, 68, 68, .12); color: #fca5a5; border: 1px solid rgba(239, 68, 68, .3); }

.contact-form label {
	display: flex;
	flex-direction: column;
	gap: .35rem;
	font-size: .85rem;
	font-weight: 600;
	color: var(--muted-on-dark);
	margin-bottom: 1rem;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
	font-family: inherit;
	font-size: .95rem;
	color: var(--text-on-dark);
	background: rgba(11, 15, 21, .6);
	border: 1px solid var(--line-dark);
	border-radius: 10px;
	padding: .65rem .9rem;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--blue-bright);
	box-shadow: 0 0 0 3px rgba(46, 143, 224, .2);
}
.contact-form textarea { resize: vertical; }
.contact-form ::placeholder { color: rgba(159, 176, 195, .5); }

/* مصيدة سبام: إخفاء بالقصّ بدل الإزاحة خارج الشاشة (الإزاحة يسارًا تكسر إطار العرض في RTL) */
.hp-field {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	border: 0;
	overflow: hidden;
	clip-path: inset(50%);
	opacity: 0;
	pointer-events: none;
}

/* ==================================================================
   صفحة البوابة
   ================================================================== */
.portal-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background:
		radial-gradient(60% 45% at 80% 15%, rgba(30, 117, 192, .18), transparent 60%),
		radial-gradient(40% 40% at 10% 90%, rgba(30, 117, 192, .12), transparent 60%),
		var(--ink);
	color: var(--text-on-dark);
	padding-block: 9rem 5rem;
}
.portal-head { text-align: center; margin-bottom: 3rem; }
.portal-head h1 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.portal-head p { color: var(--muted-on-dark); margin: 0; }

.portal-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 420px));
	justify-content: center;
	gap: 1.6rem;
}

.portal-card {
	position: relative;
	background: rgba(22, 32, 44, .75);
	border: 1px solid var(--line-dark);
	border-radius: 20px;
	padding: 2.2rem 2rem;
	text-align: center;
	transition: transform .22s ease, border-color .22s ease;
}
.portal-card:hover { transform: translateY(-6px); border-color: rgba(126, 180, 235, .4); }

.portal-ico {
	width: 64px; height: 64px;
	margin: 0 auto 1.2rem;
	display: grid;
	place-items: center;
	color: var(--blue-sky);
	background: rgba(30, 117, 192, .12);
	border: 1px solid rgba(30, 117, 192, .3);
	border-radius: 18px;
}
.portal-card h2 { color: #fff; font-size: 1.3rem; }
.portal-card p { color: var(--muted-on-dark); font-size: .92rem; margin-bottom: 1.6rem; }

.soon-badge {
	position: absolute;
	top: 1.2rem;
	inset-inline-end: 1.2rem;
	font-size: .72rem;
	font-weight: 700;
	color: #0B0F15;
	background: linear-gradient(135deg, var(--blue-sky), var(--blue-bright));
	padding: .2rem .7rem;
	border-radius: 999px;
}

.portal-hint {
	display: block;
	margin-top: .8rem;
	font-size: .78rem;
	color: var(--muted-on-dark);
}
.portal-hint.link { color: var(--blue-sky); font-weight: 600; }

/* ==================================================================
   الصفحات الداخلية
   ================================================================== */
.inner-page { padding: 10rem 0 5rem; min-height: 60vh; }
.page-head h1 { font-size: 2rem; }

/* ==================================================================
   التذييل
   ================================================================== */
.site-footer {
	background: var(--ink);
	color: var(--muted-on-dark);
	padding: 4rem 0 0;
	border-top: 1px solid var(--line-dark);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
	gap: 2.5rem;
	padding-bottom: 3rem;
}
.footer-brand p { font-size: .9rem; margin-top: 1rem; max-width: 21rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: .9rem; }
.footer-col a, .footer-col p { display: block; color: var(--muted-on-dark); font-size: .88rem; margin: 0 0 .5rem; }
.footer-col a:hover { color: var(--blue-sky); }

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: .8rem;
	border-top: 1px solid var(--line-dark);
	padding-block: 1.4rem;
	font-size: .82rem;
}
.footer-bottom a { color: var(--muted-on-dark); }
.footer-bottom a:hover { color: var(--blue-sky); }

/* ---------- زر واتساب العائم ---------- */
.whatsapp-fab {
	position: fixed;
	bottom: 1.6rem;
	inset-inline-start: 1.6rem;
	z-index: 90;
	width: 56px; height: 56px;
	display: grid;
	place-items: center;
	background: #16a34a;
	color: #fff;
	border-radius: 50%;
	box-shadow: 0 12px 30px -8px rgba(22, 163, 74, .7);
	transition: transform .2s ease;
}
.whatsapp-fab:hover { transform: scale(1.1); color: #fff; }

/* ==================================================================
   حركات الظهور
   ================================================================== */
/* حركات الظهور تعمل فقط عند تفعيل الجافاسكربت — وإلا يبقى المحتوى ظاهرًا */
.js .reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .7s ease, transform .7s ease;
}
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	.route-dash, .ship, .marquee-track, .chip, .ring { animation: none !important; }
	html { scroll-behavior: auto; }
}

/* ==================================================================
   التجاوب
   ================================================================== */
@media (max-width: 1024px) {
	.hero-inner { grid-template-columns: 1fr; padding-block: 4rem 3.5rem; }
	.hero-art { max-width: 620px; }
	.cards-grid, .journey { grid-template-columns: repeat(2, 1fr); }
	.why-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
	.main-nav {
		position: fixed;
		top: 74px;
		inset-inline: 0;
		flex-direction: column;
		gap: 0;
		background: rgba(11, 15, 21, .98);
		border-bottom: 1px solid var(--line-dark);
		padding: .6rem 4%;
		transform: translateY(-130%);
		transition: transform .3s ease;
		z-index: -1;
	}
	.main-nav.open { transform: translateY(0); }
	.main-nav a { padding-block: .8rem; border-bottom: 1px solid rgba(126, 180, 235, .08); }
	.nav-toggle { display: flex; }
	.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
	.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

	.btn-login span { display: none; }
	.btn-login { padding: .55rem .7rem; }
	.lang-globe { display: none; }
	.lang-switch { padding: .18rem .3rem; }
	.lang-item { min-width: 22px; padding: .1rem .3rem; }

	.cards-grid, .journey, .offices-grid, .portal-grid, .form-row { grid-template-columns: 1fr; }
	.hero-stats { gap: 1.4rem; }
	.section { padding-block: 3.8rem; }
	.chip { font-size: .68rem; }
	.chip-2 { right: 8%; }
	.footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}
