:root {
	--az-red: #c4510c;
	--az-red-light: #c4510c;
	--az-navy: #0c3051;
	--az-deep-blue: #110a61;
	--az-orange: #f0772a;
	--az-ink: #334155;
	--az-black: #111111;
	--az-soft: #fafafa;
	--az-blue-soft: #eef6fb;
	--az-border: #e6e9ee;
	--az-white: #ffffff;
	--az-shadow: 0 12px 35px rgb(15 23 42 / 8%);
	--az-radius: 18px;
	--az-container: 1250px;
	--az-wide: 1360px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--az-white);
	color: var(--az-ink);
	font-family: "Cairo", Tahoma, Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
	text-align: right;
}

body.menu-open {
	overflow: hidden;
}

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

iframe {
	display: block;
	width: 100%;
	border: 0;
}

a {
	color: var(--az-navy);
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

a:hover,
a:focus-visible {
	color: var(--az-red-light);
}

button,
input,
textarea,
select {
	font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.65em;
	color: var(--az-navy);
	font-family: "Tajawal", "Cairo", sans-serif;
	font-weight: 700;
	line-height: 1.35;
}

p {
	margin: 0 0 1.1em;
}

.skip-link {
	position: fixed;
	z-index: 100000;
	top: 10px;
	right: 10px;
	padding: 10px 16px;
	border-radius: 6px;
	background: var(--az-white);
	transform: translateY(-150%);
}

.skip-link:focus {
	transform: translateY(0);
}

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

.section {
	position: relative;
	padding: 88px 24px;
}

.section__inner {
	width: min(100%, var(--az-container));
	margin-inline: auto;
}

.section__inner--wide {
	width: min(100%, var(--az-wide));
}

.section--soft {
	background: var(--az-soft);
}

.section-heading {
	margin: 0 auto 55px;
	text-align: center;
}

.section-heading h2 {
	margin: 0;
	color: var(--az-red-light);
	font-size: clamp(1.75rem, 2.4vw, 2.35rem);
	font-weight: 700;
}

.section-heading > span,
.page-hero span {
	display: block;
	width: 82px;
	height: 3px;
	margin: 15px auto 0;
	border-radius: 10px;
	background: var(--az-red);
}

.section-heading--start {
	margin-right: 0;
	margin-bottom: 24px;
	text-align: right;
}

.section-heading--start > span {
	margin-right: 0;
	background: var(--az-deep-blue);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 22px;
	border: 1px solid var(--az-red);
	border-radius: 12px;
	background: var(--az-red);
	color: var(--az-white);
	font-family: "Tajawal", "Cairo", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	box-shadow: none;
}

.button:hover,
.button:focus-visible {
	border-color: var(--az-navy);
	background: var(--az-navy);
	color: var(--az-white);
	transform: translateY(-2px);
}

.button--large {
	min-height: 54px;
	padding: 15px 30px;
	font-size: 1.15rem;
}

.button--outline {
	border-color: var(--az-red);
	background: transparent;
	color: var(--az-red);
}

.button--ghost {
	border-color: rgb(255 255 255 / 45%);
	background: transparent;
	color: var(--az-white);
}

.button--corner {
	border-radius: 0 20px;
}

/* Header */
.site-header {
	position: relative;
	z-index: 1000;
	width: 100%;
	background: #000;
	color: var(--az-white);
}

.site-header__inner {
	display: flex;
	align-items: center;
	width: min(100%, 1400px);
	min-height: 168px;
	margin-inline: auto;
	padding: 0 34px;
}

.site-brand {
	display: flex;
	flex: 0 0 180px;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	padding: 8px 12px;
}

.site-brand__logo {
	width: 150px;
	max-height: 150px;
	object-fit: contain;
}

.site-brand__name {
	color: var(--az-white);
	font-weight: 800;
}

.desktop-navigation {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
}

.menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu--desktop {
	display: flex;
	align-items: center;
}

.menu--desktop > li {
	position: relative;
}

.menu--desktop > li > a {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 10px 15px;
	color: var(--az-orange);
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.menu--desktop > .current-menu-item > a,
.menu--desktop > li > a:hover,
.menu--desktop > li > a:focus-visible {
	color: var(--az-white);
}

.menu--desktop .sub-menu {
	position: absolute;
	z-index: 30;
	top: 100%;
	right: 0;
	display: none;
	min-width: 220px;
	padding: 8px;
	margin: 0;
	border-radius: 0 0 10px 10px;
	background: #111;
	list-style: none;
	box-shadow: var(--az-shadow);
}

.menu--desktop li:hover > .sub-menu,
.menu--desktop li:focus-within > .sub-menu {
	display: block;
}

.menu--desktop .sub-menu a {
	display: block;
	padding: 10px 12px;
	color: var(--az-white);
}

.mobile-menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border: 0;
	background: transparent;
	color: var(--az-white);
	cursor: pointer;
}

.mobile-menu-toggle__bars {
	display: grid;
	gap: 4px;
}

.mobile-menu-toggle__bars i {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-navigation {
	position: fixed;
	z-index: 999;
	inset: 78px 0 0;
	padding: 25px;
	overflow-y: auto;
	background: #111;
}

.menu--mobile a {
	display: block;
	padding: 13px 8px;
	border-bottom: 1px solid rgb(255 255 255 / 10%);
	color: var(--az-white);
	font-size: 18px;
}

.menu--mobile .sub-menu {
	padding-right: 20px;
	list-style: none;
}

/* Hero */
.hero {
	position: relative;
	display: flex;
	min-height: 90vh;
	align-items: flex-end;
	justify-content: center;
	padding: 80px 24px 9vh;
	overflow: hidden;
	background: #333 url("https://alenjaz-saudia.com/wp-content/uploads/2024/12/عوازل-الصفرات.webp") center / cover no-repeat;
	color: var(--az-white);
	isolation: isolate;
}

.hero::before {
	position: absolute;
	z-index: 1;
	inset: 0;
	background: rgb(0 0 0 / 50%);
	content: "";
}

.hero__video {
	position: absolute;
	z-index: 0;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.hero__video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
}

.hero__content {
	position: relative;
	z-index: 2;
	width: min(100%, 920px);
	text-align: center;
}

.hero h1 {
	margin-bottom: 12px;
	color: var(--az-white);
	font-size: clamp(2.35rem, 4vw, 3.3rem);
	font-weight: 700;
	text-shadow: 0 3px 14px rgb(0 0 0 / 30%);
}

.hero p {
	margin-bottom: 22px;
	color: var(--az-white);
	font-family: "Tajawal", "Cairo", sans-serif;
	font-size: clamp(1.05rem, 1.65vw, 1.3rem);
	font-weight: 600;
}

.button--hero {
	border-radius: 22px;
}

/* About */
.section--about {
	min-height: 70vh;
	padding-block: 0;
	background: var(--az-blue-soft) url("https://alenjaz-saudia.com/wp-content/uploads/2024/06/WhatsApp-Image-2024-06-12-at-15.02.37_1be7b109.webp") top center / contain no-repeat;
}

.about-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
}

.about-grid__media {
	display: flex;
	align-items: stretch;
	padding: 20px 0;
}

.about-grid__media img {
	width: 100%;
	min-height: 680px;
	border-radius: 100px 30px 30px;
	object-fit: cover;
}

.about-grid__content {
	padding: 55px 45px 55px 0;
	color: #424242;
	font-family: "Tajawal", "Cairo", sans-serif;
	font-size: 18px;
	line-height: 1.55;
	text-align: justify;
}

.about-grid__content .button {
	margin-right: 30px;
}

/* Featured services */
.section--featured-services {
	min-height: 75vh;
	background: var(--az-white);
}

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

.featured-service {
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.featured-service img {
	width: 200px;
	height: 150px;
	margin-bottom: 18px;
	border-radius: 50%;
	object-fit: cover;
}

.featured-service h3 {
	color: var(--az-red-light);
	font-size: 1.45rem;
}

.featured-service p {
	flex: 1;
	max-width: 390px;
	color: var(--az-ink);
	line-height: 1.7;
}

/* Credentials */
.section--credentials {
	min-height: 80vh;
	background: var(--az-soft);
	scroll-margin-top: 24px;
}

.credentials-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 330px));
	justify-content: center;
	gap: 5%;
}

.credential-card {
	position: relative;
	min-height: 390px;
	padding: 28px 25px;
	border-top: 3px solid var(--az-red);
	border-radius: 5px;
	background: var(--az-white);
	text-align: center;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.credential-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--az-shadow);
}

.credential-card img {
	width: 170px;
	height: 170px;
	margin: 0 auto 22px;
	object-fit: contain;
}

.credential-card h3 {
	color: var(--az-red-light);
}

/* Foam services */
.section--foam-services {
	padding-inline: 0;
	background: var(--az-soft);
}

.foam-services {
	display: grid;
}

.foam-service {
	display: grid;
	grid-template-columns: 25% 75%;
	align-items: center;
	min-height: 310px;
	padding: 25px 3%;
	background: var(--az-soft);
}

.foam-service--reverse {
	grid-template-columns: 75% 25%;
	background: var(--az-white);
}

.foam-service--reverse .foam-service__media {
	grid-column: 2;
	grid-row: 1;
}

.foam-service--reverse .foam-service__content {
	grid-column: 1;
	grid-row: 1;
}

.foam-service__media {
	padding: 20px;
}

.foam-service__media img {
	width: 100%;
	max-height: 270px;
	object-fit: contain;
}

.foam-service__content {
	padding: 25px 40px;
}

.foam-service__content h3 {
	color: var(--az-red-light);
	font-size: 1.55rem;
	font-weight: 500;
}

.foam-service__content p {
	line-height: 1.8;
}

/* Post cards */
.section--articles {
	background: var(--az-white);
}

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

.post-card {
	display: flex;
	overflow: hidden;
	flex-direction: column;
	border: 1px solid #edf0f3;
	border-radius: 30px;
	background: var(--az-white);
	box-shadow: 0 5px 20px rgb(15 23 42 / 10%);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgb(15 23 42 / 14%);
}

.post-card__media {
	position: relative;
	display: block;
	aspect-ratio: 5 / 3;
	overflow: hidden;
	background: linear-gradient(180deg, #f8f8f8, #ccc);
}

.post-card__media img,
.post-card__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.post-card:hover .post-card__media img {
	transform: scale(1.035);
}

.post-card__badge {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 7px 14px;
	border-radius: 30px;
	background: var(--az-red);
	color: var(--az-white);
	font-family: "Tajawal", sans-serif;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
}

.post-card__body {
	flex: 1;
	padding: 22px 20px 16px;
}

.post-card__body h3 {
	margin-bottom: 10px;
	font-size: 1.38rem;
	line-height: 1.35;
}

.post-card__body h3 a {
	color: var(--az-navy);
}

.post-card__body p {
	color: var(--az-black);
	font-size: 15px;
}

.post-card__more {
	font-family: "Tajawal", sans-serif;
	font-size: 14px;
	font-weight: 600;
}

.post-card__meta {
	display: flex;
	justify-content: space-between;
	padding: 12px 20px;
	border-top: 1px solid #f0f1f3;
	color: #64748b;
	font-size: 12px;
}

.load-more-wrap {
	margin-top: 35px;
	text-align: center;
}

.load-more-status {
	min-height: 28px;
	margin: 12px 0 0;
	color: #64748b;
}

/* Care */
.section--care {
	min-height: 75vh;
	background: var(--az-white);
	scroll-margin-top: 24px;
}

.care-content {
	text-align: center;
}

.care-content > p {
	margin-bottom: 28px;
	font-weight: 700;
}

.care-content > h3 {
	margin: 46px 0 30px;
	color: var(--az-red-light);
}

.care-equipment {
	width: min(100%, 429px);
	margin: 0 auto 42px;
}

.care-equipment--wide {
	width: min(100%, 833px);
}

.care-equipment img {
	display: block;
	width: 100%;
	height: auto;
	margin-inline: auto;
	object-fit: contain;
}

.care-research-icon {
	width: 85px;
	margin: 8px auto 18px;
}

.care-research-icon img {
	display: block;
	width: 100%;
	height: auto;
}

.care-content > h4 {
	max-width: 850px;
	margin: 0 auto 40px;
	color: var(--az-red-light);
	font-size: clamp(1.15rem, 2vw, 1.5rem);
	line-height: 1.8;
}

.care-phone {
	display: inline-block;
	color: var(--az-navy);
	font-size: 1.4rem;
	font-weight: 800;
	direction: ltr;
}

/* Assurance */
.assurance {
	position: relative;
	display: flex;
	min-height: 78vh;
	align-items: center;
	justify-content: center;
	padding: 70px 24px;
	background: #444 url("https://alenjaz-saudia.com/wp-content/uploads/2024/05/2000_5de7f9f9577af.webp") center / cover fixed no-repeat;
	color: var(--az-white);
	isolation: isolate;
}

.assurance::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: rgb(17 17 17 / 52%);
	content: "";
}

.assurance__content {
	width: min(100%, 900px);
	text-align: center;
}

.assurance h2 {
	color: var(--az-white);
	font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.assurance p {
	color: var(--az-white);
	font-size: 1.3rem;
	line-height: 1.7;
}

/* Clients and contact */
.section--clients {
	min-height: 48vh;
	background: var(--az-white);
}

.clients-track {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	align-items: center;
	gap: 30px;
}

.clients-track img {
	width: 100%;
	height: 110px;
	object-fit: contain;
	filter: saturate(0.9);
}

.section--contact {
	padding-top: 70px;
	background: var(--az-soft);
}

.contact-summary {
	margin-bottom: 45px;
	text-align: center;
}

.contact-summary a {
	display: inline-block;
	margin-bottom: 10px;
	color: var(--az-navy);
	font-size: 1.45rem;
	font-weight: 800;
	direction: ltr;
}

.contact-summary p {
	margin: 5px 0;
	font-weight: 700;
}

.contact-map {
	overflow: hidden;
	border: 3px solid var(--az-red-light);
	border-radius: 15px;
}

.contact-map iframe {
	height: 279px;
}

/* Footer and floating actions */
.site-footer {
	padding: 22px 24px;
	border-top: 1px solid var(--az-border);
	background: var(--az-white);
}

.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100%, var(--az-container));
	margin-inline: auto;
	gap: 30px;
}

.site-footer__copyright {
	display: grid;
	color: var(--az-navy);
	font-size: 13px;
}

.menu--footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px 16px;
}

.menu--footer a {
	color: var(--az-ink);
	font-size: 13px;
}

.floating-contact {
	position: fixed;
	z-index: 900;
	top: 52%;
	left: 12px;
	display: grid;
	gap: 8px;
	transform: translateY(-50%);
}

.floating-contact__item {
	display: flex;
	align-items: center;
	width: fit-content;
	min-width: 105px;
	gap: 7px;
	padding: 8px 12px;
	border-radius: 999px 999px 999px 4px;
	color: var(--az-white);
	font-size: 13px;
	box-shadow: 0 6px 18px rgb(0 0 0 / 18%);
}

.floating-contact__item:hover {
	color: var(--az-white);
	transform: translateX(4px);
}

.floating-contact__item--call {
	background: #df3587;
}

.floating-contact__item--whatsapp {
	background: #087f3f;
}

.floating-contact__item span {
	display: grid;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: rgb(255 255 255 / 20%);
	place-items: center;
}

/* Replaced plugin output is hidden until the plugins are disabled. */
.joinchat,
#callnowbutton {
	display: none !important;
}

/* Page and migration renderer */
.page-hero {
	padding: 70px 24px;
	background: linear-gradient(135deg, #0b0b0b, #222);
	text-align: center;
}

.page-hero h1 {
	margin: 0;
	color: var(--az-white);
	font-size: clamp(2rem, 4vw, 3rem);
}

.page-shell__content,
.archive-shell > .section__inner {
	padding-top: 70px;
	padding-bottom: 90px;
}

.native-document {
	display: grid;
	gap: 0;
}

.native-container {
	position: relative;
	width: 100%;
	isolation: isolate;
}

.native-container__inner {
	display: contents;
}

.native-container--overlay::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: rgb(0 0 0 / 50%);
	content: "";
}

.native-widget {
	position: relative;
	max-width: 100%;
	padding: 12px;
}

.native-heading {
	color: var(--az-red-light);
}

.native-divider {
	display: block;
	width: 82px;
	height: 3px;
	margin: 4px auto 18px;
	border-radius: 5px;
	background: var(--az-red);
}

.native-richtext {
	width: 100%;
}

.native-richtext::after,
.article-content::after {
	display: table;
	clear: both;
	content: "";
}

.native-image {
	margin: 0;
}

.native-image img {
	width: 100%;
}

.native-image-box {
	text-align: center;
}

.native-image-box figure {
	margin: 0 auto 18px;
}

.native-image-box img {
	margin-inline: auto;
}

.native-image-box h3 {
	color: var(--az-red-light);
}

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

.native-gallery img {
	width: 100%;
	height: 260px;
	border-radius: 12px;
	object-fit: cover;
}

.native-map {
	overflow: hidden;
	border: 3px solid var(--az-red);
	border-radius: 15px;
}

.native-map iframe {
	height: 320px;
}

.native-form-cta {
	padding: 45px;
	border-radius: var(--az-radius);
	background: var(--az-soft);
	text-align: center;
}

/* Article */
.single-article__header {
	padding: 80px 24px 95px;
	background: linear-gradient(135deg, #080808, #242424);
	color: var(--az-white);
	text-align: center;
}

.single-article__heading {
	width: min(100%, 980px);
	margin-inline: auto;
}

.single-article__category a,
.single-article__category {
	color: var(--az-red-light);
	font-weight: 700;
}

.single-article__header h1 {
	margin: 16px 0;
	color: var(--az-white);
	font-size: clamp(2rem, 4vw, 3.4rem);
}

.single-article__header p {
	color: #e2e8f0;
	font-size: 1.1rem;
}

.single-article__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 22px;
	color: #cbd5e1;
	font-size: 14px;
}

.single-article__layout {
	padding-block: 0 90px;
}

.single-article__main {
	width: min(100%, 900px);
	margin: -45px auto 0;
}

.single-article__image {
	overflow: hidden;
	margin: 0 0 35px;
	border-radius: 24px;
	background: var(--az-white);
	box-shadow: var(--az-shadow);
}

.single-article__image img {
	width: 100%;
	max-height: 600px;
	object-fit: cover;
}

.article-content {
	color: #27364a;
	font-size: 1.08rem;
	line-height: 1.95;
}

.article-content > :first-child {
	margin-top: 0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
	margin-top: 1.65em;
	color: var(--az-navy);
}

.article-content h2 {
	padding-right: 15px;
	border-right: 4px solid var(--az-red);
	font-size: 1.85rem;
}

.article-content img {
	height: auto;
	border-radius: 14px;
}

.article-content a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.article-content ul,
.article-content ol {
	padding-right: 24px;
}

.article-content blockquote {
	padding: 18px 24px;
	border-right: 4px solid var(--az-red);
	border-radius: 8px;
	background: var(--az-soft);
}

.article-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding: 25px 0;
	margin-top: 40px;
	border-block: 1px solid var(--az-border);
}

.article-share a {
	padding: 7px 13px;
	border-radius: 20px;
	background: var(--az-soft);
	font-size: 13px;
}

.post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 25px;
	margin-top: 30px;
}

.post-navigation > div:last-child {
	text-align: left;
}

.post-navigation a {
	display: block;
	padding: 20px;
	border: 1px solid var(--az-border);
	border-radius: 12px;
}

.related-posts {
	background: var(--az-soft);
}

/* Service */
.service-hero {
	padding: 80px 24px;
	background: linear-gradient(135deg, #050505, #272727);
	color: var(--az-white);
}

.service-hero__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 55px;
}

.service-hero__eyebrow {
	margin-bottom: 10px;
	color: var(--az-orange);
	font-weight: 700;
}

.service-hero h1 {
	color: var(--az-white);
	font-size: clamp(2.3rem, 4.5vw, 4rem);
}

.service-hero__content > p:not(.service-hero__eyebrow) {
	color: #e2e8f0;
	font-size: 1.1rem;
}

.service-hero__media {
	overflow: hidden;
	margin: 0;
	border-radius: 24px;
}

.service-hero__media img {
	width: 100%;
	height: 480px;
	object-fit: cover;
}

.service-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 20px 0;
}

.service-rating span {
	color: #f6b900;
	letter-spacing: 2px;
}

.service-stats {
	padding: 0 24px;
	background: var(--az-white);
}

.service-stats__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: -30px;
	border-radius: 18px;
	background: var(--az-white);
	box-shadow: var(--az-shadow);
}

.service-stats__grid > div {
	display: grid;
	gap: 2px;
	padding: 25px;
	border-left: 1px solid var(--az-border);
	text-align: center;
}

.service-stats__grid > div:last-child {
	border-left: 0;
}

.service-stats small {
	color: #64748b;
}

.service-stats strong {
	color: var(--az-navy);
	font-size: 1.1rem;
}

.service-body {
	width: min(100%, 950px);
}

.service-details {
	display: grid;
	gap: 45px;
}

.service-details article {
	padding-bottom: 35px;
	border-bottom: 1px solid var(--az-border);
}

.service-details h2 {
	color: var(--az-red-light);
}

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

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

.service-features > div {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 20px;
	border-radius: 12px;
	background: var(--az-white);
	box-shadow: 0 5px 18px rgb(15 23 42 / 6%);
}

.service-features span {
	display: grid;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #e9f8ee;
	color: #0d9a46;
	place-items: center;
}

.service-faq details {
	margin-bottom: 12px;
	border: 1px solid var(--az-border);
	border-radius: 12px;
	background: var(--az-white);
}

.service-faq summary {
	padding: 18px 22px;
	color: var(--az-navy);
	font-weight: 800;
	cursor: pointer;
}

.service-faq details > div {
	padding: 0 22px 20px;
}

.service-warranty,
.service-cta {
	padding: 75px 24px;
	background: var(--az-navy);
	color: var(--az-white);
	text-align: center;
}

.service-warranty h2,
.service-cta h2 {
	color: var(--az-white);
}

.service-cta {
	background: #111;
}

.service-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 25px;
}

.pagination {
	margin-top: 45px;
	text-align: center;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.pagination .page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--az-border);
	border-radius: 10px;
	background: var(--az-white);
	place-items: center;
}

.pagination .current {
	border-color: var(--az-red);
	background: var(--az-red);
	color: var(--az-white);
}

.empty-state,
.not-found {
	padding: 100px 24px;
	text-align: center;
}

.not-found {
	min-height: 70vh;
}

.not-found__code {
	margin: 0;
	color: var(--az-red);
	font-size: clamp(5rem, 14vw, 10rem);
	font-weight: 800;
	line-height: 1;
}

/* Layout resilience and native contact experience */
html,
body {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	overflow-x: clip;
}

.site-main,
.site-main article,
.site-main section,
.section__inner,
.service-hero__content,
.single-article__heading,
.single-article__main,
.article-content,
.native-document,
.native-container,
.native-widget {
	min-width: 0;
}

.site-main h1,
.site-main h2,
.site-main h3,
.site-main h4,
.article-content,
.native-richtext {
	overflow-wrap: anywhere;
}

.native-container {
	max-width: 100%;
	flex-direction: column;
}

.native-widget {
	width: 100%;
}

.native-richtext,
.native-richtext > *,
.article-content > * {
	max-width: 100%;
}

.article-content table,
.native-richtext table {
	width: 100% !important;
	max-width: 100% !important;
	border-collapse: collapse;
}

.article-content iframe,
.article-content video,
.article-content embed,
.article-content object,
.native-richtext iframe,
.native-richtext video {
	max-width: 100% !important;
}

.article-content [style*="color: #ffaa00"],
.article-content [style*="color:#ffaa00"],
.article-content [style*="color: #d4a017"],
.article-content [style*="color:#d4a017"],
.article-content [style*="color: #b8860b"],
.article-content [style*="color:#b8860b"] {
	color: #7a4a00 !important;
}

.article-content [style*="background-color: #005a9c"] strong[style*="color"],
.article-content [style*="background-color:#005a9c"] strong[style*="color"] {
	color: var(--az-white) !important;
}

.contact-page {
	padding: 10px 0 0;
}

.contact-page__intro {
	width: min(100%, 760px);
	margin: 0 auto 48px;
	text-align: center;
}

.contact-page__eyebrow {
	margin-bottom: 6px;
	color: var(--az-red-light);
	font-weight: 800;
}

.contact-page__intro h2 {
	margin-bottom: 12px;
	font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.contact-page__intro > p:last-child {
	margin: 0;
	color: #64748b;
	font-size: 1.05rem;
}

.contact-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
	align-items: start;
	gap: 28px;
}

.contact-details,
.contact-request-form {
	border: 1px solid var(--az-border);
	border-radius: 22px;
	background: var(--az-white);
	box-shadow: var(--az-shadow);
}

.contact-details {
	display: grid;
	overflow: hidden;
}

.contact-detail {
	display: flex;
	align-items: center;
	min-width: 0;
	gap: 14px;
	padding: 19px 22px;
	border-bottom: 1px solid var(--az-border);
	color: var(--az-navy);
}

.contact-detail:last-child {
	border-bottom: 0;
}

.contact-detail:hover,
.contact-detail:focus-visible {
	background: #fff9f4;
	color: var(--az-navy);
}

.contact-detail__icon {
	display: grid;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: #fff1e7;
	color: var(--az-red);
	font-size: 1.25rem;
	place-items: center;
}

.contact-detail__icon--whatsapp {
	background: #e9f8ee;
	color: #0a9f46;
}

.contact-detail > span:last-child {
	display: grid;
	min-width: 0;
}

.contact-detail small {
	color: #64748b;
}

.contact-detail strong {
	overflow-wrap: anywhere;
}

.contact-request-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	padding: 28px;
}

.contact-request-form__heading,
.form-field--wide {
	grid-column: 1 / -1;
}

.contact-request-form__heading {
	padding-bottom: 18px;
	border-bottom: 1px solid var(--az-border);
}

.contact-request-form__heading h2 {
	margin-bottom: 4px;
	font-size: 1.65rem;
}

.contact-request-form__heading p {
	margin: 0;
	color: #64748b;
	font-size: 0.92rem;
}

.form-field {
	display: grid;
	min-width: 0;
	gap: 7px;
}

.form-field label {
	color: var(--az-navy);
	font-weight: 700;
}

.form-field label span {
	color: #64748b;
	font-size: 0.8rem;
	font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	min-width: 0;
	padding: 11px 13px;
	border: 1px solid #cfd6df;
	border-radius: 11px;
	background: var(--az-white);
	color: var(--az-ink);
	outline: 0;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input,
.form-field select {
	min-height: 48px;
}

.form-field textarea {
	resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	border-color: var(--az-red-light);
	box-shadow: 0 0 0 3px rgb(240 119 42 / 14%);
}

.contact-request-form__submit {
	width: 100%;
}

.contact-request-form__status {
	min-height: 24px;
	margin: 8px 0 0;
	color: #08783a;
	font-size: 0.9rem;
	text-align: center;
}

/* Responsive */
@media (max-width: 1100px) {
	.site-header__inner {
		min-height: 120px;
		padding-inline: 20px;
	}

	.site-brand {
		flex-basis: 135px;
	}

	.site-brand__logo {
		width: 115px;
		max-height: 105px;
	}

	.menu--desktop > li > a {
		padding-inline: 9px;
		font-size: 12px;
	}

	.about-grid__media img {
		min-height: 590px;
	}

	.about-grid__content {
		padding-right: 28px;
		font-size: 16px;
	}

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

@media (max-width: 921px) {
	.section {
		padding: 70px 20px;
	}

	.site-header {
		position: sticky;
		top: 0;
	}

	.site-header__inner {
		justify-content: space-between;
		min-height: 74px;
		padding-inline: 16px;
		gap: 12px;
	}

	.site-brand {
		position: relative;
		z-index: 2;
		display: flex;
		flex: 0 0 auto;
		padding: 4px;
	}

	.site-brand__logo {
		width: 60px;
		height: 60px;
		max-height: 60px;
	}

	.desktop-navigation {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
		flex: 0 0 auto;
		min-height: 44px;
		border-radius: 10px;
		font-weight: 700;
	}

	.mobile-navigation {
		inset: 74px 0 0;
	}

	.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bars i:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bars i:nth-child(2) {
		opacity: 0;
	}

	.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bars i:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.hero {
		min-height: calc(100vh - 78px);
		padding-bottom: 11vh;
	}

	.about-grid,
	.service-hero__grid {
		grid-template-columns: 1fr;
	}

	.about-grid__media {
		padding-bottom: 0;
	}

	.about-grid__media img {
		min-height: 0;
		max-height: 700px;
		border-radius: 65px 24px 24px;
		object-fit: contain;
	}

	.about-grid__content {
		padding: 35px 0 60px;
	}

	.featured-services {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.credentials-grid {
		gap: 24px;
	}

	.foam-service,
	.foam-service--reverse {
		grid-template-columns: 32% 68%;
	}

	.foam-service--reverse {
		grid-template-columns: 68% 32%;
	}

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

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

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

	.contact-page__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	body {
		padding-bottom: 76px;
		font-size: 15px;
	}

	.section {
		padding: 52px 16px;
	}

	.section-heading {
		margin-bottom: 38px;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.hero p {
		font-size: 1.2rem;
	}

	.credentials-grid,
	.posts-grid,
	.native-gallery,
	.service-gallery,
	.service-features {
		grid-template-columns: 1fr;
	}

	.credential-card {
		min-height: 0;
	}

	.foam-service,
	.foam-service--reverse {
		display: flex;
		flex-direction: column;
		padding: 45px 16px;
	}

	.foam-service--reverse {
		flex-direction: column;
	}

	.foam-service__media {
		width: 100%;
		padding: 0;
	}

	.foam-service__media img {
		width: 65%;
		margin-inline: auto;
	}

	.foam-service__content {
		padding: 25px 0 0;
		text-align: center;
	}

	.clients-track {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.site-footer__inner {
		flex-direction: column;
		text-align: center;
	}

	.floating-contact {
		top: auto;
		right: 8px;
		bottom: 8px;
		left: 8px;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		transform: none;
		pointer-events: none;
	}

	.floating-contact__item {
		justify-content: center;
		width: 100%;
		min-height: 52px;
		min-width: 0;
		padding: 8px 12px;
		border-radius: 14px;
		pointer-events: auto;
	}

	.floating-contact__item b {
		display: inline;
	}

	.floating-contact__item span {
		width: 28px;
		height: 28px;
	}

	.floating-contact__item--call {
		background: var(--az-red);
	}

	.assurance {
		min-height: 70vh;
		background-attachment: scroll;
	}

	.single-article__header {
		padding: 46px 16px 74px;
	}

	.single-article__header h1 {
		margin-block: 13px;
		font-size: clamp(1.72rem, 8vw, 2.3rem);
		line-height: 1.36;
	}

	.single-article__header p {
		font-size: 1rem;
	}

	.single-article__meta {
		gap: 6px 13px;
		font-size: 12px;
	}

	.single-article__layout {
		padding-inline: 16px;
		padding-bottom: 65px;
	}

	.single-article__main {
		margin-top: -30px;
	}

	.single-article__image {
		margin-bottom: 26px;
		border-radius: 16px;
	}

	.single-article__image img {
		max-height: none;
	}

	.article-content {
		font-size: 1rem;
		line-height: 1.85;
	}

	.article-content h2 {
		padding-right: 11px;
		font-size: 1.5rem;
	}

	.article-content h3 {
		font-size: 1.28rem;
	}

	.article-content img {
		float: none !important;
		width: auto !important;
		max-width: 100% !important;
		height: auto !important;
		margin: 18px auto !important;
	}

	.article-content table,
	.native-richtext table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.article-content th,
	.article-content td,
	.native-richtext th,
	.native-richtext td {
		min-width: 118px;
	}

	.post-navigation {
		grid-template-columns: 1fr;
	}

	.post-navigation > div:last-child {
		text-align: right;
	}

	.service-hero {
		padding: 44px 16px 50px;
		text-align: center;
	}

	.service-hero__grid {
		gap: 34px;
	}

	.service-hero h1 {
		margin-bottom: 12px;
		font-size: clamp(1.9rem, 9vw, 2.65rem);
		line-height: 1.3;
	}

	.service-hero__content > p:not(.service-hero__eyebrow) {
		max-width: 34rem;
		margin-inline: auto;
		font-size: 1rem;
	}

	.service-hero__media {
		width: 100%;
		border-radius: 18px;
	}

	.service-hero__media img {
		width: 100%;
		height: auto;
		aspect-ratio: 4 / 3;
		object-fit: cover;
	}

	.service-rating {
		flex-wrap: wrap;
		justify-content: center;
	}

	.service-stats {
		padding-inline: 16px;
	}

	.service-stats__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: -18px;
		overflow: hidden;
		box-shadow: var(--az-shadow);
	}

	.service-stats__grid > div {
		padding: 18px 10px;
		border-bottom: 1px solid var(--az-border);
		border-left: 0;
	}

	.service-stats__grid > div:nth-child(odd) {
		border-left: 1px solid var(--az-border);
	}

	.service-stats strong {
		font-size: 1rem;
	}

	.service-cta,
	.service-warranty {
		padding: 55px 16px;
	}

	.service-cta__actions {
		display: grid;
	}

	.service-cta__actions .button {
		width: 100%;
	}

	.page-hero {
		padding: 50px 16px;
	}

	.page-hero h1 {
		font-size: clamp(1.85rem, 8vw, 2.35rem);
	}

	.page-shell__content,
	.archive-shell > .section__inner {
		padding: 48px 16px 70px;
	}

	.native-container {
		flex-wrap: wrap !important;
		flex-direction: column !important;
		min-height: 0 !important;
	}

	.native-widget {
		width: 100%;
		min-width: 0;
		padding: 8px 0;
	}

	.native-richtext [style*="width"],
	.native-richtext [style*="min-width"] {
		max-width: 100% !important;
		min-width: 0 !important;
	}

	.native-richtext [style*="display: flex"] {
		flex-wrap: wrap !important;
	}

	.contact-page {
		padding-top: 0;
	}

	.contact-page__intro {
		margin-bottom: 30px;
	}

	.contact-page__intro h2 {
		font-size: 1.75rem;
	}

	.contact-page__grid {
		gap: 20px;
	}

	.contact-detail {
		padding: 16px;
	}

	.contact-request-form {
		grid-template-columns: 1fr;
		gap: 15px;
		padding: 20px 16px;
	}

	.contact-request-form__heading,
	.form-field--wide {
		grid-column: auto;
	}

	.contact-request-form__heading h2 {
		font-size: 1.45rem;
	}

	.site-footer {
		padding: 26px 16px;
	}

	.menu--footer {
		gap: 8px 14px;
	}
}

@media (max-width: 380px) {
	.site-header__inner {
		padding-inline: 12px;
	}

	.site-brand__logo {
		width: 54px;
		height: 54px;
	}

	.mobile-menu-toggle {
		gap: 7px;
		padding-inline: 6px;
	}

	.mobile-navigation {
		inset-block-start: 74px;
	}

	.hero h1 {
		font-size: 1.85rem;
	}

	.service-hero h1,
	.single-article__header h1 {
		font-size: 1.75rem;
	}

	.service-stats__grid {
		grid-template-columns: 1fr;
	}

	.service-stats__grid > div:nth-child(odd) {
		border-left: 0;
	}

	.floating-contact__item {
		font-size: 12px;
	}

	.floating-contact__item span {
		display: none;
	}

	.contact-detail strong {
		font-size: 0.92rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.hero__video {
		display: none;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
