/*
Theme Name: Horizon
Theme URI: https://example.com/horizon
Author: Your Name
Author URI: https://example.com
Description: A modern classic WordPress theme for exchange, fintech, business, portfolio, and blog websites.
Version: 1.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: horizon
Tags: custom-logo, featured-images, blog, portfolio, business, responsive-layout
*/

/*--------------------------------------------------------------
# Root Variables
--------------------------------------------------------------*/

:root {
	--primary: #7cb737;
	--primary-dark: #5f9629;
	--dark: #263238;
	--dark-2: #1f292d;
	--text: #263238;
	--muted: #4b5d54;
	--soft: #f6f8f3;
	--border: #e5ebdd;
	--white: #ffffff;
	--radius: 18px;
	--shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Segoe UI", Arial, Helvetica, sans-serif;
	color: var(--text);
	background: #ffffff;
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--primary);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

button {
	font-family: inherit;
}

.container {
	width: min(1240px, 92%);
	margin: 0 auto;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.site-header {
	background: var(--dark);
	color: var(--white);
	border-bottom: 3px solid var(--primary-dark);
	position: sticky;
	top: 0;
	z-index: 999;
}

.header-logo {
	display: inline-flex;
	align-items: center;
	width: 320px;
	min-height: 84px;
}

.header-logo img {
	width: auto;
	max-width: 245px;
	height: 70px;
    max-height: 70px;
	display: block;
}

.header-inner {
	min-height: 92px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}

.custom-logo {
	max-height: 54px;
	width: auto;
}

.logo-placeholder {
	width: 58px;
	height: 46px;
	background: var(--white);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-placeholder span {
	width: 26px;
	height: 22px;
	background: var(--primary);
	border-radius: 5px;
	display: block;
}

.site-title {
	font-size: 20px;
	line-height: 1.2;
	font-weight: 800;
	color: var(--white);
	text-transform: lowercase;
	letter-spacing: 0.2px;
}

.logo-placeholder,
.site-title {
	display: none;
}

.site-title:hover {
	color: var(--white);
}

.main-navigation {
	display: flex;
	align-items: center;
	gap: 28px;
}

.main-navigation ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
}

.main-navigation li {
	margin: 0;
}

.main-navigation a {
	color: var(--white);
	font-size: 15px;
	font-weight: 700;
	transition: 0.25s ease;
}

.main-navigation a:hover {
	color: #d9e3d2;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
	font-weight: 700;
}

.language-switch {
	color: #eaf4e2;
	font-size: 14px;
	white-space: nowrap;
}

.country-selector {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	white-space: nowrap;
}

.uae-flag {
	width: 24px;
	height: 16px;
	background: linear-gradient(
		to bottom,
		#009739 0 33%,
		#ffffff 33% 66%,
		#111827 66% 100%
	);
	position: relative;
	display: inline-block;
}

.uae-flag::before {
	content: "";
	width: 5px;
	height: 16px;
	background: #e11d48;
	position: absolute;
	left: 0;
	top: 0;
}

/*--------------------------------------------------------------
# Hero Image Slider
--------------------------------------------------------------*/

.exchange-hero-slider {
	position: relative;
	width: 100%;
	height: 620px;
    aspect-ratio: 1920 / 610;
	overflow: hidden;
	/*background: #00a82d;*/
    background: white;
}

.hero-slide {
	position: absolute;
	inset: 0;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 46px;
	height: 46px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.18);
	color: #ffffff;
	font-size: 42px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.25s ease;
}

.hero-arrow:hover {
	background: rgba(0, 0, 0, 0.38);
	color: #ffffff;
}

.hero-arrow-left {
	left: 28px;
}

.hero-arrow-right {
	right: 28px;
}

.hero-slider-dots {
	position: absolute;
	left: 50%;
	bottom: 28px;
	transform: translateX(-50%);
	z-index: 6;
	display: flex;
	align-items: center;
	gap: 10px;
}

.hero-dot {
	width: 12px;
	height: 12px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	cursor: pointer;
	padding: 0;
	transition: 0.25s ease;
}

.hero-dot.active {
	width: 34px;
	border-radius: 999px;
	background: #ffffff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

.section {
	padding: 80px 0;
}

.section-heading {
	text-align: center;
	margin-bottom: 58px;
}

.section-kicker {
	color: var(--primary);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
}

.section-heading h2 {
	font-size: clamp(32px, 4vw, 44px);
	line-height: 1.25;
	margin: 0;
	font-weight: 900;
	color: var(--dark);
}

.section-heading p {
	max-width: 720px;
	margin: 16px auto 0;
	color: var(--muted);
	font-size: 17px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services-section {
	background: #ffffff;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 42px 28px;
}

.service-item {
	text-align: center;
	padding: 10px;
}

.service-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 18px;
	position: relative;
}

.service-icon::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 18px;
	width: 44px;
	height: 34px;
	border: 3px solid var(--primary);
	border-radius: 5px;
}

.service-icon::after {
	content: "";
	position: absolute;
	left: 23px;
	top: 9px;
	width: 18px;
	height: 18px;
	border: 3px solid var(--primary);
	border-radius: 50%;
	background: var(--white);
}

.service-item h3 {
	color: var(--primary-dark);
	font-size: 16px;
	font-weight: 800;
	margin: 0 0 12px;
}

.service-item p {
	color: #7b8490;
	font-size: 15px;
	margin: 0;
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/

.partners-section {
	background: var(--dark);
	color: var(--white);
}

.partners-section .section-heading h2 {
	color: var(--white);
}

.partners-section .section-heading h2 span {
	color: var(--primary);
}

.partners-section .section-heading p {
	color: #d9e3d2;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	justify-content: center;
}

.partner-card {
	min-height: 116px;
	background: #242a27;
	border: 1px solid #343b37;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a7ada8;
	font-size: 22px;
	font-weight: 900;
	text-align: center;
	padding: 20px;
	transition: 0.25s ease;
}

.partner-card:hover {
	transform: translateY(-4px);
	border-color: var(--primary);
	color: #ffffff;
}

/*--------------------------------------------------------------
# Trust Section
--------------------------------------------------------------*/

.trust-section {
	background: var(--soft);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.trust-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: var(--shadow);
	transition: 0.25s ease;
}

.trust-card:hover {
	transform: translateY(-5px);
}

.trust-card h3 {
	font-size: 20px;
	margin: 0 0 10px;
	color: var(--dark);
}

.trust-card p {
	color: var(--muted);
	margin: 0;
}

/*--------------------------------------------------------------
# App Promo Section
--------------------------------------------------------------*/

.app-promo {
	padding: 90px 0;
	background: #ffffff;
}

.app-card {
	background: var(--dark);
	color: var(--white);
	border-radius: 30px;
	padding: 60px;
	display: grid;
	grid-template-columns: 1fr 360px;
	align-items: center;
	gap: 60px;
	overflow: hidden;
}

.app-card h2 {
	font-size: clamp(32px, 4vw, 42px);
	line-height: 1.25;
	margin: 0 0 22px;
	color: var(--white);
}

.app-card p {
	color: #d9e3d2;
	font-size: 18px;
	max-width: 520px;
	margin: 0;
}

.store-buttons {
	display: flex;
	gap: 20px;
	margin-top: 34px;
	flex-wrap: wrap;
}

.store-badge {
	background: var(--white);
	color: var(--dark);
	padding: 14px 28px;
	border-radius: 14px;
	font-weight: 900;
	transition: 0.25s ease;
}

.store-badge:hover {
	background: var(--primary);
	color: var(--white);
	transform: translateY(-3px);
}

.phone-mockup {
	width: 270px;
	height: 370px;
	background: var(--white);
	border-radius: 22px;
	margin-left: auto;
	padding: 36px 22px;
	box-shadow: 0 18px 25px rgba(0, 0, 0, 0.12);
}

.phone-screen {
	background: var(--soft);
	border-radius: 28px;
	height: 100%;
	padding: 50px 28px;
	color: var(--dark);
}

.phone-amount {
	font-size: 34px;
	font-weight: 900;
	margin-bottom: 30px;
}

.transfer-mini-card {
	background: var(--white);
	border-radius: 18px;
	padding: 20px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.transfer-mini-card strong {
	display: block;
	color: var(--dark);
}

.transfer-mini-card span {
	color: var(--muted);
	font-size: 12px;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/

.faq-section {
	background: var(--soft);
}

.faq-list {
	display: grid;
	gap: 16px;
}

.faq-row {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	min-height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 28px;
	font-weight: 800;
	color: var(--dark);
	transition: 0.25s ease;
}

.faq-row:hover {
	border-color: var(--primary);
	transform: translateY(-2px);
}

.faq-row span {
	color: var(--primary);
	font-size: 26px;
	line-height: 1;
}

/*--------------------------------------------------------------
# Blog / Archive / Page Layout
--------------------------------------------------------------*/

.main-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 40px;
	padding: 70px 0;
}

.content-area,
.sidebar {
	min-width: 0;
}

.section-title {
	font-size: 34px;
	margin: 0 0 30px;
	color: var(--dark);
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.post-card,
.article-box,
.widget {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.post-card {
	transition: 0.25s ease;
}

.post-card:hover {
	transform: translateY(-5px);
}

.post-card-content,
.article-box,
.widget {
	padding: 28px;
}

.post-card h2,
.article-box h1 {
	margin-top: 0;
	color: var(--dark);
}

.post-card h2 {
	font-size: 24px;
	line-height: 1.3;
}

.article-box h1 {
	font-size: 40px;
	line-height: 1.2;
}

.post-meta {
	color: var(--muted);
	font-size: 14px;
	margin-bottom: 12px;
}

.read-more {
	color: var(--primary-dark);
	font-weight: 900;
}

.read-more:hover {
	color: var(--dark);
}

.article-box p,
.post-card p {
	color: var(--muted);
}

.widget {
	margin-bottom: 24px;
}

.widget-title {
	margin-top: 0;
	color: var(--dark);
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/

.pagination,
.nav-links {
	margin-top: 40px;
}

.nav-links a,
.nav-links span {
	display: inline-block;
	padding: 10px 16px;
	margin-right: 8px;
	background: var(--white);
	border-radius: 8px;
	border: 1px solid var(--border);
	color: var(--dark);
}

.nav-links a:hover,
.nav-links .current {
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
	background: var(--dark);
	color: #d9e3d2;
	padding: 64px 0 34px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr repeat(4, 1fr);
	gap: 40px;
	margin-bottom: 42px;
}

.footer-brand h2 {
	color: var(--white);
	font-size: 30px;
	margin: 0 0 16px;
}

.footer-logo {
	display: block;
	width: min(160px, 100%);
	height: auto;
	margin: 0 0 18px;
}

.footer-brand p {
	max-width: 420px;
	font-size: 15px;
	margin: 0;
}

.footer-col h3 {
	color: var(--white);
	font-size: 15px;
	margin: 0 0 18px;
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-col li {
	margin-bottom: 10px;
	font-size: 13px;
}

.footer-col a {
	color: #d9e3d2;
	transition: 0.25s ease;
}

.footer-col a:hover {
	color: var(--primary);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 22px;
	font-size: 14px;
	text-align: center;
}

/*--------------------------------------------------------------
# WordPress Defaults
--------------------------------------------------------------*/

.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1em;
}

.alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	color: var(--muted);
	font-size: 14px;
	text-align: center;
}

.gallery {
	display: grid;
	gap: 16px;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 1200px) {
	.main-navigation ul {
		gap: 18px;
	}

	.main-navigation a {
		font-size: 14px;
	}
}

@media (max-width: 1050px) {
	.header-inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px 0;
	}

	.main-navigation ul {
		flex-wrap: wrap;
		gap: 16px;
	}

	.header-actions {
		flex-wrap: wrap;
	}

	.exchange-hero-slider {
		height: 500px;
	}

	.services-grid,
	.partners-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.app-card {
		grid-template-columns: 1fr;
	}

	.phone-mockup {
		margin: 0;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.site-header {
		position: relative;
       
	}

	.header-inner {
		gap: 18px;
	}

	.main-navigation,
	.main-navigation ul {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
	}

	.exchange-hero-slider {
		height: 360px;
	}

	.hero-arrow {
		width: 38px;
		height: 38px;
		font-size: 34px;
	}

	.hero-arrow-left {
		left: 14px;
	}

	.hero-arrow-right {
		right: 14px;
	}

	.hero-slider-dots {
		bottom: 18px;
	}

	.section {
		padding: 60px 0;
	}

	.section-heading {
		margin-bottom: 42px;
	}

	.services-grid,
	.partners-grid,
	.trust-grid,
	.posts-grid,
	.footer-grid,
	.main-layout {
		grid-template-columns: 1fr;
	}

	.app-promo {
		padding: 60px 0;
	}

	.app-card {
		padding: 34px;
		border-radius: 24px;
	}

	.phone-mockup {
		width: 100%;
		max-width: 270px;
	}

	.article-box h1 {
		font-size: 32px;
	}

	.footer-grid {
		gap: 28px;
	}
}

@media (max-width: 480px) {
	.container {
		width: min(100% - 28px, 1240px);
	}

	.site-title {
		font-size: 18px;
	}

	.exchange-hero-slider {
		height: 280px;
	}

	.hero-arrow {
		width: 34px;
		height: 34px;
		font-size: 30px;
	}

	.hero-dot {
		width: 10px;
		height: 10px;
	}

	.hero-dot.active {
		width: 28px;
	}

	.section-heading h2 {
		font-size: 30px;
	}

	.app-card {
		padding: 26px;
	}

	.store-buttons {
		gap: 12px;
	}

	.store-badge {
		width: 100%;
		text-align: center;
	}

	.phone-screen {
		padding: 42px 22px;
	}

	.phone-amount {
		font-size: 30px;
	}
}

@media (max-width: 768px) {
	.exchange-hero-slider {
		height: 430px;
		background: #ffffff;
	}

	.hero-slide {
		background-image: var(--mobile-bg) !important;
		background-size: 100%;
		background-position: center center;
		background-repeat: no-repeat;
	}

	.hero-arrow {
		width: 36px;
		height: 36px;
		font-size: 32px;
	}

	.hero-arrow-left {
		left: 12px;
	}

	.hero-arrow-right {
		right: 12px;
	}

	.hero-slider-dots {
		bottom: 16px;
	}
}

@media (max-width: 480px) {
	.exchange-hero-slider {
		height: 390px;
	}
}

/* Arabic / RTL */

body.lang-ar {
	direction: rtl;
	text-align: right;
}

body.lang-ar .header-inner,
body.lang-ar .site-branding,
body.lang-ar .main-navigation ul,
body.lang-ar .header-actions {
	direction: rtl;
}

body.lang-ar .main-navigation ul {
	padding-right: 0;
}

body.lang-ar .section-heading {
	text-align: center;
}

body.lang-ar .service-item,
body.lang-ar .trust-card,
body.lang-ar .footer-brand,
body.lang-ar .footer-col {
	text-align: right;
}

body.lang-ar .footer-logo {
	margin-right: 0;
	margin-left: auto;
}

body.lang-ar .faq-row {
	flex-direction: row-reverse;
}

body.lang-ar .footer-grid {
	direction: rtl;
}

body.lang-ar .eyebrow,
body.lang-ar .main-navigation a {
	letter-spacing: 0;
}

body.lang-ar .service-feature-card,
body.lang-ar .about-grid,
body.lang-ar .testimonial-card,
body.lang-ar .contact-band {
	text-align: right;
}

body.lang-ar .split-heading {
	text-align: right;
}

body.lang-ar .service-feature-card a {
	direction: rtl;
}

body.lang-ar .hero-arrow-left {
	left: auto;
	right: 28px;
}

body.lang-ar .hero-arrow-right {
	right: auto;
	left: 28px;
}

/* Dropdown menu */

.main-navigation li {
	position: relative;
}

.main-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 430px;
	background: #ffffff;
	padding: 22px 36px;
	margin: 0;
	list-style: none;
	box-shadow: 0 18px 42px rgba(19, 37, 30, 0.13);
	border: 1px solid rgba(19, 37, 30, 0.08);
	border-radius: 7px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	z-index: 9999;
	display: block;
}

.main-navigation .sub-menu li {
	display: block;
	width: 100%;
}

.main-navigation .sub-menu li + li {
	border-top: 1px solid rgba(19, 37, 30, 0.09);
}

.main-navigation .sub-menu a {
	display: flex;
	align-items: center;
	min-height: 58px;
	padding: 14px 0;
	border-radius: 0;
	color: #1c343f;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

.main-navigation .sub-menu a:hover {
	color: var(--primary-dark);
	background: transparent;
}

.main-navigation li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-navigation .menu-item-has-children > a::after {
	content: "⌄";
	margin-left: 8px;
	font-size: 13px;
	color: var(--primary-dark);
	transform: translateY(-1px);
}

body.lang-ar .main-navigation .sub-menu {
	left: auto;
	right: 0;
	text-align: right;
}

body.lang-ar .main-navigation .menu-item-has-children > a::after {
	margin-left: 0;
	margin-right: 6px;
}

.mobile-menu-toggle {
	display: none;
}

@media (max-width: 768px) {
	.site-header {
		position: relative;
	}

	.header-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 18px 20px;
		min-height: 95px;
	}

	.header-logo img {
		width: 130px;
		max-width: 130px;
		height: auto;
	}

	.mobile-menu-toggle {
		display: flex;
		width: 68px;
		height: 54px;
		border: none;
		border-radius: 6px;
		background: transparent;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 7px;
		cursor: pointer;
	}

	.mobile-menu-toggle span {
		width: 30px;
		height: 3px;
		background: rgb(48, 48, 48);
		display: block;
		border-radius: 3px;
	}

	.main-navigation {
		display: none;
		width: 100%;
		background: #ffffff;
		position: absolute;
		left: 0;
		top: 100%;
		z-index: 9999;
		padding: 10px 30px 28px;
		box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
	}

	.main-navigation.mobile-open {
		display: block;
	}

	.main-navigation ul {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
	}

	.main-navigation li {
		width: 100%;
	}

	.main-navigation a {
		color: var(--primary);
		font-size: 16px;
		font-weight: 800;
		text-transform: uppercase;
		padding: 16px 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.main-navigation .sub-menu {
		position: static;
		min-width: 100%;
		box-shadow: none;
		background: transparent;
		padding: 0 0 8px 16px;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
	}

	.main-navigation li.dropdown-open > .sub-menu {
		display: block;
	}

	.main-navigation .sub-menu a {
		color: #263238;
		font-size: 14px;
		padding: 10px 0;
		text-transform: none;
	}

	.main-navigation li:hover > .sub-menu {
		display: none;
	}

	.main-navigation li.dropdown-open:hover > .sub-menu {
		display: block;
	}

	.main-navigation .menu-item-has-children > a::after {
		content: "";
		width: 9px;
		height: 9px;
		border-right: 2px solid #9bb9b3;
		border-bottom: 2px solid #9bb9b3;
		transform: rotate(45deg);
		transition: 0.25s ease;
		margin-left: 8px;
	}

	.main-navigation .menu-item-has-children.dropdown-open > a::after {
		transform: rotate(-135deg);
		margin-top: 6px;
	}

	.header-actions {
		display: none;
	}
}

/* =====================================
   MOBILE LANGUAGE SWITCH
===================================== */

@media (max-width: 768px) {

	.language-switch {
		display: none;
	}

	.mobile-language-switch {
		display: block;
		margin-top: 15px;
		padding-top: 15px;
		border-top: 1px solid #e5e5e5;
	}

	.mobile-language-switch a {
		display: flex;
		align-items: center;
		gap: 8px;
		color: var(--primary);
		font-weight: 700;
		font-size: 16px;
		text-transform: none;
	}
}

@media (min-width: 769px) {

	.mobile-language-switch {
		display: none;
	}
}

/*--------------------------------------------------------------
# Homepage Refresh
--------------------------------------------------------------*/

:root {
	--primary: #73b333;
	--primary-dark: #4f8f23;
	--ink: #13251e;
	--ink-soft: #31443b;
	--mist: #f4f8f1;
	--line: #e3eadf;
	--gold: #d9a441;
	--radius: 8px;
	--shadow: 0 18px 45px rgba(19, 37, 30, 0.1);
}

body {
	font-family: "Segoe UI", Arial, Helvetica, sans-serif;
	color: var(--ink);
	background: #ffffff;
}

.site-header {
	background: rgba(255, 255, 255, 0.96);
	color: var(--ink);
	border-bottom: 1px solid rgba(19, 37, 30, 0.08);
	box-shadow: 0 10px 30px rgba(19, 37, 30, 0.06);
	backdrop-filter: blur(14px);
}

.header-inner {
	min-height: 112px;
}

.header-logo img {
	width: 100%;
	max-width: 320px;
	height: auto;
	max-height: 92px;
	object-fit: contain;
}

.main-navigation a {
	color: var(--ink);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.015em;
	line-height: 1.25;
}

.main-navigation > ul > li > a {
	min-height: 42px;
}

.main-navigation > ul > li > a:hover {
	color: var(--primary-dark);
}

.main-navigation .menu-item-has-children > a::after {
	content: "" !important;
	width: 6px;
	height: 6px;
	margin-left: 10px;
	border-right: 1.5px solid var(--primary-dark);
	border-bottom: 1.5px solid var(--primary-dark);
	transform: translateY(-2px) rotate(45deg);
}

body.lang-ar .main-navigation .menu-item-has-children > a::after {
	margin-left: 0;
	margin-right: 10px;
}

.main-navigation a:hover,
.language-switch a:hover {
	color: var(--primary-dark);
}

.language-switch {
	color: var(--ink);
}

.language-switch a {
	color: var(--ink);
}

.main-navigation .sub-menu {
	min-width: 430px;
	padding: 22px 36px;
	border: 1px solid rgba(19, 37, 30, 0.08);
	border-radius: 7px;
	box-shadow: 0 18px 42px rgba(19, 37, 30, 0.13);
}

.home-page .section {
	padding: 96px 0;
}

.home-hero {
	position: relative;
	min-height: 0;
	height: clamp(460px, 31vw, 620px);
	overflow: hidden;
	background: #ffffff;
	isolation: isolate;
}

.home-hero-media,
.home-hero-media .hero-slide {
	position: absolute;
	inset: 0;
}

.home-hero-media .hero-slide {
	background-size: cover;
	background-position: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease;
}

.home-hero-media .hero-slide.active {
	opacity: 1;
	visibility: visible;
}

.home-hero-media .hero-slide picture,
.home-hero-media .hero-slide img {
	display: block;
	width: 100%;
	height: 100%;
}

.home-hero-media .hero-slide img {
	object-fit: cover;
	object-position: center;
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--primary);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-actions,
.contact-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 34px;
}

.button-primary,
.button-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 22px;
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 900;
	transition: 0.2s ease;
}

.button-primary {
	background: var(--primary);
	color: #ffffff;
	box-shadow: 0 12px 24px rgba(115, 179, 51, 0.25);
}

.button-primary:hover {
	background: var(--primary-dark);
	color: #ffffff;
	transform: translateY(-2px);
}

.button-secondary {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.34);
	color: #ffffff;
}

.button-secondary:hover {
	background: #ffffff;
	color: var(--ink);
}

.home-hero .hero-arrow {
	z-index: 3;
	background: rgba(255, 255, 255, 0.16);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.34);
	font-size: 34px;
}

.home-hero .hero-arrow:hover {
	background: #ffffff;
	color: var(--ink);
}

.home-hero .hero-slider-dots {
	z-index: 3;
}

.home-stats {
	position: relative;
	z-index: 4;
	margin-top: 0;
	padding-top: 34px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-radius: var(--radius);
	background: #ffffff;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.stat-item {
	padding: 28px;
	border-right: 1px solid var(--line);
}

.stat-item:last-child {
	border-right: none;
}

.stat-item span {
	display: block;
	color: var(--ink);
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1;
	font-weight: 900;
}

.stat-item p {
	margin: 10px 0 0;
	color: #4b5d54;
	font-size: 14px;
	font-weight: 800;
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 48px;
}

.section-heading h2,
.split-heading h2,
.about-grid h2,
.contact-band h2 {
	color: var(--ink);
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.08;
	font-weight: 900;
}

.section-heading p {
	color: #4b5d54;
}

.home-services {
	background: #ffffff;
}

.service-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.service-feature-card,
.testimonial-card {
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: 0 12px 32px rgba(19, 37, 30, 0.06);
	transition: 0.2s ease;
}

.service-feature-card:hover,
.testimonial-card:hover {
	transform: translateY(-4px);
	border-color: rgba(115, 179, 51, 0.48);
}

.service-card-icon {
	width: 52px;
	height: 52px;
	border-radius: var(--radius);
	background: var(--mist);
	color: var(--primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 900;
	margin-bottom: 28px;
}

.service-feature-card h3 {
	margin: 0 0 12px;
	color: var(--ink);
	font-size: 23px;
	line-height: 1.2;
}

.service-feature-card p,
.about-grid p,
.testimonial-card p {
	margin: 0;
	color: #4b5d54;
}

.service-feature-card a {
	display: inline-flex;
	margin-top: 24px;
	color: var(--primary-dark);
	font-weight: 900;
}

.partner-strip {
	background: var(--mist);
	color: var(--text);
}

.split-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
	align-items: end;
	gap: 40px;
	margin-bottom: 34px;
}

.split-heading h2,
.about-grid h2,
.contact-band h2 {
	margin: 0;
}

.split-heading > p {
	margin: 0;
	color: #4b5d54;
}

.partners-heading {
	max-width: 900px;
	margin: 0 auto 46px;
	text-align: center;
}

.partners-heading h2 {
	color: #ffffff;
	font-size: clamp(42px, 6vw, 68px);
	line-height: 1.05;
	margin: 0 0 22px;
}

.partners-heading h2 span {
	color: var(--primary);
}

.partners-heading p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.55;
	margin: 0 auto;
	max-width: 860px;
}

.logo-marquee {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px;
}

.logo-card {
	min-height: 116px;
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 22px;
}

.logo-card .partner-logo {
	width: 150px;
	height: 58px;
	object-fit: contain;
}

.logo-card .partner-logo-federal {
	width: 170px;
	height: 64px;
}

.logo-card .partner-logo-hello-paisa {
	width: 150px;
	height: 50px;
}

.logo-card .partner-logo-instant-cash {
	width: 168px;
	height: 58px;
}

.logo-card .partner-logo-sib {
	width: 174px;
	height: 62px;
}


.logo-card .partner-logo-ubl {
	width: 170px;
	height: 90px;
}

.home-about {
	background: #ffffff;
}

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
	gap: 56px;
	align-items: start;
}

.about-grid p + p {
	margin-top: 18px;
}

.testimonials-section {
	background: #ffffff;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.testimonial-card p {
	font-size: 17px;
	line-height: 1.7;
}

.testimonial-card strong {
	display: block;
	margin-top: 26px;
	color: var(--ink);
	font-size: 14px;
}

.contact-band {
	background: var(--ink);
	color: #ffffff;
	padding: 74px 0;
}

.contact-band-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 32px;
}

.contact-band h2 {
	color: #ffffff;
	max-width: 720px;
}

.contact-band .button-secondary {
	background: transparent;
}

.contact-band .button-secondary:hover {
	background: #ffffff;
	color: var(--ink);
	border-color: #ffffff;
}

.site-footer {
	background: #0f1e18;
}

@media (max-width: 1050px) {
	.logo-marquee {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.site-header {
		position: sticky;
	}

	.header-inner {
		padding: 14px 0;
		min-height: 72px;
	}

	.header-logo img {
		max-width: 200px;
	}

	.header-logo {
		width: 200px;
		min-height: 58px;
	}

	.mobile-menu-toggle {
		width: 46px;
		height: 42px;
		border-color: var(--line);
	}

	.home-hero {
		aspect-ratio: 5 / 4;
		height: auto;
		min-height: 0;
	}

	.home-hero-media .hero-slide {
		background-image: var(--mobile-bg) !important;
		background-size: contain;
		background-position: center center;
		background-repeat: no-repeat;
	}

	.home-hero-media .hero-slide img {
		object-fit: contain;
		object-position: center center;
	}

	.home-stats {
		margin-top: 0;
	}

	.stats-grid,
	.service-feature-grid,
	.split-heading,
	.about-grid,
	.testimonial-grid,
	.contact-band-inner {
		grid-template-columns: 1fr;
	}

	.stat-item {
		border-right: none;
		border-bottom: 1px solid var(--line);
	}

	.stat-item:last-child {
		border-bottom: none;
	}

	.home-page .section {
		padding: 70px 0;
	}

	.logo-marquee {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
	}

	.logo-card {
		min-height: 92px;
		border-radius: 8px;
		padding: 12px;
	}

	.logo-card .partner-logo {
		width: 94px;
		height: 44px;
	}

	.logo-card .partner-logo-federal {
		width: 104px;
		height: 46px;
	}

	.logo-card .partner-logo-hello-paisa {
		width: 102px;
		height: 40px;
	}

	.logo-card .partner-logo-instant-cash {
		width: 108px;
		height: 44px;
	}

	.logo-card .partner-logo-sib {
		width: 104px;
		height: 44px;
	}

	.logo-card .partner-logo-ubl,
	.logo-card .partner-logo-allied {
		width: 92px;
		height: 68px;
	}

	.contact-actions {
		margin-top: 0;
	}
}

@media (max-width: 480px) {
	.home-hero {
		aspect-ratio: 5 / 4;
		height: auto;
	}

	.logo-marquee {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.logo-card {
		min-height: 92px;
	}

	.contact-actions .button-primary,
	.contact-actions .button-secondary {
		width: 100%;
	}

}

@media (min-width: 769px) {
	.site-header {
		position: sticky;
	}

	.header-inner {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 30px;
		padding: 0;
	}

	.mobile-menu-toggle {
		display: none !important;
	}

	.main-navigation {
		display: flex !important;
		position: static;
		width: auto;
		background: transparent;
		padding: 0;
		box-shadow: none;
	}

	.main-navigation > ul {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 28px;
		width: auto;
	}

	.main-navigation li {
		width: auto;
	}

	.main-navigation a {
		display: inline-flex;
		padding: 0;
		text-transform: none;
	}

	.language-switch {
		display: block;
	}
}

@media (min-width: 769px) {
	body.lang-ar .site-header {
		position: sticky;
	}

	body.lang-ar .header-inner {
		display: flex !important;
		flex-direction: row !important;
		align-items: center !important;
		justify-content: space-between !important;
		gap: 30px !important;
		padding: 0 !important;
		direction: rtl;
	}

	body.lang-ar .mobile-menu-toggle {
		display: none !important;
	}

	body.lang-ar .main-navigation {
		display: flex !important;
		position: static !important;
		width: auto !important;
		background: transparent !important;
		padding: 0 !important;
		box-shadow: none !important;
	}

	body.lang-ar .main-navigation > ul {
		display: flex !important;
		flex-direction: row !important;
		align-items: center !important;
		gap: 28px !important;
		width: auto !important;
	}

	body.lang-ar .main-navigation li {
		width: auto !important;
	}

	body.lang-ar .main-navigation a {
		display: inline-flex !important;
		padding: 0 !important;
		text-transform: none !important;
	}

	body.lang-ar .language-switch {
		display: block !important;
	}
}

/*--------------------------------------------------------------
# UI/UX Refinement Pass
--------------------------------------------------------------*/

:root {
	--ink: #10231b;
	--ink-soft: #31413a;
	--muted: #4b5d54;
	--primary: #70b62c;
	--primary-dark: #3f8722;
	--surface: #ffffff;
	--surface-soft: #f6f9f3;
	--line: #dde8d8;
	--shadow: 0 18px 42px rgba(16, 35, 27, 0.09);
	--shadow-soft: 0 10px 24px rgba(16, 35, 27, 0.06);
	--radius: 8px;
}

body {
	color: var(--ink);
	background: #ffffff;
	font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

.container {
	width: min(1280px, calc(100% - 64px));
}

.site-header {
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid rgba(16, 35, 27, 0.08);
	box-shadow: 0 8px 26px rgba(16, 35, 27, 0.05);
}

.site-header .container {
	width: min(1600px, calc(100% - 128px));
}

.header-inner {
	min-height: 78px;
}

.header-logo {
	width: 300px;
	min-height: 58px;
}

.header-logo img {
	max-width: 350px;
	max-height: 90px;
}

.main-navigation > ul {
	gap: 34px;
}

.main-navigation a {
	color: #12241d;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.01em;
	transition: color 0.18s ease;
}

.main-navigation > ul > li > a {
	min-height: 44px;
	align-items: center;
}

.main-navigation > ul > li > a:hover {
	color: var(--primary-dark);
}

.main-navigation .sub-menu {
	top: calc(100% + 6px);
	min-width: 260px;
	padding: 14px 26px;
	border: 1px solid rgba(19, 37, 30, 0.08);
	border-radius: 7px;
	box-shadow: 0 18px 42px rgba(19, 37, 30, 0.13);
}

.main-navigation .sub-menu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -7px;
	height: 7px;
}

.main-navigation .sub-menu a {
	min-height: 44px;
	color: #1c343f;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.01em;
}

.main-navigation .sub-menu a:hover {
	color: var(--primary-dark);
}

body.lang-ar .main-navigation .sub-menu {
	text-align: right;
	right: 0;
	left: auto;
	padding-right: 26px;
	padding-left: 26px;
}

body.lang-ar .main-navigation .sub-menu a {
	justify-content: flex-end;
	padding-right: 0;
	padding-left: 0;
	text-align: right;
}

.main-navigation .menu-item-has-children > a::after {
	content: "" !important;
	width: 6px;
	height: 6px;
	margin-left: 10px;
	border-right: 1.5px solid var(--primary-dark);
	border-bottom: 1.5px solid var(--primary-dark);
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.2s ease;
}

.main-navigation .menu-item-has-children:hover > a::after,
.main-navigation .menu-item-has-children:focus-within > a::after {
	transform: translateY(1px) rotate(225deg);
}

.language-switch a {
	color: var(--ink-soft);
	font-size: 14px;
	font-weight: 500;
}

.language-switch a,
.mobile-language-switch a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.language-flag {
	display: inline-block;
	font-size: 18px;
	line-height: 1;
}

.home-hero {
	border-bottom: 1px solid rgba(16, 35, 27, 0.06);
}

/* Inner pages */
.theme-page {
	background: #fbfdf9;
}

.page-hero {
	background:
		linear-gradient(120deg, rgba(16, 35, 27, 0.04), rgba(114, 190, 45, 0.08)),
		#ffffff;
	border-bottom: 1px solid rgba(16, 35, 27, 0.08);
	padding: 86px 0 78px;
}

.page-hero-inner {
	max-width: 920px;
}

.page-hero h1 {
	color: var(--ink);
	font-size: clamp(42px, 6vw, 72px);
	line-height: 1.04;
	letter-spacing: 0;
	margin: 0;
}

.page-hero p:not(.eyebrow) {
	max-width: 760px;
	color: var(--muted);
	font-size: 20px;
	line-height: 1.8;
	margin: 24px 0 0;
}

.page-content-section {
	padding: 88px 0;
}

.page-muted-section {
	background: #f4f8f0;
	padding: 88px 0;
}

.page-two-column {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
	gap: 72px;
	align-items: start;
}

.page-two-column h2 {
	color: var(--ink);
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.12;
	margin: 0;
}

.page-copy p,
.page-check-list {
	color: var(--muted);
	font-size: 18px;
	line-height: 1.9;
	margin: 0;
}

.page-copy p + p {
	margin-top: 22px;
}

.page-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.page-card-grid-two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-info-card {
	background: #ffffff;
	border: 1px solid rgba(16, 35, 27, 0.1);
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(16, 35, 27, 0.06);
	padding: 34px;
}

.page-info-card h2,
.page-info-card h3 {
	color: var(--ink);
	line-height: 1.2;
	margin: 0 0 16px;
}

.page-info-card h2 {
	font-size: 30px;
}

.page-info-card h3 {
	font-size: 24px;
}

.page-info-card p {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.8;
	margin: 0;
}

.page-info-card a {
	color: var(--primary-dark);
	display: inline-flex;
	font-weight: 650;
	margin-top: 22px;
	text-decoration: none;
}

.branches-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.branch-card {
	background: #ffffff;
	border: 1px solid rgba(16, 35, 27, 0.1);
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(16, 35, 27, 0.06);
	padding: 34px;
}

.branch-card h2 {
	color: var(--ink);
	font-size: clamp(24px, 2.4vw, 32px);
	line-height: 1.18;
	margin: 0 0 24px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(16, 35, 27, 0.1);
}

.branch-detail + .branch-detail {
	margin-top: 22px;
}

.branch-detail span {
	display: block;
	color: var(--primary-dark);
	font-size: 13px;
	font-weight: 750;
	letter-spacing: 0.12em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.branch-detail p {
	color: var(--muted);
	font-size: 17px;
	line-height: 1.75;
	margin: 0;
}

.branch-detail a {
	color: var(--ink);
	font-weight: 700;
	text-decoration: none;
}

.fraud-prevention-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 32px;
	align-items: start;
}

.fraud-prevention-panel {
	background: #ffffff;
	border: 1px solid rgba(16, 35, 27, 0.1);
	border-radius: 8px;
	padding: 38px;
}

.fraud-prevention-panel h2 {
	color: var(--ink);
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.15;
	margin: 0 0 24px;
}

.fraud-prevention-document {
	max-width: 980px;
	margin: 0 auto;
	background: #ffffff;
	border: 1px solid rgba(16, 35, 27, 0.1);
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(16, 35, 27, 0.06);
	padding: clamp(28px, 4vw, 54px);
}

.fraud-prevention-document h2 {
	color: var(--primary-dark);
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.15;
	margin: 34px 0 18px;
}

.fraud-prevention-document h2:first-child {
	margin-top: 0;
}

.fraud-prevention-document h3 {
	color: var(--ink);
	font-size: 22px;
	line-height: 1.25;
	margin: 24px 0 10px;
}

.fraud-prevention-document p {
	color: var(--muted);
	font-size: 17px;
	line-height: 1.85;
	margin: 0 0 18px;
}

.fraud-prevention-document .page-check-list {
	margin: 0 0 22px;
}

.fraud-prevention-document a {
	color: var(--primary-dark);
	font-weight: 650;
	text-decoration: none;
}

.fraud-type-list {
	display: grid;
	gap: 24px;
}

.fraud-type-list article {
	border-top: 1px solid rgba(16, 35, 27, 0.1);
	padding-top: 22px;
}

.fraud-type-list article:first-child {
	border-top: 0;
	padding-top: 0;
}

.fraud-type-list h3 {
	color: var(--ink);
	font-size: 21px;
	line-height: 1.25;
	margin: 0 0 10px;
}

.fraud-type-list p {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.8;
	margin: 0;
}

.terms-hero {
	padding-bottom: 56px;
}

.terms-document-section {
	padding-top: 56px;
}

.terms-document {
	max-width: 980px;
	margin: 0 auto;
	background: #ffffff;
	border: 1px solid rgba(16, 35, 27, 0.08);
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(16, 35, 27, 0.05);
	padding: clamp(28px, 4vw, 54px);
}

.terms-block + .terms-block {
	margin-top: 28px;
}

.terms-kicker {
	color: var(--ink);
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 22px;
}

.terms-document h2,
.terms-document h3 {
	color: var(--primary-dark);
	line-height: 1.2;
	margin: 0 0 8px;
}

.terms-document h2 {
	font-size: clamp(22px, 3vw, 30px);
}

.terms-document h3 {
	font-size: 20px;
	margin-top: 24px;
}

.terms-document ul {
	color: var(--ink);
	font-size: 16px;
	line-height: 1.75;
	margin: 0 0 20px;
	padding-left: 20px;
}

.terms-document li + li {
	margin-top: 6px;
}

.terms-document li::marker {
	color: var(--primary-dark);
	font-size: 0.9em;
}

.page-service-card .service-card-icon {
	margin-bottom: 24px;
}

.charges-section {
	background: #ffffff;
	padding: 92px 0;
}

.charges-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
	gap: 72px;
	align-items: start;
}

.charges-visual {
	position: sticky;
	top: 118px;
	min-height: calc(100vh - 150px);
	display: flex;
	align-items: center;
	overflow: hidden;
}

.charges-visual-inner {
	position: relative;
	width: 100%;
	min-height: 500px;
	display: grid;
	align-content: center;
}

.charges-ghost-text {
	position: absolute;
	inset: -40px auto auto -46px;
	z-index: 0;
	width: 620px;
	color: rgba(16, 35, 27, 0.045);
	font-size: clamp(86px, 12vw, 160px);
	font-weight: 900;
	line-height: 0.95;
	margin: 0;
}

.charges-illustration {
	position: relative;
	z-index: 1;
	width: min(310px, 100%);
	height: 310px;
	margin: 0 auto;
}

.charges-document {
	position: absolute;
	right: 20px;
	bottom: 22px;
	width: 182px;
	height: 234px;
	border: 10px solid #a9cbbd;
	background: #ffffff;
	box-shadow: 0 24px 42px rgba(16, 35, 27, 0.12);
}

.charges-document span {
	position: absolute;
	top: 28px;
	left: 24px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--primary-dark);
}

.charges-document i {
	position: absolute;
	left: 24px;
	right: 24px;
	height: 7px;
	border-radius: 999px;
	background: #b8d8ca;
}

.charges-document i:nth-child(2) {
	top: 91px;
}

.charges-document i:nth-child(3) {
	top: 113px;
}

.charges-document i:nth-child(4) {
	top: 144px;
}

.charges-document i:nth-child(5) {
	top: 167px;
	right: 60px;
}

.charges-person {
	position: absolute;
	left: 33px;
	bottom: 16px;
	width: 102px;
	height: 148px;
	background: #f4efe3;
	border-radius: 50px 50px 16px 16px;
}

.charges-person::before {
	content: "";
	position: absolute;
	left: 33px;
	top: -33px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #28312c;
}

.charges-person span {
	position: absolute;
	left: 50%;
	top: 36px;
	width: 19px;
	height: 122px;
	background: var(--primary-dark);
	transform: translateX(-50%);
}

.charges-coin {
	position: absolute;
	left: 16px;
	bottom: 50px;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: rgba(124, 183, 55, 0.28);
}

.charges-visual-copy {
	position: relative;
	z-index: 1;
	max-width: 360px;
	margin: 24px auto 0;
	text-align: center;
}

.charges-visual-copy h2 {
	color: var(--ink);
	font-size: 28px;
	margin: 0 0 10px;
}

.charges-visual-copy p,
.charges-intro p {
	color: var(--muted);
	font-size: 17px;
	line-height: 1.8;
	margin: 0;
}

.charges-content {
	display: grid;
	gap: 34px;
}

.charges-intro {
	max-width: 860px;
}

.charges-table-block {
	background: #ffffff;
	border: 1px solid rgba(16, 35, 27, 0.1);
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(16, 35, 27, 0.05);
	overflow: hidden;
}

.charges-table-block h2 {
	color: var(--ink);
	font-size: 24px;
	line-height: 1.25;
	margin: 0;
	padding: 26px 28px 0;
}

.charges-table-wrap {
	overflow-x: auto;
	padding: 24px 28px 28px;
}

.charges-table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
	color: var(--muted);
	font-size: 16px;
}

.charges-table th,
.charges-table td {
	border: 1px solid rgba(16, 35, 27, 0.14);
	padding: 16px;
	text-align: left;
	vertical-align: middle;
}

.charges-table th {
	background: var(--primary-dark);
	color: #ffffff;
	font-weight: 750;
}

.charges-note-list {
	display: grid;
	gap: 12px;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.75;
	margin: 0;
	padding: 22px 48px 30px;
}

body.lang-ar .charges-table th,
body.lang-ar .charges-table td {
	text-align: right;
}

body.lang-ar .charges-ghost-text {
	left: auto;
	right: -46px;
}

.complaint-feedback-form {
	display: grid;
	gap: 20px;
}

.form-section,
.form-alert {
	background: #ffffff;
	border: 1px solid rgba(16, 35, 27, 0.1);
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(16, 35, 27, 0.05);
	padding: 28px;
}

.form-alert {
	color: var(--ink);
	font-size: 16px;
	font-weight: 650;
	margin-bottom: 20px;
}

.form-alert-success {
	border-color: rgba(112, 182, 44, 0.34);
	background: #f1f8ec;
}

.form-alert-error {
	border-color: rgba(190, 58, 58, 0.28);
	background: #fff4f2;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px 24px;
}

.complaint-feedback-form label,
.complaint-feedback-form legend {
	color: var(--ink);
	display: grid;
	gap: 9px;
	font-size: 16px;
	font-weight: 560;
	line-height: 1.45;
}

.complaint-feedback-form span {
	color: #b42318;
}

.complaint-feedback-form fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

.complaint-feedback-form input[type="text"],
.complaint-feedback-form input[type="email"],
.complaint-feedback-form input[type="tel"],
.complaint-feedback-form textarea {
	width: 100%;
	border: 1px solid rgba(16, 35, 27, 0.16);
	border-radius: 6px;
	color: var(--ink);
	font: inherit;
	font-weight: 400;
	padding: 12px 14px;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.complaint-feedback-form textarea {
	min-height: 96px;
	resize: vertical;
}

.complaint-feedback-form input:focus,
.complaint-feedback-form textarea:focus {
	border-color: rgba(112, 182, 44, 0.72);
	box-shadow: 0 0 0 3px rgba(112, 182, 44, 0.16);
	outline: 0;
}

.radio-list {
	display: grid;
	gap: 12px;
	margin-top: 16px;
}

.radio-list label {
	align-items: center;
	display: flex;
	gap: 10px;
	font-weight: 400;
}

.radio-list input {
	accent-color: var(--primary-dark);
	flex: 0 0 auto;
}

.form-section-toggle {
	padding: 24px 28px;
}

.switch-field {
	align-items: center;
	display: flex;
	justify-content: space-between;
	gap: 18px;
}

.switch-field input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.switch-ui {
	position: relative;
	width: 48px;
	height: 26px;
	border-radius: 999px;
	background: #cfd8d1;
	flex: 0 0 auto;
	transition: background 0.18s ease;
}

.switch-ui::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 2px 6px rgba(16, 35, 27, 0.2);
	transition: transform 0.18s ease;
}

.switch-field input:checked + .switch-ui {
	background: var(--primary);
}

.switch-field input:checked + .switch-ui::after {
	transform: translateX(22px);
}

.form-honeypot {
	left: -9999px;
	position: absolute;
}

.form-actions {
	display: flex;
	justify-content: center;
	padding-top: 12px;
}

.accessibility-toggle {
	position: fixed;
	right: 28px;
	bottom: 28px;
	z-index: 1000;
	width: 56px;
	height: 56px;
	border: 0;
	border-radius: 50%;
	background: var(--primary-dark);
	color: #ffffff;
	box-shadow: 0 8px 22px rgba(95, 150, 41, 0.32);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.accessibility-toggle:hover,
.accessibility-toggle:focus-visible {
	background: var(--primary);
	box-shadow: 0 10px 28px rgba(95, 150, 41, 0.38);
	transform: translateY(-2px);
	outline: 0;
}

.accessibility-toggle svg {
	width: 34px;
	height: 34px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.1;
}

.accessibility-overlay {
	position: fixed;
	inset: 0;
	z-index: 1100;
	background: rgba(16, 35, 27, 0.22);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.accessibility-overlay[hidden] {
	display: none;
}

.accessibility-panel {
	width: min(760px, 100%);
	max-height: min(620px, calc(100vh - 48px));
	overflow: auto;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(16, 35, 27, 0.2);
	padding: 28px;
}

.accessibility-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(95, 150, 41, 0.24);
}

.accessibility-panel h2 {
	color: var(--primary-dark);
	font-size: 26px;
	line-height: 1.2;
	margin: 0;
}

.accessibility-panel h3 {
	color: var(--ink);
	font-size: 20px;
	line-height: 1.25;
	margin: 0 0 16px;
}

.accessibility-close {
	border: 0;
	background: transparent;
	color: #252b2d;
	cursor: pointer;
	font-size: 34px;
	line-height: 1;
	padding: 0 4px;
}

.accessibility-section {
	padding-top: 24px;
}

.accessibility-options {
	display: grid;
	gap: 16px;
}

.accessibility-options-three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.accessibility-options-two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.accessibility-options button,
.accessibility-read-button {
	border: 1px solid rgba(16, 35, 27, 0.75);
	border-radius: 4px;
	background: #ffffff;
	color: #252b2d;
	cursor: pointer;
	font: inherit;
	min-height: 82px;
	padding: 14px;
	display: inline-grid;
	place-items: center;
	gap: 8px;
	text-align: center;
}

.accessibility-options button[aria-pressed="true"] {
	border-color: var(--primary-dark);
	box-shadow: inset 0 0 0 1px var(--primary-dark);
}

.accessibility-options strong {
	color: #252b2d;
	font-size: 23px;
	font-weight: 500;
	line-height: 1;
}

.accessibility-options span {
	font-size: 15px;
}

.accessibility-color-icon {
	letter-spacing: -8px;
}

.accessibility-color-icon::first-letter {
	color: var(--primary-dark);
}

.accessibility-bw-icon {
	letter-spacing: -6px;
}

.accessibility-read-button {
	min-height: 58px;
	min-width: 320px;
	border-color: var(--primary-dark);
	background: var(--primary-dark);
	color: #ffffff;
	display: inline-flex;
	justify-content: center;
	font-size: 17px;
	font-weight: 650;
}

.accessibility-read-button.is-reading {
	background: var(--primary);
}

html[data-accessibility-text="small"] body {
	zoom: 0.94;
}

html[data-accessibility-text="big"] body {
	zoom: 1.12;
}

html[data-accessibility-color="bw"] {
	filter: grayscale(1) contrast(1.16);
}

.page-check-list {
	display: grid;
	gap: 16px;
	list-style: none;
	padding: 0;
}

.page-check-list li {
	position: relative;
	padding-left: 34px;
}

.page-check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 13px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--primary);
	box-shadow: 0 0 0 6px rgba(114, 190, 45, 0.14);
}

.contact-detail-card h2 {
	font-size: clamp(18px, 1.45vw, 22px);
}

.contact-detail-card h2 a {
	color: var(--ink);
	margin-top: 0;
	overflow-wrap: normal;
	word-break: normal;
}

.contact-detail-card h2 a[href^="mailto:"] {
	font-size: inherit;
	line-height: 1.18;
	overflow-wrap: normal;
	word-break: normal;
}

body.lang-ar .page-hero-inner,
body.lang-ar .page-two-column,
body.lang-ar .page-info-card {
	text-align: right;
}

body.lang-ar .page-check-list li {
	padding-left: 0;
	padding-right: 34px;
}

body.lang-ar .page-check-list li::before {
	left: auto;
	right: 0;
}

body.lang-ar .terms-document {
	direction: rtl;
	text-align: right;
}

body.lang-ar .terms-document ul {
	padding-left: 0;
	padding-right: 20px;
}

body.lang-ar .fraud-prevention-document {
	direction: rtl;
	text-align: right;
}

body.lang-ar .branch-card {
	text-align: right;
}

.home-hero .hero-arrow {
	width: 42px;
	height: 42px;
	background: transparent;
	border: 0;
	color: #ffffff;
	box-shadow: none;
	font-size: 30px;
}

.home-hero .hero-arrow:hover {
	background: transparent;
	color: #ffffff;
}

.hero-dot {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 2px 6px rgba(16, 35, 27, 0.18);
}

.hero-dot.active {
	width: 36px;
	background: #ffffff;
}

.home-stats {
	padding: 42px 0 0;
	background: #ffffff;
}

.stats-grid {
	border: 1px solid rgba(16, 35, 27, 0.1);
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
}

.stat-item {
	padding: 32px 34px;
}

.stat-item span {
	color: var(--ink);
	font-size: clamp(34px, 4vw, 50px);
	font-weight: 750;
	letter-spacing: 0;
}

.stat-item p {
	color: var(--muted);
	font-size: 14px;
	font-weight: 500;
}

.home-page .section {
	padding: 104px 0;
}

.section-heading {
	max-width: 820px;
	margin-bottom: 54px;
}

.eyebrow {
	color: var(--primary-dark);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.section-heading h2,
.split-heading h2,
.about-grid h2,
.contact-band h2 {
	color: var(--ink);
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.12;
	font-weight: 720;
	letter-spacing: 0;
}

.section-heading p,
.split-heading > p,
.service-feature-card p,
.about-grid p,
.testimonial-card p {
	color: var(--muted);
	font-size: 17px;
	line-height: 1.72;
}

.home-services {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdf9 100%);
	padding-top: 88px;
	padding-bottom: 96px;
}

.home-services::before {
	display: none;
}

.home-services .container {
	position: relative;
	z-index: 1;
}

.home-services .section-heading .eyebrow {
	color: var(--primary-dark);
}

.home-services .section-heading {
	margin: 0 auto 44px;
	text-align: center;
}

.home-services .section-heading h2 {
	color: var(--ink);
	font-size: clamp(36px, 4.4vw, 60px);
	line-height: 1.08;
}

.home-services .section-heading p {
	color: var(--muted);
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}

.service-card-surface {
	position: relative;
	padding: 34px;
	background:
		linear-gradient(135deg, rgba(124, 183, 55, 0.1), rgba(124, 183, 55, 0) 48%),
		#323232;
	border: 1px solid rgba(124, 183, 55, 0.14);
	border-radius: 18px;
	box-shadow: 0 28px 70px rgba(16, 35, 27, 0.18);
	overflow: hidden;
}

.service-card-surface::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 72px 72px;
	opacity: 0.36;
	pointer-events: none;
}

.service-card-surface .service-feature-grid {
	position: relative;
	z-index: 1;
}

.service-feature-grid {
	gap: 24px;
}

.service-feature-card {
	position: relative;
	padding: 34px;
	background: #ffffff;
	border: 1px solid rgba(16, 35, 27, 0.1);
	border-radius: 8px;
	box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
}

.service-feature-card::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 3px;
	background: var(--primary);
	border-radius: 8px 8px 0 0;
	opacity: 0;
	transition: opacity 0.18s ease;
}

.service-feature-card:hover {
	transform: translateY(-3px);
	border-color: rgba(112, 182, 44, 0.42);
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.service-feature-card:hover::before {
	opacity: 1;
}

.service-card-icon {
	width: 56px;
	height: 56px;
	margin-bottom: 30px;
	background: #edf7e8;
	border: 1px solid rgba(112, 182, 44, 0.24);
	overflow: hidden;
}

.service-card-icon img {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.service-feature-card h3 {
	color: var(--ink);
	font-size: 24px;
	font-weight: 680;
}

.service-feature-card p {
	color: var(--muted);
}

.service-feature-card a {
	align-items: center;
	color: var(--primary-dark);
	font-size: 15px;
	font-weight: 650;
}

.service-feature-card a::after {
	content: "";
	width: 7px;
	height: 7px;
	margin-left: 8px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(-45deg);
}

.partner-strip {
	background: #f6f9f3;
}

.split-heading {
	align-items: start;
	gap: 56px;
	margin-bottom: 42px;
}

.logo-marquee {
	gap: 16px;
}

.logo-card {
	min-height: 120px;
	border: 1px solid rgba(16, 35, 27, 0.08);
	border-radius: 8px;
	box-shadow: 0 8px 18px rgba(16, 35, 27, 0.04);
	transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.logo-card:hover {
	transform: translateY(-2px);
	border-color: rgba(112, 182, 44, 0.36);
	box-shadow: var(--shadow-soft);
}

.home-about {
	background: #ffffff;
}

.about-grid {
	gap: 72px;
	padding: 52px;
	border: 1px solid rgba(16, 35, 27, 0.1);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--shadow-soft);
}

.testimonials-section {
	background: #fbfdf9;
}

.testimonial-grid {
	gap: 24px;
}

.testimonial-card {
	padding: 34px;
	border: 1px solid rgba(16, 35, 27, 0.1);
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
}

.testimonial-card::before {
	content: "\201C";
	display: block;
	height: 26px;
	color: var(--primary);
	font-size: 54px;
	line-height: 0.8;
	font-family: Georgia, serif;
}

.testimonial-card p {
	font-size: 16px;
}

.testimonial-card strong {
	color: var(--ink);
	font-size: 14px;
	font-weight: 650;
}

.contact-band {
	background: #10231b;
	padding: 78px 0;
}

.contact-band-inner {
	gap: 44px;
}

.contact-band .eyebrow {
	color: #a8d982;
}

.contact-band h2 {
	color: #ffffff;
}

.button-primary,
.button-secondary {
	border-radius: 8px;
	font-weight: 650;
}

.button-primary {
	background: var(--primary);
}

.button-secondary {
	border-color: rgba(255, 255, 255, 0.32);
}

.site-footer {
	background: #0c1d16;
}

.footer-grid {
	gap: 44px;
}

.footer-brand h2 {
	font-weight: 650;
}

.footer-col h3 {
	font-weight: 650;
	letter-spacing: 0.02em;
}

.footer-col li {
	font-size: 14px;
}

body.lang-ar .eyebrow {
	letter-spacing: 0;
}

body.lang-ar .service-feature-card a::after {
	margin-left: 0;
	margin-right: 8px;
	transform: rotate(135deg);
}

@media (max-width: 1050px) {
	.container {
		width: min(100% - 40px, 1280px);
	}

	.site-header .container {
		width: min(100% - 40px, 1280px);
	}

	.header-logo {
		width: 220px;
	}

	.header-logo img {
		max-width: 220px;
	}

	.main-navigation > ul {
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.container {
		width: min(100% - 28px, 1280px);
	}

	.site-header .container {
		width: min(100% - 28px, 1280px);
	}

	.header-logo {
		width: 205px;
		min-height: 48px;
	}

	.header-logo img {
		max-width: 205px;
		max-height: 58px;
	}

	.home-page .section {
		padding: 72px 0;
	}

	.home-services {
		padding-top: 64px;
		padding-bottom: 72px;
	}

	.service-card-surface {
		padding: 18px;
		border-radius: 14px;
	}

	.home-stats {
		padding-top: 24px;
	}

	.stat-item,
	.service-feature-card,
	.testimonial-card {
		padding: 28px;
	}

	.about-grid {
		padding: 30px;
		gap: 28px;
	}

	.section-heading {
		margin-bottom: 38px;
	}

	.section-heading h2,
	.split-heading h2,
	.about-grid h2,
	.contact-band h2 {
		font-size: clamp(30px, 9vw, 40px);
	}
}

@media (max-width: 768px) {
	.site-header .language-switch {
		display: none !important;
	}

	.site-header .container {
		width: 100% !important;
	}

	.site-header .header-inner {
		min-height: 74px !important;
		padding: 0 22px !important;
		justify-content: space-between !important;
		direction: ltr !important;
	}

	.site-header .site-branding {
		margin: 0 !important;
		padding: 0 !important;
		flex: 0 0 auto !important;
	}

	.site-header .header-logo {
		width: auto !important;
		min-height: 44px !important;
		justify-content: flex-start !important;
		transform: none !important;
	}

	.site-header .header-logo img {
		width: 180px !important;
		max-width: none !important;
		max-height: none !important;
	}

	.site-header .mobile-menu-toggle {
		width: 46px !important;
		height: 42px !important;
		margin-left: auto !important;
		margin-right: 0 !important;
		border-color: #dfe8db !important;
		border-radius: 7px !important;
	}

	.site-header .mobile-language-switch {
		display: block !important;
		margin-top: 12px;
		padding-top: 12px;
		border-top: 1px solid rgba(16, 35, 27, 0.1);
	}

	.site-header .mobile-language-switch a {
		color: var(--primary-dark);
		font-size: 15px;
		font-weight: 600;
		text-transform: none;
	}

	body.lang-ar .site-header .header-inner {
		direction: rtl !important;
	}

	body.lang-ar .site-header .mobile-menu-toggle {
		margin-left: 0 !important;
		margin-right: auto !important;
	}
}

@media (max-width: 768px) {
	.site-header .mobile-menu-toggle span {
		transform-origin: center;
		transition: transform 0.22s ease, opacity 0.18s ease;
	}

	.site-header .mobile-menu-toggle.is-active span:nth-child(1) {
		width: 28px;
		transform: translateY(10px) rotate(45deg);
	}

	.site-header .mobile-menu-toggle.is-active span:nth-child(2) {
		opacity: 0;
		transform: scaleX(0);
	}

	.site-header .mobile-menu-toggle.is-active span:nth-child(3) {
		width: 28px;
		transform: translateY(-10px) rotate(-45deg);
	}

	.site-header .main-navigation {
		display: block !important;
		visibility: hidden;
		opacity: 0;
		max-height: 0;
		overflow: hidden;
		transform: translateY(-8px);
		transition: max-height 0.32s ease, opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
	}

	.site-header .main-navigation.mobile-open {
		visibility: visible;
		opacity: 1;
		max-height: calc(100vh - 74px);
		overflow-y: auto;
		transform: translateY(0);
	}

	.site-header .main-navigation > ul {
		gap: 0 !important;
	}

	.site-header .main-navigation .menu-item-has-children > a::after {
		transition: transform 0.22s ease;
	}

	.site-header .main-navigation .menu-item-has-children.dropdown-open > a::after {
		transform: rotate(225deg);
		margin-top: 0;
	}

	.site-header .main-navigation .sub-menu {
		position: static !important;
		display: block !important;
		min-width: 0 !important;
		width: 100% !important;
		max-height: 0;
		overflow: hidden;
		padding: 0 0 0 18px !important;
		margin: 0 !important;
		border: 0 !important;
		border-radius: 0 !important;
		box-shadow: none !important;
		background: transparent !important;
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
		transition: max-height 0.28s ease, padding-top 0.28s ease, padding-bottom 0.28s ease;
	}

	.site-header .main-navigation .sub-menu::before {
		display: none;
	}

	.site-header .main-navigation li.dropdown-open > .sub-menu {
		max-height: 220px;
		padding-top: 4px !important;
		padding-bottom: 12px !important;
	}

	.site-header .main-navigation .sub-menu li + li {
		border-top: 1px solid rgba(16, 35, 27, 0.08);
	}

	.site-header .main-navigation .sub-menu a {
		min-height: 46px !important;
		padding: 10px 0 !important;
		color: var(--ink-soft) !important;
		font-size: 16px !important;
		font-weight: 450 !important;
		letter-spacing: 0 !important;
		text-transform: none !important;
	}

body.lang-ar .site-header .main-navigation .sub-menu {
		padding-left: 26px !important;
		padding-right: 26px !important;
		text-align: right;
	}
}

body.lang-ar .accessibility-toggle {
	left: 28px;
	right: auto;
}

body.lang-ar .accessibility-panel {
	direction: rtl;
	text-align: right;
}

@media (max-width: 900px) {
	.page-two-column,
	.page-card-grid,
	.page-card-grid-two,
	.branches-grid,
	.fraud-prevention-layout,
	.charges-layout,
	.accessibility-options-three,
	.accessibility-options-two {
		grid-template-columns: 1fr;
	}

	.charges-visual {
		position: relative;
		top: auto;
		min-height: 0;
	}

	.charges-visual-inner {
		min-height: 420px;
	}
}

@media (max-width: 768px) {
	.page-hero {
		padding: 58px 0 54px;
	}

	.page-hero h1 {
		font-size: clamp(34px, 9vw, 46px);
	}

	.page-hero p:not(.eyebrow) {
		font-size: 17px;
		line-height: 1.75;
	}

	.page-content-section,
	.page-muted-section {
		padding: 62px 0;
	}

	.page-two-column {
		gap: 30px;
	}

	.page-info-card {
		padding: 28px;
	}

	.charges-section {
		padding: 62px 0;
	}

	.charges-layout {
		gap: 42px;
	}

	.charges-visual-inner {
		min-height: 360px;
	}

	.charges-ghost-text {
		font-size: 78px;
		left: -24px;
		width: 360px;
	}

	.charges-illustration {
		width: 280px;
		height: 280px;
	}

	.charges-document {
		width: 168px;
		height: 214px;
		border-width: 9px;
	}

	.charges-person {
		left: 28px;
		width: 90px;
		height: 132px;
	}

	.charges-person::before {
		left: 30px;
		width: 32px;
		height: 32px;
	}

	.charges-person span {
		height: 105px;
	}

	.charges-coin {
		width: 78px;
		height: 78px;
	}

	.charges-table-block h2 {
		font-size: 21px;
		padding: 22px 20px 0;
	}

	.charges-table-wrap {
		padding: 20px;
	}

	.charges-note-list {
		padding: 20px 34px 26px;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.form-section,
	.form-alert {
		padding: 22px;
	}

	.switch-field {
		align-items: flex-start;
	}

	.form-actions .button-primary {
		width: 100%;
		justify-content: center;
	}

	.accessibility-toggle {
		right: 14px;
		top: auto;
		bottom: 86px;
		width: 44px;
		height: 44px;
		transform: none;
	}

	body.lang-ar .accessibility-toggle {
		left: 14px;
		right: auto;
	}

	.accessibility-toggle:hover,
	.accessibility-toggle:focus-visible {
		transform: none;
	}

	.accessibility-toggle svg {
		width: 26px;
		height: 26px;
	}

	.accessibility-overlay {
		align-items: center;
		padding: 20px;
	}

	.accessibility-panel {
		width: min(370px, 100%);
		max-height: min(72vh, 560px);
		padding: 20px 14px;
	}

	.accessibility-panel-header {
		padding-bottom: 16px;
	}

	.accessibility-panel h2 {
		font-size: 18px;
	}

	.accessibility-panel h3 {
		font-size: 12px;
		margin-bottom: 10px;
	}

	.accessibility-section {
		padding-top: 24px;
	}

	.accessibility-options {
		gap: 14px;
	}

	.accessibility-options-three {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.accessibility-options-two {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.accessibility-options button {
		min-height: 80px;
		padding: 10px 8px;
	}

	.accessibility-options strong {
		font-size: 20px;
	}

	.accessibility-options span {
		font-size: 12px;
	}

	.accessibility-read-button {
		width: 100%;
		min-width: 0;
		min-height: 52px;
		font-size: 16px;
	}
}
