:root {
	--bg: #fbf7f0;
	--bg-soft: #f4f8ee;
	--surface: rgba(255, 253, 249, 0.88);
	--surface-strong: #fffefa;
	--text: #2d3027;
	--muted: #5f6556;
	--line: rgba(82, 88, 73, 0.14);
	--accent: #525b47;
	--accent-strong: #414a39;
	--accent-soft: #eef3e8;
	--gold: #b7a276;
	--shadow: 0 24px 60px rgba(53, 40, 27, 0.12);
	--radius-lg: 28px;
	--radius-md: 20px;
	--radius-sm: 14px;
	--container: min(1180px, calc(100% - 4rem));
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(203, 135, 89, 0.25), transparent 28%),
		radial-gradient(circle at top right, rgba(103, 136, 111, 0.18), transparent 22%),
		linear-gradient(180deg, #fdf9f2 0%, #f3ede2 100%);
	color: var(--text);
	font-family: "Cairo", "Aptos", Tahoma, sans-serif;
	line-height: 1.75;
}

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

a:hover {
	color: var(--accent-strong);
}

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

.container {
	width: var(--container);
	margin-inline: auto;
}

.site-shell {
	min-height: 100svh;
	display: flex;
	flex-direction: column;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	border-bottom: 1px solid rgba(82, 88, 73, 0.1);
	background: var(--surface-strong);
	box-shadow: 0 1px 0 rgba(82, 88, 73, 0.08);
}

.top-header {
	background: #f5faee;
	border-bottom: 1px solid rgba(82, 88, 73, 0.08);
	color: #4d5147;
	font-size: 0.82rem;
	line-height: 1;
}

.top-header__inner {
	min-height: 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
}

.top-header__social,
.top-header__contact {
	display: flex;
	align-items: center;
	gap: 1.35rem;
}

.top-header__social a,
.top-header__contact a {
	display: inline-flex;
	align-items: center;
	gap: 0.38rem;
	color: #53594b;
	transition: color 0.18s ease, transform 0.18s ease;
}

.top-header__social a {
	color: #4b4c43;
}

.top-header__social a:hover,
.top-header__contact a:hover {
	color: var(--gold);
	transform: translateY(-1px);
}

.top-header svg {
	inline-size: 17px;
	block-size: 17px;
	fill: currentColor;
	flex: 0 0 auto;
}

.top-header__contact svg {
	inline-size: 15px;
	block-size: 15px;
}

.main-header {
	background:
		linear-gradient(180deg, rgba(255, 255, 250, 0.98), rgba(251, 252, 247, 0.98)),
		#fffefa;
}

.main-header__inner {
	min-height: 108px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 2.2rem;
	direction: rtl;
}

.header-logo {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 255px;
}

.header-logo img {
	inline-size: auto;
	block-size: 76px;
	max-inline-size: min(285px, 28vw);
	object-fit: contain;
}

.nav-toggle {
	display: none;
	border: 1px solid var(--line);
	background: #fffefa;
	color: var(--accent-strong);
	border-radius: 999px;
	padding: 0.72rem 1rem;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	direction: rtl;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	direction: rtl;
}

.site-nav__list,
.site-footer__menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list a,
.site-footer__menu a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.35rem;
	padding: 0.35rem 0;
	border-radius: 0;
	color: #262a23;
	font-weight: 600;
	font-size: 0.99rem;
	line-height: 1.4;
	position: relative;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav__list a::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: -0.08rem;
	block-size: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.site-nav__list a:hover,
.site-footer__menu a:hover,
.current-menu-item > a,
.current_page_item > a {
	background: transparent;
	color: #5d6354;
	transform: none;
}

.site-nav__list a:hover::after,
.current-menu-item > a::after,
.current_page_item > a::after {
	transform: scaleX(1);
}

.header-cta {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 142px;
	min-height: 39px;
	padding: 0.58rem 1.25rem;
	border-radius: 10px;
	background: #58614f;
	color: #fffefa;
	font-size: 0.98rem;
	font-weight: 800;
	box-shadow: 0 12px 24px rgba(65, 74, 57, 0.14);
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
	background: #444e3c;
	color: #fffefa;
	transform: translateY(-1px);
}

.site-main {
	flex: 1;
}

.hero {
	padding: 5rem 0 4rem;
	overflow: hidden;
	background:
		radial-gradient(ellipse 82% 58% at 50% 66%, rgba(222, 231, 207, 0.72) 0%, rgba(232, 238, 220, 0.58) 36%, rgba(248, 250, 244, 0.45) 66%, rgba(255, 255, 255, 0) 100%),
		radial-gradient(ellipse 44% 70% at 0% 64%, rgba(222, 231, 207, 0.6) 0%, rgba(231, 238, 219, 0.36) 45%, rgba(255, 255, 255, 0) 80%),
		radial-gradient(ellipse 46% 72% at 100% 58%, rgba(222, 231, 207, 0.58) 0%, rgba(231, 238, 219, 0.34) 46%, rgba(255, 255, 255, 0) 82%),
		linear-gradient(180deg, #fffefa 0%, #fbfcf8 30%, #f7f9f0 74%, #ffffff 100%);
	text-align: center;
}

/* Merge header with hero on homepage */
.home .site-header {
	position: absolute;
	left: 0;
	right: 0;
	background: transparent;
	border-bottom: none;
	box-shadow: none;
}

.home .main-header {
	background: transparent;
}

.home .hero {
	padding-top: 13.5rem;
}

@media (max-width: 800px) {
	.home .hero {
		padding-top: 9.5rem;
	}
	
	.home .site-nav.is-open {
		background: var(--surface-strong);
		padding: 1rem;
		border-radius: 12px;
		box-shadow: var(--shadow);
		margin-top: 0.5rem;
	}
}

.hero__container {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 1040px;
	margin-inline: auto;
}

.hero__title {
	font-size: clamp(2.2rem, 4.5vw, 3.4rem);
	font-weight: 800;
	color: #2d3027;
	line-height: 1.25;
	margin: 0 0 1.2rem;
	letter-spacing: -0.01em;
}

.hero__lead {
	font-size: clamp(1rem, 2vw, 1.15rem);
	color: #5f6556;
	max-width: 780px;
	margin: 0 auto 2.5rem;
	line-height: 1.7;
	font-weight: 500;
}

.hero__actions {
	display: flex;
	gap: 1.2rem;
	justify-content: center;
	margin-bottom: 4rem;
	width: 100%;
}

.hero__actions .button {
	min-width: 170px;
	padding: 0.8rem 2rem;
	font-size: 1.05rem;
	font-weight: 700;
	border-radius: 12px;
	transition: all 0.25s ease;
}

.button--primary {
	background: #505949;
	color: #fff8f1;
	border: 1px solid #505949;
}

.button--primary:hover {
	background: #3e4539;
	border-color: #3e4539;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(80, 89, 73, 0.25);
}

.button--secondary {
	background: rgba(255, 255, 255, 0.5);
	color: #2d3027;
	border: 1px solid rgba(82, 88, 73, 0.25);
}

.button--secondary:hover {
	background: rgba(255, 255, 255, 0.85);
	border-color: rgba(82, 88, 73, 0.4);
	color: #2d3027;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(82, 88, 73, 0.1);
}

.hero__banner {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(82, 88, 73, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero__banner img {
	width: 100%;
	height: auto;
	display: block;
}

.section h2,
.page-intro h1 {
	margin: 0;
	font-size: clamp(2.3rem, 5vw, 4.6rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.section__eyebrow {
	margin: 0 0 0.75rem;
	color: var(--accent-strong);
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.section,
.page-section {
	padding: 1rem 0 4rem;
}

.section--soft {
	background: rgba(255, 255, 255, 0.32);
	border-block: 1px solid rgba(255, 255, 255, 0.32);
}

.section__header,
.page-intro {
	max-width: 48rem;
	margin-bottom: 1.5rem;
}

.section__header h2,
.page-intro h1 {
	font-size: clamp(1.9rem, 4vw, 3.1rem);
}

.card-grid,
.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.feature-card,
.article-card,
.content-shell,
.empty-state,
.cta-panel {
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow);
	background: var(--surface);
}

.feature-card,
.article-card,
.empty-state {
	padding: 1.6rem;
}

.feature-card h3,
.article-card h2,
.article-card h3 {
	margin-top: 0;
	margin-bottom: 0.6rem;
	font-size: 1.3rem;
}

.feature-card p,
.article-card p,
.archive-description,
.page-intro p {
	margin: 0;
	color: var(--muted);
}

.article-meta {
	margin-bottom: 0.9rem !important;
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent-strong) !important;
}

.content-shell {
	padding: 2rem;
}

.prose > *:first-child {
	margin-top: 0;
}

.prose > *:last-child {
	margin-bottom: 0;
}

.prose h2,
.prose h3,
.prose h4 {
	line-height: 1.2;
}

.prose a {
	color: var(--accent-strong);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 0.16em;
}

.featured-media {
	margin-bottom: 1.5rem;
	overflow: hidden;
	border-radius: var(--radius-sm);
}

.cta-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 2rem;
	background: linear-gradient(135deg, rgba(255, 250, 244, 0.95), rgba(245, 223, 206, 0.95));
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.8rem 1.3rem;
	border-radius: 999px;
	font-weight: 800;
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button--primary {
	background: var(--accent);
	color: #fff8f1;
}

.button--primary:hover {
	background: var(--accent-strong);
	color: #fff8f1;
}

.button--ghost {
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.5);
	color: var(--text);
}

.empty-state {
	text-align: center;
}

.site-footer {
	padding: 4.9rem 0 3.4rem;
	background: #505949;
	color: #fff;
	direction: rtl;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(330px, 1.15fr) minmax(180px, 0.65fr) minmax(270px, 0.8fr);
	align-items: start;
	gap: clamp(2rem, 8vw, 8rem);
}

.site-footer h2 {
	position: relative;
	display: inline-flex;
	margin: 0 0 1.45rem;
	color: #fff;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.2;
	white-space: nowrap;
}



.footer-about {
	text-align: center;
	justify-self: end;
	max-inline-size: 390px;
}

.footer-logo {
	display: inline-flex;
	justify-content: center;
	margin-bottom: 1.2rem;
}

.footer-logo img {
	inline-size: min(335px, 100%);
	block-size: auto;
	filter: brightness(0) invert(1);
	opacity: 0.96;
}

.footer-about p {
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.95rem;
	line-height: 1.65;
}

.footer-social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.45rem;
	margin-top: 2rem;
	direction: ltr;
}

.footer-social a,
.footer-contact a,
.footer-contact li > span,
.footer-links a {
	color: rgba(255, 255, 255, 0.92);
	transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.footer-social svg {
	inline-size: 20px;
	block-size: 20px;
	fill: currentColor;
}

.footer-social a:hover,
.footer-contact a:hover,
.footer-links a:hover {
	color: #d8c79e;
	transform: translateY(-1px);
}

.footer-links {
	text-align: center;
	justify-self: center;
}

.footer-links ul,
.footer-contact ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul {
	display: grid;
	gap: 0.78rem;
}

.footer-links a {
	font-size: 0.95rem;
	line-height: 1.45;
}

.footer-contact {
	text-align: center;
	justify-self: start;
	max-inline-size: 310px;
}

.footer-contact ul {
	display: grid;
	gap: 0.72rem;
}

.footer-contact a,
.footer-contact li > span {
	display: inline-flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0.48rem;
	font-size: 0.9rem;
	line-height: 1.45;
}

.footer-contact svg {
	inline-size: 16px;
	block-size: 16px;
	margin-top: 0.14rem;
	fill: currentColor;
	flex: 0 0 auto;
}

.screen-reader-text {
	position: absolute;
	inline-size: 1px;
	block-size: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 960px) {
	:root {
		--container: min(1180px, calc(100% - 2rem));
	}

	.main-header__inner {
		gap: 1rem;
		grid-template-columns: auto 1fr auto;
	}

	.header-logo {
		min-width: 210px;
	}

	.header-logo img {
		block-size: 68px;
		max-inline-size: min(230px, 30vw);
	}

	.site-nav__list {
		gap: 0.95rem;
	}

	.card-grid,
	.post-grid {
		grid-column: 1 / -1;
	}

	.card-grid,
	.post-grid,
	.cta-panel {
		grid-template-columns: 1fr;
	}

	.cta-panel {
		display: grid;
	}

	.site-footer {
		padding-block: 4rem 3rem;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 3rem;
		justify-items: center;
	}

	.footer-about,
	.footer-links,
	.footer-contact {
		justify-self: center;
		max-inline-size: 460px;
	}
}

@media (max-width: 800px) {
	.top-header__inner {
		min-height: auto;
		flex-direction: column;
		align-items: stretch;
		gap: 0.55rem;
		padding: 0.65rem 0;
	}

	.top-header__social,
	.top-header__contact {
		justify-content: center;
		flex-wrap: wrap;
		gap: 0.85rem 1.15rem;
	}

	.main-header__inner {
		min-height: auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		padding: 0.6rem 0;
		gap: 0.5rem;
	}

	/* Wrapper for hamburger + logo on the right in mobile */
	.mobile-header-right {
		display: flex;
		flex-direction: row-reverse; /* logo on right, hamburger on left */
		align-items: center;
		gap: 0.6rem;
	}

	.header-logo {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		min-width: 0;
		margin-inline: 0;
	}

	.header-logo img {
		block-size: 42px;
		max-inline-size: 100%;
		object-fit: contain;
	}

	.nav-toggle {
		order: 1; /* First element on the right */
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background: transparent;
		border: none;
		padding: 0.5rem;
		width: 36px;
		height: 36px;
		position: relative;
		cursor: pointer;
	}

	.nav-toggle span {
		display: block;
		position: relative;
		width: 20px;
		height: 2px;
		background-color: #2d3027;
		font-size: 0;
		color: transparent;
		text-indent: -9999px;
		transition: background-color 0.2s ease;
	}

	.nav-toggle::before,
	.nav-toggle::after {
		content: "";
		position: absolute;
		left: 8px;
		width: 20px;
		height: 2px;
		background-color: #2d3027;
		transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease;
	}

	.nav-toggle::before {
		top: 11px;
	}

	.nav-toggle::after {
		bottom: 11px;
	}

	.nav-toggle[aria-expanded="true"] span {
		background-color: transparent;
	}

	.nav-toggle[aria-expanded="true"]::before {
		transform: translateY(6px) rotate(45deg);
	}

	.nav-toggle[aria-expanded="true"]::after {
		transform: translateY(-6px) rotate(-45deg);
	}

	.site-nav {
		order: 4; /* Spans full width below header row */
		display: none;
		inline-size: 100%;
		padding-top: 0.4rem;
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0.25rem;
		padding: 0.55rem 0;
		border-top: 1px solid var(--line);
	}

	.site-nav__list a {
		justify-content: flex-start;
		min-height: 2.55rem;
	}

	.header-cta {
		order: 3; /* Last element on the left */
		background: #505949;
		color: #fff8f1;
		font-size: 0.72rem;
		font-weight: 700;
		line-height: 1.15;
		text-align: center;
		padding: 0.45rem 0.65rem;
		border-radius: 8px;
		max-width: 58px;
		min-width: auto;
		min-height: auto;
		box-shadow: none;
		transition: background-color 0.2s ease;
	}

	.header-cta:hover {
		background: #3e4539;
	}

	.site-footer h2::before,
	.site-footer h2::after {
		inline-size: 3rem;
	}
}

@media (max-width: 640px) {
	.hero {
		padding-top: 3rem;
	}

	.content-shell,
	.cta-panel {
		padding: 1.4rem;
	}

	.hero__title,
	.section h2,
	.page-intro h1 {
		font-size: clamp(2rem, 8vw, 3rem);
	}

	.site-footer {
		padding-block: 3.2rem 2.7rem;
	}

	.footer-logo img {
		inline-size: min(300px, 100%);
	}

	.site-footer h2::before,
	.site-footer h2::after {
		inline-size: 2.25rem;
	}

	.footer-contact a,
	.footer-contact li > span {
		max-inline-size: 100%;
	}
}

/* --- About Section --- */
.about-section {
	padding: 5rem 0;
	background: #ffffff;
}

.about-container {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 4.5rem;
	align-items: center;
	direction: rtl;
}

.about-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: right;
}

.about-badge {
	display: inline-block;
	background-color: #f4f8ee; /* Very light olive matching pill in screenshot */
	color: #525b47; /* Olive accent */
	padding: 0.35rem 1.2rem;
	border-radius: 99px;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
}

.about-section .about-title {
	font-size: clamp(1.5rem, 2.5vw, 32px);
	font-weight: 700;
	color: #2d3027;
	line-height: 1.2;
	margin: 0 0 1.5rem;
}

.about-text {
	color: #5f6556;
	font-size: 0.95rem;
	line-height: 1.85;
	margin-bottom: 2.2rem;
}

.about-text p {
	margin: 0 0 1.25rem;
}

.about-text p:last-child {
	margin-bottom: 0;
}

.button--about-contact {
	background: #505949; /* Dark olive matching screenshot */
	color: #ffffff;
	border: 1px solid #505949;
	padding: 0.8rem 2.2rem;
	font-size: 0.95rem;
	font-weight: 700;
	border-radius: 12px; /* Match rounded button style */
	transition: all 0.25s ease;
}

.button--about-contact:hover {
	background: #3e4539;
	border-color: #3e4539;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(80, 89, 73, 0.25);
}

.about-media {
	width: 100%;
}

.about-image {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 24px; /* Premium smooth corners */
	box-shadow: 0 20px 40px rgba(82, 88, 73, 0.12);
}

/* Responsive adjustments */
@media (max-width: 960px) {
	.about-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.about-media {
		order: 2; /* Image on bottom */
	}
	
	.about-content {
		order: 1; /* Content on top */
	}
}

@media (max-width: 640px) {
	.about-section {
		padding: 3.5rem 0;
	}
	
	.about-title {
		font-size: 1.85rem;
	}
	
	.about-text {
		font-size: 0.95rem;
		line-height: 1.7;
	}
}

/* =============================================
   Values Section (الدقة، الشفافية، الاحترافية)
   ============================================= */
.values-section {
	position: relative;
	padding: 5rem 0;
	background:
		linear-gradient(0deg, rgba(238, 243, 229, 0.94), rgba(238, 243, 229, 0.94)),
		#eef3e5;
	overflow: hidden;
	direction: rtl;
}

/* Four fixed logo marks over the section color. */
.values-bg-pattern {
	position: absolute;
	inset: 0;
	background-image:
		var(--values-bg-logo),
		var(--values-bg-logo),
		var(--values-bg-logo),
		var(--values-bg-logo);
	background-repeat: no-repeat;
	background-size: min(42vw, 520px) auto;
	background-position:
		right 3.5rem top 1.25rem,
		left 3.5rem top 1.25rem,
		right 3.5rem bottom 1.25rem,
		left 3.5rem bottom 1.25rem;
	filter: brightness(0) saturate(100%) invert(34%) sepia(10%) saturate(654%) hue-rotate(44deg) brightness(94%) contrast(88%);
	opacity: 0.08;
	pointer-events: none;
	z-index: 0;
}

.values-container {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	align-items: stretch;
}

/* Base card */
.values-card {
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	backdrop-filter: blur(4px);
	box-shadow: 0 8px 30px rgba(82, 88, 73, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.values-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(82, 88, 73, 0.14);
}

/* Featured (highlighted) card */
.values-card--featured {
	background: #525b47;
	border-color: #525b47;
	color: #ffffff;
	box-shadow: 0 12px 40px rgba(82, 88, 73, 0.28);
}

.values-card--featured:hover {
	background: #424e3a;
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(82, 88, 73, 0.35);
}

/* Icon circle */
.values-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(82, 88, 73, 0.1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.values-card--featured .values-card__icon {
	background: rgba(255, 255, 255, 0.15);
}

.values-card__icon svg,
.values-card__icon i {
	width: 26px;
	height: 26px;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	fill: #525b47;
	color: #525b47;
}

.values-card--featured .values-card__icon svg,
.values-card--featured .values-card__icon i {
	fill: #ffffff;
	color: #ffffff;
}

/* Title */
.values-card__title {
	font-size: 1.3rem;
	font-weight: 800;
	color: #2d3027;
	margin: 0;
	line-height: 1.3;
}

.values-card--featured .values-card__title {
	color: #ffffff;
}

/* Body text */
.values-card__text {
	font-size: 0.93rem;
	line-height: 1.8;
	color: #5f6556;
	margin: 0;
}

.values-card--featured .values-card__text {
	color: rgba(255, 255, 255, 0.88);
}

/* Responsive */
@media (max-width: 960px) {
	.values-container {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin-inline: auto;
	}
}

@media (max-width: 640px) {
	.values-section {
		padding: 3.5rem 0;
	}

	.values-card {
		padding: 2rem 1.5rem;
	}

	.values-bg-pattern {
		background-size: 92vw auto;
		background-position:
			center top 1rem,
			center 34%,
			center 66%,
			center bottom 1rem;
		opacity: 0.08;
	}
}

/* =============================================
   Services Section
   ============================================= */
.services-section {
	padding: 1.1rem 0 4.6rem;
	background:
		linear-gradient(180deg, #ffffff 0%, #ffffff 76%, #f7fbf1 100%);
	direction: rtl;
}

.services-container {
	max-width: 1120px;
}

.services-header {
	max-width: 660px;
	margin: 0 auto 3.1rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.services-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2rem;
	padding: 0.25rem 1.55rem;
	margin-bottom: 0.7rem;
	border-radius: 999px;
	background: #f4f8ee;
	color: #525b47;
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1;
}

.services-title {
	margin: 0 0 0.85rem;
	color: #2d3027;
	font-size: clamp(1.9rem, 3vw, 2.65rem);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0;
}

.services-description {
	max-width: 610px;
	margin: 0;
	color: #3f443a;
	font-size: clamp(0.95rem, 1.35vw, 1.05rem);
	font-weight: 500;
	line-height: 1.85;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 3.2rem 2.9rem;
	direction: rtl;
}

.service-card {
	grid-column: span 3;
	display: flex;
	flex-direction: column;
	min-width: 0;
	text-align: center;
}

.service-card--wide {
	grid-column: span 4;
}

.service-card__media {
	display: block;
	overflow: hidden;
	border-radius: 8px;
	background: #eef1ec;
	box-shadow: 0 12px 28px rgba(32, 36, 29, 0.08);
}

.service-card__media img {
	width: 100%;
	aspect-ratio: 2.65 / 1;
	height: auto;
	object-fit: cover;
	object-position: center;
	transform: scale(1.01);
	transition: transform 0.28s ease, filter 0.28s ease;
}

.service-card--compact .service-card__media img {
	aspect-ratio: 2.05 / 1;
}

.service-card:hover .service-card__media img {
	filter: saturate(1.04) contrast(1.03);
	transform: scale(1.045);
}

.service-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	padding-top: 0.95rem;
}

.service-card__title {
	margin: 0 0 0.35rem;
	color: #171b15;
	font-size: clamp(1rem, 1.45vw, 1.18rem);
	font-weight: 900;
	line-height: 1.35;
}

.service-card__text {
	min-height: 3.75rem;
	margin: 0 0 1rem;
	color: #6c7166;
	font-size: 0.86rem;
	font-weight: 500;
	line-height: 1.65;
}

.service-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-direction: row-reverse;
	gap: 0.72rem;
	width: 100%;
	min-height: 2.45rem;
	margin-top: auto;
	border-radius: 8px;
	background: #525b47;
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1;
	transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card__link:hover {
	background: #414a39;
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 10px 18px rgba(65, 74, 57, 0.16);
}

.service-card__link i {
	font-size: 0.82rem;
	line-height: 1;
}

@media (max-width: 960px) {
	.services-grid {
		gap: 2.4rem 1.6rem;
	}

	.service-card,
	.service-card--wide {
		grid-column: span 6;
	}

	.service-card__text {
		min-height: 0;
	}
}

@media (max-width: 640px) {
	.services-section {
		padding: 2.4rem 0 3.8rem;
	}

	.services-header {
		margin-bottom: 2.2rem;
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		max-width: 440px;
		margin-inline: auto;
	}

	.service-card,
	.service-card--wide {
		grid-column: 1;
	}

	.service-card__media img,
	.service-card--compact .service-card__media img {
		aspect-ratio: 2.25 / 1;
	}
}

/* =============================================
   Clients + Client Journey Section
   ============================================= */
.clients-journey-section {
	padding: 3.9rem 0 4.8rem;
	background:
		radial-gradient(circle at 8% 15%, rgba(238, 246, 225, 0.9), transparent 30%),
		radial-gradient(circle at 92% 10%, rgba(238, 246, 225, 0.95), transparent 28%),
		linear-gradient(180deg, #ffffff 0%, #fbfdf7 100%);
	direction: rtl;
}

.clients-journey-container {
	max-width: 1130px;
}

.clients-block {
	text-align: center;
	margin-bottom: 4.8rem;
}

.clients-title {
	margin: 0 0 2.55rem;
	color: #20241d;
	font-size: clamp(1.45rem, 2.3vw, 2rem);
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: 0;
}

.clients-title span {
	color: #7b7f73;
}

.clients-logo-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	align-items: center;
	justify-items: center;
	gap: clamp(1.2rem, 3vw, 2.8rem);
	direction: ltr;
}

.client-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	inline-size: 100%;
	min-block-size: 86px;
}

.client-logo img {
	display: block;
	inline-size: auto;
	max-inline-size: 132px;
	max-block-size: 78px;
	object-fit: contain;
	filter: saturate(1.02);
}

.client-logo--wide img {
	max-inline-size: 155px;
}

.client-logo--tall img {
	max-block-size: 96px;
}

.journey-block {
	text-align: center;
}

.journey-header {
	max-width: 680px;
	margin: 0 auto 2.15rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.journey-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 1.9rem;
	padding: 0.24rem 1.25rem;
	margin-bottom: 0.75rem;
	border-radius: 999px;
	background: #f4f8ee;
	color: #657057;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
}

.journey-title {
	margin: 0;
	color: #59604f;
	font-size: clamp(1.75rem, 3vw, 2.45rem);
	font-weight: 800;
	line-height: 1.26;
	letter-spacing: 0;
}

.journey-title strong {
	color: #20241d;
	font-weight: 950;
}

.journey-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: clamp(1rem, 3vw, 2.45rem);
	direction: rtl;
}

.journey-steps::before {
	content: "";
	position: absolute;
	inset-block-start: 1.15rem;
	inset-inline: 7.5%;
	border-top: 1px dashed rgba(183, 162, 118, 0.55);
	z-index: 0;
}

.journey-step {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	text-align: center;
}

.journey-step__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: 3rem;
	block-size: 3rem;
	margin-bottom: 0.82rem;
	border-radius: 50%;
	background: #59604f;
	color: #ffffff;
	font-size: 1.05rem;
	font-weight: 900;
	line-height: 1;
	box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.92);
}

.journey-step__title {
	margin: 0 0 0.35rem;
	color: #20241d;
	font-size: clamp(0.88rem, 1.15vw, 1rem);
	font-weight: 900;
	line-height: 1.45;
}

.journey-step__text {
	margin: 0;
	color: #4e5448;
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1.58;
}

@media (max-width: 1020px) {
	.clients-logo-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1.6rem 2rem;
	}

	.journey-steps {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		row-gap: 2.15rem;
	}

	.journey-steps::before {
		display: none;
	}
}

@media (max-width: 640px) {
	.clients-journey-section {
		padding: 3.2rem 0 3.6rem;
	}

	.clients-block {
		margin-bottom: 3.4rem;
	}

	.clients-title {
		margin-bottom: 1.8rem;
	}

	.clients-logo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.4rem 1rem;
	}

	.client-logo {
		min-block-size: 76px;
	}

	.client-logo img {
		max-inline-size: 128px;
		max-block-size: 72px;
	}

	.client-logo--wide img {
		max-inline-size: 146px;
	}

	.client-logo--tall img {
		max-block-size: 88px;
	}

	.journey-header {
		margin-bottom: 1.8rem;
	}

	.journey-steps {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		max-width: 430px;
		margin-inline: auto;
	}

	.journey-step {
		padding: 1.2rem 1.05rem;
		border: 1px solid rgba(82, 88, 73, 0.08);
		border-radius: 12px;
		background: rgba(255, 255, 255, 0.72);
		box-shadow: 0 12px 26px rgba(82, 88, 73, 0.06);
	}

	.journey-step__number {
		inline-size: 2.75rem;
		block-size: 2.75rem;
		box-shadow: none;
	}

	.journey-step__text {
		font-size: 0.82rem;
	}
}

/* =============================================
   FAQ Section
   ============================================= */
.faq-section {
	padding: 4.7rem 0 4.4rem;
	background:
		radial-gradient(circle at 15% 55%, rgba(238, 246, 225, 0.82), transparent 24%),
		linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #fbfdf7 100%);
	direction: rtl;
}

.faq-container {
	max-width: 1120px;
}

.faq-header {
	max-width: 610px;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.faq-header h2 {
	margin: 0;
	color: #363b32;
	font-size: clamp(1.75rem, 3vw, 2.4rem);
	font-weight: 950;
	line-height: 1.3;
	letter-spacing: 0;
}

.faq-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(500px, 1.28fr);
	gap: clamp(2.2rem, 6vw, 5rem);
	align-items: start;
	direction: ltr;
}

.faq-side,
.faq-list {
	direction: rtl;
}

.faq-side {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.faq-illustration {
	inline-size: min(330px, 100%);
	margin: 0 auto 1.35rem;
}

.faq-illustration img {
	inline-size: 100%;
	block-size: auto;
	object-fit: contain;
}

.faq-mini {
	inline-size: min(340px, 100%);
	text-align: center;
}

.faq-mini h3 {
	margin: 0 0 0.28rem;
	color: #20241d;
	font-size: 1rem;
	font-weight: 900;
}

.faq-mini p {
	margin: 0 0 0.75rem;
	color: #666d60;
	font-size: 0.78rem;
	line-height: 1.65;
}

.faq-mini-form {
	display: flex;
	gap: 0.35rem;
	direction: rtl;
}

.faq-mini-form input {
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	border: 1px solid rgba(82, 88, 73, 0.18);
	border-radius: 7px;
	background: #ffffff;
	color: #30352c;
	font: inherit;
	font-size: 0.78rem;
	padding: 0.72rem 0.9rem;
	direction: rtl;
}

.faq-mini-form button {
	flex: 0 0 2.45rem;
	border: 0;
	border-radius: 7px;
	background: #59604f;
	color: #ffffff;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.faq-mini-form button:hover {
	background: #414a39;
	transform: translateY(-1px);
}

.faq-list {
	display: grid;
	gap: 0.9rem;
}

.faq-item {
	border: 1px solid transparent;
	border-radius: 8px;
	background: #fbfef5;
	overflow: hidden;
}

.faq-item[open] {
	border-color: rgba(82, 88, 73, 0.36);
	background: #ffffff;
}

.faq-item summary {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 1rem;
	min-height: 3.35rem;
	padding: 0.72rem 1.1rem;
	color: #11150f;
	font-size: 0.94rem;
	font-weight: 900;
	line-height: 1.55;
	cursor: pointer;
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary i {
	color: #1f241d;
	font-size: 0.76rem;
	transition: transform 0.2s ease;
}

.faq-item[open] summary i {
	transform: rotate(180deg);
}

.faq-item__answer {
	padding: 0 1.1rem 1.1rem;
}

.faq-item__answer p {
	margin: 0;
	color: #3f443a;
	font-size: 0.84rem;
	font-weight: 500;
	line-height: 1.85;
}

/* =============================================
   Contact Section
   ============================================= */
.contact-section {
	padding: 3.9rem 0 4.7rem;
	background:
		radial-gradient(circle at 23% 40%, rgba(238, 246, 225, 0.8), transparent 28%),
		linear-gradient(180deg, #fbfdf7 0%, #ffffff 100%);
	direction: rtl;
}

.contact-container {
	max-width: 1080px;
	display: grid;
	grid-template-columns: minmax(430px, 0.98fr) minmax(340px, 1.02fr);
	gap: clamp(3rem, 8vw, 7rem);
	align-items: center;
	direction: ltr;
}

.contact-form-panel,
.contact-content {
	direction: rtl;
}

.contact-form-panel {
	border: 1px solid rgba(82, 88, 73, 0.2);
	border-radius: 12px;
	padding: 1.35rem;
	background: rgba(255, 255, 255, 0.58);
	box-shadow: 0 20px 42px rgba(82, 88, 73, 0.06);
}

.contact-form {
	display: grid;
	gap: 0.92rem;
}

.contact-form label {
	display: grid;
	gap: 0.36rem;
	color: #20241d;
	font-size: 0.9rem;
	font-weight: 800;
}

.contact-form sup {
	color: #d33030;
	font-size: 0.72rem;
	line-height: 1;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	box-sizing: border-box;
	border: 0;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.86);
	color: #20241d;
	font: inherit;
	font-size: 0.86rem;
	padding: 0.92rem 1rem;
	outline: 1px solid transparent;
	transition: outline-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
	min-height: 7.8rem;
	resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline-color: rgba(82, 88, 73, 0.34);
	box-shadow: 0 0 0 4px rgba(244, 248, 238, 0.8);
}

.contact-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.62rem;
	min-height: 3.1rem;
	border: 0;
	border-radius: 9px;
	background: #59604f;
	color: #ffffff;
	font: inherit;
	font-size: 1rem;
	font-weight: 900;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-form button:hover {
	background: #414a39;
	transform: translateY(-1px);
}

.contact-content {
	text-align: right;
}

.contact-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 1.9rem;
	padding: 0.24rem 1.25rem;
	margin-bottom: 0.95rem;
	border-radius: 999px;
	background: #f4f8ee;
	color: #657057;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
}

.contact-content h2 {
	margin: 0 0 0.65rem;
	color: #20241d;
	font-size: clamp(1.8rem, 3vw, 2.45rem);
	font-weight: 950;
	line-height: 1.25;
	letter-spacing: 0;
}

.contact-lead {
	margin: 0 0 2rem;
	color: #4e5448;
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.85;
}

.contact-list {
	display: grid;
	gap: 1.3rem;
	margin-bottom: 1.9rem;
}

.contact-info {
	display: grid;
	grid-template-columns: 3.1rem 1fr;
	gap: 0.82rem;
	align-items: center;
	color: #20241d;
}

.contact-info__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: 3.1rem;
	block-size: 3.1rem;
	border-radius: 50%;
	background: #59604f;
	color: #ffffff;
	font-size: 1.16rem;
}

.contact-info strong {
	display: block;
	margin-bottom: 0.08rem;
	font-size: 0.9rem;
	font-weight: 900;
}

.contact-info small {
	display: block;
	color: #20241d;
	font-size: 0.82rem;
	font-weight: 500;
	line-height: 1.6;
}

.remote-card {
	max-width: 410px;
	margin-inline: 0 auto;
	border: 1px solid rgba(82, 88, 73, 0.28);
	border-radius: 10px;
	padding: 1.15rem 1.3rem;
	background: rgba(255, 255, 255, 0.54);
	text-align: right;
}

.remote-card h3 {
	margin: 0 0 0.42rem;
	color: #20241d;
	font-size: 1rem;
	font-weight: 900;
}

.remote-card p {
	margin: 0;
	color: #30352c;
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.8;
}

@media (max-width: 960px) {
	.faq-layout,
	.contact-container {
		grid-template-columns: 1fr;
		direction: rtl;
	}

	.faq-layout {
		max-width: 760px;
		margin-inline: auto;
	}

	.faq-side {
		order: 2;
	}

	.faq-list {
		order: 1;
	}

	.contact-content {
		order: 1;
		text-align: center;
	}

	.contact-form-panel {
		order: 2;
		max-width: 620px;
		width: 100%;
		margin-inline: auto;
	}

	.contact-info {
		max-width: 360px;
		margin-inline: auto;
		text-align: right;
	}

	.remote-card {
		margin-inline: auto;
		text-align: center;
	}
}

@media (max-width: 640px) {
	.faq-section,
	.contact-section {
		padding: 3.4rem 0;
	}

	.faq-header {
		margin-bottom: 1.8rem;
	}

	.faq-item summary {
		min-height: 3rem;
		padding: 0.72rem 0.85rem;
		font-size: 0.86rem;
	}

	.faq-item__answer {
		padding-inline: 0.85rem;
	}

	.faq-illustration {
		inline-size: min(260px, 100%);
	}

	.contact-container {
		gap: 2.2rem;
	}

	.contact-form-panel {
		padding: 1rem;
	}

	.contact-lead {
		margin-bottom: 1.55rem;
	}

	.contact-list {
		gap: 1.2rem;
	}

	.contact-info {
		width: min(100%, 360px);
		grid-template-columns: minmax(0, 1fr) 3.25rem minmax(0, 1fr);
		gap: 0.85rem;
		align-items: center;
		text-align: center;
	}

	.contact-info__icon {
		grid-column: 2;
		grid-row: 1;
		justify-self: center;
		inline-size: 3.25rem;
		block-size: 3.25rem;
	}

	.contact-info > span:not(.contact-info__icon) {
		grid-column: 1;
		grid-row: 1;
		justify-self: stretch;
		min-width: 0;
		text-align: center;
	}

	.contact-info strong,
	.contact-info small {
		text-align: center;
	}
}

/* =============================================
   Company Vision Section
   ============================================= */
.vision-section {
	padding: 4.4rem 0;
	background: #ffffff;
	direction: rtl;
}

.vision-container {
	display: grid;
	grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.15fr);
	gap: clamp(2.2rem, 5vw, 4.6rem);
	align-items: center;
	direction: ltr;
}

.vision-content {
	direction: rtl;
	text-align: right;
}

.vision-title {
	margin: 0 0 1.35rem;
	color: #2d3027;
	font-size: clamp(1.75rem, 3.2vw, 2.35rem);
	font-weight: 900;
	line-height: 1.22;
	text-align: center;
	letter-spacing: 0;
}

.vision-list {
	margin: 0;
	padding: 0 1.15rem 0 0;
	color: #20241d;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.78;
	list-style-position: outside;
}

.vision-list li {
	margin-bottom: 0.82rem;
	padding-inline-start: 0.22rem;
}

.vision-list li:last-child {
	margin-bottom: 0;
}

.vision-media {
	overflow: hidden;
	border-radius: 11px;
	background: #eef1ec;
}

.vision-media img {
	display: block;
	width: 100%;
	aspect-ratio: 1.4 / 1;
	height: auto;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 960px) {
	.vision-container {
		grid-template-columns: 1fr;
		max-width: 720px;
		direction: rtl;
	}

	.vision-media {
		order: -1;
	}
}

@media (max-width: 640px) {
	.vision-section {
		padding: 3.4rem 0;
	}

	.vision-title {
		text-align: right;
	}

	.vision-list {
		font-size: 0.92rem;
		line-height: 1.75;
	}

	.vision-media img {
		aspect-ratio: 1.18 / 1;
	}
}

/* =============================================
   Owner/Founder Section
   ============================================= */
.owner-section {
	padding: 5rem 0;
	background: linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #f4f8ee 100%);
	direction: rtl;
}

.owner-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.owner-header {
	max-width: 860px;
	margin-bottom: 3.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.owner-badge {
	display: inline-block;
	background-color: #f4f8ee;
	color: #525b47;
	padding: 0.35rem 1.25rem;
	border-radius: 99px;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.owner-title {
	margin: 0;
	color: #2d3027;
	font-size: clamp(1.85rem, 3.5vw, 2.5rem);
	font-weight: 900;
	line-height: 1.2;
}

.owner-description {
	margin: 0;
	color: #5f6556;
	font-size: clamp(0.95rem, 1.8vw, 1.08rem);
	font-weight: 500;
	line-height: 1.85;
}

.owner-media {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}

.owner-image-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: #f1eee8;
	box-shadow: 0 20px 48px rgba(32, 36, 29, 0.12);
}

.owner-image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.owner-image-logo {
	position: absolute;
	top: clamp(15px, 4%, 40px);
	left: clamp(15px, 4%, 40px);
	width: clamp(90px, 18vw, 220px);
	z-index: 2;
	opacity: 0.8;
	pointer-events: none;
}

.owner-image-logo img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 768px) {
	.owner-section {
		padding: 3.5rem 0;
	}
	.owner-header {
		margin-bottom: 2.5rem;
	}
	.owner-image-wrapper {
		border-radius: 12px;
	}
	.owner-image-logo {
		top: clamp(10px, 3%, 20px);
		left: clamp(10px, 3%, 20px);
		width: clamp(70px, 15vw, 120px);
	}
}



/* =============================================
   Team Section
   ============================================= */
.team-section {
	padding: 5rem 0;
	background: linear-gradient(180deg, #f4f8ee 0%, #f8fbf3 28%, #ffffff 100%);
	direction: rtl;
}

.team-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.team-header {
	text-align: center;
	margin-bottom: 3.5rem;
	max-width: 780px;
}

.team-title {
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 900;
	color: #2d3027;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.team-subtitle {
	font-size: clamp(0.95rem, 1.8vw, 1.05rem);
	color: #5f6556;
	line-height: 1.75;
	margin: 0;
	font-weight: 500;
}

.team-slider {
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
}

.team-card {
	background: #ffffff;
	border-radius: 24px;
	box-shadow: 0 20px 50px rgba(82, 88, 73, 0.08);
	border: 1px solid rgba(82, 88, 73, 0.06);
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	overflow: hidden;
	align-items: stretch;
}

.team-card__content {
	padding: clamp(2rem, 4vw, 3.5rem);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	text-align: right;
}

.team-card__badge {
	display: inline-block;
	background-color: #fbf7f0;
	color: #b7a276;
	padding: 0.35rem 1.25rem;
	border-radius: 99px;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
}

.team-card__name {
	font-size: clamp(1.5rem, 2.5vw, 1.95rem);
	font-weight: 900;
	color: #2d3027;
	margin: 0 0 1.2rem;
	line-height: 1.2;
}

.team-card__bio {
	font-size: clamp(0.92rem, 1.8vw, 1rem);
	line-height: 1.8;
	color: #5f6556;
	margin: 0 0 2.2rem;
	font-weight: 500;
}

.team-card__contact {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	flex-wrap: wrap;
	direction: ltr;
	width: 100%;
	justify-content: flex-end;
}

.team-card__contact-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #5f6556;
	font-size: 0.95rem;
	font-weight: 600;
	transition: color 0.2s ease;
	direction: rtl;
}

.team-card__contact-item:hover {
	color: var(--accent);
}

.team-card__contact-item i {
	font-size: 0.95rem;
	color: #b7a276;
}

.team-card__contact-separator {
	color: rgba(82, 88, 73, 0.2);
}

.team-card__media {
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: stretch;
}

.team-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.team-slider-nav {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
	justify-content: center;
}

.team-slider-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	background: #525b47;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.team-slider-btn:hover {
	background-color: #414a39;
	transform: scale(1.05);
}

.team-slider-btn i {
	font-size: 1.05rem;
}

@media (max-width: 800px) {
	.team-section {
		padding: 3.5rem 0;
	}
	.team-header {
		margin-bottom: 2.2rem;
	}
	.team-card {
		grid-template-columns: 1fr;
		border-radius: 16px;
	}
	.team-card__media {
		order: -1;
		aspect-ratio: 1.35 / 1;
	}
	.team-card__content {
		padding: 2.2rem 1.5rem;
	}
	.team-card__bio {
		margin-bottom: 1.6rem;
	}
	.team-card__contact {
		justify-content: center;
	}
}
