/* ==================================================================
   دوام — صفحات الخدمات الداخلية
   مكونات مشتركة + مكونات مميزة لكل خدمة
   ================================================================== */

/* ---------- هيرو الخدمة ---------- */
.svc-hero {
	position: relative;
	background: var(--ink);
	color: var(--text-on-dark);
	padding-top: 74px;
	overflow: hidden;
}
.svc-hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(55% 60% at 15% 20%, rgba(30, 117, 192, .2), transparent 60%),
		radial-gradient(40% 45% at 90% 85%, rgba(30, 117, 192, .1), transparent 60%),
		linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}
.svc-hero .container { position: relative; }

.crumbs {
	display: flex;
	align-items: center;
	gap: .6rem;
	padding-top: 1.6rem;
	font-size: .82rem;
}
.crumbs a { color: var(--muted-on-dark); }
.crumbs a:hover { color: var(--blue-sky); }
.crumbs span { color: rgba(159, 176, 195, .4); }
.crumbs b { color: #fff; font-weight: 600; }

.svc-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 3rem;
	align-items: center;
	padding-block: 3.2rem 4rem;
}

.svc-plate {
	width: 64px; height: 64px;
	display: grid;
	place-items: center;
	color: var(--blue-sky);
	background: rgba(30, 117, 192, .14);
	border: 1px solid rgba(30, 117, 192, .35);
	border-radius: 18px;
	margin-bottom: 1.2rem;
}
.svc-hero h1 {
	font-size: clamp(1.9rem, 4vw, 2.9rem);
	font-weight: 700;
	color: #fff;
	margin-bottom: .3rem;
}
.svc-tag {
	font-size: 1.15rem;
	font-weight: 600;
	background: linear-gradient(120deg, var(--blue-bright), var(--blue-sky));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin: 0 0 1rem;
}
.svc-lead {
	color: var(--muted-on-dark);
	max-width: 32rem;
	margin-bottom: 1.8rem;
}

/* لوحة الرسم في الهيرو */
.svc-hero-art > div {
	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;
}
.svc-hero-art svg { display: block; width: 100%; height: auto; }

.art-card {
	position: absolute;
	z-index: 2;
	background: rgba(22, 32, 44, .94);
	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;
}
.art-card small { display: block; font-weight: 400; color: var(--muted-on-dark); font-size: .68rem; }
.art-card.a1 { top: 9%; inset-inline-start: 7%; }
.art-card.a2 { bottom: 14%; inset-inline-end: 6%; animation-delay: 1.8s; }
.art-card.a3 { top: 42%; inset-inline-end: 12%; animation-delay: 3.4s; }
.dot-live {
	display: inline-block;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: #38d97c;
	margin-inline-end: .3rem;
	animation: pulse 2s infinite;
}

/* ---------- عناصر مشتركة ---------- */
.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}
.two-col h2 { font-size: 1.45rem; margin-bottom: 1.1rem; }

.check-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: .7rem;
}
.check-list li {
	position: relative;
	padding-inline-start: 2rem;
	color: var(--muted);
	font-size: .95rem;
}
.check-list li::before {
	content: "✓";
	position: absolute;
	inset-inline-start: 0;
	top: 0;
	width: 22px; height: 22px;
	display: grid;
	place-items: center;
	font-size: .75rem;
	font-weight: 700;
	color: var(--blue);
	background: rgba(30, 117, 192, .12);
	border: 1px solid rgba(30, 117, 192, .3);
	border-radius: 50%;
}
.check-list.alt li::before { content: "+"; }
.check-list a.svc-inline { font-weight: 600; }

.section-dark .check-list li { color: var(--muted-on-dark); }

.inline-link { font-weight: 600; white-space: nowrap; }
.sectors-note { text-align: center; color: var(--muted); margin-top: 2rem; }
.sectors-note a { font-weight: 600; }

.table-wrap { overflow-x: auto; }
.compare-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	font-size: .93rem;
}
.compare-table th, .compare-table td {
	padding: .9rem 1.2rem;
	text-align: start;
	border-bottom: 1px solid var(--line);
}
.compare-table thead th {
	background: var(--ink-2);
	color: #fff;
	font-weight: 600;
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table td:first-child { color: var(--muted); font-weight: 600; width: 22%; }
.compare-table .hl { background: rgba(30, 117, 192, .07); font-weight: 600; color: var(--text); }
.compare-table thead .hl { background: var(--blue); color: #fff; }

.svc-quote {
	margin: 2.5rem auto 0;
	max-width: 44rem;
	background: var(--ink-2);
	color: var(--text-on-dark);
	border-inline-start: 4px solid var(--blue);
	border-radius: var(--radius);
	padding: 1.8rem 2rem;
	font-size: 1.05rem;
	line-height: 2;
}
.svc-quote cite { display: block; margin-top: .8rem; font-style: normal; font-size: .85rem; color: var(--muted-on-dark); }
.svc-quote.inset { margin: 0; }

/* ---------- ختام الخدمة: CTA + الخدمات الأخرى ---------- */
.svc-cta {
	background:
		radial-gradient(50% 60% at 80% 20%, rgba(30, 117, 192, .2), transparent 60%),
		var(--ink);
	color: var(--text-on-dark);
	padding-block: 3.8rem;
}
.svc-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}
.svc-cta h2 { color: #fff; font-size: clamp(1.3rem, 2.6vw, 1.8rem); margin-bottom: .4rem; }
.svc-cta p { color: var(--muted-on-dark); margin: 0; }
.svc-cta-actions { display: flex; gap: .9rem; flex-wrap: wrap; }

.svc-related { background: var(--ink-2); padding-block: 2.6rem 3.4rem; }
.svc-related-title { color: var(--muted-on-dark); font-size: .95rem; font-weight: 600; margin-bottom: 1.2rem; }
.svc-related-grid { display: flex; flex-wrap: wrap; gap: .8rem; }
.svc-related-card {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	background: rgba(22, 32, 44, .8);
	border: 1px solid var(--line-dark);
	color: var(--text-on-dark);
	font-size: .88rem;
	font-weight: 600;
	padding: .6rem 1.1rem;
	border-radius: 12px;
	transition: border-color .2s ease, transform .2s ease;
}
.svc-related-card:hover { border-color: var(--blue-bright); transform: translateY(-3px); color: #fff; }
.svc-related-ico { color: var(--blue-sky); display: grid; place-items: center; }
.svc-related-card i { font-style: normal; color: var(--blue-sky); }

/* ==================================================================
   الاستيراد حسب الطلب
   ================================================================== */
.import-duties {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem;
}
.duty {
	display: flex;
	gap: 1.1rem;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.4rem 1.5rem;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.duty:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(30, 117, 192, .3); }
.duty-num {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.1;
	background: linear-gradient(160deg, var(--blue-sky), var(--blue));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	flex-shrink: 0;
}
.duty h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.duty p { color: var(--muted); font-size: .9rem; margin: 0; }

.sectors {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .7rem;
	max-width: 52rem;
	margin-inline: auto;
}
.sector-chip {
	background: var(--card);
	border: 1px solid var(--line);
	color: var(--text);
	font-size: .9rem;
	font-weight: 600;
	padding: .5rem 1.1rem;
	border-radius: 999px;
	transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.sector-chip:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.faq-wrap { max-width: 46rem; }
.faq {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 14px;
	margin-bottom: .8rem;
	overflow: hidden;
}
.faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.05rem 1.3rem;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-plus {
	position: relative;
	width: 22px; height: 22px;
	flex-shrink: 0;
	border: 1px solid var(--line);
	border-radius: 50%;
}
.faq-plus::before, .faq-plus::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	background: var(--blue);
	transition: transform .2s ease;
}
.faq-plus::before { width: 10px; height: 2px; }
.faq-plus::after { width: 2px; height: 10px; }
.faq[open] .faq-plus::after { transform: rotate(90deg); }
.faq[open] summary { color: var(--blue); }
.faq p { margin: 0; padding: 0 1.3rem 1.2rem; color: var(--muted); font-size: .93rem; }

/* ==================================================================
   الشحن الجزئي LCL
   ================================================================== */
.cbm-viz {
	display: flex;
	gap: 6px;
	background:
		repeating-linear-gradient(90deg, rgba(30,117,192,.05) 0 14px, transparent 14px 28px),
		var(--ink-2);
	border: 2px solid var(--ink-3);
	border-radius: 18px;
	padding: 14px;
	min-height: 150px;
	margin-bottom: 2.2rem;
}
.cbm-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: .3rem;
	text-align: center;
	border-radius: 10px;
	padding: .8rem .5rem;
	font-size: .8rem;
}
.cbm-box span { color: var(--muted-on-dark); }
.cbm-box b { color: #fff; font-size: .85rem; }
.seg-a { flex: 4; background: rgba(127, 192, 255, .1); border: 1px dashed rgba(127, 192, 255, .25); }
.seg-b { flex: 7; background: rgba(127, 192, 255, .16); border: 1px dashed rgba(127, 192, 255, .25); }
.seg-c { flex: 14; background: rgba(127, 192, 255, .08); border: 1px dashed rgba(127, 192, 255, .25); }
.seg-you {
	flex: 6;
	background: linear-gradient(160deg, var(--blue-bright), var(--blue));
	box-shadow: 0 10px 30px -8px rgba(30, 117, 192, .7);
	transform: scale(1.04);
}
.seg-you span { color: rgba(255, 255, 255, .85); font-weight: 700; }

.cbm-facts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
}
.fact {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.3rem 1.4rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}
.fact b { font-size: 1.4rem; color: var(--blue); white-space: nowrap; }
.fact span { color: var(--muted); font-size: .88rem; }

/* ==================================================================
   الشحن الكامل FCL
   ================================================================== */
.spec-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
}
.spec-card {
	position: relative;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.8rem 1.6rem;
	transition: transform .2s ease, box-shadow .2s ease;
}
.spec-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.spec-card.featured { border-color: var(--blue); box-shadow: 0 12px 40px -14px rgba(30, 117, 192, .4); }
.spec-pop {
	position: absolute;
	top: -12px;
	inset-inline-start: 50%;
	transform: translateX(50%);
	background: linear-gradient(135deg, var(--blue-bright), var(--blue));
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
	padding: .25rem .9rem;
	border-radius: 999px;
	white-space: nowrap;
}
.spec-size { display: flex; align-items: baseline; gap: .5rem; margin-bottom: 1rem; }
.spec-size b { font-size: 1.7rem; color: var(--text); }
.spec-size span {
	font-size: .78rem;
	font-weight: 700;
	color: var(--blue);
	background: rgba(30, 117, 192, .1);
	padding: .1rem .55rem;
	border-radius: 6px;
}
.spec-rows { list-style: none; margin: 0 0 1rem; padding: 0; }
.spec-rows li {
	display: flex;
	justify-content: space-between;
	font-size: .9rem;
	padding-block: .5rem;
	border-bottom: 1px dashed var(--line);
}
.spec-rows span { color: var(--muted); }
.spec-card p { color: var(--muted); font-size: .88rem; margin: 0; }

.mode-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.4rem;
	max-width: 56rem;
	margin-inline: auto;
}
.mode-card {
	background: rgba(22, 32, 44, .6);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
	padding: 1.8rem 1.6rem;
	transition: border-color .2s ease, transform .2s ease;
}
.mode-card:hover { border-color: rgba(126, 180, 235, .4); transform: translateY(-4px); }
.mode-head { display: flex; align-items: center; gap: .7rem; font-size: 1.4rem; margin-bottom: 1rem; }
.mode-head h3 { font-size: 1.15rem; margin: 0; }
.mode-rows { list-style: none; margin: 0 0 1rem; padding: 0; }
.mode-rows li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	font-size: .9rem;
	padding-block: .55rem;
	border-bottom: 1px dashed var(--line-dark);
}
.mode-rows span { color: var(--muted-on-dark); }
.mode-rows b { color: #fff; font-weight: 600; }
.mode-card > p { color: var(--muted-on-dark); font-size: .88rem; margin: 0; }

/* ==================================================================
   فحص الجودة
   ================================================================== */
.report-mock {
	background: #fff;
	color: var(--text);
	border-radius: 0;
	padding: 1.6rem;
	direction: rtl;
}
.svc-hero-art .art-inspection { background: #fff; border-color: rgba(255, 255, 255, .3); }
.report-head {
	display: flex;
	align-items: center;
	gap: .8rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--ink);
}
.report-head img { filter: invert(1) hue-rotate(180deg); }
.report-head b { display: block; font-size: .95rem; }
.report-head small { color: var(--muted); font-size: .72rem; direction: ltr; display: block; text-align: right; }
.report-stamp {
	margin-inline-start: auto;
	color: #16a34a;
	border: 2px solid #16a34a;
	font-weight: 700;
	font-size: .8rem;
	padding: .2rem .7rem;
	border-radius: 8px;
	transform: rotate(-8deg);
}
.report-rows { list-style: none; margin: 0; padding: .4rem 0; }
.report-rows li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: .84rem;
	padding-block: .5rem;
	border-bottom: 1px dashed var(--line);
}
.report-rows .ok {
	color: #16a34a;
	background: rgba(22, 163, 74, .1);
	width: 24px; height: 24px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	font-size: .8rem;
}
.report-photos { display: flex; gap: .5rem; padding-top: 1rem; }
.report-photos span {
	width: 52px; height: 40px;
	display: grid;
	place-items: center;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 8px;
	font-size: .8rem;
	color: var(--muted);
}

.qc-stages {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.2rem;
	position: relative;
}
.qc-stages::before {
	content: "";
	position: absolute;
	top: 26px;
	inset-inline: 8%;
	height: 2px;
	background: linear-gradient(90deg, var(--blue-sky), var(--blue));
	opacity: .3;
}
.qc-stage { text-align: center; position: relative; }
.qc-gate {
	width: 52px; height: 52px;
	margin: 0 auto .8rem;
	display: grid;
	place-items: center;
	background: var(--card);
	border: 2px solid var(--blue);
	border-radius: 50%;
	font-weight: 700;
	color: var(--blue);
	font-size: 1.1rem;
	position: relative;
	z-index: 1;
	box-shadow: 0 0 0 6px var(--paper);
}
.qc-stage small { display: block; color: var(--blue); font-weight: 700; font-size: .72rem; margin-bottom: .2rem; }
.qc-stage h3 { font-size: 1rem; margin-bottom: .3rem; }
.qc-stage p { color: var(--muted); font-size: .85rem; margin: 0; }

.stat-band {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	background: var(--ink-2);
	border-radius: var(--radius);
	padding: 2rem 1.5rem;
	text-align: center;
}
.stat-band b {
	display: block;
	font-size: 1.8rem;
	background: linear-gradient(160deg, var(--blue-sky), var(--blue-bright));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.stat-band span { color: var(--muted-on-dark); font-size: .82rem; }

/* ==================================================================
   التخليص الجمركي
   ================================================================== */
.doc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.3rem;
}
.doc-card {
	position: relative;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.6rem 1.5rem 1.4rem;
	transition: transform .2s ease, box-shadow .2s ease;
}
.doc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.doc-ico { font-size: 1.7rem; display: block; margin-bottom: .7rem; }
.doc-card h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.doc-card p { color: var(--muted); font-size: .86rem; margin: 0 0 .9rem; }
.doc-badge {
	font-size: .7rem;
	font-weight: 700;
	color: var(--blue);
	background: rgba(30, 117, 192, .1);
	border: 1px solid rgba(30, 117, 192, .25);
	padding: .18rem .6rem;
	border-radius: 999px;
}

.clear-line {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.4rem;
	position: relative;
	counter-reset: clear;
}
.clear-line::before {
	content: "";
	position: absolute;
	top: 21px;
	inset-inline: 10%;
	height: 2px;
	background: repeating-linear-gradient(90deg, var(--blue-sky) 0 8px, transparent 8px 16px);
	opacity: .4;
}
.clear-step { text-align: center; }
.clear-dot {
	position: relative;
	z-index: 1;
	width: 42px; height: 42px;
	margin: 0 auto .9rem;
	display: grid;
	place-items: center;
	background: linear-gradient(160deg, var(--blue-bright), var(--blue));
	color: #fff;
	font-weight: 700;
	border-radius: 50%;
	box-shadow: 0 0 0 6px var(--ink-2);
}
.clear-step h3 { font-size: 1rem; margin-bottom: .3rem; }
.clear-step p { color: var(--muted-on-dark); font-size: .85rem; margin: 0; }

.ports-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.2rem;
}
.port-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.5rem 1.3rem;
	text-align: center;
	transition: transform .2s ease, border-color .2s ease;
}
.port-card:hover { transform: translateY(-4px); border-color: rgba(30, 117, 192, .35); }
.port-card span { font-size: 1.6rem; display: block; margin-bottom: .5rem; }
.port-card h3 { font-size: .98rem; margin-bottom: .2rem; }
.port-card p { color: var(--muted); font-size: .82rem; margin: 0; }

/* ==================================================================
   الاستشارات التجارية
   ================================================================== */
.deliv-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.3rem;
	max-width: 56rem;
	margin-inline: auto;
}
.deliv-card {
	position: relative;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.7rem 1.6rem;
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}
.deliv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.deliv-num {
	position: absolute;
	top: .4rem;
	inset-inline-end: 1rem;
	font-size: 3.2rem;
	font-weight: 700;
	color: rgba(30, 117, 192, .08);
	line-height: 1;
}
.deliv-card h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.deliv-card p { color: var(--muted); font-size: .9rem; margin: 0; }

.aud-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.3rem;
}
.aud-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.8rem 1.6rem;
	transition: transform .2s ease, box-shadow .2s ease;
}
.aud-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.aud-ico { font-size: 1.8rem; display: block; margin-bottom: .8rem; }
.aud-card h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.aud-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ==================================================================
   فهرس الخدمات
   ================================================================== */
.svc-index-head { max-width: 44rem; padding-block: 2.8rem 4rem; }
.svc-index-head h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: #fff; margin-bottom: .8rem; }
.svc-index-head p { color: var(--muted-on-dark); font-size: 1.05rem; margin: 0; }

.svc-index-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
}
.svc-index-card {
	position: relative;
	display: block;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.9rem 1.7rem;
	color: var(--text);
	overflow: hidden;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.svc-index-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
	border-color: rgba(30, 117, 192, .35);
}
.sic-num {
	position: absolute;
	top: .6rem;
	inset-inline-end: 1.1rem;
	font-size: 2.6rem;
	font-weight: 700;
	color: rgba(30, 117, 192, .08);
	line-height: 1;
}
.svc-index-card .card-tag { top: auto; bottom: 1.4rem; inset-inline-end: 1.4rem; }
.svc-index-card h2 { font-size: 1.18rem; margin: 0 0 .15rem; }
.sic-tag { color: var(--blue); font-weight: 600; font-size: .88rem; margin: 0 0 .7rem; }
.sic-desc { color: var(--muted); font-size: .89rem; margin: 0 0 1.1rem; }
.sic-more { font-weight: 700; font-size: .88rem; color: var(--blue); }
.sic-more i { font-style: normal; transition: transform .2s ease; display: inline-block; }
.svc-index-card:hover .sic-more i { transform: translateX(-4px); }

/* ==================================================================
   دليل العناوين في الصين
   ================================================================== */
.guide-head { max-width: 42rem; padding-top: 2.4rem; }
.guide-head h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; margin-bottom: .7rem; }
.guide-head p { color: var(--muted-on-dark); margin: 0; }
.guide-head strong { color: var(--blue-sky); font-weight: 600; }

.guide-office {
	background: rgba(22, 32, 44, .8);
	border: 1px solid var(--line-dark);
	border-radius: 18px;
	padding: 1.3rem 1.4rem;
	margin-block: 1.8rem 3rem;
	max-width: 34rem;
}
.guide-office-head { display: flex; align-items: center; gap: .6rem; margin-bottom: .7rem; }
.guide-office-head b { color: #fff; }
.guide-office-head span {
	margin-inline-start: auto;
	font-size: .7rem;
	font-weight: 700;
	color: var(--blue-sky);
	background: rgba(30, 117, 192, .15);
	border: 1px solid rgba(30, 117, 192, .35);
	padding: .15rem .6rem;
	border-radius: 999px;
}
.guide-office .guide-cn { font-size: 1.02rem; color: #fff; font-weight: 600; }
.guide-office .guide-en { color: var(--muted-on-dark); font-size: .78rem; margin: .3rem 0 .8rem; text-align: end; }
.guide-office-tels { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.guide-office-tels a { font-weight: 600; font-size: .9rem; }

/* أدوات البحث والتنقل */
.guide-tools {
	position: sticky;
	top: 74px;
	z-index: 20;
	background: var(--paper);
	padding-block: .9rem;
	margin-bottom: 1.6rem;
	border-bottom: 1px solid var(--line);
}
.guide-search {
	display: flex;
	align-items: center;
	gap: .6rem;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: .55rem .9rem;
	color: var(--muted);
	margin-bottom: .7rem;
}
.guide-search input {
	flex: 1;
	border: 0;
	outline: none;
	font-family: inherit;
	font-size: .95rem;
	background: transparent;
	color: var(--text);
}
.guide-search:focus-within { border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(46, 143, 224, .15); }
.guide-jump { display: flex; gap: .5rem; flex-wrap: wrap; }
.guide-jump a {
	font-size: .8rem;
	font-weight: 600;
	color: var(--muted);
	background: var(--card);
	border: 1px solid var(--line);
	padding: .3rem .8rem;
	border-radius: 999px;
	transition: color .15s ease, border-color .15s ease;
}
.guide-jump a:hover { color: var(--blue); border-color: var(--blue); }

/* الأقسام */
.guide-section { scroll-margin-top: 190px; margin-bottom: 2.6rem; }
.guide-sec-head {
	display: flex;
	align-items: center;
	gap: .9rem;
	margin-bottom: 1rem;
}
.guide-sec-emoji {
	width: 46px; height: 46px;
	display: grid;
	place-items: center;
	font-size: 1.3rem;
	background: rgba(30, 117, 192, .1);
	border: 1px solid rgba(30, 117, 192, .22);
	border-radius: 13px;
	flex-shrink: 0;
}
.guide-sec-head h2 { font-size: 1.25rem; margin: 0; }
.guide-sec-head p { color: var(--muted); font-size: .82rem; margin: 0; }
.guide-count {
	margin-inline-start: auto;
	font-size: .75rem;
	font-weight: 700;
	color: var(--blue);
	background: rgba(30, 117, 192, .1);
	padding: .2rem .7rem;
	border-radius: 999px;
	white-space: nowrap;
}

/* القائمة */
.guide-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.guide-item {
	display: flex;
	align-items: center;
	gap: .9rem;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: .8rem 1rem;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.guide-item:hover { border-color: rgba(30, 117, 192, .35); box-shadow: 0 6px 20px -10px rgba(11, 15, 21, .15); }
.guide-num {
	width: 34px; height: 34px;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	font-size: .88rem;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(160deg, var(--blue-bright), var(--blue));
	border-radius: 10px;
}
.guide-names { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .15rem; }
.guide-ar { font-weight: 600; font-size: .92rem; }
.guide-cn {
	font-size: 1.05rem;
	color: var(--text);
	cursor: pointer;
	direction: ltr;
	text-align: end;
	overflow-wrap: anywhere;
	margin: 0;
}
.guide-item .guide-cn { color: var(--blue); font-weight: 600; }
.guide-copy {
	flex-shrink: 0;
	width: 38px; height: 38px;
	display: grid;
	place-items: center;
	background: rgba(30, 117, 192, .08);
	border: 1px solid rgba(30, 117, 192, .2);
	border-radius: 10px;
	color: var(--blue);
	cursor: pointer;
	transition: background .15s ease, transform .1s ease;
}
.guide-copy:active { transform: scale(.92); }
.guide-copy.copied { background: #16a34a; border-color: #16a34a; color: #fff; }

.guide-empty { text-align: center; color: var(--muted); padding-block: 2rem; }

.guide-tip {
	display: flex;
	gap: .9rem;
	align-items: flex-start;
	background: rgba(30, 117, 192, .07);
	border: 1px dashed rgba(30, 117, 192, .35);
	border-radius: 16px;
	padding: 1.2rem 1.4rem;
	margin-top: 2.4rem;
}
.guide-tip span { font-size: 1.4rem; }
.guide-tip p { margin: 0; color: var(--text); font-size: .95rem; }
.guide-tip a { font-weight: 600; }

@media (max-width: 720px) {
	.guide-tools { top: 66px; }
	.guide-sec-head p { display: none; }
	.guide-item { padding: .7rem .8rem; gap: .7rem; }
	.guide-cn { font-size: 1rem; }
	.guide-office .guide-en { text-align: start; }
}

/* ==================================================================
   التجاوب
   ================================================================== */
@media (max-width: 1024px) {
	.svc-hero-grid { grid-template-columns: 1fr; padding-block: 2.6rem 3.2rem; }
	.svc-hero-art { max-width: 560px; }
	.import-duties, .deliv-grid, .mode-grid { grid-template-columns: 1fr; }
	.spec-grid, .aud-grid, .doc-grid, .svc-index-grid { grid-template-columns: repeat(2, 1fr); }
	.qc-stages, .clear-line, .ports-grid { grid-template-columns: repeat(2, 1fr); }
	.qc-stages::before, .clear-line::before { display: none; }
	.stat-band { grid-template-columns: repeat(2, 1fr); }
	.two-col { grid-template-columns: 1fr; gap: 2.2rem; }
}

@media (max-width: 720px) {
	.spec-grid, .aud-grid, .doc-grid, .svc-index-grid,
	.qc-stages, .clear-line, .ports-grid, .cbm-facts { grid-template-columns: 1fr; }
	.cbm-viz { flex-direction: column; min-height: 0; }
	.seg-you { transform: none; }
	.svc-cta-inner { flex-direction: column; align-items: flex-start; }
	.stat-band { grid-template-columns: repeat(2, 1fr); }
	.art-card { font-size: .68rem; }
}
