/* =====================================================================
   Fulaz Steel — Elementor widgets stylesheet
   RTL Arabic primary + English (WPML). Built on the 180D v7 baseline.
   Tailwind text scale (px): 3xl=30 4xl=36 5xl=48 6xl=60 7xl=72
   ===================================================================== */

/* ---------------------------------------------------------------------
   Design tokens — EXACT Lovable oklch values converted to hex
   --------------------------------------------------------------------- */
:root {
	--fulaz-primary:      #174276;   /* navy   oklch(0.38 0.10 255) */
	--fulaz-primary-glow: #2EA4DC;   /* steel  oklch(0.68 0.13 235) */
	--fulaz-accent:       #2EA4DC;
	--fulaz-steel:        #2EA4DC;
	--fulaz-steel-light:  #6EC3EB;   /* oklch(0.78 0.10 230) */
	--fulaz-navy:         #174276;
	--fulaz-navy-deep:    #051A36;   /* oklch(0.22 0.06 255) */
	--fulaz-section-dark: #06090F;

	--fulaz-bg:        #F9FCFF;
	--fulaz-fg:        #051223;
	--fulaz-card:      #FFFFFF;
	--fulaz-secondary: #E6F0F8;
	--fulaz-muted:     #E8F0F6;
	--fulaz-muted-fg:  #495766;
	--fulaz-border:    #D6E0E7;

	--fulaz-primary-rgb: 23,66,118;
	--fulaz-steel-rgb:   46,164,220;

	--fulaz-gradient-steel: linear-gradient(135deg, #174276, #2EA4DC);
	--fulaz-gradient-dark:  linear-gradient(135deg, #051223, #182E4B);
	--fulaz-shadow-steel: 0 12px 40px -10px rgba(46,164,220,0.45);
	--fulaz-shadow-deep:  0 20px 50px -15px rgba(5,26,54,0.55);

	--fulaz-radius:    0.5rem;
	--fulaz-radius-lg: 1rem;
	--fulaz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

	/* Single-family stack matching Lovable: Rubik (Latin) → Tajawal (Arabic) */
	--fulaz-font:         "Rubik", "Tajawal", system-ui, -apple-system, sans-serif;
	--fulaz-font-display: "Rubik", "Tajawal", system-ui, -apple-system, sans-serif;
}

/* =====================================================================
   1–8. Horizontal-scroll defense (mandatory baseline)
   ===================================================================== */
[class^="fulaz-"], [class*=" fulaz-"],
[class^="fulaz-"] *, [class*=" fulaz-"] *,
[class^="fulaz-"] *::before, [class*=" fulaz-"] *::before,
[class^="fulaz-"] *::after, [class*=" fulaz-"] *::after { box-sizing: border-box; }

.fulaz-section, .fulaz-hero, .fulaz-inner-hero, .fulaz-cta, .fulaz-footer,
.fulaz-header, .fulaz-contact, .fulaz-careers, .fulaz-form {
	max-width: 100%;
	overflow-x: hidden;
	overflow-x: clip;
}

[class^="fulaz-"][class*="-grid"] > *,
[class^="fulaz-"][class*="-row"] > *,
[class^="fulaz-"][class*="-cols"] > *,
.fulaz-form-row > *, .fulaz-contact-grid > *, .fulaz-form-field { min-width: 0; max-width: 100%; }

[class^="fulaz-"] img, [class*=" fulaz-"] img,
[class^="fulaz-"] iframe, [class*=" fulaz-"] iframe,
[class^="fulaz-"] video, [class*=" fulaz-"] video,
[class^="fulaz-"] svg, [class*=" fulaz-"] svg { max-width: 100%; }
[class^="fulaz-"] img, [class^="fulaz-"] iframe, [class^="fulaz-"] video { height: auto; }

[class^="fulaz-"] input, [class^="fulaz-"] textarea, [class^="fulaz-"] select,
[class^="fulaz-"] button { max-width: 100%; }
[class^="fulaz-"] input[type="text"], [class^="fulaz-"] input[type="email"],
[class^="fulaz-"] input[type="tel"], [class^="fulaz-"] textarea, [class^="fulaz-"] select { width: 100%; }

[class^="fulaz-"] p, [class^="fulaz-"] a, [class^="fulaz-"] span,
[class^="fulaz-"] li, [class^="fulaz-"] [class*="email"], [class^="fulaz-"] [class*="phone"] {
	overflow-wrap: anywhere; word-break: break-word;
}

.fulaz-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* LTR runs (phones/emails) inside RTL text */
.fulaz-ltr, [dir="ltr"] { direction: ltr; unicode-bidi: embed; }

/* =====================================================================
   Typography baseline — body vs display, Arabic line-height
   ===================================================================== */
[class^="fulaz-"], [class*=" fulaz-"] { font-family: var(--fulaz-font); }
[class^="fulaz-"] h1, [class^="fulaz-"] h2, [class^="fulaz-"] h3,
[class^="fulaz-"] h4, [class^="fulaz-"] h5, [class^="fulaz-"] h6,
[class^="fulaz-"][class*="-title"], [class^="fulaz-"][class*="-heading"] {
	font-family: var(--fulaz-font-display);
	line-height: 1.25;
	letter-spacing: -0.01em;
	margin: 0;
}
[class^="fulaz-"] p, [class^="fulaz-"] li { line-height: 1.65; }
body.rtl [class^="fulaz-"] p, body.rtl [class^="fulaz-"] li,
html[lang^="ar"] [class^="fulaz-"] p, html[lang^="ar"] [class^="fulaz-"] li { line-height: 1.85; }
[class^="fulaz-"] [data-lang] { font-family: inherit; }

/* =====================================================================
   Direction — scoped to top-level wrappers (default RTL)
   ===================================================================== */
.fulaz-header, .fulaz-footer, .fulaz-section, .fulaz-hero,
.fulaz-inner-hero, .fulaz-cta, .fulaz-contact, .fulaz-careers, .fulaz-container {
	direction: rtl;
	text-align: right;
}
html[dir="ltr"] .fulaz-header, html[dir="ltr"] .fulaz-footer, html[dir="ltr"] .fulaz-section,
html[dir="ltr"] .fulaz-hero, html[dir="ltr"] .fulaz-inner-hero, html[dir="ltr"] .fulaz-cta,
html[dir="ltr"] .fulaz-contact, html[dir="ltr"] .fulaz-careers, html[dir="ltr"] .fulaz-container { direction: ltr; text-align: left; }

.fulaz-center, .fulaz-center h1, .fulaz-center h2, .fulaz-center h3, .fulaz-center p { text-align: center !important; }
.fulaz-center h1, .fulaz-center h2, .fulaz-center h3 { margin-inline: auto !important; }

/* =====================================================================
   Layout helpers
   ===================================================================== */
.fulaz-section { position: relative; padding: 6rem 0; background: var(--fulaz-bg); color: var(--fulaz-fg); }
@media (max-width: 767px) { .fulaz-section { padding: 3.5rem 0; } }
.fulaz-container { width: 100%; max-width: 75rem; margin-inline: auto; padding-inline: 1.5rem; }
@media (max-width: 767px) { .fulaz-container { padding-inline: 1rem; } }

.fulaz-eyebrow {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.18em;
	text-transform: uppercase; color: var(--fulaz-accent); margin-bottom: 0.75rem;
}
.fulaz-eyebrow::before, .fulaz-eyebrow::after { content: ""; width: 1.75rem; height: 2px; background: var(--fulaz-gradient-steel); }
.fulaz-eyebrow.fulaz-eyebrow-solo::after { display: none; }

.fulaz-section-head { max-width: 42rem; margin: 0 auto 3.5rem; text-align: center; }
.fulaz-section-title { font-size: 1.875rem; font-weight: 800; }
@media (min-width: 768px) { .fulaz-section-title { font-size: 3rem; } }
.fulaz-section-sub { margin-top: 1rem; color: var(--fulaz-muted-fg); font-size: 1.0625rem; }

.fulaz-text-gradient {
	background-image: var(--fulaz-gradient-steel);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Industrial background textures */
.fulaz-bg-mesh::before {
	content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.25;
	background-image:
		linear-gradient(rgba(var(--fulaz-steel-rgb),0.12) 1px, transparent 1px),
		linear-gradient(90deg, rgba(var(--fulaz-steel-rgb),0.12) 1px, transparent 1px);
	background-size: 56px 56px;
}
.fulaz-bg-rebar::after {
	content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.3;
	background-image: repeating-linear-gradient(45deg, rgba(var(--fulaz-primary-rgb),0.10) 0 2px, transparent 2px 22px);
}

/* =====================================================================
   Icon containers — universal svg + i rules
   ===================================================================== */
[class^="fulaz-"][class*="-icon"], [class*=" fulaz-"][class*="-icon"] {
	display: inline-flex; align-items: center; justify-content: center;
	flex-shrink: 0; line-height: 1; color: var(--fulaz-accent);
}
[class^="fulaz-"][class*="-icon"] svg { width: 1.25rem; height: 1.25rem; display: block; color: inherit; }
[class^="fulaz-"][class*="-icon"] svg[fill="none"] { fill: none; stroke: currentColor; }
[class^="fulaz-"][class*="-icon"] i { font-size: 1.1rem; color: inherit; line-height: 1; }

/* =====================================================================
   Buttons — incl. the signature steel "plate"
   ===================================================================== */
.fulaz-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
	font-family: var(--fulaz-font); font-weight: 600; font-size: 0.95rem; line-height: 1.2;
	padding: 0.95rem 2rem; border: 0; border-radius: var(--fulaz-radius); cursor: pointer;
	text-decoration: none; transition: var(--fulaz-transition); white-space: nowrap;
}
.fulaz-btn svg { width: 1.1rem; height: 1.1rem; }
.fulaz-btn-block { width: 100%; }

/* Steel plate button — clipped beveled edges + brushed texture + shine sweep */
a.fulaz-btn.fulaz-btn-primary, button.fulaz-btn.fulaz-btn-primary, .fulaz-btn.fulaz-btn-primary[class] {
	position: relative; isolation: isolate; color: #fff !important;
	clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 12px 100%, 0 50%);
	background: linear-gradient(145deg, var(--fulaz-navy), var(--fulaz-steel)) !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 0 rgba(0,0,0,0.28), 0 14px 32px -10px rgba(46,164,220,0.55);
}
.fulaz-btn-primary::before {
	content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0.35;
	background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 4px);
}
.fulaz-btn-primary::after {
	content: ""; position: absolute; inset: 0; z-index: 1; transform: translateX(120%);
	background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
	transition: transform 0.9s ease;
}
.fulaz-btn-primary > * { position: relative; z-index: 2; color: #fff !important; }
a.fulaz-btn.fulaz-btn-primary:hover, button.fulaz-btn.fulaz-btn-primary:hover, .fulaz-btn.fulaz-btn-primary[class]:hover {
	transform: translateY(-2px); filter: brightness(1.08); color: #fff !important;
}
.fulaz-btn-primary:hover::after { transform: translateX(-120%); }
html[dir="ltr"] .fulaz-btn-primary:hover::after { transform: translateX(120%); }

/* Light "ghost" pill button on dark backgrounds */
.fulaz-btn-ghost {
	background: rgba(255,255,255,0.1); color: #fff !important; border: 1px solid rgba(255,255,255,0.25);
	border-radius: 9999px; backdrop-filter: blur(8px); padding: 0.55rem 1.1rem; font-size: 0.85rem;
}
.fulaz-btn-ghost:hover { background: rgba(255,255,255,0.2); }

.fulaz-btn-outline { background: transparent; color: var(--fulaz-fg); border: 1px solid var(--fulaz-border); border-radius: 9999px; }
.fulaz-btn-outline:hover { border-color: var(--fulaz-accent); color: var(--fulaz-accent); }

.fulaz-btn-arrow { display: inline-flex; width: 1.5rem; height: 1.5rem; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.15); }

/* =====================================================================
   Reveal-on-scroll  (+ editor override)
   ===================================================================== */
.fulaz-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fulaz-reveal.fulaz-revealed { opacity: 1; transform: none; }
.fulaz-reveal-x { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
html[dir="ltr"] .fulaz-reveal-x { transform: translateX(-40px); }
.fulaz-reveal-x.fulaz-revealed { opacity: 1; transform: none; }

.elementor-editor-active .fulaz-reveal, .elementor-editor-active .fulaz-reveal-x,
body.elementor-editor-preview .fulaz-reveal, body.elementor-editor-preview .fulaz-reveal-x {
	opacity: 1 !important; transform: none !important; transition: none !important;
}
@media (prefers-reduced-motion: reduce) {
	.fulaz-reveal, .fulaz-reveal-x { opacity: 1 !important; transform: none !important; transition: none !important; }
}
@media (max-width: 767px) {
	.fulaz-reveal, .fulaz-reveal-x { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =====================================================================
   HEADER (Theme Builder)
   ===================================================================== */
.fulaz-header { position: fixed; top: 0; inset-inline: 0; z-index: 1000; transition: background 0.3s, box-shadow 0.3s; }
.fulaz-header[data-scrolled="true"] { background: rgba(23,66,118,0.95); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,0.1); }
.fulaz-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 5rem; max-width: 75rem; margin-inline: auto; padding-inline: 1.5rem; }
@media (max-width: 767px) { .fulaz-header-inner { padding-inline: 1rem; } }
.fulaz-header-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.fulaz-header-logo img { height: 44px; width: auto; object-fit: contain; }

.fulaz-header-nav { display: none; align-items: center; gap: 0.25rem; padding: 0.4rem; border-radius: 9999px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(8px); }
.fulaz-header-nav a, .fulaz-header-nav a:link, .fulaz-header-nav a:visited {
	padding: 0.5rem 1rem; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.75) !important;
	border-radius: 9999px; text-decoration: none !important; transition: var(--fulaz-transition);
}
.fulaz-header-nav a:hover, .fulaz-header-nav a.current-menu-item { color: #fff !important; background: rgba(255,255,255,0.1); }

.fulaz-header-cta { display: none; }
.fulaz-header-burger { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; background: transparent; border: 0; border-radius: 0.5rem; cursor: pointer; color: #fff; }
.fulaz-header-burger:hover, .fulaz-header-burger:focus { background: rgba(255,255,255,0.1); }

.fulaz-header-mobile { display: none; border-top: 1px solid rgba(255,255,255,0.1); background: rgba(5,26,54,0.97); backdrop-filter: blur(18px); max-height: calc(100dvh - 5rem); overflow-y: auto; }
.fulaz-header.is-open .fulaz-header-mobile { display: block; }
.fulaz-header-mobile-inner { max-width: 75rem; margin-inline: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.fulaz-header-mobile a, .fulaz-header-mobile a:link, .fulaz-header-mobile a:visited {
	display: block; padding: 0.75rem 0.875rem; font-size: 1rem; font-weight: 600;
	color: rgba(255,255,255,0.8) !important; text-decoration: none !important; border-radius: 0.5rem;
}
.fulaz-header-mobile a:hover, .fulaz-header-mobile a:focus, .fulaz-header-mobile a:active { color: #fff !important; background: rgba(255,255,255,0.08) !important; }
.fulaz-header-mobile .fulaz-btn { margin-top: 0.5rem; }

@media (min-width: 768px) {
	.fulaz-header-cta { display: inline-flex !important; }
}
@media (min-width: 1024px) {
	.fulaz-header-nav { display: flex !important; }
	.fulaz-header-cta { display: inline-flex !important; }
	.fulaz-header-burger { display: none !important; }
	.fulaz-header-mobile { display: none !important; }
}

/* =====================================================================
   INNER PAGE HERO
   ===================================================================== */
.fulaz-inner-hero { position: relative; overflow: hidden; padding: 9rem 0 4rem; color: #fff; background-image: linear-gradient(135deg, #0d1b2e, #1c3354); text-align: center; }
.fulaz-inner-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.22;
	background-image: linear-gradient(rgba(46,164,220,0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(46,164,220,0.12) 1px, transparent 1px);
	background-size: 56px 56px; }
.fulaz-inner-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.28;
	background-image: repeating-linear-gradient(45deg, rgba(23,66,118,0.4) 0 2px, transparent 2px 22px); }
@media (max-width: 767px) { .fulaz-inner-hero { padding: 7rem 0 3rem; } .fulaz-inner-hero::before { opacity: 0.12; } .fulaz-inner-hero::after { opacity: 0.15; } }
.fulaz-inner-hero .fulaz-eyebrow { color: var(--fulaz-accent); }
.fulaz-inner-hero .fulaz-eyebrow::before, .fulaz-inner-hero .fulaz-eyebrow::after { display: none; }
.fulaz-inner-hero h1 { font-size: 2.25rem; font-weight: 800; color: #fff !important; }
@media (min-width: 768px) { .fulaz-inner-hero h1 { font-size: 3.75rem; } }
.fulaz-inner-hero p { color: rgba(255,255,255,0.78) !important; max-width: 42rem; margin: 1rem auto 0; }
.fulaz-inner-hero-glow { position: absolute; top: -5rem; left: -5rem; width: 24rem; height: 24rem; border-radius: 50%; background: rgba(var(--fulaz-steel-rgb),0.2); filter: blur(80px); pointer-events: none; z-index: 0; }
/* Page hero is fully centred — override the RTL container text-align */
.fulaz-inner-hero .fulaz-container { text-align: center; position: relative; z-index: 1; }
.fulaz-inner-hero .fulaz-eyebrow { justify-content: center; }
.fulaz-inner-hero h1, .fulaz-inner-hero p { text-align: center; margin-inline: auto; }

/* =====================================================================
   MAIN HERO (video background)
   ===================================================================== */
.fulaz-hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--fulaz-navy-deep); color: #fff; padding: 8rem 1.5rem 6rem; isolation: isolate; }
@media (max-width: 767px) { .fulaz-hero { min-height: 100svh; padding: 7rem 1.25rem 5rem; } }
.fulaz-hero-media { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; min-width: 100%; min-height: 100%; transform: translate(-50%, -50%); object-fit: cover; object-position: center; z-index: 0; pointer-events: none; }
.fulaz-hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.fulaz-hero-overlay-1 { background: rgba(0,0,0,0.4); }
.fulaz-hero-overlay-2 { background: linear-gradient(135deg, rgba(5,26,54,0.76), rgba(23,66,118,0.6) 50%, rgba(46,164,220,0.42)); }
.fulaz-hero-overlay-3 { background: radial-gradient(ellipse at center, transparent 0%, rgba(5,26,54,0.5) 68%, rgba(5,26,54,0.82) 100%); }
.fulaz-hero-inner { position: relative; z-index: 10; max-width: 60rem; text-align: center; }
.fulaz-hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; border-radius: 9999px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(8px); margin-bottom: 2rem; font-size: 0.75rem; color: #dbeafe; }
.fulaz-hero-badge .dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--fulaz-steel); }
.fulaz-hero-title { font-size: 2.25rem; font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem; text-shadow: 0 4px 20px rgba(0,0,0,0.6); }
@media (min-width: 768px) { .fulaz-hero-title { font-size: 4.5rem; } }
.fulaz-hero-title .accent { color: var(--fulaz-steel-light); }
.fulaz-hero-sub { max-width: 40rem; margin: 0 auto 2.5rem; font-size: 1.1rem; color: rgba(255,255,255,0.85); text-shadow: 0 2px 12px rgba(0,0,0,0.7); }
.fulaz-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.fulaz-hero-fade { position: absolute; bottom: 0; inset-inline: 0; height: 8rem; z-index: 5; pointer-events: none; background: linear-gradient(to top, var(--fulaz-section-dark), transparent); }

/* =====================================================================
   SERVICES — 3D coverflow carousel (dark)
   ===================================================================== */
.fulaz-services { position: relative; overflow: hidden; padding: 7rem 0; background: var(--fulaz-section-dark); color: #fff; isolation: isolate; }
.fulaz-services .fulaz-section-head .fulaz-eyebrow { justify-content: center; }
.fulaz-services .fulaz-section-title { color: #fff; }
.fulaz-services .fulaz-section-sub { color: rgba(255,255,255,0.65); }
.fulaz-services-glow { position: absolute; inset: 0; z-index: -1; pointer-events: none; background:
	radial-gradient(ellipse at top, rgba(23,66,118,0.55), transparent 60%),
	radial-gradient(ellipse at bottom, rgba(46,164,220,0.22), transparent 60%); }

.fulaz-coverflow { position: relative; margin: 0 auto; max-width: 1100px; }

/* ---- Desktop coverflow ---- */
@media (min-width: 768px) {
	.fulaz-coverflow-stage { position: relative; height: 520px; display: flex; align-items: center; justify-content: center; perspective: 1600px; }
	.fulaz-cf-card {
		position: absolute; top: 50%; left: 50%; width: 290px; height: 470px; margin: -235px 0 0 -145px;
		border: 0; padding: 0; cursor: pointer; border-radius: 1.5rem; overflow: hidden; background: #06090f;
		transform-style: preserve-3d; transition: transform 0.7s ease, opacity 0.7s ease, box-shadow 0.7s ease;
		box-shadow: 0 18px 50px -16px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
	}
	.fulaz-cf-card.is-active {
		box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(46,164,220,0.5), 0 0 60px -10px rgba(46,164,220,0.6);
	}
	.fulaz-cf-active-only { opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
	.fulaz-cf-card.is-active .fulaz-cf-active-only { opacity: 1; pointer-events: auto; }
	.fulaz-cf-card h3 { font-size: 1.25rem; }
	.fulaz-cf-card.is-active h3 { font-size: 1.875rem; }
}

/* ---- Mobile scroll-snap ---- */
@media (max-width: 767px) {
	.fulaz-coverflow-stage { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 1rem 0; }
	.fulaz-coverflow-stage::-webkit-scrollbar { display: none; }
	.fulaz-cf-card { scroll-snap-align: center; flex: 0 0 85%; max-width: 340px; height: 440px; margin-inline: auto; position: relative; border: 0; padding: 0; border-radius: 1.5rem; overflow: hidden; background: #06090f; box-shadow: 0 22px 60px -18px rgba(0,0,0,0.7), 0 0 0 1px rgba(46,164,220,0.4); }
	.fulaz-cf-card:first-child { margin-inline-start: 7.5%; }
	.fulaz-cf-card:last-child { margin-inline-end: 7.5%; }
	.fulaz-cf-card h3 { font-size: 1.5rem; }
	.fulaz-cf-prev, .fulaz-cf-next { display: none !important; }
}

.fulaz-cf-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.fulaz-cf-card:hover img { transform: scale(1.08); }
.fulaz-cf-tint { position: absolute; inset: 0; mix-blend-mode: multiply; opacity: 0.8; background: linear-gradient(160deg, rgba(46,164,220,0.55), rgba(5,26,54,0.78) 60%, rgba(5,26,54,0.95)); }
.fulaz-cf-shade { position: absolute; inset-inline: 0; bottom: 0; height: 66%; background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4), transparent); }
.fulaz-cf-tag { position: absolute; top: 1.25rem; inset-inline-end: 1.25rem; padding: 0.25rem 0.65rem; border-radius: 9999px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(8px); }
.fulaz-cf-body { position: absolute; inset-inline: 0; bottom: 0; padding: 1.75rem; text-align: right; }
html[dir="ltr"] .fulaz-cf-body { text-align: left; }
.fulaz-cf-body h3 { font-weight: 800; line-height: 1.2; color: #fff; margin-bottom: 0.5rem; text-shadow: 0 2px 16px rgba(0,0,0,0.6); transition: font-size 0.5s ease; }
.fulaz-cf-rule { display: block; width: 3rem; height: 1px; background: rgba(255,255,255,0.7); margin: 0 0 0.75rem auto; }
html[dir="ltr"] .fulaz-cf-rule { margin: 0 auto 0.75rem 0; }
.fulaz-cf-body p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.fulaz-cf-cta { cursor: pointer; }

.fulaz-cf-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 2.75rem; height: 2.75rem; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); transition: var(--fulaz-transition); }
.fulaz-cf-arrow:hover { background: rgba(255,255,255,0.2); transform: translateY(-50%) scale(1.1); }
.fulaz-cf-prev { inset-inline-end: 0; }
.fulaz-cf-next { inset-inline-start: 0; }

.fulaz-cf-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 2rem; }
.fulaz-cf-dot { width: 0.375rem; height: 0.375rem; border-radius: 9999px; background: rgba(255,255,255,0.3); border: 0; cursor: pointer; transition: var(--fulaz-transition); padding: 0; }
.fulaz-cf-dot.is-active { width: 2rem; background: var(--fulaz-gradient-steel); }
.fulaz-cf-dot:hover { background: rgba(255,255,255,0.5); }

.fulaz-services-more { margin-top: 3rem; text-align: center; }

/* =====================================================================
   STATS counter
   ===================================================================== */
.fulaz-stats-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.5rem; }
@media (min-width: 1024px) { .fulaz-stats-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.5rem; } }
.fulaz-stat { text-align: center; padding: 1.5rem 0.75rem; }
.fulaz-stat-icon { margin: 0 auto 1rem; width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: var(--fulaz-gradient-steel); box-shadow: var(--fulaz-shadow-steel); color: #fff; }
.fulaz-stat-icon svg { width: 1.75rem; height: 1.75rem; }
.fulaz-stat-num { font-size: 2.25rem; font-weight: 800; line-height: 1; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .fulaz-stat-num { font-size: 3rem; } }
.fulaz-stat-label { font-size: 0.875rem; color: var(--fulaz-muted-fg); }

/* =====================================================================
   ABOUT preview / story (2-col)
   ===================================================================== */
.fulaz-split { display: grid; grid-template-columns: minmax(0,1fr); gap: 3.5rem; align-items: center; }
@media (min-width: 1024px) { .fulaz-split { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.fulaz-split-media { position: relative; }
.fulaz-split-media-frame { position: relative; border-radius: 1rem; overflow: hidden; box-shadow: var(--fulaz-shadow-deep); border: 1px solid rgba(255,255,255,0.1); }
.fulaz-split-media-frame img { width: 100%; height: 500px; object-fit: cover; }
@media (max-width: 767px) { .fulaz-split-media-frame img { height: 300px; } }
.fulaz-split-media-glow { position: absolute; inset: -1.5rem; border-radius: 1.5rem; background: var(--fulaz-gradient-steel); opacity: 0.3; filter: blur(40px); z-index: -1; }
.fulaz-plate-badge { position: absolute; bottom: -2rem; inset-inline-start: -1.5rem; padding: 1.25rem 1.75rem; color: #fff; overflow: hidden;
	clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 14px 100%, 0 50%);
	background: linear-gradient(145deg, var(--fulaz-navy-deep), var(--fulaz-navy) 55%, var(--fulaz-steel));
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -2px 0 rgba(0,0,0,0.35), 0 18px 40px -12px rgba(46,164,220,0.6); }
.fulaz-plate-badge .fulaz-plate-brushed { position: absolute; inset: 0; opacity: 0.3; pointer-events: none; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.1) 0 1px, transparent 1px 4px); }
.fulaz-plate-badge .fulaz-plate-rivet { position: absolute; width: 0.375rem; height: 0.375rem; border-radius: 50%; background: rgba(255,255,255,0.7); }
.fulaz-plate-badge .fulaz-plate-rivet.tr { top: 0.5rem; right: 1.25rem; } .fulaz-plate-badge .fulaz-plate-rivet.tl { top: 0.5rem; left: 1.25rem; }
.fulaz-plate-badge .fulaz-plate-rivet.br { bottom: 0.5rem; right: 1.25rem; } .fulaz-plate-badge .fulaz-plate-rivet.bl { bottom: 0.5rem; left: 1.25rem; }
.fulaz-plate-badge .num { position: relative; font-size: 2.25rem; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.fulaz-plate-badge .lbl { position: relative; font-size: 0.75rem; margin-top: 0.5rem; opacity: 0.9; }
/* Mobile: let the plate badge extend below the image frame,
   and give the media block bottom margin so the next column clears it */
@media (max-width: 767px) {
	.fulaz-split { gap: 2rem; }
	.fulaz-split > * { min-width: 0; }
	.fulaz-split-media { margin-bottom: 2.5rem; max-width: 100%; overflow: visible; }
	.fulaz-split-media-glow { display: none; }
	.fulaz-split-media-frame { border-radius: 0.75rem; }
	.fulaz-split-media-frame img { height: 280px; }
	.fulaz-plate-badge { bottom: -1.25rem; inset-inline-start: 0.75rem; padding: 0.75rem 1.1rem; }
	.fulaz-plate-badge .num { font-size: 1.5rem; }
	.fulaz-plate-badge .lbl { font-size: 0.65rem; max-width: 8rem; }
	/* text column */
	.fulaz-split > div:last-child { text-align: start; }
	.fulaz-split .fulaz-section-title { font-size: 1.25rem !important; }
	.fulaz-split p { font-size: 0.95rem !important; margin-bottom: 1.25rem !important; }
	.fulaz-points { grid-template-columns: minmax(0,1fr); gap: 0.6rem; }
	.fulaz-point { padding: 0.6rem; }
	.fulaz-point-icon { width: 2.25rem; height: 2.25rem; min-width: 2.25rem; }
	.fulaz-point span:last-child { font-size: 0.8rem; }
	.fulaz-btn { font-size: 0.85rem; padding-inline: 1.25rem; }
}

.fulaz-points { display: grid; grid-template-columns: minmax(0,1fr); gap: 0.75rem; margin: 0 0 2.5rem; padding: 0; list-style: none; }
@media (min-width: 640px) { .fulaz-points { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.fulaz-point { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; border: 1px solid rgba(var(--fulaz-primary-rgb),0.12); border-radius: 0.75rem; background: rgba(255,255,255,0.6); transition: var(--fulaz-transition); }
.fulaz-point:hover { border-color: rgba(var(--fulaz-steel-rgb),0.6); transform: translateY(-2px); }
.fulaz-point-icon { flex-shrink: 0; width: 2.5rem; height: 2.5rem; min-width: 2.5rem; border-radius: 0.6rem; color: #fff; display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg, var(--fulaz-navy), var(--fulaz-steel)); box-shadow: var(--fulaz-shadow-steel); }
.fulaz-point-icon svg { width: 1.25rem; height: 1.25rem; }
.fulaz-point span:last-child { font-size: 0.875rem; font-weight: 500; line-height: 1.5; min-width: 0; }

/* =====================================================================
   GALLERY
   ===================================================================== */
.fulaz-gallery-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: 1.5rem; }
@media (min-width: 768px) { .fulaz-gallery-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.fulaz-gallery-item { position: relative; border-radius: 1rem; overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--fulaz-shadow-steel); }
.fulaz-gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.fulaz-gallery-item:hover img { transform: scale(1.1); }
.fulaz-gallery-item-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,26,54,0.95), rgba(5,26,54,0.2), transparent); }
.fulaz-gallery-item-body { position: absolute; inset-inline: 0; bottom: 0; padding: 1.5rem; color: #fff; }
.fulaz-gallery-item-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fulaz-steel-light); margin-bottom: 0.5rem; }
.fulaz-gallery-item-body h3 { font-size: 1.5rem; font-weight: 700; }

/* =====================================================================
   AFFILIATES / cards grid
   ===================================================================== */
.fulaz-cards-3 { display: grid; grid-template-columns: minmax(0,1fr); gap: 1.75rem; }
@media (min-width: 768px) { .fulaz-cards-3 { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.fulaz-affiliate { position: relative; border-radius: 1.5rem; padding: 2rem; overflow: hidden; transition: transform 0.5s ease; background:
	linear-gradient(160deg, color-mix(in oklab, var(--fulaz-card) 90%, var(--fulaz-steel) 10%), color-mix(in oklab, var(--fulaz-card) 96%, var(--fulaz-navy) 4%)), var(--fulaz-card);
	border: 1px solid var(--fulaz-border); }
.fulaz-affiliate:hover { transform: translateY(-8px); border-color: rgba(var(--fulaz-steel-rgb),0.5); }
/* corner rivets */
.fulaz-affiliate-rivet { position: absolute; width: 0.375rem; height: 0.375rem; border-radius: 50%; background: rgba(var(--fulaz-steel-rgb),0.4); transition: background 0.3s; z-index: 2; }
.fulaz-affiliate:hover .fulaz-affiliate-rivet { background: var(--fulaz-accent); }
.fulaz-affiliate-rivet.tr { top: 0.75rem; right: 0.75rem; } .fulaz-affiliate-rivet.tl { top: 0.75rem; left: 0.75rem; }
.fulaz-affiliate-rivet.br { bottom: 0.75rem; right: 0.75rem; } .fulaz-affiliate-rivet.bl { bottom: 0.75rem; left: 0.75rem; }
/* hover top accent bar */
.fulaz-affiliate-topbar { position: absolute; inset-inline: 0; top: 0; height: 3px; background: var(--fulaz-gradient-steel); transform: scaleX(0); transform-origin: right; transition: transform 0.5s ease; border-radius: 1.5rem 1.5rem 0 0; z-index: 2; }
html[dir="ltr"] .fulaz-affiliate-topbar { transform-origin: left; }
.fulaz-affiliate:hover .fulaz-affiliate-topbar { transform: scaleX(1); }
/* logo placeholder panel */
.fulaz-affiliate-logo { position: relative; aspect-ratio: 16/9; border-radius: 1rem; margin-bottom: 1.5rem; overflow: hidden; display: flex; align-items: center; justify-content: center;
	background: linear-gradient(145deg, rgba(5,26,54,0.92), rgba(23,66,118,0.7));
	box-shadow: inset 0 2px 0 rgba(255,255,255,0.12), inset 0 -2px 0 rgba(0,0,0,0.3); }
.fulaz-affiliate-logo-brushed { position: absolute; inset: 0; opacity: 0.2; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.14) 0 1px, transparent 1px 6px); }
.fulaz-affiliate-logo-inner { position: absolute; inset: 0.75rem; border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.15); display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); gap: 0.5rem; }
.fulaz-affiliate-logo-inner > svg { width: 2.5rem; height: 2.5rem; opacity: 0.8; }
.fulaz-affiliate-logo-label { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.fulaz-affiliate-logo-label svg { width: 0.75rem; height: 0.75rem; }
.fulaz-affiliate-logo > img { position: relative; z-index: 1; max-height: 70%; max-width: 80%; width: auto; object-fit: contain; }
.fulaz-affiliate-logo-rivet { position: absolute; width: 0.375rem; height: 0.375rem; border-radius: 50%; background: rgba(255,255,255,0.4); }
.fulaz-affiliate-logo-rivet.tr { top: 0.5rem; right: 0.5rem; } .fulaz-affiliate-logo-rivet.tl { top: 0.5rem; left: 0.5rem; }
.fulaz-affiliate-logo-rivet.br { bottom: 0.5rem; right: 0.5rem; } .fulaz-affiliate-logo-rivet.bl { bottom: 0.5rem; left: 0.5rem; }
.fulaz-affiliate-body { position: relative; z-index: 1; }
.fulaz-affiliate-name-en { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fulaz-accent); margin-bottom: 0.25rem; }
.fulaz-affiliate h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.75rem; transition: color 0.3s; }
.fulaz-affiliate:hover h3 { color: var(--fulaz-accent); }
.fulaz-affiliate p { color: var(--fulaz-muted-fg); font-size: 0.9rem; margin-bottom: 1.25rem; }
.fulaz-affiliate-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--fulaz-accent); font-weight: 700; font-size: 0.875rem; text-decoration: none; }
.fulaz-affiliate-link-text { position: relative; }
.fulaz-affiliate-link-text::after { content: ""; position: absolute; bottom: -2px; inset-inline: 0; height: 1px; background: var(--fulaz-accent); transform: scaleX(0); transform-origin: right; transition: transform 0.3s; }
html[dir="ltr"] .fulaz-affiliate-link-text::after { transform-origin: left; }
.fulaz-affiliate:hover .fulaz-affiliate-link-text::after { transform: scaleX(1); }
.fulaz-affiliate-link-arrow { display: inline-flex; width: 1.25rem; height: 1.25rem; align-items: center; justify-content: center; border-radius: 50%; background: rgba(var(--fulaz-steel-rgb),0.1); color: var(--fulaz-accent); transition: background 0.3s, color 0.3s, transform 0.3s; }
.fulaz-affiliate-link-arrow svg { width: 0.75rem; height: 0.75rem; }
.fulaz-affiliate:hover .fulaz-affiliate-link-arrow { background: var(--fulaz-accent); color: #fff; transform: translateX(-0.25rem); }
html[dir="ltr"] .fulaz-affiliate:hover .fulaz-affiliate-link-arrow { transform: translateX(0.25rem); }
.fulaz-affiliate-link-arrow { display: inline-flex; width: 1.25rem; height: 1.25rem; align-items: center; justify-content: center; border-radius: 50%; background: rgba(var(--fulaz-steel-rgb),0.1); transition: all 0.3s; }
.fulaz-affiliate-link-arrow svg { width: 0.75rem; height: 0.75rem; }
.fulaz-affiliate:hover .fulaz-affiliate-link-arrow { background: var(--fulaz-accent); color: #fff; transform: translateX(0.25rem); }

/* =====================================================================
   PRODUCTS (rebar rack)
   ===================================================================== */
.fulaz-products-rack { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; padding-top: 1.5rem; }
@media (min-width: 1024px) { .fulaz-products-rack { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.5rem; } }
.fulaz-rebar { position: relative; display: flex; flex-direction: column; align-items: center; cursor: default; }
.fulaz-rebar-cap { position: relative; z-index: 2; border-radius: 50%; border: 2px solid rgba(110,195,235,0.7); width: 78px; height: 78px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800;
	background: radial-gradient(circle at 35% 30%, #b9def2, var(--fulaz-steel) 45%, var(--fulaz-navy) 90%);
	box-shadow: inset 0 4px 8px rgba(255,255,255,0.35), inset 0 -6px 10px rgba(0,0,0,0.4), 0 12px 28px -8px rgba(46,164,220,0.55);
	transition: transform 0.5s; }
.fulaz-rebar:hover .fulaz-rebar-cap { transform: translateY(-8px) scale(1.08); }
.fulaz-rebar-body { width: 100%; margin-top: -0.75rem; border-radius: 6px; min-height: 34px;
	background: linear-gradient(180deg, #2c2f33 0%, #8a8d90 35%, #d6d8da 50%, #8a8d90 65%, #2c2f33 100%);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 18px 30px -14px rgba(0,0,0,0.5); position: relative; overflow: hidden; }
.fulaz-rebar-body::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(110deg, transparent 0 14px, rgba(0,0,0,0.35) 14px 16px, transparent 16px 18px, rgba(255,255,255,0.18) 18px 19px); }
.fulaz-rebar-spec { margin-top: 1.5rem; width: 100%; text-align: center; padding: 1rem 0.5rem; border-radius: 0.75rem; border: 1px solid rgba(var(--fulaz-border),0.6); background: rgba(255,255,255,0.6); transition: var(--fulaz-transition); }
.fulaz-rebar:hover .fulaz-rebar-spec { border-color: rgba(var(--fulaz-steel-rgb),0.6); background: var(--fulaz-card); box-shadow: var(--fulaz-shadow-steel); }
.fulaz-rebar-spec-d { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fulaz-accent); margin-bottom: 0.25rem; }
.fulaz-rebar-spec-use { font-size: 0.9rem; font-weight: 600; }
.fulaz-rebar-spec-w { font-size: 0.75rem; color: var(--fulaz-muted-fg); margin-top: 0.25rem; }
.fulaz-products-features { margin-top: 3.5rem; display: grid; grid-template-columns: minmax(0,1fr); gap: 1rem; }
@media (min-width: 640px) { .fulaz-products-features { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.fulaz-feature { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; border-radius: 0.75rem; border: 1px solid rgba(var(--fulaz-border),0.6); background: rgba(255,255,255,0.5); }
.fulaz-feature-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.6rem; color: #fff; background: var(--fulaz-gradient-steel); }
.fulaz-feature b { font-size: 0.9rem; display: block; }
.fulaz-feature span { font-size: 0.75rem; color: var(--fulaz-muted-fg); }

/* =====================================================================
   PROCESS steps / numbered cards
   ===================================================================== */
.fulaz-steps { display: grid; grid-template-columns: minmax(0,1fr); gap: 1.5rem; }
@media (min-width: 640px) { .fulaz-steps { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .fulaz-steps { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.fulaz-step { position: relative; padding: 2rem; border-radius: 1rem; background: var(--fulaz-card); border: 1px solid var(--fulaz-border); transition: box-shadow 0.3s; }
.fulaz-step:hover { box-shadow: var(--fulaz-shadow-steel); }
.fulaz-step-num { font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 1rem; opacity: 0.85; }
.fulaz-step h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.fulaz-step p { color: var(--fulaz-muted-fg); }

/* MISSION / VISION + VALUES */
.fulaz-mv-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: 2rem; max-width: 64rem; margin-inline: auto; }
@media (min-width: 768px) { .fulaz-mv-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.fulaz-mv { position: relative; transition: transform 0.5s ease; }
.fulaz-mv:hover { transform: translateY(-4px); }
.fulaz-mv-frame { position: absolute; inset: -0.5rem; border-radius: 1.3rem; z-index: 0; pointer-events: none;
	background: linear-gradient(145deg, color-mix(in oklab, var(--fulaz-steel) 35%, transparent), color-mix(in oklab, var(--fulaz-navy-deep) 60%, transparent));
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -1px 0 rgba(0,0,0,0.3); }
.fulaz-mv-glow { position: absolute; inset: -1rem; border-radius: 1.5rem; z-index: -1; pointer-events: none; background: var(--fulaz-gradient-steel); opacity: 0.2; filter: blur(40px); }
.fulaz-mv-card { position: relative; z-index: 1; border-radius: 1rem; padding: 2rem; color: #fff; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: var(--fulaz-shadow-deep);
	background: linear-gradient(145deg, var(--fulaz-navy-deep), var(--fulaz-navy) 55%, color-mix(in oklab, var(--fulaz-steel) 35%, var(--fulaz-navy-deep))); }
.fulaz-mv-brushed { position: absolute; inset: 0; opacity: 0.25; pointer-events: none; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.1) 0 1px, transparent 1px 4px); }
.fulaz-mv-scan { position: absolute; inset: 0; opacity: 0.15; mix-blend-mode: overlay; pointer-events: none; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.18) 0 1px, transparent 1px 9px); }
.fulaz-mv-rivet { position: absolute; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(46,164,220,0.6)); box-shadow: inset 0 -1px 0 rgba(0,0,0,0.4), 0 0 5px rgba(46,164,220,0.6); z-index: 2; }
.fulaz-mv-rivet.tr { top: 0.75rem; right: 0.75rem; } .fulaz-mv-rivet.tl { top: 0.75rem; left: 0.75rem; }
.fulaz-mv-rivet.br { bottom: 0.75rem; right: 0.75rem; } .fulaz-mv-rivet.bl { bottom: 0.75rem; left: 0.75rem; }
.fulaz-mv-body { position: relative; z-index: 3; }
.fulaz-mv-icon { position: relative; width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 1.25rem;
	background: linear-gradient(145deg, var(--fulaz-navy), var(--fulaz-steel));
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -1px 0 rgba(0,0,0,0.3), 0 10px 22px -10px rgba(46,164,220,0.6); }
.fulaz-mv-icon svg { width: 1.75rem; height: 1.75rem; }
.fulaz-mv-icon-rivet { position: absolute; width: 0.25rem; height: 0.25rem; border-radius: 50%; background: rgba(255,255,255,0.7); }
.fulaz-mv-icon-rivet.tr { top: 0.25rem; right: 0.25rem; } .fulaz-mv-icon-rivet.tl { top: 0.25rem; left: 0.25rem; }
.fulaz-mv-icon-rivet.br { bottom: 0.25rem; right: 0.25rem; } .fulaz-mv-icon-rivet.bl { bottom: 0.25rem; left: 0.25rem; }
.fulaz-mv h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.fulaz-mv p { color: rgba(255,255,255,0.8); line-height: 1.85; }

.fulaz-values-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: 2.5rem; }
@media (min-width: 640px) { .fulaz-values-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem; } }
@media (min-width: 1024px) { .fulaz-values-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.fulaz-value { position: relative; padding-top: 3rem; }
.fulaz-value-badge { position: absolute; top: -0.5rem; left: 50%; transform: translateX(-50%); width: 5rem; height: 5rem; z-index: 20; transition: transform 0.7s ease;
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	background: linear-gradient(145deg, var(--fulaz-steel), var(--fulaz-navy) 55%, var(--fulaz-navy-deep));
	box-shadow: inset 0 2px 0 rgba(255,255,255,0.4), inset 0 -2px 0 rgba(0,0,0,0.4), 0 14px 30px -10px rgba(46,164,220,0.6); }
.fulaz-value:hover .fulaz-value-badge { transform: translateX(-50%) rotate(30deg); }
.fulaz-value-badge span { position: absolute; inset: 6px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 1.25rem; line-height: 1; letter-spacing: 0.05em;
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	background: linear-gradient(145deg, var(--fulaz-navy-deep), var(--fulaz-navy));
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.15); }
.fulaz-value:hover .fulaz-value-badge span { transform: rotate(-30deg); }
.fulaz-value-card { position: relative; overflow: hidden; background: var(--fulaz-card); border: 1px solid var(--fulaz-border); border-radius: 1rem; padding: 3.5rem 1.5rem 1.5rem; text-align: center; transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease; height: 100%; }
.fulaz-value-card:hover { transform: translateY(-6px); border-color: rgba(var(--fulaz-steel-rgb),0.5); box-shadow: var(--fulaz-shadow-steel); }
.fulaz-value-card::before { content: ""; position: absolute; inset-inline: 0; top: 0; height: 2.5rem; opacity: 0.25; pointer-events: none; background: linear-gradient(180deg, color-mix(in oklab, var(--fulaz-steel) 40%, transparent), transparent); }
.fulaz-value-card::after { content: ""; position: absolute; inset-inline: 1.5rem; bottom: 1rem; height: 2px; background: var(--fulaz-gradient-steel); transform: scaleX(0); transform-origin: right; transition: transform 0.7s ease; }
html[dir="ltr"] .fulaz-value-card::after { transform-origin: left; }
.fulaz-value-card:hover::after { transform: scaleX(1); }
.fulaz-value-rivet { position: absolute; width: 0.375rem; height: 0.375rem; border-radius: 50%; background: rgba(var(--fulaz-steel-rgb),0.6); }
.fulaz-value-rivet.tr { top: 3rem; right: 0.75rem; } .fulaz-value-rivet.tl { top: 3rem; left: 0.75rem; }
.fulaz-value-rivet.br { bottom: 0.75rem; right: 0.75rem; } .fulaz-value-rivet.bl { bottom: 0.75rem; left: 0.75rem; }
.fulaz-value-card .fulaz-value-icon { position: relative; color: var(--fulaz-accent); margin: 0 auto 0.75rem; transition: transform 0.5s ease; }
.fulaz-value-card:hover .fulaz-value-icon { transform: scale(1.1); }
.fulaz-value-card .fulaz-value-icon svg { width: 2.25rem; height: 2.25rem; }
.fulaz-value-card h3 { position: relative; font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.fulaz-value-card p { position: relative; font-size: 0.875rem; color: var(--fulaz-muted-fg); }

/* =====================================================================
   CTA band
   ===================================================================== */
.fulaz-cta { position: relative; overflow: hidden; padding: 6rem 0; color: #fff; }
.fulaz-cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fulaz-cta-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(5,18,35,0.95), rgba(23,66,118,0.85)); }
.fulaz-cta-inner { position: relative; text-align: center; }
.fulaz-cta h2 { font-size: 1.875rem; font-weight: 800; margin-bottom: 1rem; }
@media (min-width: 768px) { .fulaz-cta h2 { font-size: 3rem; } }
.fulaz-cta p { color: rgba(255,255,255,0.85); max-width: 42rem; margin: 0 auto 2rem; }

/* =====================================================================
   SERVICE DETAIL
   ===================================================================== */
.fulaz-sd-hero { position: relative; overflow: hidden; padding: 9rem 0 4rem; color: #fff; background: var(--fulaz-navy-deep); }
.fulaz-sd-hero .fulaz-container { text-align: center; }
.fulaz-sd-hero .fulaz-eyebrow { color: var(--fulaz-steel-light); justify-content: center; }
.fulaz-sd-back { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.8); font-size: 0.875rem; text-decoration: none; margin-bottom: 1.5rem; }
.fulaz-sd-hero h1 { font-size: 2.25rem; font-weight: 800; color: #fff !important; margin-bottom: 1rem; }
@media (min-width: 768px) { .fulaz-sd-hero h1 { font-size: 3.75rem; } }
.fulaz-sd-hero p { color: rgba(255,255,255,0.8); max-width: 42rem; margin-inline: auto; }
.fulaz-sd-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: 2.5rem; }
@media (min-width: 1024px) { .fulaz-sd-grid { grid-template-columns: 3fr 2fr; } }
.fulaz-sd-body h2 { font-size: 1.875rem; font-weight: 800; margin-bottom: 1.5rem; }
.fulaz-sd-body p { color: var(--fulaz-muted-fg); font-size: 1.0625rem; line-height: 1.9; margin-bottom: 1rem; }
.fulaz-sd-features-title { font-size: 1.5rem; font-weight: 700; margin: 2.5rem 0 1.25rem; }
.fulaz-sd-features { display: grid; grid-template-columns: minmax(0,1fr); gap: 0.75rem; list-style: none; padding: 0; }
@media (min-width: 640px) { .fulaz-sd-features { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.fulaz-sd-feature { display: flex; align-items: flex-start; gap: 0.5rem; padding: 1rem; border-radius: 0.75rem; background: var(--fulaz-card); border: 1px solid var(--fulaz-border); }
.fulaz-sd-feature .fulaz-sd-feature-icon { color: var(--fulaz-accent); margin-top: 0.1rem; }
.fulaz-sd-feature span:last-child { font-weight: 600; }
.fulaz-sd-media { border-radius: 1rem; overflow: hidden; box-shadow: var(--fulaz-shadow-deep); border: 1px solid var(--fulaz-border); position: sticky; top: 7rem; }
.fulaz-sd-media img { width: 100%; height: 24rem; object-fit: cover; }

/* =====================================================================
   BRAND IDENTITY carousel
   ===================================================================== */
.fulaz-brand { position: relative; overflow: hidden; padding: 4rem 0 7rem; background: linear-gradient(to bottom, var(--fulaz-navy-deep), var(--fulaz-navy), var(--fulaz-navy-deep)); color: #fff; isolation: isolate; }
@media (min-width: 768px) { .fulaz-brand { padding: 7rem 0; } }
.fulaz-brand .fulaz-section-sub { color: rgba(255,255,255,0.7); }
.fulaz-brand-mesh { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.08;
	background-image: linear-gradient(rgba(46,164,220,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(46,164,220,0.5) 1px, transparent 1px); background-size: 56px 56px; }
.fulaz-brand-blob { position: absolute; width: 24rem; height: 24rem; border-radius: 50%; filter: blur(120px); z-index: -1; pointer-events: none; }
.fulaz-brand-blob.a { top: 5rem; right: -6rem; background: rgba(46,164,220,0.2); }
.fulaz-brand-blob.b { bottom: 5rem; left: -6rem; background: rgba(23,66,118,0.3); }
.fulaz-brand-deco { position: absolute; border: 2px solid rgba(46,164,220,0.15); z-index: -1; pointer-events: none; }
.fulaz-brand-deco.a { top: 2.5rem; left: 2.5rem; width: 10rem; height: 10rem; transform: rotate(12deg); }
.fulaz-brand-deco.b { bottom: 2.5rem; right: 2.5rem; width: 8rem; height: 8rem; transform: rotate(-12deg); }
@media (max-width: 767px) { .fulaz-brand-deco { display: none; } }
.fulaz-brand-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; border-radius: 9999px; background: rgba(var(--fulaz-steel-rgb),0.15); border: 1px solid rgba(var(--fulaz-steel-rgb),0.3); color: var(--fulaz-steel-light); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }

/* centered-peek carousel */
.fulaz-bi { position: relative; }
.fulaz-bi-viewport { overflow: hidden; padding: 1.5rem 0; }
.fulaz-bi-track { display: flex; align-items: center; gap: 1.5rem; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); will-change: transform; direction: ltr; }
.fulaz-bi-slide { flex: 0 0 70%; }
@media (min-width: 640px) { .fulaz-bi-slide { flex-basis: 50%; } }
@media (min-width: 768px) { .fulaz-bi-slide { flex-basis: 38%; } }
@media (min-width: 1024px) { .fulaz-bi-slide { flex-basis: 34%; } }
.fulaz-bi-frame { position: relative; border-radius: 1rem; padding: 2px; transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.5s ease;
	background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05)); opacity: 0.6; transform: scale(0.9); }
.fulaz-bi-slide.is-active .fulaz-bi-frame { background: linear-gradient(135deg, var(--fulaz-accent), var(--fulaz-steel-light), var(--fulaz-steel)); box-shadow: var(--fulaz-shadow-steel); opacity: 1; transform: scale(1.08); }
.fulaz-bi-inner { border-radius: 14px; overflow: hidden; background: #0e2238; }
.fulaz-bi-inner img { display: block; width: 100%; height: 100%; aspect-ratio: 16/10; object-fit: cover; }
.fulaz-bi-empty { aspect-ratio: 16/10; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; color: rgba(255,255,255,0.55); font-size: 0.8rem; text-align: center; padding: 1rem;
	background: linear-gradient(145deg, rgba(46,164,220,0.18), rgba(23,66,118,0.35)); }
.fulaz-bi-empty svg { width: 1.75rem; height: 1.75rem; opacity: 0.7; }
.fulaz-bi-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); transition: var(--fulaz-transition); }
@media (min-width: 768px) { .fulaz-bi-arrow { width: 3.5rem; height: 3.5rem; } }
.fulaz-bi-arrow:hover { background: var(--fulaz-accent); transform: translateY(-50%) scale(1.1); }
.fulaz-bi-prev { right: 0.25rem; } .fulaz-bi-next { left: 0.25rem; }
@media (min-width: 768px) { .fulaz-bi-prev { right: 1rem; } .fulaz-bi-next { left: 1rem; } }
.fulaz-bi-foot { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: 2rem; }
.fulaz-bi-dots { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.375rem; max-width: 28rem; }
.fulaz-bi-dot { height: 0.5rem; width: 0.5rem; border-radius: 9999px; background: rgba(255,255,255,0.25); border: 0; cursor: pointer; padding: 0; transition: var(--fulaz-transition); }
.fulaz-bi-dot.is-active { width: 2rem; background: var(--fulaz-accent); }
.fulaz-bi-dot:hover { background: rgba(255,255,255,0.5); }
.fulaz-bi-counter { color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.fulaz-brand-download { margin-top: 3rem; text-align: center; }

/* Generic carousel nav (brand-identity widget) */
.fulaz-carousel-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.fulaz-carousel-btn { width: 2.75rem; height: 2.75rem; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: var(--fulaz-transition); }
.fulaz-carousel-btn:hover { background: rgba(255,255,255,0.2); transform: scale(1.1); }
.fulaz-carousel-dots { display: flex; gap: 0.5rem; }
.fulaz-carousel-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: rgba(255,255,255,0.3); border: 0; cursor: pointer; transition: var(--fulaz-transition); padding: 0; }
.fulaz-carousel-dot.is-active { width: 2rem; background: var(--fulaz-gradient-steel); }

/* =====================================================================
   CONTACT
   ===================================================================== */
.fulaz-contact { padding: 6rem 0; background: var(--fulaz-bg); }
@media (max-width: 767px) { .fulaz-contact { padding: 3rem 0; } }
.fulaz-contact-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: 2rem; }
@media (min-width: 1024px) { .fulaz-contact-grid { grid-template-columns: 2fr 3fr; gap: 2.5rem; } }
.fulaz-contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.fulaz-contact-card { position: relative; display: flex; gap: 1rem; padding: 1.25rem; border-radius: 1rem; color: #fff; border: 1px solid rgba(255,255,255,0.1); box-shadow: var(--fulaz-shadow-deep);
	background: linear-gradient(145deg, var(--fulaz-navy-deep), var(--fulaz-navy) 60%, #1d4a82); }
.fulaz-contact-card-icon { width: 3rem; height: 3rem; border-radius: 0.75rem; flex-shrink: 0; color: #fff; background: linear-gradient(145deg, var(--fulaz-navy), var(--fulaz-steel)); }
.fulaz-contact-card h3 { font-weight: 700; margin-bottom: 0.25rem; }
.fulaz-contact-card a, .fulaz-contact-card p { display: block; color: rgba(255,255,255,0.8); text-decoration: none; }
.fulaz-contact-card a:hover { color: var(--fulaz-steel-light); }

.fulaz-contact-form { position: relative; background: var(--fulaz-card); border-radius: 1rem; padding: 2.5rem; box-shadow: var(--fulaz-shadow-deep); }
@media (max-width: 767px) { .fulaz-contact-form { padding: 1.5rem; } }
.fulaz-contact-form-bar { position: absolute; top: 0; inset-inline: 0; height: 4px; background: var(--fulaz-gradient-steel); }
.fulaz-contact-form h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.fulaz-form-row { display: grid; gap: 1.25rem; grid-template-columns: minmax(0,1fr); }
@media (min-width: 600px) { .fulaz-form-row { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
.fulaz-form-field { margin-bottom: 1.25rem; }
.fulaz-form-field label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; }
.fulaz-form-field input, .fulaz-form-field textarea {
	width: 100%; max-width: 100%; padding: 0 1rem; height: 3rem; border: 1px solid var(--fulaz-border);
	border-radius: var(--fulaz-radius); font-family: inherit; font-size: 0.95rem; background: var(--fulaz-bg); color: var(--fulaz-fg); transition: var(--fulaz-transition);
}
.fulaz-form-field textarea { height: auto; min-height: 8rem; padding: 0.75rem 1rem; resize: vertical; }
.fulaz-form-field input:focus, .fulaz-form-field textarea:focus { outline: none; border-color: var(--fulaz-accent); box-shadow: 0 0 0 3px rgba(var(--fulaz-steel-rgb),0.2); }
.fulaz-field-error { color: var(--fulaz-fg); }
.fulaz-form-err-msg { color: #b91c1c; font-size: 0.75rem; margin-top: 0.25rem; display: none; }
.fulaz-form-field.has-error input, .fulaz-form-field.has-error textarea { border-color: #ef4444; }
.fulaz-form-field.has-error .fulaz-form-err-msg { display: block; }

.fulaz-form-alert { margin-top: 1.25rem; padding: 1rem 1.25rem; border-radius: var(--fulaz-radius); font-size: 0.9rem; font-weight: 600; display: none; align-items: center; gap: 0.6rem; }
.fulaz-form-alert.is-visible { display: flex; }
.fulaz-form-alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.fulaz-form-alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.fulaz-form-alert svg { width: 1.1rem; height: 1.1rem; }

.fulaz-contact-map { margin-top: 1.5rem; display: block; position: relative; border-radius: 1rem; overflow: hidden; box-shadow: var(--fulaz-shadow-deep); }
.fulaz-contact-map img { width: 100%; height: 320px; object-fit: cover; display: block; }
.fulaz-contact-map-pill { position: absolute; bottom: 1rem; inset-inline-start: 50%; transform: translateX(-50%); padding: 0.6rem 1.25rem; border-radius: 9999px; background: rgba(255,255,255,0.95); color: var(--fulaz-fg); font-size: 0.8rem; font-weight: 700; white-space: nowrap; }
.fulaz-contact-map-placeholder { display: flex; align-items: center; justify-content: center; height: 320px; background: var(--fulaz-muted); color: var(--fulaz-muted-fg); gap: 0.5rem; }

/* =====================================================================
   FOOTER (Theme Builder)
   ===================================================================== */
.fulaz-footer { position: relative; overflow: hidden; color: #fff; background: #051223; }
.fulaz-footer-top { position: relative; max-width: 75rem; margin-inline: auto; padding: 4rem 1.5rem; display: grid; grid-template-columns: minmax(0,1fr); gap: 2.5rem; }
@media (min-width: 768px) { .fulaz-footer-top { grid-template-columns: 2fr 1fr 1fr; } }
.fulaz-footer-brand img { width: 180px; max-width: 100%; height: auto; margin-bottom: 1rem; }
.fulaz-footer-brand p { color: rgba(255,255,255,0.7); max-width: 28rem; margin-bottom: 1.5rem; }
.fulaz-socials { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.fulaz-social { width: 2.5rem; height: 2.5rem; border-radius: 0.6rem; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); transition: var(--fulaz-transition); }
.fulaz-social:hover { background: var(--fulaz-accent); }
.fulaz-footer h4 { font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; color: var(--fulaz-steel-light); }
.fulaz-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.fulaz-footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; transition: var(--fulaz-transition); }
.fulaz-footer-links a:hover { color: var(--fulaz-steel-light); }
.fulaz-footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.fulaz-footer-contact li { display: flex; align-items: flex-start; gap: 0.5rem; color: rgba(255,255,255,0.8); }
.fulaz-footer-contact a { color: rgba(255,255,255,0.8); text-decoration: none; }
.fulaz-footer-contact .fulaz-footer-icon { color: var(--fulaz-steel-light); flex-shrink: 0; }
.fulaz-footer-bottom { position: relative; border-top: 1px solid rgba(255,255,255,0.1); }
.fulaz-footer-bottom-inner { max-width: 75rem; margin-inline: auto; padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; justify-content: space-between; align-items: center; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
@media (min-width: 768px) { .fulaz-footer-bottom-inner { flex-direction: row; } }
.fulaz-agency-link { color: var(--fulaz-steel-light); text-decoration: none; font-weight: 600; }

/* =====================================================================
   FAB
   ===================================================================== */
.fulaz-fab { position: fixed; bottom: 1.5rem; z-index: 9999; width: 3.5rem; height: 3.5rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff; text-decoration: none; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4); transition: transform 0.2s; }
.fulaz-fab:hover { transform: translateY(-3px); }
.fulaz-fab-whatsapp { background: #25D366; }
.fulaz-fab-left { inset-inline-start: 1.5rem; }
.fulaz-fab-right { inset-inline-end: 1.5rem; }

/* =====================================================================
   ARTICLES grid (native posts) + single
   ===================================================================== */
.fulaz-blog-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: 2rem; }
@media (min-width: 768px) { .fulaz-blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .fulaz-blog-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.fulaz-blog-card { display: flex; flex-direction: column; background: var(--fulaz-card); border: 1px solid var(--fulaz-border); overflow: hidden; text-decoration: none; color: inherit; transition: var(--fulaz-transition);
	clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%); }
.fulaz-blog-card:hover { transform: translateY(-8px); border-color: var(--fulaz-accent); box-shadow: var(--fulaz-shadow-steel); }
.fulaz-blog-card-figure { position: relative; height: 13rem; overflow: hidden; }
.fulaz-blog-card-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.fulaz-blog-card:hover .fulaz-blog-card-figure img { transform: scale(1.1); }
.fulaz-blog-card-figure::after { content: ""; position: absolute; bottom: 0; inset-inline: 0; height: 4px; background: var(--fulaz-gradient-steel); }
.fulaz-blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.fulaz-blog-card-meta { display: flex; align-items: center; gap: 0.75rem; font-size: 0.75rem; color: var(--fulaz-muted-fg); margin-bottom: 0.75rem; }
.fulaz-blog-card-meta span { display: inline-flex; align-items: center; gap: 0.25rem; }
.fulaz-blog-card-meta svg { width: 0.85rem; height: 0.85rem; color: var(--fulaz-accent); }
.fulaz-blog-card h3 { font-size: 1.125rem; font-weight: 800; margin-bottom: 0.75rem; line-height: 1.4; }
.fulaz-blog-card:hover h3 { color: var(--fulaz-accent); }
.fulaz-blog-card p { color: var(--fulaz-muted-fg); font-size: 0.875rem; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.fulaz-blog-card-foot { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px dashed var(--fulaz-border); display: flex; align-items: center; justify-content: space-between; }
.fulaz-blog-card-readmore { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--fulaz-accent); font-weight: 700; font-size: 0.875rem; }
.fulaz-blog-pagination { margin-top: 2.5rem; display: flex; justify-content: center; gap: 0.5rem; }
.fulaz-blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 2.5rem; height: 2.5rem; padding: 0 0.5rem; border-radius: 0.5rem; border: 1px solid var(--fulaz-border); text-decoration: none; color: var(--fulaz-fg); }
.fulaz-blog-pagination .page-numbers.current { background: var(--fulaz-gradient-steel); color: #fff; border-color: transparent; }

.fulaz-article-wrap { padding: 7rem 0 4rem; }
.fulaz-article-narrow { max-width: 48rem; }
.fulaz-article-cat { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fulaz-accent); margin-bottom: 0.75rem; }
.fulaz-article-title { font-size: 2rem; font-weight: 800; line-height: 1.3; margin-bottom: 1rem; }
@media (min-width: 768px) { .fulaz-article-title { font-size: 3rem; } }
.fulaz-article-meta { color: var(--fulaz-muted-fg); font-size: 0.875rem; margin-bottom: 1.5rem; }
.fulaz-article-figure { border-radius: 1rem; overflow: hidden; box-shadow: var(--fulaz-shadow-deep); margin-bottom: 2rem; }
.fulaz-article-figure img { width: 100%; height: auto; }
.fulaz-article-body { font-size: 1.0625rem; line-height: 1.9; color: var(--fulaz-fg); }
.fulaz-article-body p { margin-bottom: 1.25rem; }

/* blog single-post widget */
.fulaz-article { padding: 7rem 0 4rem; }
.fulaz-article-back { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--fulaz-accent); font-weight: 700; font-size: 0.9rem; margin-bottom: 1.5rem; }
.fulaz-article-meta { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }
.fulaz-article-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.fulaz-article-content { font-size: 1.0625rem; line-height: 1.9; color: var(--fulaz-fg); }
.fulaz-article-content p { margin-bottom: 1.25rem; }
.fulaz-article-content h2, .fulaz-article-content h3 { font-weight: 800; margin: 2rem 0 1rem; line-height: 1.4; }
.fulaz-article-content ul, .fulaz-article-content ol { margin: 0 1.5rem 1.25rem; }
.fulaz-article-content img { max-width: 100%; height: auto; border-radius: 0.75rem; }
.fulaz-article-content a { color: var(--fulaz-accent); }

/* Article single-post hero (reuses inner-hero base + adds article-specific tweaks) */
.fulaz-article-hero { padding-bottom: 6rem; }
.fulaz-article-back-hero { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--fulaz-accent); font-weight: 700; font-size: 0.9rem; margin-bottom: 1.5rem; text-decoration: none; }
.fulaz-article-back-hero:hover { text-decoration: underline; }
.fulaz-article-hero-title { font-size: 2rem; font-weight: 800; color: #fff !important; line-height: 1.3; max-width: 48rem; margin: 0 auto 1rem; }
@media (min-width: 768px) { .fulaz-article-hero-title { font-size: 3rem; } }
.fulaz-article-hero-meta { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; align-items: center; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.fulaz-article-hero-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.fulaz-article-hero-meta svg { opacity: 0.7; }
/* Body section pulls the featured image up into the hero */
.fulaz-article-body-wrap { position: relative; padding: 0 0 4rem; }
.fulaz-article-body-wrap .fulaz-article-figure { margin-top: -4rem; border-radius: 1rem; overflow: hidden; box-shadow: var(--fulaz-shadow-deep); margin-bottom: 2.5rem; }
.fulaz-article-body-wrap .fulaz-article-figure img { width: 100%; height: auto; display: block; }
.fulaz-article-excerpt-bar { margin-bottom: 1.5rem; }
@media (max-width: 767px) {
	.fulaz-article-hero { padding-bottom: 4rem; }
	.fulaz-article-hero-title { font-size: 1.5rem; }
	.fulaz-article-body-wrap .fulaz-article-figure { margin-top: -2.5rem; border-radius: 0.75rem; }
}

/* =====================================================================
   HEADER DROPDOWNS (desktop: hover, mobile: click)
   ===================================================================== */
.fulaz-nav-dropdown { position: relative; }
.fulaz-nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 0.3rem; }
.fulaz-nav-dropdown-toggle svg { width: 14px; height: 14px; transition: transform 0.2s; }
.fulaz-nav-dropdown.is-open .fulaz-nav-dropdown-toggle svg { transform: rotate(180deg); }
.fulaz-nav-dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	inset-inline-start: 50%;
	transform: translateX(-50%);
	min-width: 200px;
	padding: 0.5rem 0;
	background: rgba(5,26,54,0.97);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 0.75rem;
	box-shadow: 0 16px 48px rgba(0,0,0,0.35);
	z-index: 100;
	flex-direction: column;
}
html[dir="rtl"] .fulaz-nav-dropdown-menu { transform: translateX(50%); }
.fulaz-nav-dropdown.is-open .fulaz-nav-dropdown-menu { display: flex; }
.fulaz-nav-dropdown-menu a,
.fulaz-nav-dropdown-menu a:link,
.fulaz-nav-dropdown-menu a:visited {
	display: block;
	padding: 0.6rem 1.25rem;
	color: rgba(255,255,255,0.85) !important;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background 0.15s, color 0.15s;
}
.fulaz-nav-dropdown-menu a:hover,
.fulaz-nav-dropdown-menu a:focus {
	background: rgba(255,255,255,0.1);
	color: #fff !important;
}

/* ── Mobile header dropdown ── */
.fulaz-mobile-dropdown { display: flex; flex-direction: column; }
.fulaz-mobile-dropdown-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0.75rem 1rem;
	background: transparent;
	border: 0;
	border-radius: 0.5rem;
	color: rgba(255,255,255,0.9);
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.15s;
}
.fulaz-mobile-dropdown-toggle:hover { background: rgba(255,255,255,0.08); }
.fulaz-mobile-dropdown-toggle svg { width: 16px; height: 16px; transition: transform 0.2s; }
.fulaz-mobile-dropdown.is-open .fulaz-mobile-dropdown-toggle svg { transform: rotate(180deg); }
.fulaz-mobile-dropdown-menu { display: none; flex-direction: column; padding-inline-start: 1rem; }
.fulaz-mobile-dropdown.is-open .fulaz-mobile-dropdown-menu { display: flex; }
.fulaz-mobile-dropdown-menu a,
.fulaz-mobile-dropdown-menu a:link,
.fulaz-mobile-dropdown-menu a:visited {
	display: block;
	padding: 0.6rem 1rem;
	color: rgba(255,255,255,0.75) !important;
	font-size: 0.875rem;
	text-decoration: none !important;
	border-radius: 0.375rem;
	transition: background 0.15s, color 0.15s;
}
.fulaz-mobile-dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: #fff !important; }

/* =====================================================================
   FOOTER DROPDOWN (click to expand)
   ===================================================================== */
.fulaz-footer-dropdown { position: relative; }
.fulaz-footer-dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	width: 100%;
	padding: 0;
	background: transparent;
	border: 0;
	color: rgba(255,255,255,0.8);
	font-family: inherit;
	font-size: inherit;
	cursor: pointer;
	transition: color 0.15s;
}
.fulaz-footer-dropdown-toggle:hover { color: var(--fulaz-steel-light); }
.fulaz-footer-dropdown-toggle svg { width: 14px; height: 14px; transition: transform 0.2s; }
.fulaz-footer-dropdown.is-open .fulaz-footer-dropdown-toggle svg { transform: rotate(180deg); }
.fulaz-footer-dropdown-menu {
	display: none;
	list-style: none;
	padding: 0.25rem 0 0 1rem;
	margin: 0;
	flex-direction: column;
	gap: 0.35rem;
}
html[dir="rtl"] .fulaz-footer-dropdown-menu { padding: 0.25rem 1rem 0 0; }
.fulaz-footer-dropdown.is-open .fulaz-footer-dropdown-menu { display: flex; }
.fulaz-footer-dropdown-menu a { color: rgba(255,255,255,0.65); font-size: 0.85rem; text-decoration: none; transition: color 0.15s; }
.fulaz-footer-dropdown-menu a:hover { color: var(--fulaz-steel-light); }

/* =====================================================================
   CAREERS FORM
   ===================================================================== */
.fulaz-careers { padding: 6rem 0; background: var(--fulaz-bg); overflow: hidden; }
@media (max-width: 767px) { .fulaz-careers { padding: 3rem 0; } }
.elementor-widget-fulaz-careers,
.elementor-widget-fulaz-careers .elementor-widget-container { max-width: 100%; overflow: hidden; }
.fulaz-careers .fulaz-container { padding-inline: 1.5rem; }
@media (max-width: 767px) { .fulaz-careers .fulaz-container { padding-inline: 1rem; } }
.fulaz-careers-header { text-align: center; margin-bottom: 3rem; }
.fulaz-careers-header h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .fulaz-careers-header h2 { font-size: 2.5rem; } }
.fulaz-careers-header p { color: var(--fulaz-muted-fg); max-width: 40rem; margin-inline: auto; }

.fulaz-careers-form {
	position: relative;
	max-width: 48rem;
	margin-inline: auto;
	background: var(--fulaz-card);
	border-radius: 1rem;
	padding: 2.5rem;
	box-shadow: var(--fulaz-shadow-deep);
	box-sizing: border-box;
	width: 100%;
	overflow: hidden;
}
@media (max-width: 767px) { .fulaz-careers-form { padding: 1.25rem; } }
.fulaz-careers-form h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.fulaz-careers-form-el {
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}
.fulaz-careers-form .fulaz-form-row { display: grid; gap: 1.25rem; grid-template-columns: minmax(0,1fr); }
@media (min-width: 600px) { .fulaz-careers-form .fulaz-form-row { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
.fulaz-careers-form .fulaz-form-field { min-width: 0; max-width: 100%; }
.fulaz-careers-form input,
.fulaz-careers-form select,
.fulaz-careers-form .fulaz-file-placeholder { box-sizing: border-box; }

/* Select field — match the existing input style */
.fulaz-form-field select {
	width: 100%; max-width: 100%; padding: 0 1rem; height: 3rem;
	border: 1px solid var(--fulaz-border);
	border-radius: var(--fulaz-radius);
	font-family: inherit; font-size: 0.95rem;
	background: var(--fulaz-bg); color: var(--fulaz-fg);
	transition: var(--fulaz-transition);
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	box-sizing: border-box;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: left 0.75rem center;
}
html[dir="rtl"] .fulaz-form-field select { background-position: left 0.75rem center; padding-left: 2.25rem; }
html[dir="ltr"] .fulaz-form-field select { background-position: right 0.75rem center; padding-right: 2.25rem; }
.fulaz-form-field select:focus {
	outline: none; border-color: var(--fulaz-accent);
	box-shadow: 0 0 0 3px rgba(var(--fulaz-steel-rgb),0.2);
}
.fulaz-form-field.has-error select { border-color: #ef4444; }

/* File input — custom styled */
.fulaz-file-input { position: relative; width: 100%; max-width: 100%; overflow: hidden; }
.fulaz-file-input input[type="file"] {
	position: absolute; inset: 0; width: 100%; height: 100%;
	opacity: 0; cursor: pointer; z-index: 2;
}
.fulaz-file-placeholder {
	display: flex; align-items: center; justify-content: center; gap: 0.75rem;
	width: 100%; min-height: 5rem;
	border: 2px dashed var(--fulaz-border);
	border-radius: var(--fulaz-radius);
	background: var(--fulaz-bg);
	color: var(--fulaz-muted-fg);
	font-size: 0.95rem;
	padding: 1rem;
	transition: var(--fulaz-transition);
	text-align: center;
	box-sizing: border-box;
	max-width: 100%;
}
.fulaz-file-input:hover .fulaz-file-placeholder { border-color: var(--fulaz-accent); color: var(--fulaz-accent); }
.fulaz-file-placeholder svg { flex-shrink: 0; }
.fulaz-file-placeholder-name { font-weight: 600; color: var(--fulaz-accent); word-break: break-all; }
.fulaz-form-field.has-error .fulaz-file-placeholder { border-color: #ef4444; }

/* ═══════════════════════════════════════════════════════════════
   v1.5.1 — English / LTR header overrides
   Scoped to English pages (WPML sets lang="en…" on <html>) plus
   any LTR page, so the Arabic header is untouched.
   ═══════════════════════════════════════════════════════════════ */

/* 1 ── Menu runs left-to-right: first item ("Home") on the LEFT */
html[lang^="en"] .fulaz-header-inner,
html[dir="ltr"] .fulaz-header-inner,
html[lang^="en"] .fulaz-header-nav,
html[dir="ltr"] .fulaz-header-nav {
	direction: ltr;
}
html[lang^="en"] .fulaz-header-mobile-inner,
html[dir="ltr"] .fulaz-header-mobile-inner {
	direction: ltr;
	text-align: left;
}

/* Dropdown panel centering must use the LTR transform on English pages,
   even if the site root is still dir="rtl" */
html[lang^="en"] .fulaz-nav-dropdown-menu {
	transform: translateX(-50%);
	text-align: left;
}

/* 2 ── Desktop: never wrap English labels + give the menu more room */
@media (min-width: 1024px) {
	html[lang^="en"] .fulaz-header-nav a,
	html[dir="ltr"] .fulaz-header-nav a,
	html[lang^="en"] .fulaz-nav-dropdown-toggle,
	html[dir="ltr"] .fulaz-nav-dropdown-toggle {
		white-space: nowrap;
	}

	/* Wider header container on English pages (base is 75rem) */
	html[lang^="en"] .fulaz-header-inner,
	html[dir="ltr"] .fulaz-header-inner {
		max-width: 82rem;
	}

	/* Slightly tighter link padding so longer English labels fit the pill */
	html[lang^="en"] .fulaz-header-nav a,
	html[lang^="en"] .fulaz-header-nav a:link,
	html[lang^="en"] .fulaz-header-nav a:visited {
		padding: 0.5rem 0.85rem;
	}
}
