:root {
	--aw-green: #1e3c23;
	--aw-green-dark: #072b18;
	--aw-red: #e9271d;
	--aw-text: #102219;
	--aw-muted: #f4f6f3;
	--aw-line: #dfe5df;
	--aw-white: #ffffff;
	--aw-shadow: 0 24px 70px rgba(5, 31, 18, 0.14);
}

html {
	scroll-behavior: smooth;
}

body.alwaqid-site {
	margin: 0;
	background: var(--aw-white);
	color: var(--aw-text);
	font-family: Inter, Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.7;
}

.alwaqid-site * {
	box-sizing: border-box;
}

.aw-wrap {
	width: min(1180px, calc(100% - 44px));
	margin: 0 auto;
}

.aw-header {
	position: sticky;
	top: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 92px;
	padding: 12px max(22px, calc((100vw - 1180px) / 2));
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(12px);
}

.aw-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	color: var(--aw-green-dark);
	text-decoration: none;
}

.aw-brand img {
	width: 106px;
	height: 64px;
	object-fit: contain;
}

.aw-brand strong {
	display: block;
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: 0;
}

.aw-brand small {
	display: block;
	max-width: 230px;
	color: var(--aw-red);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.25;
}

.aw-language-switch {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	padding: 4px;
	border: 1px solid var(--aw-line);
	border-radius: 999px;
	background: #f7f9f6;
	flex: 0 0 auto;
}

.aw-language-switch a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	min-height: 34px;
	padding: 7px 11px;
	border-radius: 999px;
	color: var(--aw-green-dark);
	font-size: 0.76rem;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.aw-language-switch a.is-active {
	background: var(--aw-red);
	color: var(--aw-white);
	box-shadow: 0 10px 22px rgba(233, 39, 29, 0.2);
}

.aw-nav {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2.2vw, 34px);
}

.aw-nav a {
	position: relative;
	color: #08180f;
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	padding: 34px 0 28px;
}

.aw-nav a::after {
	position: absolute;
	left: 0;
	bottom: 18px;
	width: 100%;
	height: 3px;
	background: var(--aw-red);
	content: "";
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 180ms ease;
}

.aw-nav a:hover::after,
.aw-nav a.is-active::after {
	transform: scaleX(1);
}

.aw-menu-toggle,
.aw-menu-button {
	display: none;
}

.aw-main {
	overflow: hidden;
}

.aw-hero,
.aw-page-hero {
	background-image: var(--hero-image);
	background-position: center;
	background-size: cover;
}

.aw-hero-overlay {
	min-height: clamp(610px, 68vw, 760px);
	display: flex;
	align-items: center;
	background: linear-gradient(90deg, rgba(6, 44, 24, 0.94) 0%, rgba(6, 44, 24, 0.72) 34%, rgba(6, 44, 24, 0.1) 72%);
}

.aw-hero-content {
	padding: 86px 0 104px;
	color: var(--aw-white);
}

.aw-kicker {
	margin: 0 0 12px;
	color: inherit;
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.aw-red {
	color: var(--aw-red);
}

.aw-hero h1 {
	max-width: 620px;
	margin: 0 0 20px;
	color: var(--aw-white);
	font-size: clamp(3.25rem, 7vw, 5.8rem);
	font-weight: 950;
	line-height: 0.92;
	letter-spacing: 0;
	text-transform: uppercase;
}

.aw-hero h1 span {
	color: var(--aw-red);
}

.aw-hero p:not(.aw-kicker) {
	max-width: 540px;
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.94);
	font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.aw-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.aw-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 14px 24px;
	border-radius: 5px;
	font-size: 0.83rem;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.aw-button-red {
	background: var(--aw-red);
	color: var(--aw-white);
	box-shadow: 0 14px 28px rgba(233, 39, 29, 0.22);
}

.aw-button-green {
	background: var(--aw-green);
	color: var(--aw-white);
	box-shadow: 0 14px 28px rgba(30, 60, 35, 0.18);
}

.aw-button-light {
	border: 1px solid rgba(255, 255, 255, 0.54);
	background: rgba(255, 255, 255, 0.1);
	color: var(--aw-white);
}

.aw-section {
	padding: clamp(70px, 8vw, 110px) 0;
}

.aw-muted {
	background: var(--aw-muted);
}

.aw-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(34px, 5vw, 74px);
}

.aw-split-about {
	grid-template-columns: 1.05fr 0.95fr 0.55fr;
}

.aw-rounded-img,
.aw-oil-card > img,
.aw-image-mosaic img {
	display: block;
	width: 100%;
	border-radius: 8px;
	object-fit: cover;
	box-shadow: var(--aw-shadow);
}

.aw-rounded-img {
	aspect-ratio: 4 / 3;
}

.aw-copy h2,
.aw-section-title h2,
.aw-feature-card h2 {
	margin: 0 0 20px;
	color: var(--aw-green-dark);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 950;
	line-height: 1.04;
	letter-spacing: 0;
}

.aw-copy p,
.aw-section-title p,
.aw-feature-card p,
.aw-info-card p,
.aw-project-card h3,
.aw-contact-panel p {
	color: #42534a;
}

.aw-copy .aw-button {
	margin-top: 14px;
}

.aw-copy-wide {
	max-width: 780px;
}

.aw-facts {
	display: grid;
	gap: 24px;
	padding-left: 28px;
	border-left: 1px solid var(--aw-line);
}

.aw-facts-panel {
	padding: 30px;
	border: 1px solid var(--aw-line);
	border-left: 5px solid var(--aw-red);
	border-radius: 8px;
	background: var(--aw-white);
	box-shadow: var(--aw-shadow);
}

.aw-facts div {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 4px 16px;
	align-items: center;
}

.aw-facts svg {
	grid-row: span 2;
	width: 34px;
	height: 34px;
	color: var(--aw-green);
	stroke: currentColor;
	fill: none;
	stroke-width: 1.9;
}

.aw-facts strong {
	color: var(--aw-green-dark);
	font-size: clamp(1.4rem, 2.8vw, 2.2rem);
	font-weight: 950;
	line-height: 1;
}

.aw-facts span {
	color: #4c5d54;
	font-size: 0.88rem;
}

.aw-section-title {
	max-width: 820px;
	margin: 0 auto 42px;
	text-align: center;
}

.aw-section-title h2 {
	margin-bottom: 12px;
}

.aw-specialization-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	border-radius: 8px;
	background: var(--aw-white);
	box-shadow: var(--aw-shadow);
	overflow: hidden;
}

.aw-specialization-card {
	min-height: 190px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 26px 16px;
	border-right: 1px solid var(--aw-line);
	text-align: center;
}

.aw-specialization-card:last-child {
	border-right: 0;
}

.aw-specialization-card svg {
	width: 48px;
	height: 48px;
	color: var(--aw-green);
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
}

.aw-specialization-card h3 {
	position: relative;
	margin: 0;
	padding-bottom: 14px;
	color: #102219;
	font-size: 0.9rem;
	font-weight: 900;
	line-height: 1.25;
	text-transform: uppercase;
}

.aw-specialization-card h3::after {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 26px;
	height: 2px;
	background: var(--aw-red);
	content: "";
	transform: translateX(-50%);
}

.aw-two-cards {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 28px;
}

.aw-feature-card {
	display: grid;
	gap: 28px;
	align-items: center;
	padding: clamp(26px, 4vw, 46px);
	border-radius: 8px;
	background: var(--aw-white);
	box-shadow: var(--aw-shadow);
}

.aw-projects-card {
	grid-template-columns: 0.9fr 1.1fr;
}

.aw-oil-card {
	grid-template-columns: 1fr 220px;
	background: linear-gradient(135deg, #f7f8f5, #ffffff);
}

.aw-oil-card > img {
	height: 100%;
	min-height: 300px;
}

.aw-image-mosaic {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.aw-image-mosaic img {
	aspect-ratio: 1 / 0.82;
	border-radius: 6px;
}

.aw-news-section {
	background:
		linear-gradient(180deg, rgba(244, 246, 243, 0.92), rgba(255, 255, 255, 0.96)),
		var(--aw-muted);
}

.aw-news-title p:not(.aw-kicker) {
	max-width: 720px;
	margin: 0 auto;
}

.aw-news-feature {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(26px, 4vw, 48px);
	align-items: stretch;
	margin-bottom: 28px;
	padding: clamp(22px, 3.8vw, 42px);
	border: 1px solid rgba(30, 60, 35, 0.12);
	border-radius: 8px;
	background: var(--aw-white);
	box-shadow: var(--aw-shadow);
}

.aw-news-gallery {
	display: grid;
	gap: 10px;
}

.aw-news-gallery-feature {
	grid-template-columns: 1fr 1fr;
	min-height: 430px;
}

.aw-news-gallery img,
.aw-news-card img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 7px;
	object-fit: cover;
}

.aw-news-gallery-feature img:first-child {
	object-position: 52% 42%;
}

.aw-news-gallery-feature img:last-child {
	object-position: 32% 50%;
}

.aw-news-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.aw-news-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.aw-news-meta span,
.aw-news-meta time,
.aw-news-highlights span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 7px 11px;
	border-radius: 4px;
	font-size: 0.74rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.aw-news-meta span {
	background: var(--aw-red);
	color: var(--aw-white);
}

.aw-news-meta time,
.aw-news-highlights span {
	background: #edf2ec;
	color: var(--aw-green-dark);
}

.aw-news-copy h3,
.aw-news-card h3 {
	margin: 0 0 14px;
	color: var(--aw-green-dark);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.08;
}

.aw-news-copy h3 {
	max-width: 620px;
	font-size: clamp(2rem, 4vw, 3.1rem);
}

.aw-news-copy p,
.aw-news-card p {
	margin: 0 0 16px;
	color: #405249;
}

.aw-news-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 8px;
}

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

.aw-news-card {
	display: grid;
	grid-template-columns: 0.74fr 1fr;
	gap: 24px;
	align-items: center;
	padding: 24px;
	border: 1px solid rgba(30, 60, 35, 0.12);
	border-radius: 8px;
	background: var(--aw-white);
	box-shadow: 0 14px 44px rgba(7, 43, 24, 0.08);
}

.aw-news-card img {
	aspect-ratio: 1 / 0.86;
	min-height: 220px;
}

.aw-news-card h3 {
	font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.aw-news-card p {
	margin-bottom: 0;
}

.aw-trust {
	padding: 26px 0;
	background: linear-gradient(90deg, #062b18, var(--aw-green));
	color: var(--aw-white);
}

.aw-trust-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
}

.aw-trust-grid div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-height: 72px;
	padding: 0 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.26);
	font-size: 0.84rem;
	font-weight: 900;
	line-height: 1.35;
	text-transform: uppercase;
}

.aw-trust-grid div:last-child {
	border-right: 0;
}

.aw-trust svg {
	width: 42px;
	height: 42px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
	flex: 0 0 auto;
}

.aw-footer {
	background: var(--aw-white);
}

.aw-footer-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr 1.5fr 1fr;
	gap: 0;
	padding: 34px 0;
}

.aw-footer-item {
	display: flex;
	gap: 18px;
	align-items: center;
	padding: 0 24px;
	border-right: 1px solid var(--aw-line);
}

.aw-footer-item:first-child {
	padding-left: 0;
}

.aw-footer-item:last-child {
	border-right: 0;
	padding-right: 0;
}

.aw-footer svg {
	width: 34px;
	height: 34px;
	color: var(--aw-red);
	stroke: currentColor;
	fill: none;
	stroke-width: 1.9;
	flex: 0 0 auto;
}

.aw-footer p {
	margin: 0;
	color: #2a3c32;
	font-size: 0.92rem;
	line-height: 1.45;
}

.aw-footer a {
	color: inherit;
	text-decoration: none;
}

.aw-copyright {
	padding: 18px;
	background: var(--aw-green-dark);
	color: var(--aw-white);
	text-align: center;
	font-size: 0.9rem;
}

.aw-page-hero-overlay {
	min-height: 360px;
	display: flex;
	align-items: center;
	background: linear-gradient(90deg, rgba(6, 44, 24, 0.92), rgba(6, 44, 24, 0.35));
	color: var(--aw-white);
}

.aw-page-hero h1 {
	max-width: 860px;
	margin: 0;
	color: var(--aw-white);
	font-size: clamp(2.8rem, 6vw, 5rem);
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.aw-card-grid {
	display: grid;
	gap: 22px;
}

.aw-card-grid-three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.aw-info-card,
.aw-project-card {
	padding: 28px;
	border: 1px solid var(--aw-line);
	border-radius: 8px;
	background: var(--aw-white);
	box-shadow: 0 14px 44px rgba(7, 43, 24, 0.08);
}

.aw-info-card h3,
.aw-project-card h3 {
	margin: 0 0 10px;
	color: var(--aw-green-dark);
	font-size: 1.15rem;
	font-weight: 900;
	line-height: 1.25;
}

.aw-info-card p {
	margin: 0;
}

.aw-service-list,
.aw-project-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.aw-service-list article {
	display: flex;
	gap: 20px;
	align-items: center;
	padding: 24px;
	border-radius: 8px;
	background: var(--aw-muted);
	border-left: 5px solid var(--aw-red);
}

.aw-service-list svg,
.aw-project-card svg,
.aw-contact-panel svg {
	width: 42px;
	height: 42px;
	color: var(--aw-green);
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
	flex: 0 0 auto;
}

.aw-service-list span {
	display: block;
	color: var(--aw-red);
	font-size: 0.82rem;
	font-weight: 900;
}

.aw-service-list h3 {
	margin: 0;
	color: var(--aw-green-dark);
	font-size: 1.1rem;
	font-weight: 900;
}

.aw-project-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.aw-project-card {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.aw-project-card h3 {
	margin: 0;
	font-size: 1rem;
}

.aw-contact-layout {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 44px;
	align-items: start;
}

.aw-contact-panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.aw-contact-panel div {
	display: flex;
	gap: 16px;
	padding: 26px;
	border-radius: 8px;
	background: var(--aw-muted);
}

.aw-contact-panel p {
	margin: 0;
}

.aw-contact-panel a {
	color: var(--aw-green-dark);
	text-decoration: none;
}

body.alwaqid-rtl {
	direction: rtl;
	font-family: Tahoma, Arial, Helvetica, sans-serif;
}

.alwaqid-rtl .aw-header {
	direction: rtl;
}

.alwaqid-rtl .aw-brand,
.alwaqid-rtl .aw-actions,
.alwaqid-rtl .aw-news-meta,
.alwaqid-rtl .aw-news-highlights,
.alwaqid-rtl .aw-footer-item,
.alwaqid-rtl .aw-trust-grid div,
.alwaqid-rtl .aw-service-list article,
.alwaqid-rtl .aw-project-card,
.alwaqid-rtl .aw-contact-panel div {
	flex-direction: row-reverse;
}

.alwaqid-rtl .aw-nav a::after {
	transform-origin: right center;
}

.alwaqid-rtl .aw-hero h1,
.alwaqid-rtl .aw-page-hero h1,
.alwaqid-rtl .aw-copy h2,
.alwaqid-rtl .aw-section-title h2,
.alwaqid-rtl .aw-feature-card h2,
.alwaqid-rtl .aw-news-copy h3,
.alwaqid-rtl .aw-news-card h3,
.alwaqid-rtl .aw-service-list h3,
.alwaqid-rtl .aw-project-card h3 {
	line-height: 1.18;
}

.alwaqid-rtl .aw-hero h1 {
	max-width: 680px;
	font-size: clamp(3rem, 6vw, 5.2rem);
}

.alwaqid-rtl .aw-hero p:not(.aw-kicker),
.alwaqid-rtl .aw-copy,
.alwaqid-rtl .aw-feature-card,
.alwaqid-rtl .aw-news-card,
.alwaqid-rtl .aw-info-card,
.alwaqid-rtl .aw-contact-panel {
	text-align: right;
}

.alwaqid-rtl .aw-section-title {
	text-align: center;
}

.alwaqid-rtl .aw-facts {
	padding-right: 28px;
	padding-left: 0;
	border-right: 1px solid var(--aw-line);
	border-left: 0;
}

.alwaqid-rtl .aw-facts-panel {
	border-right: 5px solid var(--aw-red);
	border-left: 1px solid var(--aw-line);
}

.alwaqid-rtl .aw-facts div {
	grid-template-columns: 1fr 42px;
	text-align: right;
}

.alwaqid-rtl .aw-facts svg {
	grid-column: 2;
}

.alwaqid-rtl .aw-specialization-card {
	border-right: 0;
	border-left: 1px solid var(--aw-line);
}

.alwaqid-rtl .aw-specialization-card:last-child {
	border-left: 0;
}

.alwaqid-rtl .aw-service-list article {
	border-right: 5px solid var(--aw-red);
	border-left: 0;
}

.alwaqid-rtl .aw-footer-item {
	border-right: 0;
	border-left: 1px solid var(--aw-line);
}

.alwaqid-rtl .aw-footer-item:first-child {
	padding-right: 0;
	padding-left: 24px;
}

.alwaqid-rtl .aw-footer-item:last-child {
	border-left: 0;
	padding-left: 0;
	padding-right: 24px;
}

@media (max-width: 1100px) {
	.aw-header {
		min-height: 82px;
	}

	.aw-brand img {
		width: 86px;
	}

	.aw-nav {
		gap: 18px;
	}

	.aw-language-switch a {
		min-width: 40px;
		padding-right: 9px;
		padding-left: 9px;
	}

	.aw-nav a {
		font-size: 0.76rem;
	}

	.aw-split-about,
	.aw-two-cards,
	.aw-projects-card,
	.aw-oil-card,
	.aw-contact-layout,
	.aw-news-feature,
	.aw-news-grid {
		grid-template-columns: 1fr;
	}

	.aw-news-gallery-feature {
		min-height: 360px;
	}

	.aw-news-card {
		grid-template-columns: 0.7fr 1fr;
	}

	.aw-specialization-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.aw-specialization-card {
		border-bottom: 1px solid var(--aw-line);
	}

	.aw-trust-grid,
	.aw-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.aw-footer-item {
		border-right: 0;
		border-bottom: 1px solid var(--aw-line);
		padding: 22px 0;
	}

	.alwaqid-rtl .aw-footer-item {
		border-left: 0;
		padding: 22px 0;
	}
}

@media (max-width: 780px) {
	.aw-wrap {
		width: min(100% - 32px, 1180px);
	}

	.aw-header {
		min-height: 76px;
		padding: 10px 16px;
	}

	.aw-brand img {
		width: 72px;
		height: 50px;
	}

	.aw-brand strong {
		font-size: 1.05rem;
	}

	.aw-brand small {
		max-width: 160px;
		font-size: 0.75rem;
	}

	.aw-language-switch {
		order: 3;
		margin-inline-start: auto;
	}

	.aw-language-switch a {
		min-width: 38px;
		min-height: 32px;
		font-size: 0.7rem;
	}

	.aw-menu-button {
		display: flex;
		width: 44px;
		height: 44px;
		align-items: center;
		justify-content: center;
		border: 1px solid var(--aw-line);
		border-radius: 6px;
	}

	.aw-menu-button span,
	.aw-menu-button span::before,
	.aw-menu-button span::after {
		display: block;
		width: 22px;
		height: 2px;
		background: var(--aw-green-dark);
		content: "";
	}

	.aw-menu-button span {
		position: relative;
	}

	.aw-menu-button span::before {
		position: absolute;
		top: -7px;
	}

	.aw-menu-button span::after {
		position: absolute;
		top: 7px;
	}

	.aw-nav {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 10px 22px 22px;
		background: var(--aw-white);
		box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
	}

	.alwaqid-rtl .aw-nav {
		text-align: right;
	}

	.aw-menu-toggle:checked ~ .aw-nav {
		display: flex;
	}

	.aw-nav a {
		padding: 14px 0;
		border-bottom: 1px solid var(--aw-line);
	}

	.aw-nav a::after {
		bottom: 8px;
		width: 60px;
	}

	.aw-hero-overlay {
		min-height: 560px;
		background: linear-gradient(90deg, rgba(6, 44, 24, 0.95), rgba(6, 44, 24, 0.68));
	}

	.aw-hero h1 {
		font-size: clamp(3rem, 14vw, 4.4rem);
	}

	.alwaqid-rtl .aw-hero h1 {
		font-size: clamp(2.6rem, 12vw, 4rem);
	}

	.aw-split,
	.aw-card-grid-three,
	.aw-service-list,
	.aw-project-grid,
	.aw-contact-panel,
	.aw-news-gallery-feature,
	.aw-news-card {
		grid-template-columns: 1fr;
	}

	.aw-news-feature,
	.aw-news-card {
		padding: 18px;
	}

	.aw-news-gallery-feature {
		min-height: 0;
	}

	.aw-news-gallery img,
	.aw-news-card img {
		height: auto;
		aspect-ratio: 4 / 3;
	}

	.aw-facts {
		padding-left: 0;
		border-left: 0;
	}

	.alwaqid-rtl .aw-facts {
		padding-right: 0;
		border-right: 0;
	}

	.aw-specialization-grid {
		grid-template-columns: 1fr;
	}

	.aw-specialization-card {
		min-height: 150px;
		border-right: 0;
	}

	.alwaqid-rtl .aw-specialization-card {
		border-left: 0;
	}

	.aw-trust-grid,
	.aw-footer-grid {
		grid-template-columns: 1fr;
	}

	.aw-trust-grid div {
		justify-content: flex-start;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	}

	.aw-footer-item {
		align-items: flex-start;
	}
}
