:root {
	--abo-primary: #0f766e;
	--abo-secondary: #334155;
	--abo-ink: #0f172a;
	--abo-muted: #64748b;
	--abo-line: #e2e8f0;
	--abo-soft: #f8fafc;
	--abo-warm: #f59e0b;
	--abo-white: #fff;
	--abo-button: #0f766e;
	--abo-button-text: #fff;
	--abo-desktop-columns: 3;
	--abo-mobile-columns: 1;
	--abo-price-columns: 2;
	--abo-worker-image-ratio: 4 / 5;
	--abo-card-bg: #fff;
	--abo-card-border: #e2e8f0;
	--abo-card-radius: 8px;
	--abo-card-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
	--abo-whatsapp-color: #16a34a;
	--abo-status-available-bg: #ecfeff;
	--abo-status-available-text: #155e75;
	--abo-status-reserved-bg: #fff7ed;
	--abo-status-reserved-text: #9a3412;
	--abo-status-processing-bg: #eff6ff;
	--abo-status-processing-text: #1d4ed8;
	--abo-status-contracted-bg: #f0fdf4;
	--abo-status-contracted-text: #166534;
	--abo-status-unavailable-bg: #f1f5f9;
	--abo-status-unavailable-text: #475569;
	--abo-font-ar: "Tajawal", Tahoma, Arial, sans-serif;
	--abo-font-en: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	--abo-base-font-size: 16px;
	--abo-hero-title-size: 44px;
	--abo-section-title-size: 30px;
	--abo-font-weight: 400;
	--abo-heading-weight: 700;
	--abo-radius: 8px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--abo-white);
	color: var(--abo-ink);
	font-family: var(--abo-font-ar);
	font-size: var(--abo-base-font-size);
	font-weight: var(--abo-font-weight);
	line-height: 1.75;
}

a {
	color: inherit;
	text-decoration: none;
}

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

.abo-container {
	width: min(1120px, calc(100% - 32px));
	margin-inline: auto;
}

.abo-skip-link {
	position: absolute;
	inset-inline-start: 16px;
	top: -80px;
	z-index: 1000;
	background: var(--abo-ink);
	color: var(--abo-white);
	padding: 10px 14px;
}

.abo-skip-link:focus {
	top: 10px;
}

.abo-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--abo-line);
	backdrop-filter: blur(10px);
}

.abo-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
	gap: 18px;
}

.abo-brand {
	display: inline-flex;
	align-items: center;
	color: var(--abo-primary);
	font-weight: 800;
	font-size: 22px;
}

.abo-brand img {
	max-width: 168px;
	max-height: 54px;
	object-fit: contain;
}

.abo-primary-nav ul {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.abo-primary-nav a {
	display: block;
	padding: 10px 12px;
	border-radius: 6px;
	color: var(--abo-secondary);
	font-weight: 700;
}

.abo-primary-nav a:hover,
.abo-primary-nav .current-menu-item > a {
	background: var(--abo-soft);
	color: var(--abo-primary);
}

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

.abo-language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	border: 1px solid var(--abo-line);
	border-radius: 8px;
	background: var(--abo-white);
	padding: 3px 8px;
}

.abo-language-switcher a {
	padding: 5px 4px;
	color: var(--abo-secondary);
	font-weight: var(--abo-heading-weight);
	font-size: 13px;
}

.abo-language-switcher .is-active {
	color: var(--abo-primary);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.abo-language-icon {
	position: relative;
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 1.8px solid var(--abo-primary);
	border-radius: 50%;
}

.abo-language-icon::before,
.abo-language-icon::after {
	content: "";
	position: absolute;
	inset: 3px;
	border-inline: 1px solid var(--abo-primary);
	border-radius: 50%;
}

.abo-language-icon::after {
	inset: 7px 2px auto;
	height: 1px;
	border: 0;
	border-top: 1px solid var(--abo-primary);
	border-radius: 0;
}

.abo-language-separator {
	color: var(--abo-line);
}

.abo-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--abo-line);
	border-radius: 8px;
	background: var(--abo-white);
	padding: 10px;
}

.abo-menu-toggle span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: var(--abo-ink);
}

.abo-button,
button,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border: 1px solid var(--abo-button);
	border-radius: 8px;
	background: var(--abo-button);
	color: var(--abo-button-text);
	font-weight: 800;
	cursor: pointer;
}

.abo-button-small {
	min-height: 38px;
	padding: 8px 13px;
	font-size: 14px;
}

.abo-button-outline {
	background: transparent;
	color: var(--abo-button);
}

.abo-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.abo-hero {
	background:
		linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(245, 158, 11, 0.08)),
		var(--abo-white);
	border-bottom: 1px solid var(--abo-line);
}

.abo-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
	gap: 28px;
	align-items: center;
	min-height: 520px;
	padding: 80px 0 64px;
}

.abo-kicker,
.abo-section-header span {
	display: inline-block;
	color: var(--abo-primary);
	font-weight: 900;
}

.abo-hero h1 {
	margin: 10px 0 14px;
	font-size: clamp(32px, 5vw, var(--abo-hero-title-size));
	line-height: 1.15;
	letter-spacing: 0;
}

.abo-hero p {
	max-width: 680px;
	margin: 0 0 24px;
	color: var(--abo-secondary);
	font-size: 19px;
}

.abo-hero-panel {
	border: 1px solid var(--abo-line);
	border-radius: 8px;
	background: var(--abo-white);
	padding: 24px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.abo-hero-summary {
	position: relative;
	overflow: hidden;
}

.abo-hero-summary::before {
	content: "";
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	margin-bottom: 20px;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(15, 118, 110, 0.92), rgba(51, 65, 85, 0.84)),
		repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.18) 18px 20px);
}

.abo-hero-summary ul {
	display: grid;
	gap: 10px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.abo-hero-summary li {
	padding: 10px 12px;
	border: 1px solid var(--abo-line);
	border-radius: 8px;
	background: var(--abo-soft);
	font-weight: var(--abo-heading-weight);
}

.abo-hero-panel strong {
	display: block;
	margin-bottom: 8px;
	color: var(--abo-primary);
	font-size: 26px;
}

.abo-hero-image {
	padding: 0;
}

.abo-hero-image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.abo-rich-text,
.abo-cta,
.abo-section-action {
	margin-top: 18px;
}

.abo-rich-text img {
	margin-bottom: 18px;
	border-radius: 8px;
}

.abo-page-section,
.abo-page-band,
.abo-page-hero,
.abo-worker-detail {
	padding: 64px 0;
}

.abo-page-band,
.abo-page-hero {
	background: var(--abo-soft);
}

.abo-page-hero {
	border-bottom: 1px solid var(--abo-line);
}

.abo-page-hero h1,
.abo-content h1,
.abo-not-found h1 {
	margin: 0 0 12px;
	font-size: 42px;
	line-height: 1.2;
	letter-spacing: 0;
}

.abo-page-hero p,
.abo-section-header p,
.abo-muted {
	color: var(--abo-muted);
}

.abo-section-header {
	max-width: 720px;
	margin-bottom: 28px;
}

.abo-section-header h2 {
	margin: 6px 0 8px;
	font-size: var(--abo-section-title-size);
	line-height: 1.2;
	letter-spacing: 0;
}

.abo-chip-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.abo-chip {
	padding: 10px 14px;
	border: 1px solid var(--abo-line);
	border-radius: 8px;
	background: var(--abo-white);
	font-weight: 800;
}

.abo-workers-grid,
.abo-package-grid {
	display: grid;
	grid-template-columns: repeat(var(--abo-desktop-columns), minmax(0, 1fr));
	gap: 18px;
}

.abo-package-grid {
	grid-template-columns: repeat(var(--abo-price-columns), minmax(0, 1fr));
}

.abo-worker-card,
.abo-package-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--abo-card-border);
	border-radius: var(--abo-card-radius);
	background: var(--abo-card-bg);
	box-shadow: var(--abo-card-shadow);
}

.abo-worker-card-image {
	display: block;
	aspect-ratio: var(--abo-worker-image-ratio);
	background: var(--abo-soft);
}

.abo-worker-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.abo-worker-card-body,
.abo-package-card {
	flex: 1;
	padding: 16px;
}

.abo-card-topline {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	align-items: center;
	margin-bottom: 12px;
}

.abo-status,
.abo-featured {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 4px 9px;
	border-radius: 999px;
	background: var(--abo-status-available-bg);
	color: var(--abo-status-available-text);
	font-size: 13px;
	font-weight: 900;
}

.abo-status-reserved {
	background: var(--abo-status-reserved-bg);
	color: var(--abo-status-reserved-text);
}

.abo-status-processing {
	background: var(--abo-status-processing-bg);
	color: var(--abo-status-processing-text);
}

.abo-status-contracted {
	background: var(--abo-status-contracted-bg);
	color: var(--abo-status-contracted-text);
}

.abo-status-unavailable {
	background: var(--abo-status-unavailable-bg);
	color: var(--abo-status-unavailable-text);
}

.abo-featured {
	background: #fffbeb;
	color: #92400e;
}

.abo-worker-card h3,
.abo-package-card h3 {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.35;
	letter-spacing: 0;
}

.abo-worker-card ul,
.abo-package-card ul,
.abo-footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.abo-worker-card li {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 7px 0;
	border-top: 1px solid var(--abo-line);
}

.abo-worker-card li span {
	color: var(--abo-muted);
}

.abo-card-link {
	display: inline-flex;
	margin-top: 12px;
	color: var(--abo-primary);
	font-weight: 900;
}

.abo-card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-top: 14px;
}

.abo-card-actions .abo-card-link {
	margin-top: 0;
}

.abo-card-link-muted {
	color: var(--abo-secondary);
}

.abo-worker-skills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.abo-worker-skills span {
	padding: 5px 8px;
	border-radius: 999px;
	background: var(--abo-soft);
	color: var(--abo-secondary);
	font-size: 13px;
	font-weight: var(--abo-heading-weight);
}

.abo-price {
	color: var(--abo-primary);
	font-size: 28px;
	font-weight: var(--abo-heading-weight);
}

.abo-package-info-grid {
	display: grid;
	gap: 10px;
}

.abo-package-info-grid > div,
.abo-price-box {
	border: 1px solid var(--abo-line);
	border-radius: 8px;
	background: var(--abo-soft);
	padding: 12px;
}

.abo-package-info-grid span,
.abo-price-box span {
	display: block;
	color: var(--abo-muted);
	font-size: 13px;
	font-weight: 800;
}

.abo-price-box strong {
	display: block;
	color: var(--abo-primary);
	font-size: 28px;
	line-height: 1.25;
}

.abo-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.abo-steps > div {
	border-inline-start: 4px solid var(--abo-primary);
	background: var(--abo-soft);
	border-radius: 8px;
	padding: 18px;
}

.abo-steps strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--abo-warm);
	color: var(--abo-ink);
}

.abo-faq-list details {
	border-bottom: 1px solid var(--abo-line);
	padding: 16px 0;
}

.abo-faq-list summary {
	cursor: pointer;
	font-weight: 900;
}

.abo-contact-grid,
.abo-worker-detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 28px;
	align-items: start;
}

.abo-contact-form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.abo-contact-form label {
	display: grid;
	gap: 6px;
	font-weight: var(--abo-heading-weight);
}

.abo-contact-form input,
.abo-contact-form textarea,
.abo-contact-form select,
.abo-filters input,
.abo-filters select {
	width: 100%;
	border: 1px solid var(--abo-line);
	border-radius: 8px;
	padding: 11px 12px;
	font: inherit;
}

.abo-contact-form .abo-full,
.abo-contact-form button {
	grid-column: 1 / -1;
}

.abo-honeypot {
	display: none;
}

.abo-form-notice,
.abo-empty-state {
	border: 1px solid var(--abo-line);
	border-radius: 8px;
	background: var(--abo-white);
	padding: 20px;
	margin-bottom: 16px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.abo-empty-state h2,
.abo-empty-state h3 {
	margin-top: 0;
}

.abo-required {
	color: #dc2626;
}

.abo-filters {
	display: grid;
	grid-template-columns: 1.4fr repeat(5, minmax(0, 1fr));
	gap: 12px;
	align-items: end;
	margin-bottom: 24px;
	padding: 16px;
	border: 1px solid var(--abo-line);
	border-radius: 8px;
	background: var(--abo-soft);
}

.abo-filters .abo-filter-search {
	grid-column: span 2;
}

.abo-filter-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 16px;
	color: var(--abo-muted);
}

.abo-filter-reset {
	color: var(--abo-primary);
	font-weight: var(--abo-heading-weight);
}

.abo-filters label {
	display: grid;
	gap: 6px;
	font-weight: 800;
}

.abo-filter-check {
	align-self: center;
	display: flex !important;
	grid-template-columns: none !important;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.abo-filter-check input {
	width: auto;
}

.abo-worker-detail-grid {
	grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.abo-worker-photo {
	position: sticky;
	top: 96px;
	overflow: hidden;
	border-radius: 8px;
	background: var(--abo-soft);
}

.abo-worker-photo img {
	width: 100%;
	aspect-ratio: var(--abo-worker-image-ratio);
	object-fit: cover;
}

.abo-worker-photo-actions {
	display: grid;
	gap: 10px;
	padding: 14px;
	background: var(--abo-white);
	border: 1px solid var(--abo-line);
	border-top: 0;
}

.abo-worker-info h1 {
	margin: 12px 0 18px;
	font-size: 42px;
	line-height: 1.2;
	letter-spacing: 0;
}

.abo-detail-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 24px;
}

.abo-detail-list div {
	border: 1px solid var(--abo-line);
	border-radius: 8px;
	background: var(--abo-white);
	padding: 12px;
}

.abo-detail-list span {
	display: block;
	color: var(--abo-muted);
	font-size: 14px;
}

.abo-detail-list strong {
	display: block;
	overflow-wrap: anywhere;
}

.abo-worker-description {
	margin-bottom: 22px;
}

.abo-detail-panel {
	margin: 18px 0;
	border: 1px solid var(--abo-line);
	border-radius: 8px;
	background: var(--abo-white);
	padding: 18px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.abo-detail-panel h2 {
	margin: 0 0 10px;
	font-size: 22px;
}

.abo-detail-panel p {
	margin: 0;
}

.abo-package-grid-linked {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.abo-worker-inquiry-summary {
	display: grid;
	gap: 5px;
	border: 1px solid var(--abo-line);
	border-radius: 8px;
	background: var(--abo-soft);
	padding: 14px;
}

.abo-content {
	max-width: 820px;
}

.abo-content a {
	color: var(--abo-primary);
	font-weight: 800;
}

.abo-site-footer {
	background: #111827;
	color: #e5e7eb;
	padding: 48px 0 22px;
}

.abo-footer-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr 0.8fr;
	gap: 28px;
	align-items: start;
}

.abo-site-footer h2,
.abo-site-footer h3 {
	margin-top: 0;
	color: var(--abo-white);
}

.abo-footer-logo {
	max-width: 168px;
	max-height: 56px;
	object-fit: contain;
	margin-bottom: 14px;
}

.abo-footer-links li {
	margin-bottom: 8px;
}

.abo-footer-bottom {
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	color: #cbd5e1;
}

.abo-whatsapp-fixed {
	position: fixed;
	bottom: max(18px, env(safe-area-inset-bottom));
	z-index: 60;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	padding: 0;
	border-radius: 50%;
	background: var(--abo-whatsapp-color);
	color: #fff;
	box-shadow: 0 12px 24px rgba(22, 163, 74, 0.28);
}

.abo-pagination-wrap .nav-links,
.abo-load-more-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 26px;
}

.abo-pagination-wrap .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	border: 1px solid var(--abo-line);
	border-radius: 8px;
	background: var(--abo-white);
	color: var(--abo-secondary);
	font-weight: 800;
}

.abo-pagination-wrap .page-numbers.current {
	background: var(--abo-primary);
	color: var(--abo-white);
	border-color: var(--abo-primary);
}

.abo-load-more.is-loading {
	opacity: .7;
	pointer-events: none;
}

.abo-pagination-end {
	color: var(--abo-muted);
	font-weight: 800;
	text-align: center;
}

.abo-whatsapp-fixed svg {
	width: 28px;
	height: 28px;
	fill: currentColor;
}

.abo-whatsapp-fixed.is-right {
	inset-inline-end: 18px;
}

.abo-whatsapp-fixed.is-left {
	inset-inline-start: 18px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

html[dir="ltr"] body {
	text-align: left;
	font-family: var(--abo-font-en);
}

html[dir="rtl"] body {
	text-align: right;
	font-family: var(--abo-font-ar);
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
.abo-button,
button,
input[type="submit"] {
	font-weight: var(--abo-heading-weight);
}

@media (max-width: 980px) {
	.abo-menu-toggle {
		display: block;
	}

	.abo-primary-nav {
		position: absolute;
		inset-inline: 16px;
		top: 72px;
		display: none;
		border: 1px solid var(--abo-line);
		border-radius: 8px;
		background: var(--abo-white);
		padding: 10px;
		box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
	}

	.abo-primary-nav.is-open {
		display: block;
	}

	.abo-primary-nav ul {
		display: grid;
		gap: 4px;
	}

	.abo-header-actions {
		margin-inline-start: auto;
	}

	.abo-hero-grid,
	.abo-contact-grid,
	.abo-worker-detail-grid,
	.abo-footer-grid {
		grid-template-columns: 1fr;
	}

	.abo-workers-grid,
	.abo-package-grid,
	.abo-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.abo-package-grid {
		grid-template-columns: 1fr;
	}

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

	.abo-filters .abo-filter-search {
		grid-column: 1 / -1;
	}

	.abo-worker-photo {
		position: static;
	}
}

@media (max-width: 640px) {
	.abo-container {
		width: min(100% - 24px, 1120px);
	}

	.abo-header-inner {
		min-height: 64px;
		gap: 10px;
	}

	.abo-brand {
		font-size: 18px;
	}

	.abo-header-actions .abo-button {
		display: none;
	}

	.abo-language-switcher {
		padding-inline: 6px;
	}

	.abo-language-switcher a {
		font-size: 12px;
	}

	.abo-primary-nav {
		top: 64px;
	}

	.abo-hero-grid {
		min-height: auto;
		padding: 48px 0 44px;
	}

	.abo-hero h1,
	.abo-page-hero h1,
	.abo-worker-info h1,
	.abo-content h1 {
		font-size: 32px;
	}

	.abo-section-header h2 {
		font-size: 28px;
	}

	.abo-page-section,
	.abo-page-band,
	.abo-page-hero,
	.abo-worker-detail {
		padding: 42px 0;
	}

	.abo-workers-grid,
	.abo-package-grid {
		grid-template-columns: repeat(var(--abo-mobile-columns), minmax(0, 1fr));
	}

	.abo-package-grid,
	.abo-package-grid-linked {
		grid-template-columns: 1fr;
	}

	.abo-steps,
	.abo-contact-form,
	.abo-detail-list,
	.abo-filters {
		grid-template-columns: 1fr;
	}

	.abo-whatsapp-fixed {
		width: 50px;
		height: 50px;
		bottom: max(14px, env(safe-area-inset-bottom));
	}
}
