/* =========================================================
   Tasadar Theme — main.css
   الوضع الليلي هو الافتراضي، والنهاري عبر [data-theme="light"]
   ========================================================= */

:root,
html[data-theme="dark"] {
	--bg: #061224;
	--bg-alt: #0B1F3A;
	--card: #0F2743;
	--card-2: #122E4F;
	--line: rgba(255, 255, 255, .09);
	--line-2: rgba(255, 255, 255, .16);
	--text: #EAF1FA;
	--soft: #A6B8D2;
	--faint: #6E82A2;
	--blue: #3E7BFA;
	--purple: #8B5CF6;
	--grad: linear-gradient(135deg, #3E7BFA 0%, #8B5CF6 100%);
	--grad-soft: linear-gradient(135deg, rgba(62, 123, 250, .14), rgba(139, 92, 246, .14));
	--header-bg: rgba(6, 18, 36, .88);
	--shadow: 0 20px 60px rgba(0, 0, 0, .35);
	--ph: rgba(255, 255, 255, .05);
}

html[data-theme="light"] {
	--bg: #F6F8FC;
	--bg-alt: #FFFFFF;
	--card: #FFFFFF;
	--card-2: #F0F4FB;
	--line: rgba(11, 31, 58, .10);
	--line-2: rgba(11, 31, 58, .18);
	--text: #0B1F3A;
	--soft: #44567A;
	--faint: #7285A6;
	--header-bg: rgba(255, 255, 255, .88);
	--grad-soft: linear-gradient(135deg, rgba(62, 123, 250, .10), rgba(139, 92, 246, .10));
	--shadow: 0 16px 44px rgba(11, 31, 58, .10);
	--ph: rgba(11, 31, 58, .04);
}

/* ---------- أساسيات ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
	font-family: 'Tajawal', system-ui, -apple-system, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	transition: background .25s ease, color .25s ease;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { opacity: .9; }

.container { max-width: 1280px; margin: 0 auto; padding-inline: 20px; }
.container.narrow { max-width: 920px; }
.container.c, .c { text-align: center; }

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
	clip: auto; width: auto; height: auto;
	position: fixed; top: 10px; inset-inline-start: 10px;
	background: var(--card); color: var(--text);
	padding: 10px 18px; border-radius: 8px; z-index: 999;
}

.eyebrow {
	display: inline-block;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	letter-spacing: 3px;
	color: var(--blue);
	text-transform: uppercase;
	margin-bottom: 10px;
}

/* ---------- الهيدر ---------- */
.site-header {
	background: var(--header-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
	z-index: 100;
	transition: background .25s ease;
}
.site-header.is-sticky { position: sticky; top: 0; }
.admin-bar .site-header.is-sticky { top: 32px; }

.header-in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 74px;
	padding-block: 10px;
}

.site-branding { flex-shrink: 0; }
.site-branding .custom-logo { max-height: 52px; width: auto; }

/* تبديل اللوجو بين الوضع الليلي والنهاري — لا يظهران معاً أبداً.
   لوجو النهار مخفي افتراضياً؛ لا يظهر إلا في الوضع النهاري. */
.logo-light { display: none !important; }
.logo-dark { display: inline-block; }
html[data-theme="light"] .logo-dark { display: none !important; }
html[data-theme="light"] .logo-light { display: inline-block !important; }
.site-title {
	display: flex; align-items: center; gap: 10px;
	font-size: 18px; font-weight: 800; color: var(--text);
}
.logo-mark {
	width: 30px; height: 30px; border-radius: 8px;
	background: var(--grad); display: inline-block; flex-shrink: 0;
}

.site-nav { flex: 1; }
.nav-menu, .site-nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.nav-center .site-nav ul { justify-content: center; }
.nav-end .site-nav ul { justify-content: flex-end; }
.nav-start .site-nav ul { justify-content: flex-start; }

.site-nav a {
	display: block;
	color: var(--soft);
	font-weight: 700;
	font-size: 14.5px;
	padding: 9px 13px;
	border-radius: 100px;
	transition: .15s;
}
.site-nav a:hover { color: var(--text); background: var(--ph); opacity: 1; }
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a { background: var(--grad); color: #fff; }

/* قوائم فرعية */
.site-nav li { position: relative; }
.site-nav li ul {
	display: none; position: absolute; top: 100%; inset-inline-start: 0;
	background: var(--card); border: 1px solid var(--line);
	border-radius: 12px; padding: 8px; min-width: 200px;
	box-shadow: var(--shadow); z-index: 50;
}
.site-nav li:hover > ul, .site-nav li:focus-within > ul { display: block; }
.site-nav li ul a { border-radius: 8px; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* زر التبديل ليلي/نهاري */
.mode-toggle {
	width: 42px; height: 42px;
	border-radius: 50%;
	border: 1.5px solid var(--line-2);
	background: transparent;
	color: var(--text);
	cursor: pointer;
	font-size: 17px;
	display: inline-flex; align-items: center; justify-content: center;
	transition: .2s;
}
.mode-toggle:hover { border-color: var(--blue); }
html[data-theme="dark"] .mode-icon-moon { display: none; }
html[data-theme="light"] .mode-icon-sun { display: none; }

/* البرجر للجوال */
.nav-burger {
	display: none;
	width: 42px; height: 42px;
	border-radius: 10px;
	border: 1.5px solid var(--line-2);
	background: transparent;
	cursor: pointer;
	flex-direction: column;
	align-items: center; justify-content: center;
	gap: 5px;
}
.nav-burger span {
	display: block; width: 18px; height: 2px;
	background: var(--text); border-radius: 2px; transition: .2s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- الأزرار ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 7px;
	font-family: inherit; font-weight: 700; font-size: 14.5px;
	border-radius: 12px; padding: 13px 26px;
	cursor: pointer; border: 0; transition: .2s;
	line-height: 1.4;
}
.btn-grad { background: var(--grad); color: #fff !important; box-shadow: 0 8px 24px rgba(62, 123, 250, .28); }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(139, 92, 246, .35); opacity: 1; }
.btn-ghost { background: transparent; color: var(--text) !important; border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--blue); opacity: 1; }
.btn-lg { padding: 16px 38px; font-size: 16px; }
.btn-block { width: 100%; }
.header-cta { padding: 11px 20px; font-size: 13.5px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

/* ---------- الأقسام ---------- */
.sec { padding: 76px 0; }
.sec-alt { background: var(--bg-alt); border-block: 1px solid var(--line); }
.sec-hero { padding: 96px 0 80px; }
.sec-cta {
	background:
		radial-gradient(600px 300px at 80% 20%, rgba(139, 92, 246, .16), transparent),
		radial-gradient(600px 300px at 20% 80%, rgba(62, 123, 250, .16), transparent);
	text-align: center;
}
.sec-cta .btn { margin-top: 18px; }

.h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; line-height: 1.35; margin-bottom: 16px; }
.h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; line-height: 1.4; margin-bottom: 14px; }
.h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.h1 em, .h2 em {
	font-style: normal;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--blue);
}
.lead { font-size: 17px; color: var(--soft); max-width: 58ch; }
.lead-c { margin-inline: auto; }

.row { display: grid; gap: 34px; align-items: center; }
@media (min-width: 820px) {
	.row.split { grid-template-columns: 1.05fr .95fr; }
	.row.split-form { grid-template-columns: .8fr 1.2fr; align-items: start; }
}

.hero-media img { border-radius: 18px; box-shadow: var(--shadow); }
.media-ph {
	min-height: 300px; border-radius: 18px;
	background: var(--grad-soft);
	border: 1.5px dashed var(--line-2);
	display: flex; align-items: center; justify-content: center;
}
.media-ph span {
	font-size: 90px; font-weight: 800;
	background: var(--grad);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent;
}
.tgis-ph { padding: 30px; }
.dims-mini { display: flex; gap: 12px; align-items: flex-end; height: 200px; width: 100%; max-width: 360px; }
.dims-mini i { flex: 1; background: var(--grad); border-radius: 8px 8px 4px 4px; opacity: .85; }

/* ---------- الشبكات والبطاقات ---------- */
.grid { display: grid; gap: 16px; margin-top: 26px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .g3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.box {
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 22px;
	background: var(--card);
	transition: transform .2s, border-color .2s, box-shadow .2s;
}
.box:hover { transform: translateY(-3px); border-color: rgba(62, 123, 250, .45); box-shadow: var(--shadow); }
.box.c { text-align: center; }
.box-text { font-size: 14px; color: var(--soft); margin-top: 4px; }
.box-link { display: block; color: var(--text); }

.box.grad-b { border-color: transparent; background: var(--grad-soft); position: relative; }
.box.grad-b::before {
	content: ""; position: absolute; inset: 0; border-radius: 14px; padding: 1.5px;
	background: var(--grad);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.nb {
	width: 36px; height: 36px; border-radius: 10px;
	background: var(--grad); color: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	font-weight: 800; font-size: 14px; margin-bottom: 12px;
	font-family: 'IBM Plex Mono', monospace;
}

.chip {
	display: inline-block;
	font-size: 12px; font-weight: 700;
	color: var(--blue);
	background: rgba(62, 123, 250, .12);
	border: 1px solid rgba(62, 123, 250, .35);
	border-radius: 20px;
	padding: 4px 13px;
	margin-bottom: 10px;
}

.quote {
	border-inline-start: 3px solid var(--purple);
	background: var(--grad-soft);
	padding: 16px 20px;
	border-radius: 0 12px 12px 0;
	font-size: 16px; font-weight: 700;
	margin-top: 26px;
}
[dir="rtl"] .quote { border-radius: 12px 0 0 12px; }

/* ---------- جدول المقارنة ---------- */
.cmp {
	display: grid; grid-template-columns: 1fr 1fr;
	border: 1px solid var(--line); border-radius: 14px;
	overflow: hidden; margin-top: 26px;
	background: var(--card);
}
.cmp .col-h { padding: 15px; text-align: center; font-weight: 800; font-size: 15px; }
.cmp .trad { background: var(--ph); color: var(--faint); }
.cmp .tas { background: var(--grad-soft); color: var(--text); }
.cmp .cell { padding: 14px 18px; font-size: 14px; border-top: 1px solid var(--line); }
.cmp .cell.trad { color: var(--faint); }

/* ---------- نموذج TGIS ---------- */
.formx {
	max-width: 560px; margin: 34px auto 0;
	border: 1px solid var(--line); border-radius: 16px;
	padding: 26px; background: var(--card);
	box-shadow: var(--shadow);
}
.prog { height: 7px; border-radius: 20px; background: var(--ph); overflow: hidden; margin-bottom: 18px; border: 1px solid var(--line); }
.prog i { display: block; height: 100%; width: 0; background: var(--grad); border-radius: 20px; transition: width .3s ease; }

.tgis-axis-label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 12px; color: var(--faint); margin-bottom: 8px;
}
.tgis-q { font-size: 18px; font-weight: 800; margin-bottom: 14px; }

.opt {
	display: block; width: 100%; text-align: start;
	border: 1.5px solid var(--line-2); border-radius: 12px;
	padding: 14px 16px; margin: 9px 0;
	font-size: 15px; font-weight: 500; font-family: inherit;
	color: var(--soft); background: transparent;
	cursor: pointer; transition: .15s;
}
.opt:hover { border-color: var(--blue); color: var(--text); }
.opt.sel {
	border-color: transparent;
	background: var(--grad-soft);
	color: var(--text); font-weight: 700;
	box-shadow: inset 0 0 0 1.5px var(--purple);
}

.tgis-nav { display: flex; gap: 10px; margin-top: 16px; }
.tgis-nav .btn { flex: 1; }

/* نتيجة TGIS */
.dim { display: flex; align-items: center; gap: 12px; margin: 10px 0; }
.dim .dl { font-size: 13.5px; color: var(--soft); width: 110px; flex-shrink: 0; font-weight: 700; }
.dim .track { flex: 1; height: 9px; border-radius: 20px; background: var(--ph); overflow: hidden; border: 1px solid var(--line); }
.dim .fill { display: block; height: 100%; background: var(--grad); border-radius: 20px; width: 0; transition: width .8s ease; }
.dim.weak .dl { color: #E0B057; }
.dim.weak .fill { background: #E0B057; }
.dim .dv { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: var(--faint); width: 40px; text-align: end; }

.rtop {
	background: var(--grad); color: #fff;
	padding: 18px 22px; border-radius: 14px 14px 0 0;
	margin: -26px -26px 18px;
}
.rtop .h3 { color: #fff; margin: 6px 0 0; }
.rtop .chip { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .35); color: #fff; margin: 0; }

.pri { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--soft); margin: 9px 0; }
.pri .k {
	background: var(--grad); color: #fff; border-radius: 7px;
	width: 24px; height: 24px; flex-shrink: 0;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 12px; font-weight: 800;
}
.pri strong { color: var(--text); }
.result-note { font-size: 13px; color: var(--faint); margin-top: 14px; }

/* ---------- النماذج العامة ---------- */
.f-label { display: block; font-weight: 700; font-size: 14px; margin: 14px 0 6px; }
.f-input {
	width: 100%; padding: 13px 15px;
	border: 1.5px solid var(--line-2); border-radius: 12px;
	background: var(--bg); color: var(--text);
	font-family: inherit; font-size: 15px;
	transition: border-color .15s;
}
.f-input:focus { outline: none; border-color: var(--blue); }
.booking-box .btn { margin-top: 20px; }
.form-msg { margin-top: 14px; font-weight: 700; font-size: 14.5px; min-height: 22px; }
.form-msg.ok { color: #34C98E; }
.form-msg.err { color: #E0685C; }
.hp-field { position: absolute !important; inset-inline-start: -9999px; opacity: 0; height: 0; overflow: hidden; }

.check-list { list-style: none; margin-top: 6px; }
.check-list li { padding: 7px 0 7px; font-size: 15px; color: var(--soft); display: flex; gap: 9px; }
.check-list li::before { content: "✓"; color: var(--blue); font-weight: 800; }

.contact-page-list { list-style: none; margin-top: 10px; }
.contact-page-list li { padding: 5px 0; color: var(--soft); font-size: 14.5px; }

/* ---------- شبكة المقالات ---------- */
.cat-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.cat-chip {
	border: 1px solid var(--line-2); border-radius: 100px;
	padding: 8px 18px; font-size: 13.5px; font-weight: 700;
	color: var(--soft); transition: .15s;
}
.cat-chip:hover { border-color: var(--blue); color: var(--text); opacity: 1; }
.cat-chip.active { background: var(--grad); color: #fff; border-color: transparent; }

.post-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.post-thumb { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--grad-soft); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.post-card:hover .post-thumb img { transform: scale(1.04); }
.thumb-ph {
	display: flex; align-items: center; justify-content: center;
	height: 100%; font-size: 44px; font-weight: 800;
	background: var(--grad);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent;
}
.post-body { padding: 20px; }
.post-body .h3 a { color: var(--text); }
.post-body .h3 a:hover { color: var(--blue); opacity: 1; }
.post-date { font-size: 12.5px; color: var(--faint); font-family: 'IBM Plex Mono', monospace; }

.single-thumb img { border-radius: 16px; margin-bottom: 26px; box-shadow: var(--shadow); }
.entry-content { font-size: 16.5px; color: var(--soft); }
.entry-content h2, .entry-content h3 { color: var(--text); margin: 28px 0 12px; }
.entry-content p, .entry-content ul, .entry-content ol { margin-bottom: 16px; }
.entry-content ul, .entry-content ol { padding-inline-start: 22px; }
.entry-content img { border-radius: 12px; }
.single-cta { margin-top: 44px; padding: 30px; }
.single-cta .btn { margin-top: 14px; }

.pagination-wrap { margin-top: 34px; text-align: center; }
.pagination-wrap .nav-links { display: inline-flex; gap: 8px; }
.pagination-wrap .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 8px;
	border: 1px solid var(--line-2); border-radius: 10px;
	color: var(--soft); font-weight: 700;
}
.pagination-wrap .page-numbers.current { background: var(--grad); color: #fff; border-color: transparent; }

/* ---------- الفوتر ---------- */
.site-footer {
	background: var(--bg-alt);
	border-top: 1px solid var(--line);
	padding: 60px 0 0;
	margin-top: 0;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1.1fr 1.1fr 1.2fr 1.3fr;
	gap: 30px;
	padding-bottom: 40px;
}
/* عمود الروابط السريعة يمتد على مسارين لعرض القائمة في عمودين */
.footer-col-links { grid-column: span 2; }
@media (max-width: 1024px) {
	.footer-grid { grid-template-columns: 1.4fr 1.6fr 1.2fr; }
	.footer-col-links { grid-column: span 1; }
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col .f-title { font-size: 15.5px; font-weight: 800; margin-bottom: 14px; }
.footer-brand .custom-logo, .footer-logo { max-height: 54px; width: auto; margin-bottom: 12px; }
.footer-tagline { font-size: 13.5px; color: var(--blue); font-weight: 700; margin: 8px 0 6px; }
.footer-about { font-size: 14px; color: var(--soft); max-width: 42ch; }

/* أيقونات التواصل الاجتماعي */
.footer-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.footer-social a {
	width: 40px; height: 40px;
	border: 1px solid var(--line-2); border-radius: 10px;
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--soft);
	transition: .18s;
}
.footer-social a svg { width: 18px; height: 18px; display: block; }
.footer-social a:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-2px); }

.footer-menu { list-style: none; }
.footer-menu a { display: block; padding: 5px 0; color: var(--soft); font-size: 14.5px; }
.footer-menu a:hover { color: var(--blue); opacity: 1; }
/* القائمة على عمودين */
.footer-menu.two-cols {
	column-count: 2;
	column-gap: 26px;
}
.footer-menu.two-cols li { break-inside: avoid; }
@media (max-width: 480px) { .footer-menu.two-cols { column-count: 1; } }

/* معرض الفوتر — شبكة قابلة للتحكم (أعمدة + عرض + ارتفاع) */
.footer-gallery {
	display: grid;
	grid-template-columns: repeat(var(--g-cols, 3), var(--g-w, 84px));
	gap: 8px;
	justify-content: start;
}
.footer-gallery .g-cell {
	display: block;
	width: var(--g-w, 84px);
	height: var(--g-h, 84px);
	border-radius: 9px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--grad-soft);
}
.footer-gallery .g-img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s, opacity .2s; }
.footer-gallery a.g-cell:hover .g-img { transform: scale(1.08); }
.footer-gallery .g-ph { opacity: .45; }
@media (max-width: 480px) {
	.footer-gallery { justify-content: center; }
}

.footer-contact { list-style: none; }
.footer-contact li { padding: 5px 0; color: var(--soft); font-size: 14px; }
.footer-contact a { color: var(--soft); }
.footer-contact a:hover { color: var(--blue); opacity: 1; }

.footer-bottom {
	border-top: 1px solid var(--line);
	padding: 18px 0;
	text-align: center;
	font-size: 13px;
	color: var(--faint);
}

/* ---------- زر واتساب العائم ---------- */
.wa-float {
	position: fixed;
	bottom: 22px;
	z-index: 200;
	display: inline-flex;
	align-items: center;
	gap: 0;
	height: 58px;
	padding: 0;
	border-radius: 40px;
	background: #25D366;
	color: #fff !important;
	box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
	overflow: hidden;
	transition: gap .25s ease, padding .25s ease, transform .2s ease, box-shadow .2s ease;
}
.wa-float.wa-left { inset-inline-start: 22px; }
.wa-float.wa-right { inset-inline-end: 22px; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(37, 211, 102, .55); opacity: 1; }
.wa-icon {
	width: 58px; height: 58px;
	display: inline-flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.wa-icon svg { width: 30px; height: 30px; }
.wa-text {
	max-width: 0;
	white-space: nowrap;
	font-weight: 700;
	font-size: 14.5px;
	opacity: 0;
	transition: max-width .3s ease, opacity .25s ease, padding .25s ease;
}
/* إظهار النص عند التمرير على الشاشات الكبيرة */
@media (min-width: 720px) {
	.wa-float:hover .wa-text { max-width: 240px; opacity: 1; padding-inline-end: 20px; }
}
/* نبض خفيف للفت الانتباه */
.wa-float::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 40px;
	box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
	animation: wa-pulse 2.4s infinite;
	pointer-events: none;
}
@keyframes wa-pulse {
	0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
	70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (prefers-reduced-motion: reduce) {
	.wa-float::before { animation: none; }
}
.admin-bar .wa-float { bottom: 22px; }

/* ---------- حركة الظهور ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}

/* ---------- الجوال ---------- */
@media (max-width: 860px) {
	.nav-burger { display: inline-flex; }
	.site-nav {
		display: none;
		position: absolute; top: 100%; inset-inline: 0;
		background: var(--bg-alt);
		border-bottom: 1px solid var(--line);
		padding: 14px 20px 20px;
		box-shadow: var(--shadow);
	}
	.site-header { position: sticky; top: 0; }
	.site-header.nav-open .site-nav { display: block; }
	.site-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
	.site-nav a { border-radius: 10px; padding: 12px 14px; }
	.site-nav li ul { position: static; display: block; box-shadow: none; border: 0; padding: 0 14px; }
	.header-cta { display: none; }
	.site-header.nav-open .site-nav::after {
		content: ""; display: block;
	}
	.sec { padding: 56px 0; }
	.sec-hero { padding: 64px 0 56px; }
}
