/**
 * Almaza Moving — Google Ads Pre-Launch CSS  v2.0 — Design-Polished
 * May 2026
 *
 * DESIGN TOKENS (extracted from theme-bootstrap4.css):
 *   Primary blue:   #206DBF
 *   Dark blue:      #034296
 *   WhatsApp green: #25D366
 *   Font display:   "Rakkas", serif
 *   Button radius:  50px 0 10px  (hero) | 10px (generic)
 *   Card radius:    1.5rem
 *   Card shadow:    5px 4px 0 #206DBF, -5px -4px 0 #206DBF
 *
 * RULES:
 *   - All selectors scoped to avoid touching generic elements
 *   - Specificity calculated against theme to avoid needing !important
 *   - No new libraries, no JS, no tracking changes
 *   - RTL-safe (Arabic direction, left = visual right in RTL flow)
 */

/* =============================================
   1. HERO — H1 العنوان الرئيسي

   Theme specificity to beat:
   .home-banner .row .text-wrapper h1 = (0,3,1)
   Our selector: .home-banner .row .text-wrapper h1.hero-main-heading = (0,3,2) ✓
   ============================================= */

.home-banner .row .text-wrapper h1.hero-main-heading {
	/* Keep "Rakkas" + #034296 from theme — just fix size + stop bounce animation */
	font-size: clamp(1.9rem, 5.5vw, 4.2rem);
	line-height: 1.2;
	margin-bottom: 0.9rem;
	animation: none; /* stop infinite bounce — bad UX for text content */
	max-width: 520px;
}


/* ==========================================================================
   ABOUT EXPERIENCE v1.0 — Reactive Premium Background + Smart Storytelling
   Scoped to the home About section only.
   ========================================================================== */

.home-about.almaza-about-experience {
	--about-pointer-x: 50%;
	--about-pointer-y: 42%;
	--about-shift-x: 0px;
	--about-shift-y: 0px;
	min-height: 720px;
	padding: clamp(4.5rem, 8vw, 7rem) 0;
	background-image:
		linear-gradient(247deg, rgba(32, 109, 191, 0.62), rgba(3, 66, 150, 0.72)),
		url(../imgs/home-about.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	isolation: isolate;
	overflow: hidden;
}

.home-about.almaza-about-experience::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -3;
	background:
		radial-gradient(circle at var(--about-pointer-x) var(--about-pointer-y), rgba(255, 255, 255, 0.24), transparent 22%),
		linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(32, 109, 191, 0.16) 68%, transparent);
	mix-blend-mode: screen;
	transition: background-position 0.35s ease;
}

.home-about.almaza-about-experience::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.10) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 86px 86px;
	mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
	opacity: 0.26;
	transform: translate3d(calc(var(--about-shift-x) * -0.22), calc(var(--about-shift-y) * -0.22), 0);
	animation: aboutGridDrift 18s ease-in-out infinite alternate;
}

.home-about.almaza-about-experience .about-reactive-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	overflow: hidden;
}

.home-about.almaza-about-experience .about-light-layer,
.home-about.almaza-about-experience .about-flow-line,
.home-about.almaza-about-experience .about-grid-layer {
	position: absolute;
	display: block;
	pointer-events: none;
}

.home-about.almaza-about-experience .about-light-layer {
	width: min(760px, 78vw);
	height: min(420px, 50vw);
	border-radius: 999px;
	filter: blur(34px);
	opacity: 0.42;
	transform: translate3d(var(--about-shift-x), var(--about-shift-y), 0) rotate(-12deg);
	animation: aboutAuroraDrift 13s ease-in-out infinite alternate;
}

.home-about.almaza-about-experience .about-light-layer-one {
	top: 4%;
	right: -16%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.30), rgba(32, 109, 191, 0.36), transparent 72%);
}

.home-about.almaza-about-experience .about-light-layer-two {
	left: -18%;
	bottom: 6%;
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.20), rgba(255, 255, 255, 0.22), rgba(3, 66, 150, 0.22));
	animation-duration: 16s;
	animation-direction: alternate-reverse;
}

.home-about.almaza-about-experience .about-flow-line {
	width: 48vw;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), rgba(32, 109, 191, 0.30), transparent);
	opacity: 0.45;
	transform-origin: center;
	animation: aboutLineFloat 10s ease-in-out infinite;
}

.home-about.almaza-about-experience .about-flow-line-one {
	--line-rotate: -18deg;
	top: 27%;
	right: -8%;
	transform: rotate(-18deg);
}

.home-about.almaza-about-experience .about-flow-line-two {
	--line-rotate: 14deg;
	left: -10%;
	bottom: 25%;
	transform: rotate(14deg);
	animation-delay: 1.8s;
}

.home-about.almaza-about-experience .about-grid-layer {
	inset: 12%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 1.5rem;
	opacity: 0.28;
	transform: translate3d(calc(var(--about-shift-x) * 0.16), calc(var(--about-shift-y) * 0.16), 0);
}

.home-about.almaza-about-experience .container {
	height: auto;
	min-height: clamp(520px, 68vh, 680px);
	position: relative;
	z-index: 2;
}

.home-about.almaza-about-experience .about-content-shell {
	width: min(920px, 100%);
	margin: 0 auto;
	padding: clamp(1.65rem, 4vw, 3.2rem);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 1.5rem;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.66)),
		linear-gradient(247deg, rgba(32, 109, 191, 0.14), rgba(3, 66, 150, 0.08));
	box-shadow:
		5px 4px 0 rgba(32, 109, 191, 0.95),
		-5px -4px 0 rgba(32, 109, 191, 0.65),
		0 28px 80px rgba(3, 66, 150, 0.28);
	backdrop-filter: blur(10px);
	text-align: center;
	transform: translate3d(calc(var(--about-shift-x) * -0.10), calc(var(--about-shift-y) * -0.10), 0);
	animation: aboutShellIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-about.almaza-about-experience .container .caption-bill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: auto;
	margin: 0 0 1.1rem;
	padding: 0.55rem 1.25rem;
	border: 1px solid rgba(32, 109, 191, 0.38);
	border-radius: 50px;
	background: rgba(32, 109, 191, 0.08);
	box-shadow: 0 8px 28px rgba(32, 109, 191, 0.14);
	color: #206DBF;
	font-size: clamp(1rem, 2vw, 1.22rem);
	line-height: 1.2;
	animation: aboutItemIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.home-about.almaza-about-experience .container .about-heading {
	max-width: 720px;
	margin: 0 auto 1rem;
	padding: 0;
	color: #034296;
	font-family: "Rakkas", serif;
	font-size: clamp(1.7rem, 4vw, 3rem);
	line-height: 1.35;
	letter-spacing: 0;
	text-align: center;
	animation: aboutItemIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.home-about.almaza-about-experience .container .about-desc {
	max-width: 700px;
	margin: 0 auto;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
	color: rgba(3, 66, 150, 0.86);
	font-size: clamp(0.98rem, 1.8vw, 1.12rem);
	font-weight: 500;
	line-height: 1.9;
	text-align: center;
	animation: aboutItemIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both;
}

.home-about.almaza-about-experience .about-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: clamp(1.5rem, 3vw, 2.2rem);
}

.home-about.almaza-about-experience .about-trust-card {
	position: relative;
	min-height: 162px;
	padding: 1.25rem 1rem;
	border: 1px solid rgba(32, 109, 191, 0.18);
	border-radius: 1.1rem;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 12px 34px rgba(3, 66, 150, 0.10);
	overflow: hidden;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
	animation: aboutItemIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-about.almaza-about-experience .about-trust-card:nth-child(1) {
	animation-delay: 0.48s;
}

.home-about.almaza-about-experience .about-trust-card:nth-child(2) {
	animation-delay: 0.58s;
}

.home-about.almaza-about-experience .about-trust-card:nth-child(3) {
	animation-delay: 0.68s;
}

.home-about.almaza-about-experience .about-trust-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(32, 109, 191, 0.10), transparent 62%);
	opacity: 0;
	transition: opacity 0.28s ease;
}

.home-about.almaza-about-experience .about-trust-card:hover {
	border-color: rgba(32, 109, 191, 0.34);
	box-shadow: 0 16px 44px rgba(3, 66, 150, 0.16);
	transform: translateY(-5px);
}

.home-about.almaza-about-experience .about-trust-card:hover::before {
	opacity: 1;
}

.home-about.almaza-about-experience .about-trust-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 0.8rem;
	border-radius: 50%;
	background: #206DBF;
	color: #fff;
	font-size: 1rem;
	box-shadow: 0 10px 24px rgba(32, 109, 191, 0.28);
}

.home-about.almaza-about-experience .about-trust-card h3 {
	position: relative;
	margin: 0 0 0.45rem;
	color: #034296;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.4;
}

.home-about.almaza-about-experience .about-trust-card p {
	position: relative;
	margin: 0;
	color: rgba(32, 109, 191, 0.78);
	font-size: 0.84rem;
	font-weight: 500;
	line-height: 1.75;
}

@keyframes aboutAuroraDrift {
	0% { transform: translate3d(var(--about-shift-x), var(--about-shift-y), 0) rotate(-12deg) scale(1); }
	100% { transform: translate3d(calc(var(--about-shift-x) + 24px), calc(var(--about-shift-y) - 18px), 0) rotate(-7deg) scale(1.04); }
}

@keyframes aboutGridDrift {
	0% { background-position: 0 0, 0 0; }
	100% { background-position: 42px 28px, -26px 34px; }
}

@keyframes aboutLineFloat {
	0%, 100% { opacity: 0.25; transform: translate3d(0, 0, 0) rotate(var(--line-rotate, -18deg)); }
	50% { opacity: 0.55; transform: translate3d(28px, -14px, 0) rotate(var(--line-rotate, -18deg)); }
}

@keyframes aboutShellIn {
	from { opacity: 0; transform: translate3d(0, 24px, 0); }
	to { opacity: 1; transform: translate3d(calc(var(--about-shift-x) * -0.10), calc(var(--about-shift-y) * -0.10), 0); }
}

@keyframes aboutItemIn {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
	.home-about.almaza-about-experience {
		min-height: 640px;
	}

	.home-about.almaza-about-experience .about-content-shell {
		width: min(820px, 100%);
	}
}

@media (max-width: 768px) {
	.home-about.almaza-about-experience {
		min-height: auto;
		padding: 4rem 0;
	}

	.home-about.almaza-about-experience .container {
		min-height: auto;
	}

	.home-about.almaza-about-experience .about-content-shell {
		border-radius: 1.1rem;
		backdrop-filter: blur(6px);
	}

	.home-about.almaza-about-experience .about-trust-grid {
		grid-template-columns: 1fr;
		gap: 0.85rem;
	}

	.home-about.almaza-about-experience .about-trust-card {
		min-height: auto;
		padding: 1rem;
	}

	.home-about.almaza-about-experience .about-light-layer {
		filter: blur(28px);
		opacity: 0.28;
	}

	.home-about.almaza-about-experience .about-flow-line {
		display: none;
	}
}

@media (max-width: 414px) {
	.home-about.almaza-about-experience {
		padding: 3.4rem 0;
	}

	.home-about.almaza-about-experience .about-content-shell {
		padding: 1.25rem;
		box-shadow:
			3px 3px 0 rgba(32, 109, 191, 0.85),
			-3px -3px 0 rgba(32, 109, 191, 0.45),
			0 18px 52px rgba(3, 66, 150, 0.22);
	}

	.home-about.almaza-about-experience .container .about-heading {
		font-size: clamp(1.55rem, 8vw, 2rem);
	}

	.home-about.almaza-about-experience .container .about-desc {
		font-size: 0.95rem;
		line-height: 1.85;
	}

	.home-about.almaza-about-experience .about-trust-card {
		display: grid;
		grid-template-columns: 42px 1fr;
		column-gap: 0.8rem;
		align-items: center;
		text-align: right;
	}

	.home-about.almaza-about-experience .about-trust-icon {
		width: 38px;
		height: 38px;
		margin-bottom: 0;
	}

	.home-about.almaza-about-experience .about-trust-card h3,
	.home-about.almaza-about-experience .about-trust-card p {
		grid-column: 2;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-about.almaza-about-experience,
	.home-about.almaza-about-experience::after,
	.home-about.almaza-about-experience .about-light-layer,
	.home-about.almaza-about-experience .about-flow-line,
	.home-about.almaza-about-experience .about-content-shell,
	.home-about.almaza-about-experience .container .caption-bill,
	.home-about.almaza-about-experience .container .about-heading,
	.home-about.almaza-about-experience .container .about-desc,
	.home-about.almaza-about-experience .about-trust-card {
		animation: none;
		transition: none;
		transform: none;
	}
}

/* =============================================
   2. HERO — Subheadline

   Theme specificity to beat:
   .home-banner .row .text-wrapper p = (0,3,1)
   Our selector: (0,3,2) ✓
   ============================================= */

.home-banner .row .text-wrapper p.hero-subheadline {
	/* Theme gives font-size: 40px — reduce to readable description size */
	font-size: clamp(1rem, 2.2vw, 1.2rem);
	line-height: 1.75;
	font-weight: 400;
	animation: none;
	margin-bottom: 0.5rem;
	max-width: 480px;
	/* Keep theme color: #206DBF — inherits from .text-wrapper */
}

/* =============================================
   3. HERO — Service Areas

   Same selector approach as subheadline.
   ============================================= */

.home-banner .row .text-wrapper p.hero-service-areas {
	font-size: clamp(0.8rem, 1.6vw, 0.9rem);
	color: rgba(32, 109, 191, 0.72); /* muted version of #206DBF */
	line-height: 1.55;
	animation: none;
	margin-bottom: 1.1rem;
}

.home-banner .row .text-wrapper p.hero-service-areas .fa-map-marker-alt {
	margin-left: 4px; /* RTL: icon space */
	color: #206DBF;
}

/* =============================================
   4. HERO — CTA Button Wrapper

   .button-wrap already has display:flex in theme.
   hero-cta-wrap just extends it.
   ============================================= */

.home-banner .row .hero-cta-wrap {
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.25rem;
}

/* =============================================
   5. HERO — CTA Buttons

   Theme specificity to beat:
   .home-banner .row .button-wrap a = (0,3,1)
   Our selector: .home-banner .row .hero-cta-wrap a.hero-btn-call = (0,4,1) ✓
   ============================================= */

.home-banner .row .hero-cta-wrap a.hero-btn-call,
.home-banner .row .hero-cta-wrap a.hero-btn-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.7rem 1.6rem;
	min-height: 48px; /* WCAG touch target */
	border-radius: 50px 0 10px; /* matches theme hero button shape */
	box-shadow: 3px 6px 18px rgba(0, 0, 0, 0.22);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	color: #fff;
	animation: none; /* stop slideInUp from theme */
	transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Primary CTA — call — theme primary blue */
.home-banner .row .hero-cta-wrap a.hero-btn-call {
	background-color: #206DBF;
	border: 2px solid #206DBF;
}

.home-banner .row .hero-cta-wrap a.hero-btn-call:hover,
.home-banner .row .hero-cta-wrap a.hero-btn-call:focus {
	background-color: #034296;
	border-color: #034296;
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 3px 8px 22px rgba(3, 66, 150, 0.35);
}

/* Secondary CTA — WhatsApp — brand green */
.home-banner .row .hero-cta-wrap a.hero-btn-whatsapp {
	background-color: #25D366;
	border: 2px solid #25D366;
}

.home-banner .row .hero-cta-wrap a.hero-btn-whatsapp:hover,
.home-banner .row .hero-cta-wrap a.hero-btn-whatsapp:focus {
	background-color: #1DAA57;
	border-color: #1DAA57;
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 3px 8px 22px rgba(37, 211, 102, 0.35);
}

/* Mobile ≤ 480px: stack buttons full-width */
@media (max-width: 480px) {
	.home-banner .row .hero-cta-wrap a.hero-btn-call,
	.home-banner .row .hero-cta-wrap a.hero-btn-whatsapp {
		flex: 1 1 100%;
		font-size: 0.95rem;
		padding: 0.75rem 1rem;
	}
}

/* =============================================
   6. HEADER — nav-btns container

   Make nav-btns a flex row so two buttons sit side by side.
   ============================================= */

.mainNav .nav-btns {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* =============================================
   7. HEADER — Phone + WhatsApp Links

   The .button base adds margin-top: 22px and border that ruin the navbar.
   Fix via higher-specificity scoped selector.
   Theme .mainNav .nav-btns a = (0,2,1)
   Our .mainNav .nav-btns .header-phone-link = (0,3,0) ✓
   ============================================= */

.mainNav .nav-btns .header-phone-link,
.mainNav .nav-btns .header-whatsapp-link {
	/* Reset .button base properties that don't suit navbar */
	margin-top: 0;
	margin-bottom: 0;
	border: none;
	width: auto;
	min-width: 0;

	/* Sizing */
	padding: 7px 13px;
	font-size: 0.82rem;
	font-weight: 700;
	border-radius: 8px;
	white-space: nowrap;

	/* Layout */
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;

	/* Interaction */
	transition: opacity 0.22s ease, transform 0.18s ease;
	text-decoration: none;
	color: #fff;
}

/* Phone link — theme primary blue */
.mainNav .nav-btns .header-phone-link {
	background: #206DBF;
}

/* WhatsApp link — brand green */
.mainNav .nav-btns .header-whatsapp-link {
	background: #25D366;
}

.mainNav .nav-btns .header-phone-link:hover,
.mainNav .nav-btns .header-whatsapp-link:hover,
.mainNav .nav-btns .header-phone-link:focus,
.mainNav .nav-btns .header-whatsapp-link:focus {
	opacity: 0.87;
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

/* Hide phone number digits on screens where nav is tight */
@media (max-width: 1199px) {
	.header-phone-number {
		display: none;
	}
}

/* On mobile collapsed nav: show full-width inside collapse */
@media (max-width: 991px) {
	.mainNav .nav-btns {
		margin-top: 0.5rem;
		padding: 0.4rem 0;
		width: 100%;
	}

	.mainNav .nav-btns .header-phone-link,
	.mainNav .nav-btns .header-whatsapp-link {
		flex: 1;
		justify-content: center;
		font-size: 0.9rem;
		padding: 10px;
	}
}

/* =============================================
   8. FLOATING WHATSAPP BUTTON
   ============================================= */

.almaza-floating-whatsapp {
	position: fixed;
	bottom: 74px; /* above sticky bar on mobile, comfortable on desktop */
	left: 18px;   /* RTL layout: left side = visual right */
	z-index: 9990;
	width: 50px;
	height: 50px;
	background-color: #25D366;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.55rem;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.38);
	text-decoration: none;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.almaza-floating-whatsapp:hover,
.almaza-floating-whatsapp:focus {
	transform: scale(1.1);
	box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
	color: #fff;
	text-decoration: none;
}

.almaza-floating-whatsapp:focus-visible {
	outline: 3px solid #034296;
	outline-offset: 3px;
}

/* Desktop: lower position (no sticky bar) */
@media (min-width: 769px) {
	.almaza-floating-whatsapp {
		bottom: 28px;
		width: 54px;
		height: 54px;
		font-size: 1.7rem;
	}
}

/* =============================================
   9. STICKY MOBILE BOTTOM CTA BAR
   ============================================= */

.almaza-mobile-cta-bar {
	display: none; /* default: hidden on all screens */
}

@media (max-width: 768px) {
	.almaza-mobile-cta-bar {
		display: flex;
		position: fixed;
		bottom: 0;
		right: 0;
		left: 0;
		z-index: 9999;
		height: 52px;
		/* iPhone X safe area inset */
		padding-bottom: env(safe-area-inset-bottom, 0);
		box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.14);
	}

	.almaza-mobile-cta-call,
	.almaza-mobile-cta-whatsapp {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.35rem;
		font-size: 0.92rem;
		font-weight: 700;
		color: #fff;
		text-decoration: none;
		height: 100%;
		letter-spacing: 0.01em;
		transition: opacity 0.2s ease;
	}

	.almaza-mobile-cta-call {
		background-color: #206DBF; /* theme primary — not arbitrary red */
	}

	.almaza-mobile-cta-whatsapp {
		background-color: #25D366;
	}

	.almaza-mobile-cta-call:hover,
	.almaza-mobile-cta-whatsapp:hover,
	.almaza-mobile-cta-call:focus,
	.almaza-mobile-cta-whatsapp:focus {
		color: #fff;
		opacity: 0.91;
		text-decoration: none;
	}

	/* Prevent sticky bar from overlapping last page content */
	body {
		padding-bottom: calc(52px + env(safe-area-inset-bottom, 0px));
	}
}

/* Force hidden on desktop (belt-and-suspenders) */
@media (min-width: 769px) {
	.almaza-mobile-cta-bar {
		display: none;
	}
}

/* =============================================
   10. TRUST BADGES

   Scoped to .company-numbers to match section context.
   Mirrors theme .counter card style:
     box-shadow: 5px 4px 0 #206DBF, -5px -4px 0 #206DBF
     border-radius: 1.5rem
   ============================================= */

.company-numbers .trust-badges-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	justify-content: center;
	padding-block: 30px;
	width: 100%;
}

.company-numbers .trust-badge {
	flex: 1 1 155px;
	max-width: 205px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1rem 0.75rem;
	border-radius: 1.5rem; /* matches .counter border-radius from theme */
	box-shadow: 5px 4px 0 #206DBF, -5px -4px 0 #206DBF; /* matches theme counter shadow */
	background: #fff;
	gap: 0.35rem;
}

.company-numbers .trust-badge i {
	font-size: 1.5rem;
	color: #206DBF; /* theme primary */
	margin-bottom: 0.2rem;
}

.company-numbers .trust-badge-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: #034296; /* dark blue heading — matches theme H1 color */
	line-height: 1.3;
	margin-bottom: 0.15rem;
}

.company-numbers .trust-badge-desc {
	font-size: 0.76rem;
	color: #206DBF; /* matches .counter-desc from theme */
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 0;
}

/* Mobile: allow 2 per row comfortably */
@media (max-width: 600px) {
	.company-numbers .trust-badge {
		flex: 1 1 140px;
		max-width: 170px;
		padding: 0.75rem 0.5rem;
		border-radius: 1.2rem;
	}

	.company-numbers .trust-badge-title {
		font-size: 0.82rem;
	}

	.company-numbers .trust-badge i {
		font-size: 1.3rem;
	}
}

/* Very small: 2 columns minimum */
@media (max-width: 360px) {
	.company-numbers .trust-badge {
		flex: 1 1 120px;
		max-width: 140px;
	}
}


/* ==========================================================================
   TRUST PROOF SECTION v1.0 — Premium Confidence Dashboard
   Scoped to .almaza-trust-proof only.
   ========================================================================== */

.company-numbers.almaza-trust-proof {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(4.2rem, 7vw, 6.5rem) 0;
	background:
		radial-gradient(circle at 15% 18%, rgba(32, 109, 191, 0.12), transparent 32%),
		radial-gradient(circle at 85% 72%, rgba(37, 211, 102, 0.10), transparent 30%),
		linear-gradient(180deg, #ffffff 0%, #f4f9ff 52%, #ffffff 100%);
}

.company-numbers.almaza-trust-proof .trust-proof-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	overflow: hidden;
}

.company-numbers.almaza-trust-proof .trust-proof-bg::before {
	content: "";
	position: absolute;
	inset: 8% 6%;
	background:
		linear-gradient(90deg, rgba(32, 109, 191, 0.08) 1px, transparent 1px),
		linear-gradient(0deg, rgba(32, 109, 191, 0.06) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
	opacity: 0.55;
	animation: trustProofGrid 20s ease-in-out infinite alternate;
}

.company-numbers.almaza-trust-proof .trust-proof-path,
.company-numbers.almaza-trust-proof .trust-proof-glow {
	position: absolute;
	display: block;
	pointer-events: none;
}

.company-numbers.almaza-trust-proof .trust-proof-path {
	height: 2px;
	width: min(620px, 64vw);
	background: linear-gradient(90deg, transparent, rgba(32, 109, 191, 0.32), rgba(37, 211, 102, 0.22), transparent);
	opacity: 0.42;
	animation: trustProofPath 12s ease-in-out infinite;
}

.company-numbers.almaza-trust-proof .trust-proof-path-one {
	--trust-path-rotate: -10deg;
	top: 22%;
	right: -9%;
	transform: rotate(-10deg);
}

.company-numbers.almaza-trust-proof .trust-proof-path-two {
	--trust-path-rotate: 9deg;
	bottom: 18%;
	left: -12%;
	transform: rotate(9deg);
	animation-delay: 2.2s;
}

.company-numbers.almaza-trust-proof .trust-proof-glow {
	width: min(420px, 60vw);
	height: min(420px, 60vw);
	border-radius: 50%;
	filter: blur(34px);
	opacity: 0.24;
	animation: trustProofGlow 14s ease-in-out infinite alternate;
}

.company-numbers.almaza-trust-proof .trust-proof-glow-one {
	right: -10%;
	top: -14%;
	background: #206DBF;
}

.company-numbers.almaza-trust-proof .trust-proof-glow-two {
	left: -12%;
	bottom: -16%;
	background: #25D366;
	animation-delay: 1.5s;
	animation-direction: alternate-reverse;
}

.company-numbers.almaza-trust-proof .container {
	position: relative;
	z-index: 1;
	min-height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.company-numbers.almaza-trust-proof .trust-proof-header {
	width: min(780px, 100%);
	margin: 0 auto;
	text-align: center;
	animation: trustProofItemIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.company-numbers.almaza-trust-proof .trust-proof-kicker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.9rem;
	padding: 0.45rem 1rem;
	border: 1px solid rgba(32, 109, 191, 0.26);
	border-radius: 50px;
	background: rgba(32, 109, 191, 0.07);
	color: #206DBF;
	font-family: "Rakkas", serif;
	font-size: 1rem;
	line-height: 1.2;
	box-shadow: 0 10px 28px rgba(32, 109, 191, 0.10);
}

.company-numbers.almaza-trust-proof .container h2.section-heading {
	padding: 0;
	margin: 0 0 0.85rem;
	font-family: "Rakkas", serif;
	font-size: clamp(1.8rem, 4vw, 3rem);
	line-height: 1.28;
	letter-spacing: 0;
	color: #034296;
}

.company-numbers.almaza-trust-proof .container .section-description {
	width: min(680px, 100%);
	padding: 0;
	margin: 0 auto 1.15rem;
	color: rgba(32, 109, 191, 0.82);
	font-size: clamp(0.98rem, 1.6vw, 1.08rem);
	font-weight: 500;
	line-height: 1.9;
}

.company-numbers.almaza-trust-proof .container .section-description p {
	margin: 0;
}

.company-numbers.almaza-trust-proof .container > .trust-proof-header > a.trust-proof-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	width: auto;
	min-height: 48px;
	padding: 0.72rem 1.55rem;
	border: 0;
	border-radius: 50px 0 10px;
	background: #206DBF;
	color: #fff;
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1.3;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(32, 109, 191, 0.28);
	transition: background-color 0.25s ease, transform 0.22s ease, box-shadow 0.25s ease;
}

.company-numbers.almaza-trust-proof .container > .trust-proof-header > a.trust-proof-cta:hover,
.company-numbers.almaza-trust-proof .container > .trust-proof-header > a.trust-proof-cta:focus {
	background: #034296;
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(3, 66, 150, 0.34);
}

.company-numbers.almaza-trust-proof .trust-badges-wrapper {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1rem;
	width: 100%;
	padding-block: clamp(2rem, 4vw, 3rem) 0;
}

.company-numbers.almaza-trust-proof .trust-badge {
	position: relative;
	max-width: none;
	min-height: 210px;
	padding: 1.35rem 1rem 1.2rem;
	border: 1px solid rgba(32, 109, 191, 0.16);
	border-radius: 1.35rem;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 5px 4px 0 rgba(32, 109, 191, 0.92), -5px -4px 0 rgba(32, 109, 191, 0.58), 0 18px 44px rgba(3, 66, 150, 0.10);
	overflow: hidden;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
	animation: trustProofItemIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.company-numbers.almaza-trust-proof .trust-badge:nth-child(1) { animation-delay: 0.12s; }
.company-numbers.almaza-trust-proof .trust-badge:nth-child(2) { animation-delay: 0.20s; }
.company-numbers.almaza-trust-proof .trust-badge:nth-child(3) { animation-delay: 0.28s; }
.company-numbers.almaza-trust-proof .trust-badge:nth-child(4) { animation-delay: 0.36s; }
.company-numbers.almaza-trust-proof .trust-badge:nth-child(5) { animation-delay: 0.44s; }

.company-numbers.almaza-trust-proof .trust-badge::before {
	content: attr(data-proof);
	position: absolute;
	top: 0.8rem;
	left: 0.9rem;
	font-size: 2.45rem;
	font-weight: 900;
	line-height: 1;
	color: rgba(32, 109, 191, 0.08);
}

.company-numbers.almaza-trust-proof .trust-badge::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(32, 109, 191, 0.12), transparent 58%);
	opacity: 0;
	transition: opacity 0.28s ease;
}

.company-numbers.almaza-trust-proof .trust-badge:hover {
	border-color: rgba(32, 109, 191, 0.32);
	box-shadow: 6px 5px 0 rgba(32, 109, 191, 0.95), -6px -5px 0 rgba(37, 211, 102, 0.18), 0 24px 58px rgba(3, 66, 150, 0.16);
	transform: translateY(-6px);
}

.company-numbers.almaza-trust-proof .trust-badge:hover::after {
	opacity: 1;
}

.company-numbers.almaza-trust-proof .trust-badge i {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 0.85rem;
	border-radius: 50%;
	background: #206DBF;
	color: #fff;
	font-size: 1.1rem;
	box-shadow: 0 12px 28px rgba(32, 109, 191, 0.28);
	transition: background-color 0.28s ease, transform 0.28s ease;
}

.company-numbers.almaza-trust-proof .trust-badge:hover i {
	background: #034296;
	transform: translateY(-2px) scale(1.04);
}

.company-numbers.almaza-trust-proof .trust-badge-title,
.company-numbers.almaza-trust-proof .trust-badge-desc {
	position: relative;
	z-index: 1;
}

.company-numbers.almaza-trust-proof .trust-badge-title {
	margin-bottom: 0.45rem;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.45;
	color: #034296;
}

.company-numbers.almaza-trust-proof .trust-badge-desc {
	font-size: 0.82rem;
	font-weight: 500;
	line-height: 1.75;
	color: rgba(32, 109, 191, 0.80);
}

@keyframes trustProofGrid {
	0% { background-position: 0 0, 0 0; }
	100% { background-position: 36px 26px, -24px 32px; }
}

@keyframes trustProofPath {
	0%, 100% { opacity: 0.22; transform: translate3d(0, 0, 0) rotate(var(--trust-path-rotate)); }
	50% { opacity: 0.48; transform: translate3d(22px, -10px, 0) rotate(var(--trust-path-rotate)); }
}

@keyframes trustProofGlow {
	0% { transform: translate3d(0, 0, 0) scale(1); }
	100% { transform: translate3d(18px, -14px, 0) scale(1.06); }
}

@keyframes trustProofItemIn {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1199px) {
	.company-numbers.almaza-trust-proof .trust-badges-wrapper {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.company-numbers.almaza-trust-proof {
		padding: 4rem 0;
	}

	.company-numbers.almaza-trust-proof .trust-badges-wrapper {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.85rem;
	}

	.company-numbers.almaza-trust-proof .trust-badge {
		min-height: 185px;
		padding: 1.1rem 0.8rem;
	}

	.company-numbers.almaza-trust-proof .trust-proof-path {
		display: none;
	}
}

@media (max-width: 480px) {
	.company-numbers.almaza-trust-proof .trust-badges-wrapper {
		grid-template-columns: 1fr;
	}

	.company-numbers.almaza-trust-proof .trust-badge {
		min-height: auto;
		display: grid;
		grid-template-columns: 48px 1fr;
		column-gap: 0.8rem;
		align-items: center;
		text-align: right;
	}

	.company-numbers.almaza-trust-proof .trust-badge i {
		grid-row: 1 / 3;
		margin-bottom: 0;
	}

	.company-numbers.almaza-trust-proof .trust-badge-title,
	.company-numbers.almaza-trust-proof .trust-badge-desc {
		grid-column: 2;
	}

	.company-numbers.almaza-trust-proof .container > .trust-proof-header > a.trust-proof-cta {
		width: 100%;
		max-width: 310px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.company-numbers.almaza-trust-proof .trust-proof-bg::before,
	.company-numbers.almaza-trust-proof .trust-proof-path,
	.company-numbers.almaza-trust-proof .trust-proof-glow,
	.company-numbers.almaza-trust-proof .trust-proof-header,
	.company-numbers.almaza-trust-proof .trust-badge {
		animation: none;
		transition: none;
		transform: none;
	}
}


/* ==========================================================================
   LIFT SHOWCASE v1.0 — Premium Equipment + Safe Handling Section
   Scoped to .almaza-lift-showcase only.
   ========================================================================== */

.arriveWorker.almaza-lift-showcase {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(4.2rem, 7vw, 6.5rem) 0;
	background:
		radial-gradient(circle at 78% 18%, rgba(32, 109, 191, 0.14), transparent 30%),
		radial-gradient(circle at 16% 80%, rgba(37, 211, 102, 0.10), transparent 26%),
		linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eef7ff 100%);
}

.arriveWorker.almaza-lift-showcase .lift-showcase-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	overflow: hidden;
}

.arriveWorker.almaza-lift-showcase .lift-showcase-bg::before {
	content: "";
	position: absolute;
	inset: 10% 7%;
	background:
		linear-gradient(90deg, rgba(32, 109, 191, 0.07) 1px, transparent 1px),
		linear-gradient(0deg, rgba(32, 109, 191, 0.05) 1px, transparent 1px);
	background-size: 74px 74px;
	mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
	opacity: 0.55;
	animation: liftBlueprintDrift 20s ease-in-out infinite alternate;
}

.arriveWorker.almaza-lift-showcase .lift-vertical-path {
	position: absolute;
	top: 10%;
	right: 10%;
	width: 2px;
	height: 78%;
	background: linear-gradient(180deg, transparent, rgba(32, 109, 191, 0.40), rgba(37, 211, 102, 0.24), transparent);
	opacity: 0.48;
	animation: liftPathPulse 5.5s ease-in-out infinite;
}

.arriveWorker.almaza-lift-showcase .lift-vertical-path::before,
.arriveWorker.almaza-lift-showcase .lift-vertical-path::after {
	content: "";
	position: absolute;
	right: 50%;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #206DBF;
	transform: translateX(50%);
	box-shadow: 0 0 0 8px rgba(32, 109, 191, 0.08);
}

.arriveWorker.almaza-lift-showcase .lift-vertical-path::before {
	top: 14%;
}

.arriveWorker.almaza-lift-showcase .lift-vertical-path::after {
	bottom: 14%;
	background: #25D366;
	box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.10);
}

.arriveWorker.almaza-lift-showcase .lift-soft-glow {
	position: absolute;
	display: block;
	width: min(460px, 58vw);
	height: min(460px, 58vw);
	border-radius: 50%;
	filter: blur(36px);
	opacity: 0.20;
	animation: liftGlowFloat 15s ease-in-out infinite alternate;
}

.arriveWorker.almaza-lift-showcase .lift-soft-glow-one {
	left: -12%;
	top: -14%;
	background: #206DBF;
}

.arriveWorker.almaza-lift-showcase .lift-soft-glow-two {
	right: -14%;
	bottom: -16%;
	background: #25D366;
	animation-delay: 1.4s;
	animation-direction: alternate-reverse;
}

.arriveWorker.almaza-lift-showcase .arriveWorkerInfo {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.35fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	direction: ltr;
}

.arriveWorker.almaza-lift-showcase .arriveWorkerInfo:nth-child(odd) {
	flex-direction: unset;
}

.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .image,
.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .info {
	width: auto;
}

.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .image {
	direction: rtl;
	animation: liftItemIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.arriveWorker.almaza-lift-showcase .lift-video-frame {
	position: relative;
	border-radius: 76px 8px 76px;
	padding: 0.55rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 255, 0.88));
	box-shadow:
		5px 4px 0 rgba(32, 109, 191, 0.90),
		-5px -4px 0 rgba(32, 109, 191, 0.48),
		0 24px 70px rgba(3, 66, 150, 0.18);
	animation: liftFrameFloat 6.5s ease-in-out infinite;
}

.arriveWorker.almaza-lift-showcase .lift-video-frame::before {
	content: "";
	position: absolute;
	inset: -12px;
	border: 1px solid rgba(32, 109, 191, 0.22);
	border-radius: 88px 14px 88px;
	z-index: -1;
	transform: translate(10px, 10px);
}

.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .image video {
	display: block;
	width: 100%;
	height: clamp(300px, 36vw, 430px);
	border: 1px solid rgba(3, 66, 150, 0.35);
	border-radius: 70px 4px 70px;
	object-fit: cover;
	position: relative;
	z-index: 2;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.20);
}

.arriveWorker.almaza-lift-showcase .lift-video-badge {
	position: absolute;
	right: 1.25rem;
	top: 1.25rem;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 0.42rem;
	padding: 0.45rem 0.85rem;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.90);
	color: #206DBF;
	font-size: 0.82rem;
	font-weight: 800;
	box-shadow: 0 12px 28px rgba(3, 66, 150, 0.18);
	backdrop-filter: blur(8px);
	animation: liftBadgePulse 3.8s ease-in-out infinite;
}

.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .info {
	direction: rtl;
	padding: clamp(1.5rem, 3vw, 2.6rem);
	border: 1px solid rgba(32, 109, 191, 0.18);
	border-radius: 1.5rem;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 22px 64px rgba(3, 66, 150, 0.12);
	backdrop-filter: blur(8px);
	animation: liftItemIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}

.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .info::before,
.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .info::after {
	display: none;
}

.arriveWorker.almaza-lift-showcase .lift-kicker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.85rem;
	padding: 0.42rem 0.95rem;
	border: 1px solid rgba(32, 109, 191, 0.24);
	border-radius: 50px;
	background: rgba(32, 109, 191, 0.07);
	color: #206DBF;
	font-family: "Rakkas", serif;
	font-size: 1rem;
	line-height: 1.2;
}

.arriveWorker.almaza-lift-showcase .lift-heading {
	margin: 0 0 0.9rem;
	color: #034296;
	font-family: "Rakkas", serif;
	font-size: clamp(1.65rem, 3.5vw, 2.75rem);
	line-height: 1.32;
	letter-spacing: 0;
}

.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .info p {
	margin: 0 0 1.25rem;
	color: rgba(3, 66, 150, 0.78);
	font-size: clamp(0.96rem, 1.55vw, 1.08rem);
	font-weight: 500;
	line-height: 1.9;
}

.arriveWorker.almaza-lift-showcase .lift-feature-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-bottom: 1.3rem;
}

.arriveWorker.almaza-lift-showcase .lift-feature-row span {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.48rem 0.75rem;
	border: 1px solid rgba(32, 109, 191, 0.16);
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.78);
	color: #206DBF;
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1.3;
	box-shadow: 0 8px 20px rgba(3, 66, 150, 0.07);
	animation: liftItemIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.arriveWorker.almaza-lift-showcase .lift-feature-row span:nth-child(1) { animation-delay: 0.22s; }
.arriveWorker.almaza-lift-showcase .lift-feature-row span:nth-child(2) { animation-delay: 0.30s; }
.arriveWorker.almaza-lift-showcase .lift-feature-row span:nth-child(3) { animation-delay: 0.38s; }

.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .info a.lift-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-height: 50px;
	padding: 0.72rem 1.5rem;
	border-radius: 50px 0 10px;
	background: #206DBF;
	color: #fff;
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1.3;
	text-decoration: none;
	box-shadow: 0 14px 32px rgba(32, 109, 191, 0.28);
	animation: none;
	transition: background-color 0.25s ease, transform 0.22s ease, box-shadow 0.25s ease;
}

.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .info a.lift-cta:hover,
.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .info a.lift-cta:focus {
	background: #034296;
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 18px 38px rgba(3, 66, 150, 0.34);
}

@keyframes liftBlueprintDrift {
	0% { background-position: 0 0, 0 0; }
	100% { background-position: 38px 28px, -26px 34px; }
}

@keyframes liftPathPulse {
	0%, 100% { opacity: 0.25; transform: translateY(0); }
	50% { opacity: 0.55; transform: translateY(-14px); }
}

@keyframes liftGlowFloat {
	0% { transform: translate3d(0, 0, 0) scale(1); }
	100% { transform: translate3d(18px, -18px, 0) scale(1.05); }
}

@keyframes liftFrameFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-7px); }
}

@keyframes liftBadgePulse {
	0%, 100% { box-shadow: 0 12px 28px rgba(3, 66, 150, 0.18); }
	50% { box-shadow: 0 14px 34px rgba(32, 109, 191, 0.30); }
}

@keyframes liftItemIn {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
	.arriveWorker.almaza-lift-showcase .arriveWorkerInfo {
		grid-template-columns: 1fr;
	}

	.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .image,
	.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .info {
		width: 100%;
		margin: 0;
	}

	.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .image video {
		height: clamp(260px, 48vw, 380px);
	}
}

@media (max-width: 768px) {
	.arriveWorker.almaza-lift-showcase {
		padding: 4rem 0;
	}

	.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .info {
		width: 100%;
		margin-bottom: 0;
		text-align: center;
	}

	.arriveWorker.almaza-lift-showcase .lift-feature-row {
		justify-content: center;
	}

	.arriveWorker.almaza-lift-showcase .lift-vertical-path {
		display: none;
	}
}

@media (max-width: 480px) {
	.arriveWorker.almaza-lift-showcase .lift-video-frame {
		border-radius: 48px 8px 48px;
	}

	.arriveWorker.almaza-lift-showcase .lift-video-frame::before {
		border-radius: 58px 12px 58px;
		transform: translate(6px, 6px);
	}

	.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .image video {
		height: 250px;
		border-radius: 44px 4px 44px;
	}

	.arriveWorker.almaza-lift-showcase .lift-video-badge {
		right: 0.9rem;
		top: 0.9rem;
		font-size: 0.76rem;
	}

	.arriveWorker.almaza-lift-showcase .lift-feature-row span {
		flex: 1 1 100%;
		justify-content: center;
	}

	.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .info a.lift-cta {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.arriveWorker.almaza-lift-showcase .lift-showcase-bg::before,
	.arriveWorker.almaza-lift-showcase .lift-vertical-path,
	.arriveWorker.almaza-lift-showcase .lift-soft-glow,
	.arriveWorker.almaza-lift-showcase .lift-video-frame,
	.arriveWorker.almaza-lift-showcase .lift-video-badge,
	.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .image,
	.arriveWorker.almaza-lift-showcase .arriveWorkerInfo .info,
	.arriveWorker.almaza-lift-showcase .lift-feature-row span {
		animation: none;
		transition: none;
		transform: none;
	}
}


/* ==========================================================================
   SERVICES SECTION v1.0 — Premium Interactive Services Showcase
   Scoped to the existing .home-services Swiper section only.
   ========================================================================== */

.home-services.almaza-services-section {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: clamp(1.5rem, 3vw, 2.4rem);
	min-height: auto;
	padding: clamp(4rem, 7vw, 6.5rem) 0 clamp(4.2rem, 7vw, 6rem);
	background:
		radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 28%),
		radial-gradient(circle at 86% 74%, rgba(37, 211, 102, 0.16), transparent 26%),
		linear-gradient(135deg, rgba(32, 109, 191, 0.92), rgba(3, 66, 150, 0.88));
	font-family: "Cairo", sans-serif;
	color: #fff;
}

.home-services.almaza-services-section .services-showcase-bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	overflow: hidden;
}

.home-services.almaza-services-section .services-showcase-bg::before {
	content: "";
	position: absolute;
	inset: 8% 6%;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 82px 82px;
	mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 74%);
	opacity: 0.42;
	animation: servicesGridDrift 22s ease-in-out infinite alternate;
}

.home-services.almaza-services-section .services-bg-line,
.home-services.almaza-services-section .services-bg-glow {
	position: absolute;
	display: block;
	pointer-events: none;
}

.home-services.almaza-services-section .services-bg-line {
	width: min(720px, 70vw);
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.54), rgba(37, 211, 102, 0.26), transparent);
	opacity: 0.35;
	animation: servicesLineFloat 12s ease-in-out infinite;
}

.home-services.almaza-services-section .services-bg-line-one {
	top: 20%;
	right: -12%;
	--services-line-rotate: -13deg;
	transform: rotate(var(--services-line-rotate));
}

.home-services.almaza-services-section .services-bg-line-two {
	bottom: 20%;
	left: -14%;
	--services-line-rotate: 12deg;
	transform: rotate(var(--services-line-rotate));
	animation-delay: 1.7s;
}

.home-services.almaza-services-section .services-bg-glow {
	width: min(520px, 64vw);
	height: min(520px, 64vw);
	border-radius: 50%;
	filter: blur(42px);
	opacity: 0.24;
	animation: servicesGlowFloat 16s ease-in-out infinite alternate;
}

.home-services.almaza-services-section .services-bg-glow-one {
	right: -16%;
	top: -18%;
	background: #ffffff;
}

.home-services.almaza-services-section .services-bg-glow-two {
	left: -18%;
	bottom: -20%;
	background: #25D366;
	animation-delay: 1.5s;
	animation-direction: alternate-reverse;
}

.home-services.almaza-services-section .services-section-header {
	position: relative;
	z-index: 2;
	width: min(820px, calc(100% - 2rem));
	margin: 0 auto;
	text-align: center;
	animation: servicesItemIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-services.almaza-services-section .services-kicker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.8rem;
	padding: 0.45rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	color: #fff;
	font-family: "Rakkas", serif;
	font-size: 1rem;
	line-height: 1.2;
	box-shadow: 0 12px 30px rgba(3, 66, 150, 0.18);
}

.home-services.almaza-services-section .services-section-header h2 {
	margin: 0 0 0.85rem;
	font-family: "Rakkas", serif;
	font-size: clamp(1.85rem, 4.2vw, 3.15rem);
	line-height: 1.3;
	letter-spacing: 0;
	color: #fff;
}

.home-services.almaza-services-section .services-section-header p {
	width: min(680px, 100%);
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(0.96rem, 1.65vw, 1.08rem);
	font-weight: 500;
	line-height: 1.85;
}

.home-services.almaza-services-section .services-swiper {
	position: relative;
	z-index: 2;
	width: min(1120px, calc(100% - 2rem));
	min-height: 560px;
	border-radius: 1.5rem;
	background: rgba(255, 255, 255, 0.10);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 28px 80px rgba(3, 66, 150, 0.26);
	backdrop-filter: blur(10px);
	overflow: hidden;
}

.home-services.almaza-services-section .services-swiper::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 42%, rgba(37, 211, 102, 0.08));
	pointer-events: none;
	z-index: 1;
}

.home-services.almaza-services-section .services-slide {
	position: relative;
	display: grid;
	grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.15fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	min-height: 560px;
	padding: clamp(2rem, 5vw, 4rem);
	direction: rtl;
	overflow: hidden;
}

.home-services.almaza-services-section .services-slide::before {
	content: attr(data-service);
	position: absolute;
	top: clamp(1rem, 3vw, 2rem);
	left: clamp(1rem, 3vw, 2rem);
	font-size: clamp(3rem, 8vw, 6.5rem);
	font-weight: 900;
	line-height: 1;
	color: rgba(255, 255, 255, 0.08);
	pointer-events: none;
}

.home-services.almaza-services-section .content {
	position: relative;
	z-index: 2;
	padding: clamp(1.35rem, 3vw, 2.2rem);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 1.35rem;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 5px 4px 0 rgba(255, 255, 255, 0.45), -5px -4px 0 rgba(37, 211, 102, 0.14), 0 18px 52px rgba(3, 66, 150, 0.18);
	backdrop-filter: blur(10px);
	direction: rtl;
	text-align: right;
	transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.home-services.almaza-services-section .swiper-slide-active .content:hover,
.home-services.almaza-services-section .swiper-slide-active .content:focus-within {
	border-color: rgba(32, 109, 191, 0.28);
	box-shadow: 6px 5px 0 rgba(255, 255, 255, 0.62), -6px -5px 0 rgba(37, 211, 102, 0.20), 0 24px 68px rgba(3, 66, 150, 0.22);
	transform: translateY(-5px);
}

.home-services.almaza-services-section .service-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-bottom: 0.85rem;
	padding: 0.42rem 0.78rem;
	border-radius: 50px;
	background: rgba(32, 109, 191, 0.08);
	border: 1px solid rgba(32, 109, 191, 0.18);
	color: #206DBF;
	font-size: 0.8rem;
	font-weight: 800;
	line-height: 1.25;
}

.home-services.almaza-services-section .content h2 {
	margin: 0 0 0.8rem;
	font-family: "Rakkas", serif;
	font-size: clamp(1.55rem, 3.2vw, 2.45rem);
	line-height: 1.35;
	letter-spacing: 0;
	color: #034296;
}

.home-services.almaza-services-section .content p {
	margin: 0 0 1.2rem;
	font-family: "Cairo", sans-serif;
	font-size: clamp(0.9rem, 1.35vw, 1rem);
	font-weight: 500;
	line-height: 1.85;
	color: rgba(3, 66, 150, 0.78);
	text-align: right;
	pointer-events: auto;
}

.home-services.almaza-services-section .service-card-cta {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.68rem 1.35rem;
	border-radius: 50px 0 10px;
	background: #206DBF;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1.25;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(32, 109, 191, 0.26);
	transition: background-color 0.25s ease, transform 0.22s ease, box-shadow 0.25s ease;
}

.home-services.almaza-services-section .service-card-cta::before,
.home-services.almaza-services-section .service-card-cta::after {
	display: none;
}

.home-services.almaza-services-section .service-card-cta:hover,
.home-services.almaza-services-section .service-card-cta:focus {
	background: #034296;
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(3, 66, 150, 0.32);
}

.home-services.almaza-services-section .service-card-cta:focus-visible,
.home-services.almaza-services-section .services-mini-call:focus-visible,
.home-services.almaza-services-section .services-mini-whatsapp:focus-visible,
.home-services.almaza-services-section .services-nav .btn:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.88);
	outline-offset: 3px;
}

.home-services.almaza-services-section .image-container {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-services.almaza-services-section .service-image-frame {
	position: relative;
	width: min(430px, 100%);
	aspect-ratio: 1 / 0.86;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(1rem, 2vw, 1.5rem);
	border-radius: 1.5rem;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 5px 4px 0 rgba(255, 255, 255, 0.48), -5px -4px 0 rgba(37, 211, 102, 0.16), 0 24px 60px rgba(3, 66, 150, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.36);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-services.almaza-services-section .service-image-frame::before {
	content: "";
	position: absolute;
	inset: 12px;
	border-radius: 1.1rem;
	border: 1px solid rgba(32, 109, 191, 0.14);
	pointer-events: none;
}

.home-services.almaza-services-section .swiper-slide-active .service-image-frame:hover {
	box-shadow: 6px 5px 0 rgba(255, 255, 255, 0.62), -6px -5px 0 rgba(37, 211, 102, 0.20), 0 30px 72px rgba(3, 66, 150, 0.28);
	transform: translateY(-6px) rotate(-1deg);
}

.home-services.almaza-services-section .item {
	position: relative;
	z-index: 1;
	max-width: 100%;
	max-height: 320px;
	object-fit: contain;
	filter: drop-shadow(0 18px 26px rgba(3, 66, 150, 0.18));
}

.home-services.almaza-services-section .services-nav {
	position: absolute;
	right: clamp(1rem, 3vw, 2rem);
	bottom: clamp(1rem, 3vw, 2rem);
	z-index: 4;
	display: flex;
	align-items: center;
	width: auto;
	min-width: 104px;
	gap: 0.75rem;
}

.home-services.almaza-services-section .services-nav .btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 46px;
	width: 46px;
	max-width: none;
	height: 46px;
	padding: 0;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.90);
	color: #206DBF;
	box-shadow: 0 12px 28px rgba(3, 66, 150, 0.18);
	transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.home-services.almaza-services-section .services-nav .btn::before,
.home-services.almaza-services-section .services-nav .btn::after {
	display: none;
}

.home-services.almaza-services-section .services-nav .btn:hover,
.home-services.almaza-services-section .services-nav .btn:focus {
	background: #206DBF;
	color: #fff;
	transform: translateY(-2px);
}

.home-services.almaza-services-section .services-consultation-cta {
	position: relative;
	z-index: 2;
	width: min(900px, calc(100% - 2rem));
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.15rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 1.2rem;
	background: rgba(255, 255, 255, 0.13);
	backdrop-filter: blur(8px);
	box-shadow: 0 18px 44px rgba(3, 66, 150, 0.18);
}

.home-services.almaza-services-section .services-consultation-cta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.90);
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.7;
}

.home-services.almaza-services-section .services-consultation-actions {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-shrink: 0;
}

.home-services.almaza-services-section .services-mini-call,
.home-services.almaza-services-section .services-mini-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	min-height: 42px;
	padding: 0.62rem 1rem;
	border-radius: 50px;
	color: #fff;
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition: transform 0.22s ease, opacity 0.22s ease;
}

.home-services.almaza-services-section .services-mini-call {
	background: #206DBF;
}

.home-services.almaza-services-section .services-mini-whatsapp {
	background: #25D366;
}

.home-services.almaza-services-section .services-mini-call:hover,
.home-services.almaza-services-section .services-mini-whatsapp:hover,
.home-services.almaza-services-section .services-mini-call:focus,
.home-services.almaza-services-section .services-mini-whatsapp:focus {
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
	opacity: 0.92;
}

.home-services.almaza-services-section #particles-js {
	opacity: 0.22;
	z-index: -1;
}

@keyframes servicesGridDrift {
	0% { background-position: 0 0, 0 0; }
	100% { background-position: 40px 30px, -28px 34px; }
}

@keyframes servicesLineFloat {
	0%, 100% { opacity: 0.22; transform: translate3d(0, 0, 0) rotate(var(--services-line-rotate)); }
	50% { opacity: 0.48; transform: translate3d(26px, -12px, 0) rotate(var(--services-line-rotate)); }
}

@keyframes servicesGlowFloat {
	0% { transform: translate3d(0, 0, 0) scale(1); }
	100% { transform: translate3d(20px, -18px, 0) scale(1.05); }
}

@keyframes servicesItemIn {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
	.home-services.almaza-services-section .services-swiper {
		min-height: auto;
	}

	.home-services.almaza-services-section .services-slide {
		grid-template-columns: 1fr;
		min-height: auto;
		padding: 2rem 1.5rem 5.5rem;
	}

	.home-services.almaza-services-section .image-container {
		order: -1;
	}

	.home-services.almaza-services-section .service-image-frame {
		width: min(360px, 100%);
	}

	.home-services.almaza-services-section .item {
		max-height: 250px;
	}

	.home-services.almaza-services-section .services-consultation-cta {
		align-items: stretch;
		flex-direction: column;
		text-align: center;
	}

	.home-services.almaza-services-section .services-consultation-actions {
		justify-content: center;
		flex-wrap: wrap;
	}
}

@media (max-width: 710px) {
	.home-services.almaza-services-section .services-slide {
		grid-template-rows: auto;
		grid-template-areas: none;
		gap: 1.25rem;
		padding: 1.25rem 1rem 5rem;
	}

	.home-services.almaza-services-section .content {
		grid-area: auto;
		padding: 1.1rem;
		text-align: center;
	}

	.home-services.almaza-services-section .content p {
		text-align: center;
	}

	.home-services.almaza-services-section .image-container {
		grid-area: auto;
	}

	.home-services.almaza-services-section .services-nav {
		right: 50%;
		bottom: 1rem;
		transform: translateX(50%);
	}
}

@media (max-width: 480px) {
	.home-services.almaza-services-section {
		padding: 3.4rem 0 4rem;
	}

	.home-services.almaza-services-section .services-section-header,
	.home-services.almaza-services-section .services-swiper,
	.home-services.almaza-services-section .services-consultation-cta {
		width: calc(100% - 1rem);
	}

	.home-services.almaza-services-section .services-section-header h2 {
		font-size: clamp(1.55rem, 8vw, 2.1rem);
	}

	.home-services.almaza-services-section .content h2 {
		font-size: clamp(1.35rem, 7vw, 1.8rem);
	}

	.home-services.almaza-services-section .service-image-frame {
		aspect-ratio: 1 / 0.78;
		padding: 0.8rem;
	}

	.home-services.almaza-services-section .item {
		max-height: 190px;
	}

	.home-services.almaza-services-section .services-consultation-actions,
	.home-services.almaza-services-section .services-mini-call,
	.home-services.almaza-services-section .services-mini-whatsapp {
		width: 100%;
	}
}

@media (hover: none) {
	.home-services.almaza-services-section .swiper-slide-active .content:hover,
	.home-services.almaza-services-section .swiper-slide-active .service-image-frame:hover {
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-services.almaza-services-section .services-showcase-bg::before,
	.home-services.almaza-services-section .services-bg-line,
	.home-services.almaza-services-section .services-bg-glow,
	.home-services.almaza-services-section .services-section-header,
	.home-services.almaza-services-section .content,
	.home-services.almaza-services-section .service-image-frame,
	.home-services.almaza-services-section .item,
	.home-services.almaza-services-section .service-card-cta,
	.home-services.almaza-services-section .services-nav .btn {
		animation: none;
		transition: none;
		transform: none;
	}
}


/* ==========================================================================
   RECENT ARTICLES SECTION v1.0 — Premium Content Trust Block
   Scoped to the Home Page articles section only.
   ========================================================================== */

.recent-articles.almaza-articles-section {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(4rem, 7vw, 6rem) 0;
	background:
		radial-gradient(circle at 16% 18%, rgba(32, 109, 191, 0.12), transparent 30%),
		radial-gradient(circle at 88% 82%, rgba(37, 211, 102, 0.10), transparent 28%),
		linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
	font-family: "Cairo", sans-serif;
}

.recent-articles.almaza-articles-section .articles-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	overflow: hidden;
}

.recent-articles.almaza-articles-section .articles-bg::before {
	content: "";
	position: absolute;
	inset: 8% 5%;
	border-radius: 2rem;
	background:
		linear-gradient(90deg, rgba(32, 109, 191, 0.06) 1px, transparent 1px),
		linear-gradient(0deg, rgba(32, 109, 191, 0.05) 1px, transparent 1px);
	background-size: 78px 78px;
	mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
	opacity: 0.42;
	animation: articlesGridDrift 24s ease-in-out infinite alternate;
}

.recent-articles.almaza-articles-section .articles-bg-line {
	position: absolute;
	display: block;
	width: min(620px, 72vw);
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(32, 109, 191, 0.32), rgba(37, 211, 102, 0.25), transparent);
	opacity: 0.42;
	pointer-events: none;
	animation: articlesLineFloat 13s ease-in-out infinite;
}

.recent-articles.almaza-articles-section .articles-bg-line-one {
	top: 18%;
	right: -12%;
	--articles-line-rotate: -10deg;
	transform: rotate(var(--articles-line-rotate));
}

.recent-articles.almaza-articles-section .articles-bg-line-two {
	bottom: 20%;
	left: -12%;
	--articles-line-rotate: 12deg;
	transform: rotate(var(--articles-line-rotate));
	animation-delay: 1.5s;
}

.recent-articles.almaza-articles-section .articles-section-header {
	width: min(820px, calc(100% - 2rem));
	margin: 0 auto clamp(2rem, 4vw, 3rem);
	text-align: center;
	position: relative;
	z-index: 2;
	animation: articlesItemIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.recent-articles.almaza-articles-section .articles-kicker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
	padding: 0.42rem 1rem;
	border-radius: 50px;
	background: rgba(32, 109, 191, 0.08);
	border: 1px solid rgba(32, 109, 191, 0.16);
	color: #206DBF;
	font-family: "Rakkas", serif;
	font-size: 1rem;
	line-height: 1.2;
}

.recent-articles.almaza-articles-section .title {
	margin: 0 0 0.8rem;
	padding: 0;
	font-family: "Rakkas", serif;
	font-size: clamp(1.85rem, 4.2vw, 3.1rem);
	font-weight: 400;
	line-height: 1.28;
	letter-spacing: 0;
	color: #034296;
}

.recent-articles.almaza-articles-section .articles-section-header p {
	width: min(680px, 100%);
	margin: 0 auto;
	color: rgba(3, 66, 150, 0.74);
	font-size: clamp(0.95rem, 1.6vw, 1.08rem);
	font-weight: 600;
	line-height: 1.85;
}

.recent-articles.almaza-articles-section .container {
	position: relative;
	z-index: 2;
}

.recent-articles.almaza-articles-section .articles-grid {
	row-gap: clamp(1.25rem, 3vw, 1.8rem);
}

.recent-articles.almaza-articles-section .article-column {
	display: flex;
}

.recent-articles.almaza-articles-section article.almaza-article-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	width: 100%;
	min-height: 100%;
	padding: 0;
	border-radius: 1.15rem;
	direction: rtl;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(32, 109, 191, 0.12);
	box-shadow: 0 18px 46px rgba(3, 66, 150, 0.12);
	overflow: hidden;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.recent-articles.almaza-articles-section article.almaza-article-card::before {
	content: attr(data-article);
	position: absolute;
	top: 0.95rem;
	left: 1rem;
	z-index: 3;
	font-size: 2.6rem;
	font-weight: 900;
	line-height: 1;
	color: rgba(255, 255, 255, 0.55);
	pointer-events: none;
}

.recent-articles.almaza-articles-section article.almaza-article-card:hover,
.recent-articles.almaza-articles-section article.almaza-article-card:focus-within {
	border-color: rgba(32, 109, 191, 0.24);
	box-shadow: 0 24px 64px rgba(3, 66, 150, 0.18);
	transform: translateY(-6px);
}

.recent-articles.almaza-articles-section .article-img {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(32, 109, 191, 0.14), rgba(37, 211, 102, 0.10));
}

.recent-articles.almaza-articles-section .article-img a {
	display: block;
	width: 100%;
	height: 100%;
}

.recent-articles.almaza-articles-section .almaza-article-thumb {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.recent-articles.almaza-articles-section .almaza-article-placeholder {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 1.5rem;
	background:
		radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.72), transparent 28%),
		linear-gradient(135deg, rgba(32, 109, 191, 0.14), rgba(37, 211, 102, 0.12));
	color: #034296;
	text-align: center;
	overflow: hidden;
}

.recent-articles.almaza-articles-section .almaza-article-placeholder::before {
	content: "";
	position: absolute;
	inset: 14px;
	border: 1px solid rgba(32, 109, 191, 0.12);
	border-radius: 1rem;
	pointer-events: none;
}

.recent-articles.almaza-articles-section .placeholder-number {
	position: absolute;
	top: 0.75rem;
	left: 1rem;
	font-size: 2.3rem;
	font-weight: 900;
	line-height: 1;
	color: rgba(32, 109, 191, 0.16);
}

.recent-articles.almaza-articles-section .placeholder-brand {
	font-family: "Rakkas", serif;
	font-size: clamp(2rem, 4.4vw, 3.2rem);
	line-height: 1.15;
	color: #206DBF;
}

.recent-articles.almaza-articles-section .placeholder-text {
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.5;
	color: rgba(3, 66, 150, 0.72);
}

.recent-articles.almaza-articles-section article.almaza-article-card:hover .almaza-article-thumb {
	transform: scale(1.06);
}

.recent-articles.almaza-articles-section article.almaza-article-card:hover .almaza-article-placeholder {
	background:
		radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.78), transparent 28%),
		linear-gradient(135deg, rgba(32, 109, 191, 0.18), rgba(37, 211, 102, 0.16));
}

.recent-articles.almaza-articles-section .article-meta {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	justify-content: flex-start;
	gap: 0.45rem;
	width: auto;
	max-width: calc(100% - 2rem);
	margin: -1.1rem 1rem 0.95rem;
	padding: 0.48rem 0.8rem;
	border-radius: 50px;
	background: #206DBF;
	color: #fff;
	box-shadow: 0 10px 24px rgba(32, 109, 191, 0.22);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.25;
	position: relative;
	z-index: 2;
}

.recent-articles.almaza-articles-section .article-meta a,
.recent-articles.almaza-articles-section .article-meta span {
	color: #fff;
	text-decoration: none;
}

.recent-articles.almaza-articles-section .article-title {
	margin: 0;
	padding: 0 1rem 0.85rem;
	font-family: "Rakkas", serif;
	font-size: clamp(1.2rem, 2.1vw, 1.45rem);
	font-weight: 400;
	line-height: 1.45;
	letter-spacing: 0;
	text-align: right;
	color: #034296;
}

.recent-articles.almaza-articles-section .article-title a {
	display: inline;
	color: #034296;
	text-decoration: none;
	transition: color 0.22s ease;
}

.recent-articles.almaza-articles-section .article-title a:hover,
.recent-articles.almaza-articles-section .article-title a:focus {
	color: #206DBF;
	text-decoration: none;
}

.recent-articles.almaza-articles-section .article-excerpt {
	flex: 1;
	margin: 0 1rem 1rem;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: rgba(3, 66, 150, 0.72);
	font-size: 0.92rem;
	font-weight: 500;
	line-height: 1.8;
}

.recent-articles.almaza-articles-section .article-excerpt p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
	color: inherit;
	text-align: right;
}

.recent-articles.almaza-articles-section .article-read-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	min-height: 42px;
	margin: 0 1rem 1rem;
	padding: 0.62rem 1.05rem;
	border-radius: 50px 0 10px;
	background: #206DBF;
	color: #fff;
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(32, 109, 191, 0.22);
	transition: background-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.recent-articles.almaza-articles-section .article-read-more:hover,
.recent-articles.almaza-articles-section .article-read-more:focus {
	background: #034296;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 16px 34px rgba(3, 66, 150, 0.28);
	transform: translateY(-2px);
}

.recent-articles.almaza-articles-section .article-img a:focus-visible,
.recent-articles.almaza-articles-section .article-meta a:focus-visible,
.recent-articles.almaza-articles-section .article-title a:focus-visible,
.recent-articles.almaza-articles-section .article-read-more:focus-visible,
.recent-articles.almaza-articles-section .articles-mini-call:focus-visible,
.recent-articles.almaza-articles-section .articles-mini-whatsapp:focus-visible {
	outline: 3px solid rgba(32, 109, 191, 0.34);
	outline-offset: 3px;
}

.recent-articles.almaza-articles-section .articles-consultation-cta {
	position: relative;
	z-index: 2;
	width: min(900px, calc(100% - 2rem));
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
	padding: 1rem 1.15rem;
	border-radius: 1.1rem;
	background: linear-gradient(135deg, rgba(32, 109, 191, 0.95), rgba(3, 66, 150, 0.95));
	box-shadow: 0 18px 46px rgba(3, 66, 150, 0.22);
	color: #fff;
}

.recent-articles.almaza-articles-section .articles-consultation-cta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.7;
}

.recent-articles.almaza-articles-section .articles-consultation-actions {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-shrink: 0;
}

.recent-articles.almaza-articles-section .articles-mini-call,
.recent-articles.almaza-articles-section .articles-mini-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	min-height: 42px;
	padding: 0.62rem 1rem;
	border-radius: 50px;
	color: #fff;
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition: transform 0.22s ease, opacity 0.22s ease;
}

.recent-articles.almaza-articles-section .articles-mini-call {
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.28);
}

.recent-articles.almaza-articles-section .articles-mini-whatsapp {
	background: #25D366;
}

.recent-articles.almaza-articles-section .articles-mini-call:hover,
.recent-articles.almaza-articles-section .articles-mini-whatsapp:hover,
.recent-articles.almaza-articles-section .articles-mini-call:focus,
.recent-articles.almaza-articles-section .articles-mini-whatsapp:focus {
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
	opacity: 0.93;
}

@keyframes articlesGridDrift {
	0% { background-position: 0 0, 0 0; }
	100% { background-position: 42px 30px, -30px 36px; }
}

@keyframes articlesLineFloat {
	0%, 100% { opacity: 0.26; transform: translate3d(0, 0, 0) rotate(var(--articles-line-rotate)); }
	50% { opacity: 0.5; transform: translate3d(24px, -10px, 0) rotate(var(--articles-line-rotate)); }
}

@keyframes articlesItemIn {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
	.recent-articles.almaza-articles-section .articles-consultation-cta {
		align-items: stretch;
		flex-direction: column;
		text-align: center;
	}

	.recent-articles.almaza-articles-section .articles-consultation-actions {
		justify-content: center;
		flex-wrap: wrap;
	}
}

@media (max-width: 575px) {
	.recent-articles.almaza-articles-section {
		padding: 3.5rem 0;
	}

	.recent-articles.almaza-articles-section .articles-section-header,
	.recent-articles.almaza-articles-section .articles-consultation-cta {
		width: calc(100% - 1rem);
	}

	.recent-articles.almaza-articles-section article.almaza-article-card {
		border-radius: 1rem;
	}

	.recent-articles.almaza-articles-section .article-img {
		aspect-ratio: 16 / 11;
	}

	.recent-articles.almaza-articles-section .article-title,
	.recent-articles.almaza-articles-section .article-excerpt p {
		text-align: center;
	}

	.recent-articles.almaza-articles-section .article-meta,
	.recent-articles.almaza-articles-section .article-read-more {
		align-self: center;
	}

	.recent-articles.almaza-articles-section .articles-consultation-actions,
	.recent-articles.almaza-articles-section .articles-mini-call,
	.recent-articles.almaza-articles-section .articles-mini-whatsapp {
		width: 100%;
	}
}

@media (hover: none) {
	.recent-articles.almaza-articles-section article.almaza-article-card:hover,
	.recent-articles.almaza-articles-section article.almaza-article-card:hover .almaza-article-thumb,
	.recent-articles.almaza-articles-section .article-read-more:hover {
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.recent-articles.almaza-articles-section .articles-bg::before,
	.recent-articles.almaza-articles-section .articles-bg-line,
	.recent-articles.almaza-articles-section .articles-section-header,
	.recent-articles.almaza-articles-section article.almaza-article-card,
	.recent-articles.almaza-articles-section .almaza-article-thumb,
	.recent-articles.almaza-articles-section .article-read-more,
	.recent-articles.almaza-articles-section .articles-mini-call,
	.recent-articles.almaza-articles-section .articles-mini-whatsapp {
		animation: none;
		transition: none;
		transform: none;
	}
}


/* ==========================================================================
   HERO ENHANCEMENT v3.0 — Premium Badge + Slider + Motion
   May 2026 — Enhancement pass (not redesign)
   Preserves full original identity: Rakkas font, #206DBF/#034296 palette,
   circular image area, RTL layout, original animations spirit.
   ========================================================================== */

/* ── 1. Brand Badge ──────────────────────────────────────────────────────── */

.home-banner .hero-brand-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 1.1rem;
padding: 0.45rem 1.1rem 0.45rem 0.75rem;
border-radius: 50px;
border: 1.5px solid rgba(32, 109, 191, 0.35);
background: linear-gradient(135deg,
rgba(32, 109, 191, 0.08) 0%,
rgba(32, 109, 191, 0.04) 100%);
backdrop-filter: blur(4px);
position: relative;
overflow: hidden;

/* Entrance animation */
opacity: 0;
transform: translateY(-12px);
animation: badgeEntrance 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;

/* Soft floating loop */
animation: badgeEntrance 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards,
           badgeFloat    4.5s ease-in-out 0.9s infinite;
}

/* Shimmer sweep */
.home-banner .hero-brand-badge::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
110deg,
transparent 20%,
rgba(255, 255, 255, 0.28) 50%,
transparent 80%
);
transform: translateX(-100%);
animation: badgeShimmer 3.6s ease-in-out 1.5s infinite;
}

/* Left accent line */
.home-banner .hero-brand-badge::after {
content: "";
position: absolute;
top: 20%;
right: 0;
width: 2.5px;
height: 60%;
background: #206DBF;
border-radius: 2px;
opacity: 0.55;
}

.home-banner .hero-badge-icon {
width: 28px;
height: 28px;
border-radius: 50%;
background: #206DBF;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.72rem;
flex-shrink: 0;
}

.home-banner .hero-badge-text {
font-family: "Rakkas", serif;
font-size: 0.98rem;
font-weight: 400;
color: #206DBF;
letter-spacing: 0.01em;
line-height: 1;
font-weight: 600;
}

.home-banner .hero-brand-badge:hover {
border-color: rgba(32, 109, 191, 0.55);
transform: translateY(-2px);
transition: border-color 0.3s ease, transform 0.3s ease;
}

/* ── 2. Heading block spacing ────────────────────────────────────────────── */

.home-banner .row .text-wrapper h1.hero-main-heading {
font-size: clamp(2rem, 5.5vw, 4.2rem);
line-height: 1.18;
margin-bottom: 0.85rem;
animation: heroTextIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
max-width: 520px;
}

.home-banner .row .text-wrapper p.hero-subheadline {
font-size: clamp(1rem, 2vw, 1.15rem);
line-height: 1.8;
font-weight: 400;
font-family: inherit;
animation: heroTextIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
margin-bottom: 0.4rem;
max-width: 460px;
}

.home-banner .row .text-wrapper p.hero-service-areas {
font-size: clamp(0.8rem, 1.5vw, 0.88rem);
color: rgba(32, 109, 191, 0.68);
line-height: 1.6;
font-family: inherit;
animation: heroTextIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
margin-bottom: 1.1rem;
}

/* ── 3. CTA Buttons ──────────────────────────────────────────────────────── */

.home-banner .row .hero-cta-wrap {
flex-wrap: wrap;
gap: 0.8rem;
margin-top: 0.2rem;
animation: heroTextIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.72s both;
}

.home-banner .row .hero-cta-wrap a.hero-btn-call,
.home-banner .row .hero-cta-wrap a.hero-btn-whatsapp {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.42rem;
padding: 0.75rem 1.75rem;
min-height: 50px;
border-radius: 50px 0 10px;
font-size: 1rem;
font-weight: 700;
line-height: 1.3;
text-decoration: none;
color: #fff;
animation: none; /* stop theme slideInUp */
transition:
background-color 0.28s ease,
transform        0.22s ease,
box-shadow       0.28s ease;
position: relative;
overflow: hidden;
}

/* Ripple press effect */
.home-banner .row .hero-cta-wrap a.hero-btn-call::after,
.home-banner .row .hero-cta-wrap a.hero-btn-whatsapp::after {
content: "";
position: absolute;
inset: 0;
background: rgba(255, 255, 255, 0.12);
opacity: 0;
transition: opacity 0.18s ease;
}

.home-banner .row .hero-cta-wrap a.hero-btn-call:active::after,
.home-banner .row .hero-cta-wrap a.hero-btn-whatsapp:active::after {
opacity: 1;
}

/* Call — primary: theme blue */
.home-banner .row .hero-cta-wrap a.hero-btn-call {
background-color: #206DBF;
box-shadow: 0 4px 18px rgba(32, 109, 191, 0.38);
}

.home-banner .row .hero-cta-wrap a.hero-btn-call:hover,
.home-banner .row .hero-cta-wrap a.hero-btn-call:focus {
background-color: #034296;
box-shadow: 0 6px 22px rgba(3, 66, 150, 0.40);
transform: translateY(-2px);
color: #fff;
text-decoration: none;
}

/* WhatsApp — branded green */
.home-banner .row .hero-cta-wrap a.hero-btn-whatsapp {
background-color: #25D366;
box-shadow: 0 4px 18px rgba(37, 211, 102, 0.32);
}

.home-banner .row .hero-cta-wrap a.hero-btn-whatsapp:hover,
.home-banner .row .hero-cta-wrap a.hero-btn-whatsapp:focus {
background-color: #1DAA57;
box-shadow: 0 6px 22px rgba(29, 170, 87, 0.40);
transform: translateY(-2px);
color: #fff;
text-decoration: none;
}

@media (max-width: 480px) {
.home-banner .row .hero-cta-wrap a.hero-btn-call,
.home-banner .row .hero-cta-wrap a.hero-btn-whatsapp {
flex: 1 1 100%;
font-size: 0.95rem;
padding: 0.75rem 1rem;
}
}

/* ── 4. Image Area — Slider ──────────────────────────────────────────────── */

/* The wrapper retains original 450×450 circular shape */
.home-banner .row .image-text-slide-wrap .image-wrapper.hero-slider-wrapper {
position: relative;
width: 450px;
height: 450px;
}

/* The Swiper container sits inside the circular frame */
.home-banner .hero-swiper {
position: absolute;
top: 0;
right: 0;
width: 400px;
height: 400px;
display: block;
border-radius: 50%;
overflow: hidden;
z-index: 50;
box-shadow:
0 20px 60px rgba(32, 109, 191, 0.22),
0  6px 18px rgba(0, 0, 0, 0.14);

/* Entrance animation */
animation: sliderEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

/* Each slide image fills the circle */
.home-banner .hero-slide-img {
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
transition: transform 6s ease;
}
/* Explicit dimensions for hero slide chain (required for fade effect) */
.home-banner .hero-swiper .swiper-wrapper {
width: 100%;
height: 100%;
}

.home-banner .hero-swiper .swiper-slide {
width: 100%;
height: 100%;
display: block;
padding: 0;
gap: 0;
overflow: hidden;
place-items: initial;
grid-template-columns: none;
}

/* Ken-Burns: active slide zooms gently */
.home-banner .hero-swiper .swiper-slide-active .hero-slide-img {
transform: scale(1.06);
}

/* Dots pagination */
.home-banner .hero-swiper-dots {
bottom: 14px;
}

.home-banner .hero-swiper-dots .swiper-pagination-bullet {
background: rgba(255, 255, 255, 0.55);
opacity: 1;
width: 7px;
height: 7px;
transition: background 0.3s ease, transform 0.3s ease;
}

.home-banner .hero-swiper-dots .swiper-pagination-bullet-active {
background: #fff;
transform: scale(1.35);
}

/* Decorative circle behind slider (second-image-ele) — original identity */
.home-banner .hero-slider-wrapper .second-image-ele {
/* Keep original 450×450, position, and blue color — just add subtle pulse */
animation: circleFloat 6s ease-in-out infinite;
}

.home-banner .hero-slider-wrapper .third-image-ele {
animation: circleFloat 8s ease-in-out 1.5s infinite;
}

/* ── 5. Keyframe Animations ──────────────────────────────────────────────── */

@keyframes badgeEntrance {
from { opacity: 0; transform: translateY(-14px); }
to   { opacity: 1; transform: translateY(0);     }
}

@keyframes badgeFloat {
0%, 100% { transform: translateY(0);    }
50%       { transform: translateY(-4px); }
}

@keyframes badgeShimmer {
0%   { transform: translateX(-100%); }
30%  { transform: translateX(100%);  }
100% { transform: translateX(100%);  }
}

@keyframes heroTextIn {
from { opacity: 0; transform: translateY(16px); }
to   { opacity: 1; transform: translateY(0);    }
}

@keyframes sliderEntrance {
from { opacity: 0; transform: scale(0.92); }
to   { opacity: 1; transform: scale(1);    }
}

@keyframes circleFloat {
0%, 100% { transform: translate3d(0, 0px,   0); }
50%       { transform: translate3d(0, -8px,  0); }
}

/* ── 6. Responsive ───────────────────────────────────────────────────────── */

/* Tablet: shrink circular frame */
@media (max-width: 1099px) {
.home-banner .row .image-text-slide-wrap .image-wrapper.hero-slider-wrapper {
width: 360px;
height: 360px;
}

.home-banner .hero-swiper {
width: 320px;
height: 320px;
}
}

/* ≤768px: stack columns, center everything */
@media (max-width: 767px) {
.home-banner .row .text-wrapper {
text-align: center;
}

.home-banner .hero-brand-badge {
margin-left: auto;
margin-right: auto;
}

.home-banner .row .text-wrapper h1.hero-main-heading {
max-width: 100%;
font-size: clamp(1.85rem, 7.5vw, 2.6rem);
}

.home-banner .row .text-wrapper p.hero-subheadline,
.home-banner .row .text-wrapper p.hero-service-areas {
max-width: 100%;
}

.home-banner .row .hero-cta-wrap {
justify-content: center;
}

/* Circular frame on mobile — shrink proportionally */
.home-banner .row .image-text-slide-wrap .image-wrapper.hero-slider-wrapper {
width: 290px;
height: 290px;
margin: 0 auto;
}

.home-banner .hero-swiper {
width: 260px;
height: 260px;
}

.home-banner .row .image-text-slide-wrap .image-wrapper.hero-slider-wrapper .second-image-ele {
width: 290px;
height: 290px;
}

.home-banner .row .image-text-slide-wrap .image-wrapper.hero-slider-wrapper .third-image-ele {
width: 220px;
height: 220px;
}
}

/* Very small: 320px */
@media (max-width: 375px) {
.home-banner .row .image-text-slide-wrap .image-wrapper.hero-slider-wrapper {
width: 250px;
height: 250px;
}

.home-banner .hero-swiper {
width: 224px;
height: 224px;
}

.home-banner .hero-brand-badge {
font-size: 0.78rem;
padding: 0.38rem 0.9rem 0.38rem 0.6rem;
}

.home-banner .hero-badge-icon {
width: 23px;
height: 23px;
font-size: 0.62rem;
}
}

/* ── 7. Reduced-motion respect ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
.home-banner .hero-brand-badge,
.home-banner .row .text-wrapper h1.hero-main-heading,
.home-banner .row .text-wrapper p.hero-subheadline,
.home-banner .row .text-wrapper p.hero-service-areas,
.home-banner .row .hero-cta-wrap,
.home-banner .hero-swiper,
.home-banner .hero-slide-img,
.home-banner .hero-swiper .swiper-slide-active .hero-slide-img,
.home-banner .hero-slider-wrapper .second-image-ele,
.home-banner .hero-slider-wrapper .third-image-ele {
animation: none;
transition: none;
opacity: 1;
transform: none;
}
}


/* ==========================================================================
   GALLERY SECTION v1.0 — Premium Visual Proof + Fancybox Lightbox
   Scoped to .home-gallery.almaza-gallery-section only.
   Fancybox already loaded via enqueue.php; images 01–12.webp confirmed.
   ========================================================================== */

/* ---------- Section Shell ---------- */
.home-gallery.almaza-gallery-section {
	position: relative;
	isolation: isolate;
	padding: 5rem 0 0;
	background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 60%);
	overflow: hidden;
}

/* ---------- Background Decoration ---------- */
.home-gallery.almaza-gallery-section .gallery-showcase-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.home-gallery.almaza-gallery-section .gallery-bg-glow {
	display: block;
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.12;
}
.home-gallery.almaza-gallery-section .gallery-bg-glow-one {
	width: 55rem;
	height: 55rem;
	background: #206DBF;
	top: -20rem;
	right: -15rem;
}
.home-gallery.almaza-gallery-section .gallery-bg-glow-two {
	width: 40rem;
	height: 40rem;
	background: #034296;
	bottom: 10rem;
	left: -12rem;
}

/* ---------- Section Header ---------- */
.home-gallery.almaza-gallery-section .gallery-section-header {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 0 1.5rem 3rem;
	max-width: 70rem;
	margin: 0 auto;
}
.home-gallery.almaza-gallery-section .gallery-kicker {
	display: inline-block;
	font-family: "Cairo", sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #206DBF;
	text-transform: uppercase;
	background: rgba(32, 109, 191, 0.08);
	border: 1px solid rgba(32, 109, 191, 0.2);
	border-radius: 50px;
	padding: 0.35rem 1.2rem;
	margin-bottom: 1rem;
}
.home-gallery.almaza-gallery-section .heading {
	font-family: "Rakkas", serif !important;
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 500;
	line-height: 1.3;
	color: #034296;
	margin: 0 0 1rem;
	padding-bottom: 0;
}
.home-gallery.almaza-gallery-section .gallery-section-header p {
	font-family: "Cairo", sans-serif;
	font-size: 1.05rem;
	color: #4a5568;
	line-height: 1.8;
	margin: 0;
}

/* ---------- Gallery Grid ---------- */
.home-gallery.almaza-gallery-section .container {
	position: relative;
	z-index: 1;
	max-width: 130rem;
	padding: 0 2rem 2rem;
}
.home-gallery.almaza-gallery-section .almaza-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 22rem;
	gap: 1.2rem;
	margin: 0;
}

/* First item spans 2 columns & 2 rows as featured */
.home-gallery.almaza-gallery-section .gallery-item--featured {
	grid-column: span 2;
	grid-row: span 2;
}
.home-gallery.almaza-gallery-section .gallery-item--featured .gallery-image {
	height: 100%;
}

/* ---------- Gallery Items ---------- */
.home-gallery.almaza-gallery-section .gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
	box-shadow: 0 4px 18px rgba(3, 66, 150, 0.12);
	background: #e8edf5;
	margin: 0;
	flex: unset;
}
.home-gallery.almaza-gallery-section .gallery-item a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

/* ---------- Gallery Images ---------- */
.home-gallery.almaza-gallery-section .gallery-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
}

/* ---------- Hover Overlay & Zoom Icon ---------- */
.home-gallery.almaza-gallery-section .gallery-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(3, 66, 150, 0.0);
	transition: background 0.35s ease;
	z-index: 2;
}
.home-gallery.almaza-gallery-section .gallery-overlay i {
	font-size: 2.2rem;
	color: #ffffff;
	opacity: 0;
	transform: scale(0.7);
	transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
	text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

@media (hover: hover) {
	.home-gallery.almaza-gallery-section .gallery-item:hover .gallery-image {
		transform: scale(1.08);
	}
	.home-gallery.almaza-gallery-section .gallery-item:hover .gallery-overlay {
		background: rgba(3, 66, 150, 0.45);
	}
	.home-gallery.almaza-gallery-section .gallery-item:hover .gallery-overlay i {
		opacity: 1;
		transform: scale(1);
	}
}

/* Show icon on focus-within for keyboard nav */
.home-gallery.almaza-gallery-section .gallery-item:focus-within .gallery-overlay {
	background: rgba(3, 66, 150, 0.45);
}
.home-gallery.almaza-gallery-section .gallery-item:focus-within .gallery-overlay i {
	opacity: 1;
	transform: scale(1);
}
.home-gallery.almaza-gallery-section .gallery-item a:focus-visible {
	outline: 3px solid #206DBF;
	outline-offset: 3px;
}

/* ---------- Closing CTA ---------- */
.home-gallery.almaza-gallery-section .gallery-closing-cta {
	position: relative;
	z-index: 1;
	text-align: center;
	background: linear-gradient(135deg, #034296 0%, #206DBF 100%);
	padding: 3rem 2rem;
	margin-top: 3rem;
}
.home-gallery.almaza-gallery-section .gallery-closing-cta p {
	font-family: "Rakkas", serif;
	font-size: clamp(1.3rem, 3vw, 1.8rem);
	color: #ffffff;
	margin: 0 0 1.5rem;
	line-height: 1.5;
}
.home-gallery.almaza-gallery-section .gallery-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}
.home-gallery.almaza-gallery-section .gallery-cta-call,
.home-gallery.almaza-gallery-section .gallery-cta-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-family: "Cairo", sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	padding: 0.85rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	letter-spacing: 0.02em;
	line-height: 1;
}
.home-gallery.almaza-gallery-section .gallery-cta-call {
	background: #ffffff;
	color: #034296;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}
.home-gallery.almaza-gallery-section .gallery-cta-call:hover,
.home-gallery.almaza-gallery-section .gallery-cta-call:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	background: #f0f6ff;
	color: #034296;
	text-decoration: none;
}
.home-gallery.almaza-gallery-section .gallery-cta-whatsapp {
	background: #25D366;
	color: #ffffff;
	box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.home-gallery.almaza-gallery-section .gallery-cta-whatsapp:hover,
.home-gallery.almaza-gallery-section .gallery-cta-whatsapp:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
	background: #1db954;
	color: #ffffff;
	text-decoration: none;
}

/* ---------- Responsive ---------- */
/* Tablet: 3 columns */
@media (max-width: 1024px) {
	.home-gallery.almaza-gallery-section .almaza-gallery-grid {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: 18rem;
	}
	.home-gallery.almaza-gallery-section .gallery-item--featured {
		grid-column: span 2;
		grid-row: span 2;
	}
}

/* Mobile-L: 2 columns, no featured span */
@media (max-width: 767px) {
	.home-gallery.almaza-gallery-section {
		padding: 3.5rem 0 0;
	}
	.home-gallery.almaza-gallery-section .almaza-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 16rem;
	}
	.home-gallery.almaza-gallery-section .gallery-item--featured {
		grid-column: span 2;
		grid-row: span 1;
	}
}

/* Mobile-S: 1 column */
@media (max-width: 480px) {
	.home-gallery.almaza-gallery-section .almaza-gallery-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: 20rem;
	}
	.home-gallery.almaza-gallery-section .gallery-item--featured {
		grid-column: 1;
		grid-row: span 1;
	}
	.home-gallery.almaza-gallery-section .gallery-closing-cta p {
		font-size: 1.2rem;
	}
}

/* ---------- Reduced-Motion ---------- */
@media (prefers-reduced-motion: reduce) {
	.home-gallery.almaza-gallery-section .gallery-image {
		transition: none;
	}
	.home-gallery.almaza-gallery-section .gallery-overlay,
	.home-gallery.almaza-gallery-section .gallery-overlay i {
		transition: none;
	}
	.home-gallery.almaza-gallery-section .gallery-cta-call,
	.home-gallery.almaza-gallery-section .gallery-cta-whatsapp {
		transition: none;
	}
}


/* ==========================================================================
   FAQ SECTION v1.0 — Premium Accordion Trust Block
   Scoped to .supportPage.almaza-faq-section only.
   ========================================================================== */

/* ---------- Section Shell ---------- */
.supportPage.almaza-faq-section {
	position: relative;
	isolation: isolate;
	padding: 5rem 0 4rem;
	background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
	overflow: hidden;
}

/* ---------- Background Decoration ---------- */
.supportPage.almaza-faq-section .faq-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.supportPage.almaza-faq-section .faq-bg-glow {
	display: block;
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.1;
}
.supportPage.almaza-faq-section .faq-bg-glow-one {
	width: 50rem;
	height: 50rem;
	background: #206DBF;
	top: -18rem;
	left: -15rem;
}
.supportPage.almaza-faq-section .faq-bg-glow-two {
	width: 35rem;
	height: 35rem;
	background: #034296;
	bottom: -10rem;
	right: -10rem;
}

/* ---------- Section Header ---------- */
.supportPage.almaza-faq-section .faq-section-header {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 0 1.5rem 2.5rem;
	max-width: 70rem;
	margin: 0 auto;
}
.supportPage.almaza-faq-section .faq-kicker {
	display: inline-block;
	font-family: "Cairo", sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #206DBF;
	text-transform: uppercase;
	background: rgba(32, 109, 191, 0.08);
	border: 1px solid rgba(32, 109, 191, 0.2);
	border-radius: 50px;
	padding: 0.35rem 1.2rem;
	margin-bottom: 1rem;
}
.supportPage.almaza-faq-section .faq-title {
	font-family: "Rakkas", serif !important;
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 500;
	line-height: 1.3;
	color: #034296;
	margin: 0 0 0.85rem;
}
.supportPage.almaza-faq-section .faq-section-header p {
	font-family: "Cairo", sans-serif;
	font-size: 1.05rem;
	color: #4a5568;
	line-height: 1.8;
	margin: 0;
}

/* ---------- Container ---------- */
.supportPage.almaza-faq-section .container {
	position: relative;
	z-index: 1;
}

/* ---------- FAQ Card Wrapper ---------- */
.supportPage.almaza-faq-section .almaza-faq-card {
	background: transparent;
	border: none;
	padding: 0;
}

/* ---------- Accordion Items ---------- */
.supportPage.almaza-faq-section .almaza-accordion-item {
	background: #ffffff;
	border: 1px solid rgba(32, 109, 191, 0.15) !important;
	border-radius: 0.9rem !important;
	margin-bottom: 1rem;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(3, 66, 150, 0.07);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.supportPage.almaza-faq-section .almaza-accordion-item:hover {
	box-shadow: 0 6px 24px rgba(3, 66, 150, 0.14);
	transform: translateY(-2px);
}
.supportPage.almaza-faq-section .almaza-accordion-item:last-child {
	margin-bottom: 0;
}

/* ---------- Accordion Button ---------- */
.supportPage.almaza-faq-section .accordion-button {
	font-family: "Cairo", sans-serif !important;
	font-size: 1.05rem !important;
	font-weight: 700 !important;
	color: #1a2744 !important;
	background: #ffffff !important;
	padding: 1.3rem 1.5rem !important;
	border-radius: 0.9rem !important;
	gap: 0.75rem;
	box-shadow: none !important;
	line-height: 1.5;
	text-align: right;
	display: flex;
	align-items: flex-start;
}
.supportPage.almaza-faq-section .accordion-button:not(.collapsed) {
	color: #034296 !important;
	background: linear-gradient(135deg, #f0f6ff 0%, #e8f0fc 100%) !important;
	border-bottom: 1px solid rgba(32, 109, 191, 0.15) !important;
	box-shadow: none !important;
}

/* Override Bootstrap accordion arrow with a brand-blue SVG chevron */
.supportPage.almaza-faq-section .accordion-button::after {
	content: "" !important;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23206DBF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
	background-repeat: no-repeat !important;
	background-size: 1rem !important;
	width: 1rem !important;
	height: 1rem !important;
	margin-right: auto;
	margin-left: 0;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}
.supportPage.almaza-faq-section .accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23034296'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
	transform: rotate(-180deg);
}

/* ---------- Question Icon ---------- */
.supportPage.almaza-faq-section .faq-icon {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	background: linear-gradient(135deg, #206DBF, #034296);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.1rem;
}
.supportPage.almaza-faq-section .faq-icon i {
	font-size: 0.85rem;
	color: #ffffff;
}

/* ---------- Accordion Body ---------- */
.supportPage.almaza-faq-section .accordion-body {
	padding: 1.2rem 1.5rem 1.4rem 1.5rem !important;
	background: #ffffff;
}
.supportPage.almaza-faq-section .accordion-body p {
	font-family: "Cairo", sans-serif !important;
	font-size: 1rem !important;
	color: #4a5568 !important;
	line-height: 1.85;
	margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
	.supportPage.almaza-faq-section {
		padding: 3.5rem 0 3rem;
	}
	.supportPage.almaza-faq-section .accordion-button {
		font-size: 0.97rem !important;
		padding: 1.1rem 1.2rem !important;
	}
	.supportPage.almaza-faq-section .faq-icon {
		width: 1.75rem;
		height: 1.75rem;
	}
}

/* ---------- Reduced-Motion ---------- */
@media (prefers-reduced-motion: reduce) {
	.supportPage.almaza-faq-section .almaza-accordion-item {
		transition: none;
		transform: none;
	}
	.supportPage.almaza-faq-section .accordion-button::after {
		transition: none;
	}
}
/* ---------- FAQ Closing CTA ---------- */
.supportPage.almaza-faq-section .faq-closing-cta {
	text-align: center;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(32, 109, 191, 0.12);
}
.supportPage.almaza-faq-section .faq-closing-cta p {
	font-family: "Cairo", sans-serif;
	font-size: 0.95rem;
	color: #4a5568;
	margin-bottom: 1rem;
}
.supportPage.almaza-faq-section .faq-whatsapp-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #25D366;
	color: #ffffff;
	font-family: "Cairo", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	padding: 0.7rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	transition: background 0.25s ease, transform 0.2s ease;
}
.supportPage.almaza-faq-section .faq-whatsapp-btn:hover {
	background: #1da851;
	color: #ffffff;
	transform: translateY(-2px);
	text-decoration: none;
}
@media (prefers-reduced-motion: reduce) {
	.supportPage.almaza-faq-section .faq-whatsapp-btn {
		transition: none;
		transform: none;
	}
}


/* ==========================================================================
   FOOTER ENHANCEMENT v1.0 — Almaza Premium Footer
   Scoped to #wrapper-footer .footer-section.almaza-footer-enhanced
   ========================================================================== */

/* ---------- Base shell — deep navy, override theme light bg ---------- */
#wrapper-footer .footer-section.almaza-footer-enhanced {
	background: #0a1f44 !important;
	color: #e8edf5;
	direction: rtl;
	text-align: right;
}

/* ---------- Top quick-contact bar ---------- */
.almaza-footer-topbar {
	background: rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 0.85rem 0;
}
.almaza-ftbar-link,
.almaza-ftbar-loc {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-family: "Cairo", sans-serif;
	font-size: 0.92rem;
	font-weight: 600;
	color: #c8d8ef;
	text-decoration: none;
}
.almaza-ftbar-link:hover {
	color: #ffffff;
	text-decoration: none;
}
.almaza-ftbar-link i,
.almaza-ftbar-loc i {
	color: #206DBF;
	font-size: 0.95rem;
}
.almaza-ftbar-wa i {
	color: #25D366;
}

/* ---------- Main footer body ---------- */
.almaza-footer-main {
	padding: 4rem 0 2rem;
}

/* ---------- Footer columns ---------- */
.almaza-footer-col {
	padding-bottom: 2rem;
}

/* ---------- Brand block ---------- */
.almaza-footer-logo {
	max-width: 160px;
	margin-bottom: 1.2rem;
	filter: brightness(0) invert(1) opacity(0.88);
}
.almaza-footer-tagline {
	font-family: "Cairo", sans-serif;
	font-size: 0.9rem;
	color: #8aaad0;
	line-height: 1.9;
	margin-bottom: 1.5rem;
}
.almaza-footer-social {
	display: flex;
	gap: 0.65rem;
}
.almaza-footer-social a {
	width: 2.3rem;
	height: 2.3rem;
	border-radius: 50%;
	border: 1px solid rgba(32, 109, 191, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #8aaad0;
	font-size: 0.85rem;
	text-decoration: none;
	transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.almaza-footer-social a:hover {
	background: #206DBF;
	border-color: #206DBF;
	color: #ffffff;
	text-decoration: none;
}

/* ---------- Column headings ---------- */
.almaza-footer-heading {
	font-family: "Rakkas", serif !important;
	font-size: 1.15rem !important;
	font-weight: 500 !important;
	color: #ffffff !important;
	margin-bottom: 1.2rem !important;
	padding-bottom: 0.55rem;
	border-bottom: 2px solid #206DBF;
	display: inline-block;
}

/* ---------- Contact list ---------- */
.almaza-footer-contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.almaza-footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-family: "Cairo", sans-serif;
	font-size: 0.9rem;
	color: #8aaad0;
	margin-bottom: 0.8rem;
	line-height: 1.55;
}
.almaza-footer-contact-list li i {
	color: #206DBF;
	font-size: 0.95rem;
	flex-shrink: 0;
	margin-top: 0.2rem;
}
.almaza-footer-contact-list li .fa-whatsapp {
	color: #25D366;
}
.almaza-footer-contact-list a {
	color: #8aaad0;
	text-decoration: none;
}
.almaza-footer-contact-list a:hover {
	color: #ffffff;
	text-decoration: none;
}

/* ---------- Services and areas lists ---------- */
.almaza-footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.almaza-footer-list li {
	font-family: "Cairo", sans-serif;
	font-size: 0.88rem;
	color: #8aaad0;
	margin-bottom: 0.55rem;
	padding-right: 1rem;
	position: relative;
	line-height: 1.5;
}
.almaza-footer-list li::before {
	content: "›";
	position: absolute;
	right: 0;
	top: -0.05rem;
	color: #206DBF;
	font-size: 1.1rem;
	line-height: 1;
}
.almaza-footer-list a {
	color: #8aaad0;
	text-decoration: none;
}
.almaza-footer-list a:hover {
	color: #ffffff;
	text-decoration: none;
}

/* Areas: two-column on all sizes */
.almaza-footer-areas {
	column-count: 2;
	column-gap: 0.5rem;
}

/* ---------- Copyright bar ---------- */
.almaza-footer-copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	padding: 1.1rem 0;
	text-align: center;
	background: rgba(0, 0, 0, 0.15);
}
.almaza-footer-copyright p {
	font-family: "Cairo", sans-serif;
	font-size: 0.85rem;
	color: #5a7a9a;
	margin: 0;
}
.almaza-footer-copyright a {
	color: #206DBF;
	text-decoration: none;
}
.almaza-footer-copyright a:hover {
	color: #ffffff;
	text-decoration: none;
}

/* ---------- Tablet ---------- */
@media (max-width: 991px) {
	.almaza-footer-main {
		padding: 3rem 0 1.5rem;
	}
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
	.almaza-footer-topbar .row {
		flex-direction: column;
		gap: 0.4rem;
	}
	.almaza-ftbar-link,
	.almaza-ftbar-loc {
		font-size: 0.88rem;
	}
	.almaza-footer-main {
		padding: 2.5rem 0 1rem;
	}
	.almaza-footer-col {
		padding-bottom: 1.5rem;
	}
}

/* ---------- Reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
	.almaza-footer-social a {
		transition: none;
	}
}
