:root {
    --orange: #f97316;
    --orange-dark: #e85f07;
    --dark: #181818;
    --black: #0f0f0f;
    --white: #fff;
    --surface: #f6f6f4;
    --border: #e5e5e5;
    --text: #222;
    --muted: #6b6b6b;
    --radius-sm: 2px;
    --radius-md: 6px;
    --radius-lg: 12px;
    --transition: .3s ease;
    --shadow: 0 14px 38px rgba(14, 14, 14, .1);
    --dir-angle: 90deg;
    --font-display: "Inter Tight", "Inter", Arial, sans-serif;
    --font-body: "Inter", Arial, sans-serif;
    --font-arabic: "IBM Plex Sans Arabic", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 134px; }
body { margin: 0; color: var(--text); overflow-x: hidden; background: var(--white); font-family: var(--font-body); font-weight: 400; line-height: 1.6; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-optical-sizing: auto; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container-custom { width: min(92%, 1380px); margin-inline: auto; }
.section { padding-block: clamp(64px, 6.25vw, 104px); }
.skip-link { position: fixed; inset-block-start: -80px; inset-inline-start: 18px; z-index: 9999; padding: 12px 18px; color: #fff; background: var(--orange); transition: top .2s; }
.skip-link:focus { inset-block-start: 12px; }
:focus-visible { outline: 3px solid rgba(249, 115, 22, .5); outline-offset: 3px; }

/* Top bar and navigation */
.topbar { height: 42px; color: #fff; background: var(--black); font-size: 12.5px; font-weight: 500; letter-spacing: .005em; }
.topbar-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.topbar-contact { display: flex; align-items: center; gap: 28px; }
.topbar-contact a { display: flex; align-items: center; gap: 8px; transition: color var(--transition); }
.topbar-contact a:hover { color: var(--orange); }
.topbar-contact svg { width: 16px; height: 16px; color: var(--orange); stroke-width: 2; }
.language-switcher { display: flex; align-items: center; gap: 13px; }
.language-switcher > span { width: 1px; height: 13px; background: rgba(255, 255, 255, .35); }
.language { min-height: 32px; padding: 2px 0; border: 0; color: #dedede; background: transparent; font-size: 12.5px; line-height: 1; }
.language.active { color: var(--orange); font-weight: 650; }

.site-header { position: sticky; inset-block-start: 0; z-index: 1000; height: 90px; background: rgba(255,255,255,.985); border-bottom: 1px solid rgba(0,0,0,.045); transition: height var(--transition), box-shadow var(--transition); }
.site-header.scrolled { height: 76px; box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 9px; }
.brand-logo { display: block; width: auto; height: 76px; }
.site-header.scrolled .brand-logo { height: 60px; }
.footer .brand-logo { height: 120px; }
.desktop-nav { align-self: stretch; display: flex; align-items: stretch; margin-inline-start: auto; }
.desktop-nav a { position: relative; display: flex; align-items: center; padding-inline: clamp(8px, .8vw, 12px); color: #151515; font-family: var(--font-body); font-size: 13px; font-weight: 620; letter-spacing: -.012em; white-space: nowrap; transition: color var(--transition); }
.desktop-nav a::after { content: ''; position: absolute; inset-inline: 12px; inset-block-end: 20px; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: center; transition: transform var(--transition); }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--orange); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); }
.header-cta { flex: 0 0 auto; min-height: 50px; padding-inline: 22px !important; font-size: 13px !important; }
.menu-toggle, .menu-close { display: none; border: 0; background: transparent; }
.menu-toggle svg, .menu-close svg { width: 28px; height: 28px; }
.mobile-menu, .menu-backdrop { display: none; }

/* Shared buttons and headings */
.btn { position: relative; min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 0 27px; border: 1px solid transparent; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 13px; font-weight: 650; line-height: 1; letter-spacing: .008em; overflow: hidden; transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition); }
.btn svg, .text-link svg, .card-body a svg { width: 17px; height: 17px; transition: transform var(--transition); }
.btn:hover svg, .text-link:hover svg, .card-body a:hover svg { transform: translateX(5px); }
[dir="rtl"] .btn:hover svg, [dir="rtl"] .text-link:hover svg, [dir="rtl"] .card-body a:hover svg { transform: translateX(-5px); }
.btn-primary { color: #fff; background: var(--orange); }
.btn-primary:hover { color: #fff; background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline { color: #fff; border-color: rgba(255,255,255,.65); background: rgba(0,0,0,.16); }
.btn-outline:hover { border-color: var(--orange); background: var(--orange); }
.btn-line { min-width: 178px; color: #222; border-color: var(--orange); background: transparent; }
.btn-line:hover { color: #fff; background: var(--orange); }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn-primary:disabled, .btn-primary:disabled:hover { background: var(--orange); transform: none; }
.section-label, .eyebrow { margin: 0 0 9px; color: var(--orange); font-family: var(--font-body); font-size: 12.5px; line-height: 1.2; font-weight: 680; letter-spacing: .045em; }
.section-heading h2, .heading-row h2, .about-content h2 { margin: 0; color: var(--text); font-family: var(--font-display); font-size: clamp(29px, 2.25vw, 42px); line-height: 1.04; font-weight: 700; letter-spacing: -.045em; }

/* Hero */
.hero { position: relative; min-height: clamp(585px, 70vh, 720px); display: flex; align-items: center; isolation: isolate; overflow: hidden; background: #10151b; }
.hero-image { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: 62% 54%; }
.hero-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(var(--dir-angle, 90deg), rgba(8,10,12,.96) 0%, rgba(8,10,12,.84) 31%, rgba(8,10,12,.31) 61%, rgba(8,10,12,.05) 100%), linear-gradient(0deg, rgba(0,0,0,.35), transparent 45%); }
.hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(var(--dir-angle, 90deg), transparent 50%, rgba(24,77,120,.14)); }
.hero-content { position: relative; padding-block: 72px 78px; color: #fff; }
.hero-content .eyebrow { margin-block-end: 10px; font-size: 14px; letter-spacing: .035em; }
.hero h1 { margin: 0; max-width: 680px; font-family: var(--font-display); font-size: clamp(68px, 5.35vw, 92px); line-height: .92; font-weight: 800; letter-spacing: -.052em; text-shadow: 0 4px 28px rgba(0,0,0,.22); }
.hero-title-line { display: inline-flex; align-items: flex-end; white-space: nowrap; }
.hero h1 i { display: block; width: .13em; height: .13em; margin-inline-start: .075em; margin-block-end: .11em; color: transparent; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 1px rgba(249,115,22,.18); font-size: inherit; font-style: normal; }
.hero-lead { max-width: 475px; margin: 22px 0 18px; font-size: clamp(17px, 1.25vw, 19px); line-height: 1.58; font-weight: 400; letter-spacing: -.012em; }
.hero-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 0; margin-block-end: 28px; list-style: none; padding: 0; margin-inline: 0; }
.hero-tags li { padding-inline: 16px; border-inline-end: 1px solid var(--orange); font-size: 11px; font-weight: 600; letter-spacing: .018em; }
.hero-tags li:first-child { padding-inline-start: 0; }
.hero-tags li:last-child { border-inline-end: 0; }
.hero-actions { display: flex; gap: 20px; }

/* Trust strip */
.trust-strip { min-height: 90px; display: flex; align-items: center; color: #fff; background: #191919; border-top: 1px solid rgba(255,255,255,.08); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-grid article { min-height: 90px; display: grid; grid-template-columns: 42px minmax(0, 1fr); align-items: center; justify-content: center; column-gap: 14px; padding-inline: 21px; border-inline-end: 1px solid rgba(255,255,255,.09); }
.trust-grid article:first-child { border-inline-start: 1px solid rgba(255,255,255,.09); }
.trust-grid svg { width: 39px; height: 39px; color: var(--orange); stroke-width: 1.45; }
.trust-grid div { min-width: 0; display: flex; flex-direction: column; justify-content: center; line-height: 1.38; }
.trust-grid strong { font-size: 13px; font-weight: 620; letter-spacing: -.01em; white-space: nowrap; }
.trust-grid span { color: #c9c9c9; font-size: 11.5px; font-weight: 400; white-space: nowrap; }

/* About */
.about-section { background: linear-gradient(180deg, #fff 0%, #fbfbfa 100%); }
.about-grid { display: grid; grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr); align-items: center; gap: clamp(42px, 5vw, 82px); }
.about-media { position: relative; min-height: 530px; }
.about-media > img { width: 100%; height: 530px; object-fit: cover; }
.experience-card { position: absolute; inset-inline-start: 28px; inset-block-end: 24px; width: 150px; height: 150px; display: flex; flex-direction: column; justify-content: center; padding-inline: 25px; color: #fff; background: var(--orange); box-shadow: 0 18px 36px rgba(249,115,22,.25); }
.experience-card strong { font-family: var(--font-display); font-size: 43px; line-height: .96; font-weight: 700; letter-spacing: -.045em; }
.experience-card span { margin-block-start: 10px; font-size: 11px; line-height: 1.45; font-weight: 650; letter-spacing: .015em; }
.about-image-line { position: absolute; inset-inline-end: -11px; inset-block-start: 28px; width: 11px; height: 135px; background: var(--orange); }
.about-content { max-width: 690px; }
.about-content h2 { font-size: clamp(36px, 3.1vw, 52px); }
.section-copy { margin: 24px 0 38px; color: #4c4c4c; font-size: 15.5px; line-height: 1.72; font-weight: 400; letter-spacing: -.006em; }
.mini-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-block-end: 40px; }
.mini-features article { display: flex; align-items: flex-start; gap: 11px; }
.mini-features svg { width: 31px; height: 31px; flex: 0 0 auto; color: var(--orange); stroke-width: 1.5; }
.mini-features h3 { margin: 0 0 7px; font-family: var(--font-body); font-size: 13.5px; line-height: 1.3; font-weight: 650; letter-spacing: -.01em; }
.mini-features p { margin: 0; color: #666; font-size: 12.25px; line-height: 1.58; font-weight: 400; }

/* Services */
.services-section { padding-block-start: 28px; background: #fff; }
.section-heading { margin-block-end: 24px; }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.service-card { min-width: 0; border: 1px solid #e4e4e4; background: #fff; box-shadow: 0 3px 12px rgba(0,0,0,.04); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.service-card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,.35); box-shadow: var(--shadow); }
.card-media { position: relative; height: 230px; overflow: hidden; background: #ddd; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.service-card:hover .card-media img { transform: scale(1.045); }
.card-number { position: absolute; inset-inline-start: 0; inset-block-start: 0; min-width: 52px; height: 37px; display: grid; place-items: center; color: #fff; background: var(--orange); font-size: 14px; font-weight: 680; letter-spacing: -.015em; }
.card-icon { position: absolute; inset-inline-start: 12px; inset-block-end: 0; width: 48px; height: 48px; display: grid; place-items: center; color: #fff; background: rgba(10,10,10,.9); }
.card-icon svg { width: 27px; height: 27px; }
.card-body { display: flex; flex-direction: column; padding: 22px 20px 20px; }
.card-body h3 { margin: 0 0 11px; font-family: var(--font-display); font-size: 17px; line-height: 1.25; font-weight: 680; letter-spacing: -.022em; }
.card-body p { margin: 0 0 22px; color: #555; font-size: 14px; line-height: 1.58; font-weight: 400; }
.card-body a { display: inline-flex; align-items: center; gap: 10px; margin-block-start: auto; color: var(--orange); font-size: 11.5px; font-weight: 650; letter-spacing: .025em; }
.card-body a svg { width: 14px; height: 14px; }

/* Projects */
.projects-section { padding-block-start: 12px; background: var(--surface); }
.heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-block-end: 23px; }
.text-link { display: inline-flex; align-items: center; gap: 16px; color: var(--orange); font-size: 11.5px; font-weight: 650; letter-spacing: .025em; }
.projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.project-card { position: relative; aspect-ratio: 1.28; color: #fff; overflow: hidden; background: #222; }
.project-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08) 22%, rgba(0,0,0,.84) 100%); transition: background var(--transition); }
.project-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.project-card:hover > img { transform: scale(1.07); }
.project-card:hover::after { background: linear-gradient(180deg, rgba(0,0,0,.02) 20%, rgba(0,0,0,.91) 100%); }
.status { position: absolute; inset-block-start: 13px; inset-inline-start: 13px; z-index: 2; padding: 7px 11px; color: #fff; background: #111; font-size: 10.25px; font-weight: 650; letter-spacing: .045em; }
.status.ongoing { background: rgba(20,20,20,.9); }
.project-info { position: absolute; inset-inline: 18px; inset-block-end: 17px; z-index: 2; }
.project-info h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: 17px; line-height: 1.25; font-weight: 680; letter-spacing: -.02em; }
.project-info > div { display: flex; justify-content: space-between; gap: 14px; color: #eee; font-size: 12.25px; line-height: 1.4; }
.project-info span { display: inline-flex; align-items: center; gap: 6px; }
.project-info svg { width: 15px; height: 15px; color: var(--orange); }

/* Why choose */
.why-section { padding-block: 60px; color: #fff; background: radial-gradient(circle at 25% 50%, #1e1e1e 0, #111 47%, #0b0b0b 100%); border-bottom: 1px solid rgba(255,255,255,.08); }
.why-layout { display: grid; grid-template-columns: 165px minmax(0, 1fr) 264px; align-items: center; gap: 36px; }
.why-title { display: flex; align-items: center; }
.why-title p { margin: 0; color: var(--orange); font-family: var(--font-display); font-size: 19px; line-height: 1.28; font-weight: 700; letter-spacing: -.03em; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 16px; }
.benefits-grid article { min-width: 0; padding: 12px; text-align: center; border: 1px solid rgba(255,255,255,.05); background: rgba(255,255,255,.02); border-radius: 4px; transition: background var(--transition), border-color var(--transition); }
.benefits-grid article:hover { background: rgba(255,255,255,.04); border-color: rgba(249,115,22,.2); }
.benefits-grid svg { width: 34px; height: 34px; margin-inline: auto; color: var(--orange); stroke-width: 1.45; }
.benefits-grid h3 { margin: 12px 0 6px; font-family: var(--font-body); font-size: 13.5px; line-height: 1.35; font-weight: 650; letter-spacing: -.01em; }
.benefits-grid p { margin: 0; color: #c4c4c4; font-size: 12.5px; line-height: 1.62; font-weight: 400; }
.profile-card { display: flex; align-items: center; gap: 18px; padding: 24px; border: 1px solid rgba(249,115,22,.55); background: rgba(255,255,255,.02); transition: border-color var(--transition), background var(--transition); }
.profile-card:hover { border-color: var(--orange); background: rgba(249,115,22,.08); }
.profile-card > svg { width: 40px; height: 40px; flex: 0 0 auto; color: var(--orange); }
.profile-card > div { display: flex; flex-direction: column; }
.profile-card strong { font-size: 13.5px; font-weight: 650; letter-spacing: -.01em; }
.profile-card span { margin: 7px 0 11px; color: #c9c9c9; font-size: 12px; line-height: 1.6; font-weight: 400; }
.profile-card b { display: inline-flex; align-items: center; gap: 8px; color: var(--orange); font-size: 11.25px; font-weight: 650; letter-spacing: .025em; }
.profile-card b svg { width: 13px; height: 13px; }

/* Clients */
.clients-section { padding-block: 34px 42px; background: #fff; }
.clients-section .section-label { margin-block-end: 4px; }
.placeholder-note { margin: 0 0 18px; color: #8a8a8a; font-size: 11.5px; line-height: 1.5; }
.logo-grid { display: grid; grid-template-columns: repeat(7, 1fr); border-inline-start: 1px solid #eee; }
.logo-grid > div { min-height: 96px; display: grid; grid-template-columns: auto auto; grid-template-rows: 1fr 1fr; align-items: center; justify-content: center; column-gap: 10px; padding: 14px; color: #515965; filter: grayscale(1); opacity: .82; border-block: 1px solid #eee; border-inline-end: 1px solid #eee; transition: filter var(--transition), opacity var(--transition), transform var(--transition); }
.logo-grid > div:hover { filter: none; opacity: 1; transform: translateY(-3px); }
.logo-symbol { grid-row: 1 / 3; display: grid; place-items: center; width: 41px; height: 41px; color: #fff; background: #858d98; border-radius: 50%; font-size: 22px; font-weight: 680; }
.logo-grid b { align-self: end; font-family: var(--font-display); font-size: 19px; line-height: 1; font-weight: 650; letter-spacing: -.02em; }
.logo-grid small { align-self: start; margin-block-start: 4px; font-size: 7px; letter-spacing: .12em; }

/* Quote form */
.quote-section { display: grid; grid-template-columns: minmax(390px, .8fr) minmax(640px, 1.5fr); min-height: 450px; color: #fff; background: #151515; }
.quote-visual { position: relative; min-height: 450px; isolation: isolate; overflow: hidden; }
.quote-visual > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.quote-visual::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(var(--dir-angle, 90deg), rgba(10,10,10,.78), rgba(10,10,10,.6)), linear-gradient(0deg, rgba(0,0,0,.55), transparent); }
.quote-visual-content { width: min(84%, 480px); margin-inline: auto; padding-block: 67px; }
.quote-visual h2 { margin: 0; font-family: var(--font-display); font-size: clamp(32px, 3vw, 48px); line-height: 1.02; font-weight: 700; letter-spacing: -.047em; }
.quote-visual p { margin: 18px 0 30px; color: #e5e5e5; font-size: 15px; line-height: 1.65; font-weight: 400; }
.quote-visual .btn { min-height: 52px; font-size: 13px; }
.quote-form-wrap { display: flex; align-items: center; padding: 42px clamp(32px, 4vw, 68px); background: linear-gradient(130deg, #1c1c1b, #101010); }
#quote-form { width: 100%; max-width: 980px; }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.field { position: relative; min-width: 0; }
.field label { position: absolute; inset-inline-start: 16px; inset-block-start: 8px; z-index: 1; color: #b8b8b8; font-size: 11.5px; line-height: 1.2; font-weight: 500; letter-spacing: .005em; pointer-events: none; }
.field label em { color: var(--orange); font-style: normal; }
.field input, .field select, .field textarea { width: 100%; height: 58px; padding: 25px 16px 7px; color: #fff; border: 1px solid #5d5d5d; border-radius: 0; outline: none; background: rgba(255,255,255,.02); font-size: 15px; line-height: 1.4; font-weight: 400; transition: border-color var(--transition), background var(--transition); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #aaa 50%), linear-gradient(135deg, #aaa 50%, transparent 50%); background-position: calc(100% - 18px) 27px, calc(100% - 14px) 27px; background-size: 4px 4px; background-repeat: no-repeat; }
[dir="rtl"] .field select { background-position: 18px 27px, 14px 27px; }
.field option { color: #111; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); background-color: rgba(255,255,255,.04); }
.field-message { grid-column: 1 / 3; }
.field textarea { min-height: 132px; height: 132px; padding-block-start: 29px; resize: vertical; }
.upload-field { position: relative; grid-column: 3; grid-row: 2 / 4; }
.upload-field input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.upload-field label { min-height: 132px; height: 132px; display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 14px; border: 1px dashed #888; text-align: center; cursor: pointer; transition: border-color var(--transition), background var(--transition); }
.upload-field label:hover { border-color: var(--orange); background: rgba(249,115,22,.06); }
.upload-field label > svg { position: absolute; inset-inline-start: 16px; width: 26px; height: 26px; color: #d0d0d0; }
.upload-field strong { font-size: 13.5px; font-weight: 620; letter-spacing: -.01em; }
.upload-field span, .upload-field small { margin-block-start: 3px; color: #b6b6b6; font-size: 11.5px; line-height: 1.4; }
.upload-field b { margin-block-start: 9px; color: var(--orange); font-size: 11px; font-weight: 650; letter-spacing: .025em; }
.error { display: none; color: #ff9b83; font-size: 11px; line-height: 1.35; }
.field.invalid input, .field.invalid select, .field.invalid textarea, .upload-field.invalid label { border-color: #ff5e43; }
.field.invalid .error, .upload-field.invalid .error { display: block; position: absolute; inset-inline-start: 0; inset-block-end: -11px; }
.submit-button { grid-column: 3; float: inline-end; min-width: 240px; min-height: 54px; margin-block-start: 15px; border: 0; }
.form-status { min-height: 20px; clear: both; margin: 12px 0 0; color: #8de0a8; font-size: 13px; line-height: 1.5; text-align: end; }

/* Footer */
.footer { color: #b8b8b8; background: #0d0d0d; }
.footer-grid { display: grid; grid-template-columns: 1.55fr 1fr 1fr .8fr 1.15fr; gap: clamp(28px, 4vw, 65px); padding-block: 74px 66px; }
.footer-brand > p { max-width: 370px; margin: 24px 0; font-size: 13.5px; line-height: 1.72; font-weight: 400; }
.footer h3 { margin: 4px 0 21px; color: #fff; font-family: var(--font-body); font-size: 14px; font-weight: 650; letter-spacing: .035em; text-transform: uppercase; }
.footer p, .footer-grid > div > a, .footer nav a { display: block; margin: 0 0 11px; font-size: 13px; line-height: 1.7; font-weight: 400; transition: color var(--transition); }
.footer-address > span { display: block; }
.footer a:hover { color: var(--orange); }
.socials { display: flex; gap: 8px; }
.socials a { width: 31px; height: 31px; display: grid !important; place-items: center; margin: 0 !important; color: #fff; border: 1px solid #343434; font-size: 10px !important; }
.socials a:hover { border-color: var(--orange); background: var(--orange); }
.footer-bottom { border-top: 1px solid #272727; }
.footer-bottom .container-custom { min-height: 63px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom p { margin: 0; font-size: 11.5px; }
.footer-bottom div div { display: flex; gap: 24px; }
.footer-bottom a { font-size: 11.5px; }
.footer-bottom .legal-soon { font-size: 11.5px; color: #707070; cursor: default; }
.back-to-top { position: fixed; inset-inline-end: 24px; inset-block-end: 24px; z-index: 900; width: 42px; height: 42px; display: grid; place-items: center; color: #fff; border: 0; background: var(--orange); box-shadow: 0 8px 24px rgba(249,115,22,.28); opacity: 0; visibility: hidden; transform: translateY(14px); transition: var(--transition); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top svg { width: 22px; height: 22px; }

/* Reveal motion */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-instant { transition: none; }
.services-grid .reveal:nth-child(2), .projects-grid .reveal:nth-child(2), .benefits-grid .reveal:nth-child(2) { transition-delay: .06s; }
.services-grid .reveal:nth-child(3), .projects-grid .reveal:nth-child(3), .benefits-grid .reveal:nth-child(3) { transition-delay: .12s; }
.services-grid .reveal:nth-child(4), .projects-grid .reveal:nth-child(4), .benefits-grid .reveal:nth-child(4) { transition-delay: .18s; }
.services-grid .reveal:nth-child(5), .benefits-grid .reveal:nth-child(5) { transition-delay: .24s; }
.services-grid .reveal:nth-child(6), .benefits-grid .reveal:nth-child(6) { transition-delay: .3s; }
@keyframes filter-enter { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.filter-enter { animation: filter-enter .45s ease both; }

/* Modern Unified Page Hero (About, Services, Projects, Clients, Careers, Contact) */
.page-hero, .about-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background: #0b0f14;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.page-hero::before, .about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(rgba(249,115,22,.14) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: .6;
    pointer-events: none;
}

.page-hero-image, .about-hero-image {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(.78) saturate(1.1);
}

.page-hero-overlay, .about-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(var(--dir-angle, 90deg), rgba(11,15,20,.96) 0%, rgba(11,15,20,.84) 48%, rgba(11,15,20,.6) 100%),
        linear-gradient(0deg, rgba(11,15,20,.95) 0%, transparent 70%);
}

/* Page hero overlay direction follows --dir-angle; no RTL override needed. */

.page-hero-content, .about-hero-content {
    position: relative;
    padding-block: clamp(52px, 6vw, 76px);
    color: #fff;
}

.page-hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(32px, 4vw, 64px);
}

.page-hero-layout > div:first-child {
    flex: 1 1 500px;
    max-width: 680px;
}

.breadcrumb-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    color: #ddd;
    margin-block-end: 18px;
}

.breadcrumb-tag a {
    color: #bbb;
    transition: color var(--transition);
}

.breadcrumb-tag a:hover {
    color: var(--orange);
}

.breadcrumb-tag .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    display: inline-block;
    box-shadow: 0 0 8px var(--orange);
}

.breadcrumb-tag .current {
    color: #fff;
    font-weight: 700;
}

.page-hero h1, .about-hero h1 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -.04em;
    color: #fff;
}

.page-hero h1 span.highlight, .about-hero h1 span.highlight {
    color: var(--orange);
}

.page-hero-lead, .about-hero-lead {
    max-width: 620px;
    margin: 0;
    color: #cfd6df;
    font-size: clamp(15px, 1.15vw, 17.5px);
    line-height: 1.65;
    font-weight: 400;
}

/* Page Hero Quick Badges (Right Column) */
.page-hero-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 0 0 auto;
    min-width: 0;
    max-width: 320px;
}

.hero-quick-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    transition: border-color var(--transition), background var(--transition);
}

.hero-quick-badge:hover {
    border-color: rgba(249,115,22,.4);
    background: rgba(255,255,255,.08);
}

.hero-quick-badge svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
    flex-shrink: 0;
}

.hero-quick-badge strong {
    display: block;
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: -.01em;
}

.hero-quick-badge span {
    color: #a0abb7;
    font-size: 11.5px;
}

/* Enhanced Service Detail Cards */
.services-detail-grid { display: flex; flex-direction: column; gap: 40px; }
.service-detail-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid #e5e5e5; background: #fff; overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition); }
.service-detail-card:hover { border-color: rgba(249,115,22,.4); box-shadow: 0 16px 36px rgba(0,0,0,.06); }
.service-detail-card:nth-child(even) { direction: rtl; }
.service-detail-card:nth-child(even) > * { direction: ltr; }
.service-detail-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-block-end: 14px; color: var(--orange); background: rgba(249,115,22,.08); }
.service-detail-icon svg { width: 26px; height: 26px; }
.service-detail-body { padding: clamp(28px, 3.5vw, 44px); display: flex; flex-direction: column; justify-content: center; }
.service-detail-num { display: inline-block; margin-block-end: 8px; color: var(--orange); font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.service-detail-body h3 { margin: 0 0 12px; font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 30px); line-height: 1.15; font-weight: 750; letter-spacing: -.03em; }
.service-detail-body > p { margin: 0 0 18px; color: #555; font-size: 14.5px; line-height: 1.65; }
.service-detail-list { margin: 0 0 20px; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.service-detail-list li { position: relative; padding-inline-start: 18px; color: #333; font-size: 13px; line-height: 1.45; font-weight: 550; }
.service-detail-list li::before { content: ''; position: absolute; inset-inline-start: 0; inset-block-start: 6px; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.service-detail-chips { display: flex; flex-wrap: wrap; gap: 8px; padding-block-start: 16px; border-top: 1px solid #f0f0f0; margin-block-end: 18px; }
.service-chip { display: inline-flex; align-items: center; padding: 4px 10px; background: #f8f8f7; color: #555; font-size: 11.5px; font-weight: 600; border-radius: 2px; }
.service-detail-media { overflow: hidden; position: relative; }
.service-detail-media img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; transition: transform .65s ease; }
.service-detail-card:hover .service-detail-media img { transform: scale(1.04); }

/* Filter bar (Projects, Services, Careers) */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-block-end: 36px; justify-content: center; }
.filter-btn { padding: 9px 20px; border: 1px solid #e0e0e0; background: #fff; color: #444; font-size: 12.5px; font-weight: 650; cursor: pointer; transition: var(--transition); letter-spacing: .02em; }
.filter-btn:hover, .filter-btn.active { border-color: var(--orange); background: var(--orange); color: #fff; }

/* Projects KPI Bar & Featured Spotlight */
.projects-kpi-bar { background: var(--black); padding-block: clamp(32px, 3vw, 44px); margin-block-end: 48px; border: 1px solid rgba(255,255,255,.08); }
.projects-kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.projects-kpi-item { text-align: center; border-inline-end: 1px solid rgba(255,255,255,.1); padding-inline: 12px; }
.projects-kpi-item:last-child { border-inline-end: 0; }
.projects-kpi-item strong { display: block; color: var(--orange); font-family: var(--font-display); font-size: clamp(32px, 2.6vw, 44px); font-weight: 750; line-height: 1; letter-spacing: -.03em; }
.projects-kpi-item span { display: block; margin-block-start: 8px; color: #c0c0c0; font-size: 12px; font-weight: 500; }



/* Tier-1 Clean Corporate Spotlight */
.spotlight-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-block-end: 48px;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.spotlight-showcase:hover {
    border-color: rgba(249,115,22,.4);
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.spotlight-media-pane {
    position: relative;
    min-height: 380px;
    background: #0f172a;
    overflow: hidden;
}
.spotlight-media-pane img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform .6s ease;
}
.spotlight-showcase:hover .spotlight-media-pane img {
    transform: scale(1.04);
}
.spotlight-tag {
    position: absolute;
    inset-block-start: 16px;
    inset-inline-start: 16px;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .06em;
    padding: 5px 12px;
    border-radius: 2px;
    z-index: 2;
}
.spotlight-media-caption {
    position: absolute;
    inset-block-end: 0;
    inset-inline: 0;
    padding: 24px 16px 14px;
    background: linear-gradient(0deg, rgba(15,23,42,.85) 0%, transparent 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}
.spotlight-loc-pin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.spotlight-loc-pin svg {
    width: 14px;
    height: 14px;
    color: var(--orange);
}
.spotlight-info-pane {
    padding: clamp(28px, 3.2vw, 42px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.spotlight-category {
    display: block;
    color: var(--orange);
    font-size: 11.5px;
    font-weight: 750;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-block-end: 6px;
}
.spotlight-title {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 750;
    letter-spacing: -.03em;
    color: #0f172a;
    line-height: 1.18;
}
.spotlight-summary {
    margin: 0;
    color: #475569;
    font-size: 14.5px;
    line-height: 1.65;
}
.spotlight-metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 3px;
}
.spotlight-metric {
    display: flex;
    flex-direction: column;
}
.spotlight-metric .metric-lbl {
    font-size: 10.5px;
    color: #64748b;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-block-end: 4px;
}
.spotlight-metric .metric-num {
    font-size: 14px;
    font-weight: 750;
    color: #0f172a;
    font-family: var(--font-display);
}
.spotlight-metric .metric-num.accent {
    color: var(--orange);
}
.spotlight-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-block-start: 6px;
}
.spotlight-guarantee {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

/* Enhanced Clients Sectors & Partner Cards */
.client-sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-block-end: 48px; }
.client-sector-card { padding: 26px 22px; border: 1px solid #e5e5e5; background: #fff; border-radius: 3px; transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.client-sector-card:hover { transform: translateY(-4px); border-color: rgba(249,115,22,.45); box-shadow: 0 12px 30px rgba(0,0,0,.05); }
.client-sector-icon { width: 46px; height: 46px; display: grid; place-items: center; background: rgba(249,115,22,.08); color: var(--orange); border-radius: 3px; margin-block-end: 16px; }
.client-sector-icon svg { width: 24px; height: 24px; flex-shrink: 0; }
.client-sector-card h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: -.01em; color: var(--text); }
.client-sector-card p { margin: 0; color: #666; font-size: 13px; line-height: 1.55; }

.client-partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-block-end: 48px; }
.client-partner-card { padding: 24px 20px; border: 1px solid #e6e6e6; background: #fff; display: flex; flex-direction: column; align-items: flex-start; transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.client-partner-card:hover { transform: translateY(-4px); border-color: rgba(249,115,22,.4); box-shadow: 0 10px 24px rgba(0,0,0,.05); }
.client-partner-logo { min-height: 48px; display: flex; align-items: center; gap: 10px; margin-block-end: 14px; font-family: var(--font-display); font-size: 18px; font-weight: 750; color: #222; }
.client-partner-logo span.logo-sym { width: 34px; height: 34px; background: #111; color: #fff; display: grid; place-items: center; font-size: 14px; font-weight: 800; }
.client-partner-card:hover .client-partner-logo span.logo-sym { background: var(--orange); }
.client-partner-card h4 { margin: 0 0 6px; font-size: 13.5px; font-weight: 650; color: #333; }
.client-partner-card p { margin: 0 0 12px; color: #666; font-size: 12px; line-height: 1.5; }
.client-partner-tag { margin-top: auto; padding: 3px 8px; background: #f8f8f7; color: var(--orange); font-size: 11px; font-weight: 650; border-radius: 2px; }

/* Enhanced Projects Portfolio Grid */
.projects-portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.portfolio-card { display: flex; flex-direction: column; border: 1px solid #e6e6e6; background: #fff; overflow: hidden; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.portfolio-card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,.45); box-shadow: 0 16px 36px rgba(0,0,0,.08); }
.portfolio-media { position: relative; aspect-ratio: 16 / 10.5; overflow: hidden; background: #1a1a1a; }
.portfolio-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.portfolio-card:hover .portfolio-media img { transform: scale(1.06); }
.portfolio-badge-row { position: absolute; inset-block-start: 14px; inset-inline: 14px; display: flex; align-items: center; justify-content: space-between; z-index: 2; pointer-events: none; }
.portfolio-badge { padding: 5px 11px; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.portfolio-badge.status-completed { background: #111; color: #fff; }
.portfolio-badge.status-ongoing { background: var(--orange); color: #fff; }
.portfolio-category-tag { padding: 5px 11px; background: rgba(15,15,15,.75); backdrop-filter: blur(6px); color: #fff; font-size: 10.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.portfolio-body { padding: 24px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.portfolio-meta-top { display: flex; align-items: center; gap: 8px; margin-block-end: 8px; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.portfolio-body h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: 19px; line-height: 1.25; font-weight: 700; letter-spacing: -.025em; color: var(--text); }
.portfolio-location { display: inline-flex; align-items: center; gap: 6px; margin-block-end: 14px; color: #777; font-size: 13px; }
.portfolio-location svg { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }
.portfolio-desc { margin: 0 0 18px; color: #555; font-size: 13.5px; line-height: 1.6; flex: 1; }
.portfolio-specs { display: flex; flex-wrap: wrap; gap: 8px; padding-block-start: 14px; border-top: 1px solid #f0f0f0; margin-block-end: 18px; }
.portfolio-spec-chip { display: inline-flex; align-items: center; padding: 4px 9px; background: #f7f7f6; color: #444; font-size: 11.5px; font-weight: 500; border-radius: 2px; }
.portfolio-link { display: inline-flex; align-items: center; gap: 8px; color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; transition: gap .3s ease; }
.portfolio-link svg { width: 13px; height: 13px; transition: transform .3s ease; }
.portfolio-card:hover .portfolio-link { gap: 12px; }
[dir="rtl"] .portfolio-card:hover .portfolio-link svg { transform: translateX(-3px); }

/* 4-Step Process & Methodology */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-block-start: 32px; }
.step-card { position: relative; padding: 32px 24px 28px; border: 1px solid #e5e5e5; background: #fff; transition: border-color var(--transition), transform var(--transition); }
.step-card:hover { border-color: rgba(249,115,22,.4); transform: translateY(-4px); }
.step-num { position: absolute; inset-block-start: -16px; inset-inline-start: 24px; width: 34px; height: 34px; display: grid; place-items: center; background: var(--orange); color: #fff; font-family: var(--font-display); font-size: 14px; font-weight: 700; }
.step-card h3 { margin: 10px 0 10px; font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -.02em; }
.step-card p { margin: 0; color: #666; font-size: 13.5px; line-height: 1.6; }

/* QHSE & Standards Strip */
.qhse-section { padding-block: clamp(48px, 4vw, 68px); background: #fbfbfa; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.qhse-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.qhse-card { display: flex; align-items: flex-start; gap: 16px; padding: 24px; border: 1px solid #e5e5e5; background: #fff; }
.qhse-icon { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; color: var(--orange); background: rgba(249,115,22,.08); }
.qhse-icon svg { width: 24px; height: 24px; }
.qhse-card h3 { margin: 0 0 6px; font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.qhse-card p { margin: 0; color: #666; font-size: 13px; line-height: 1.55; }

/* FAQ Accordion */
.faq-grid { max-width: 860px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; margin-block-start: 32px; }
.faq-item { border: 1px solid #e5e5e5; background: #fff; transition: border-color var(--transition); }
.faq-item.active { border-color: rgba(249,115,22,.4); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; border: 0; background: transparent; text-align: start; cursor: pointer; font-family: var(--font-display); font-size: 16px; font-weight: 680; color: var(--text); }
.faq-question svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--orange); transition: transform .3s ease; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 24px 22px; color: #555; font-size: 14.5px; line-height: 1.65; }
.faq-item.active .faq-answer { display: block; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { padding: clamp(24px, 2.5vw, 36px); border: 1px solid #e5e5e5; background: #fff; transition: border-color var(--transition), box-shadow var(--transition); }
.testimonial-card:hover { border-color: rgba(249,115,22,.3); box-shadow: var(--shadow); }
.testimonial-card blockquote { margin: 0 0 20px; color: #444; font-size: 15px; line-height: 1.65; font-style: italic; }
.testimonial-card blockquote::before { content: '\201C'; color: var(--orange); font-size: 42px; line-height: 0; vertical-align: -12px; margin-inline-end: 6px; font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.testimonial-info strong { display: block; font-size: 14px; font-weight: 650; }
.testimonial-info span { color: #888; font-size: 12.5px; }

/* Enhanced Careers Page Styles */
.career-culture-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 4vw, 70px); align-items: center; }
.career-culture-text h2 { margin: 0 0 16px; font-family: var(--font-display); font-size: clamp(30px, 2.6vw, 42px); line-height: 1.1; font-weight: 750; letter-spacing: -.035em; }
.career-culture-text p { color: #555; font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.career-perks-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-block: 24px; padding: 0; list-style: none; }
.career-perks-list li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: #222; }
.career-perks-list li svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }

.career-culture-media { position: relative; }
.career-img-mosaic { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; }
.career-img-mosaic img { width: 100%; height: 260px; object-fit: cover; border-radius: 2px; }
.career-img-mosaic img:first-child { height: 380px; grid-column: 1 / 2; grid-row: 1 / 3; }
.culture-stat-overlay { position: absolute; inset-inline-end: 20px; inset-block-end: -20px; background: #0b0f14; border: 1px solid rgba(249,115,22,.4); padding: 18px 24px; color: #fff; box-shadow: 0 16px 36px rgba(0,0,0,.2); display: flex; align-items: center; gap: 16px; }
.culture-stat-overlay strong { font-family: var(--font-display); font-size: 32px; color: var(--orange); line-height: 1; }
.culture-stat-overlay span { font-size: 12px; color: #bbb; line-height: 1.35; max-width: 120px; }

/* Employee Value Proposition (EVP) 4-Card Grid */
.evp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.evp-card { position: relative; padding: 32px 24px; border: 1px solid #e6e6e6; background: #fff; display: flex; flex-direction: column; transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.evp-card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,.45); box-shadow: 0 16px 36px rgba(0,0,0,.06); }
.evp-num { position: absolute; inset-inline-end: 20px; inset-block-start: 20px; font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #d0d0d0; }
.evp-icon { width: 50px; height: 50px; display: grid; place-items: center; background: rgba(249,115,22,.08); color: var(--orange); margin-block-end: 20px; }
.evp-icon svg { width: 26px; height: 26px; }
.evp-card h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -.02em; }
.evp-card p { margin: 0 0 18px; color: #666; font-size: 13.5px; line-height: 1.6; flex: 1; }
.evp-tag-list { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 14px; border-top: 1px solid #f0f0f0; }
.evp-tag-list span { font-size: 11px; font-weight: 600; color: var(--orange); background: rgba(249,115,22,.06); padding: 3px 8px; border-radius: 2px; }

/* 4-Step Recruitment Process */
.recruitment-process-wrap { background: #0e1319; color: #fff; padding-block: clamp(60px, 6vw, 90px); border-block: 1px solid rgba(255,255,255,.08); }
.hiring-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.hiring-step-card { position: relative; padding: 28px 22px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column; transition: border-color var(--transition), background var(--transition); }
.hiring-step-card:hover { border-color: rgba(249,115,22,.4); background: rgba(255,255,255,.06); }
.hiring-step-num { width: 36px; height: 36px; display: grid; place-items: center; background: var(--orange); color: #fff; font-weight: 700; font-size: 13px; margin-block-end: 18px; }
.hiring-step-card h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 17px; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.hiring-step-card p { margin: 0; color: #aaa; font-size: 13px; line-height: 1.6; }

/* Enhanced Career Job Cards */
.career-jobs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.career-job-card { padding: 30px; border: 1px solid #e4e4e4; background: #fff; display: flex; flex-direction: column; transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.career-job-card:hover { transform: translateY(-4px); border-color: rgba(249,115,22,.45); box-shadow: 0 14px 34px rgba(0,0,0,.06); }
.job-header-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-block-end: 14px; flex-wrap: wrap; }
.job-dept-badge { padding: 4px 10px; background: rgba(249,115,22,.1); color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; border-radius: 2px; }
.job-type-badge { font-size: 11.5px; font-weight: 600; color: #777; }
.career-job-card h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: 20px; font-weight: 750; letter-spacing: -.025em; color: var(--text); }
.job-info-meta { display: flex; align-items: center; gap: 16px; margin-block-end: 14px; color: #666; font-size: 12.5px; flex-wrap: wrap; }
.job-info-meta span { display: inline-flex; align-items: center; gap: 6px; }
.job-info-meta svg { width: 14px; height: 14px; color: var(--orange); }
.job-summary { margin: 0 0 18px; color: #555; font-size: 14px; line-height: 1.6; flex: 1; }
.job-req-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-block-end: 22px; padding-top: 14px; border-top: 1px solid #f0f0f0; }
.job-req-chip { font-size: 11.5px; font-weight: 500; color: #444; background: #f5f5f4; padding: 4px 9px; border-radius: 2px; }
.job-footer-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; }
.job-footer-row .btn { min-height: 42px; font-size: 12px; padding-inline: 20px; }

/* Direct CV Drop Module */
.cv-drop-module { padding: clamp(36px, 4vw, 56px); border: 1px solid #e4e4e4; background: linear-gradient(135deg, #fff 0%, #fbfbfa 100%); margin-block-start: 56px; }
.cv-drop-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 3.5vw, 56px); align-items: center; }
.cv-drop-text h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: clamp(22px, 2vw, 28px); font-weight: 750; letter-spacing: -.03em; }
.cv-drop-text p { margin: 0 0 20px; color: #555; font-size: 14.5px; line-height: 1.65; }
.cv-drop-highlights { display: flex; flex-direction: column; gap: 10px; }
.cv-drop-highlights div { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #333; font-weight: 600; }
.cv-drop-highlights svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.cv-drop-box { padding: 32px; background: #fff; border: 1px solid #e0e0e0; box-shadow: 0 10px 30px rgba(0,0,0,.05); border-radius: 4px; }
.cv-drop-box .field { margin-block-end: 18px; position: relative; }
.cv-drop-box .field label { position: static; display: block; margin-block-end: 6px; font-size: 13px; font-weight: 600; color: #222; letter-spacing: normal; pointer-events: auto; }
.cv-drop-box .field input, .cv-drop-box .field select { width: 100%; height: 48px; padding: 10px 16px; color: #111; border: 1px solid #d0d0d0; border-radius: 2px; background: #fafafa; font-size: 14px; outline: none; transition: border-color var(--transition), background var(--transition), box-shadow var(--transition); }
.cv-drop-box .field input::placeholder { color: #888; font-size: 13.5px; }
.cv-drop-box .field input:focus, .cv-drop-box .field select:focus { border-color: var(--orange); background: #fff; box-shadow: 0 0 0 3px rgba(249,115,22,.12); }
.cv-drop-box .field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #777 50%), linear-gradient(135deg, #777 50%, transparent 50%); background-position: calc(100% - 18px) 21px, calc(100% - 14px) 21px; background-size: 5px 5px; background-repeat: no-repeat; }
[dir="rtl"] .cv-drop-box .field select { background-position: 18px 21px, 14px 21px; }

/* Enhanced Contact Page Styles */
.contact-hub-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-block-end: 48px; }
.contact-hub-card { padding: 26px 22px; border: 1px solid #e4e4e4; background: #fff; display: flex; flex-direction: column; transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); text-decoration: none; color: inherit; }
.contact-hub-card:hover { transform: translateY(-4px); border-color: rgba(249,115,22,.45); box-shadow: 0 12px 30px rgba(0,0,0,.06); }
.contact-hub-icon { width: 44px; height: 44px; display: grid; place-items: center; background: rgba(249,115,22,.08); color: var(--orange); margin-block-end: 16px; border-radius: 2px; }
.contact-hub-icon svg { width: 22px; height: 22px; }
.contact-hub-card h3 { margin: 0 0 6px; font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: -.01em; color: var(--text); }
.contact-hub-card p { margin: 0 0 10px; color: #555; font-size: 13.5px; line-height: 1.45; font-weight: 600; }
.contact-hub-card span.hub-sub { margin-top: auto; font-size: 11.5px; color: var(--orange); font-weight: 650; letter-spacing: .02em; display: inline-flex; align-items: center; gap: 4px; }

.contact-main-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(32px, 3.5vw, 56px); align-items: start; }
.contact-form { padding: clamp(28px, 3.5vw, 42px); border: 1px solid #e5e5e5; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.03); }
.contact-form h2 { margin: 0 0 8px; font-family: var(--font-display); font-size: clamp(24px, 2vw, 30px); font-weight: 750; letter-spacing: -.03em; }
.contact-form-intro { margin: 0 0 24px; color: #666; font-size: 14px; line-height: 1.6; }
.contact-form .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .field { margin-block-end: 18px; position: relative; }
.contact-form .field label { position: static; display: block; margin-block-end: 6px; color: #222; font-size: 12.5px; font-weight: 650; letter-spacing: normal; pointer-events: auto; }
.contact-form .field label em { color: var(--orange); font-style: normal; }
.contact-form .field input, .contact-form .field select, .contact-form .field textarea { width: 100%; height: 48px; padding: 10px 16px; color: #111; border: 1px solid #d4d4d4; border-radius: 2px; outline: none; background: #fafafa; font-size: 14px; transition: border-color var(--transition), background var(--transition), box-shadow var(--transition); }
.contact-form .field textarea { height: 130px; min-height: 130px; resize: vertical; }
.contact-form .field input:focus, .contact-form .field select:focus, .contact-form .field textarea:focus { border-color: var(--orange); background: #fff; box-shadow: 0 0 0 3px rgba(249,115,22,.12); }
.contact-form .field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #777 50%), linear-gradient(135deg, #777 50%, transparent 50%); background-position: calc(100% - 18px) 21px, calc(100% - 14px) 21px; background-size: 5px 5px; background-repeat: no-repeat; }
[dir="rtl"] .contact-form .field select { background-position: 18px 21px, 14px 21px; }
.contact-form .field option { color: #111; }
.contact-form .field.invalid input, .contact-form .field.invalid select, .contact-form .field.invalid textarea { border-color: #ff5e43; }
.contact-form .field.invalid .error { display: block; position: absolute; inset-inline-start: 0; inset-block-end: -16px; color: #ff5e43; font-size: 11px; }

/* Office Showcase Card (Right Column) */
.office-showcase-card { padding: 32px 28px; border: 1px solid #e4e4e4; background: linear-gradient(180deg, #fff 0%, #fafafa 100%); display: flex; flex-direction: column; gap: 24px; }
.office-status-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.25); border-radius: 20px; font-size: 12px; font-weight: 650; color: #15803d; width: fit-content; }
.status-dot-pulse { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px #22c55e; }
.office-showcase-card h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 20px; font-weight: 750; letter-spacing: -.02em; }
.office-address-block { display: flex; align-items: flex-start; gap: 14px; color: #444; font-size: 14px; line-height: 1.6; }
.office-address-block svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.office-hours-block { display: flex; align-items: flex-start; gap: 14px; color: #555; font-size: 13.5px; line-height: 1.55; }
.office-hours-block svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.office-map-preview { position: relative; overflow: hidden; border: 1px solid #e0e0e0; height: 180px; border-radius: 2px; }
.office-map-preview img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.92); }
.office-map-overlay-btn { position: absolute; inset-inline: 16px; inset-block-end: 16px; z-index: 2; min-height: 40px; font-size: 12px; width: calc(100% - 32px); }
[dir="rtl"] .service-detail-card:nth-child(even) { direction: ltr; }

/* About page - Intro section */
.about-intro-section { background: linear-gradient(180deg, #fff 0%, #fbfbfa 100%); }
.about-intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(36px, 4vw, 72px); }
.about-intro-media { position: relative; }
.about-intro-img-grid { display: grid; grid-template-columns: 1fr .65fr; gap: 14px; }
.about-intro-img-grid img { width: 100%; height: 280px; object-fit: cover; }
.about-intro-img-grid img:first-child { height: 380px; grid-column: 1 / 2; grid-row: 1 / 2; }
.about-intro-img-grid img:last-child { align-self: end; }
.about-intro-content h2 { margin: 0; color: var(--text); font-family: var(--font-display); font-size: clamp(32px, 2.6vw, 44px); line-height: 1.06; font-weight: 700; letter-spacing: -.04em; }
.about-intro-values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-block-start: 28px; }
.about-intro-values article { display: flex; align-items: flex-start; gap: 12px; padding: 18px; border: 1px solid #e8e8e8; background: #fff; }
.about-intro-values svg { width: 28px; height: 28px; flex: 0 0 auto; color: var(--orange); stroke-width: 1.5; }
.about-intro-values h3 { margin: 0 0 5px; font-family: var(--font-body); font-size: 14px; font-weight: 650; letter-spacing: -.01em; }
.about-intro-values p { margin: 0; color: #666; font-size: 12.5px; line-height: 1.58; }

/* About page - Stats section */
.stats-section { background: var(--black); padding-block: clamp(42px, 4vw, 60px); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stats-grid article { text-align: center; padding-block: 14px; border-inline-end: 1px solid rgba(255,255,255,.12); }
.stats-grid article:last-child { border-inline-end: 0; }
.stats-grid strong { display: block; color: var(--orange); font-family: var(--font-display); font-size: clamp(36px, 3vw, 52px); line-height: 1; font-weight: 750; letter-spacing: -.04em; }
.stats-grid span { display: block; margin-block-start: 8px; color: #c9c9c9; font-size: 12px; line-height: 1.4; font-weight: 500; letter-spacing: .01em; }

/* About page - Vision, Mission & Values */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-block-end: 32px; }
.vm-card { padding: clamp(28px, 3vw, 42px); border: 1px solid #e5e5e5; background: #fff; transition: border-color var(--transition), box-shadow var(--transition); }
.vm-card:hover { border-color: rgba(249,115,22,.4); box-shadow: 0 12px 36px rgba(0,0,0,.06); }
.vm-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-block-end: 20px; color: var(--orange); background: rgba(249,115,22,.08); }
.vm-icon svg { width: 28px; height: 28px; }
.vm-card h3 { margin: 0 0 14px; font-family: var(--font-display); font-size: 22px; line-height: 1.2; font-weight: 700; letter-spacing: -.03em; }
.vm-card p { margin: 0; color: #555; font-size: 15px; line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { padding: 24px 20px; border: 1px solid #e5e5e5; background: #fff; text-align: center; transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition); }
.value-card:hover { border-color: rgba(249,115,22,.3); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.05); }
.value-card svg { width: 36px; height: 36px; margin-inline: auto; margin-block-end: 14px; color: var(--orange); stroke-width: 1.5; }
.value-card h4 { margin: 0 0 8px; font-family: var(--font-display); font-size: 16px; font-weight: 680; letter-spacing: -.015em; }
.value-card p { margin: 0; color: #666; font-size: 13px; line-height: 1.62; }

/* About page - Timeline */
.timeline { position: relative; max-width: 820px; margin-inline: auto; padding-inline-start: 40px; }
.timeline::before { content: ''; position: absolute; inset-inline-start: 14px; inset-block: 0; width: 2px; background: #e0e0e0; }
.timeline-item { position: relative; padding-block: 0 36px; }
.timeline-item:last-child { padding-block-end: 0; }
.timeline-marker { position: absolute; inset-inline-start: -40px; inset-block-start: 4px; width: 30px; height: 30px; display: grid; place-items: center; background: var(--orange); border-radius: 50%; }
.timeline-marker::after { content: ''; width: 10px; height: 10px; background: #fff; border-radius: 50%; }
.timeline-content { padding-block-start: 2px; }
.timeline-year { display: inline-block; margin-block-end: 6px; padding: 4px 12px; color: var(--orange); background: rgba(249,115,22,.08); font-size: 12px; font-weight: 680; letter-spacing: .02em; }
.timeline-content h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 18px; line-height: 1.25; font-weight: 680; letter-spacing: -.02em; }
.timeline-content p { margin: 0; color: #555; font-size: 14.5px; line-height: 1.65; max-width: 600px; }

/* About page - CTA section */
.about-cta-section { padding-block: clamp(48px, 5vw, 72px); background: #f6f6f4; }
.about-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 4vw, 72px); align-items: center; }
.about-cta-content h2 { margin: 0 0 16px; color: var(--text); font-family: var(--font-display); font-size: clamp(28px, 2.4vw, 38px); line-height: 1.08; font-weight: 700; letter-spacing: -.04em; }
.about-cta-content > p { margin: 0 0 28px; color: #555; font-size: 15px; line-height: 1.65; }
.about-cta-actions { display: flex; gap: 16px; }
.about-cta-media img { width: 100%; height: 340px; object-fit: cover; }

/* RTL about page */
[dir="rtl"] .page-hero-lead { line-height: 1.78; }
[dir="rtl"] .timeline { padding-inline-start: 0; padding-inline-end: 40px; }
[dir="rtl"] .timeline::before { inset-inline-start: auto; inset-inline-end: 14px; }
[dir="rtl"] .timeline-marker { inset-inline-start: auto; inset-inline-end: -40px; }
[dir="rtl"] .about-cta-actions .btn svg { transform: scaleX(-1); }

/* RTL preparation */
html[dir="rtl"] { --dir-angle: 270deg; }
[dir="rtl"] body { font-family: var(--font-arabic); }
html[dir="rtl"] body :where(h1, h2, h3, p, a, button, label, input, select, textarea, strong, span, b, small) { font-family: var(--font-arabic); letter-spacing: 0; }
[dir="rtl"] .desktop-nav a { font-size: 13.25px; }
[dir="rtl"] .hero h1 { line-height: 1.01; font-weight: 700; }
[dir="rtl"] .hero-lead { line-height: 1.72; }
[dir="rtl"] .section-heading h2, [dir="rtl"] .heading-row h2, [dir="rtl"] .about-content h2 { line-height: 1.16; }
[dir="rtl"] .section-copy { line-height: 1.82; }
[dir="rtl"] .mini-features p, [dir="rtl"] .card-body p, [dir="rtl"] .benefits-grid p, [dir="rtl"] .footer p, [dir="rtl"] .footer a { line-height: 1.72; }
/* Overlay direction follows --dir-angle; no RTL override needed. */
[dir="rtl"] .btn svg, [dir="rtl"] .text-link svg, [dir="rtl"] .card-body a svg, [dir="rtl"] .profile-card b svg { transform: scaleX(-1); }

/* Floating WhatsApp Quick Action */
.whatsapp-float {
    position: fixed;
    inset-inline-start: 24px;
    inset-block-end: 24px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 10px 12px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38);
    text-decoration: none;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: -.01em;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    background: #20ba5a;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}
.whatsapp-float svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}
.whatsapp-label {
    white-space: nowrap;
}

/* Utility classes (replacing former inline styles) */
.band-soft { background: #fcfcfb; border-top: 1px solid #eee; }
.band-soft-framed { background: #fcfcfb; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.band-compact { padding-block: clamp(48px, 5vw, 72px); background: #fcfcfb; }
.band-compact-tight { padding-block: clamp(48px, 5vw, 68px); background: #fcfcfb; }
.band-grey { background: #f8f9fa; }
.flush-top { padding-block-start: 0; }
.heading-center { text-align: center; max-width: 700px; margin-inline: auto; }
.heading-center-wide { text-align: center; max-width: 720px; margin-inline: auto; }
.heading-spaced { margin-block-end: 40px; }
.heading-tight { margin-block-end: 32px; }
.text-center { text-align: center; }
.section-lead { margin: 12px auto 0; color: #666; font-size: 15px; line-height: 1.6; }
.section-lead-narrow { max-width: 620px; margin: 12px auto 0; color: #666; font-size: 15px; line-height: 1.6; }
.section-lead-fill { margin: 12px 0 0; color: #666; font-size: 15px; line-height: 1.6; }
.on-dark { color: #fff; }
.icon-xs { width: 12px; height: 12px; }
.btn-sm { font-size: 12px; padding: 10px 18px; }
.btn-block { width: 100%; }
.btn-submit-full { width: 100%; min-height: 52px; margin-top: 8px; }
.stack-top { margin-block-start: 20px; }
.form-status-centered { text-align: center; margin-top: 14px; }
.faq-grid-spaced { margin-block-start: 36px; }
.office-name { margin: 0; color: #666; font-size: 13.5px; }
.office-lines { margin: 4px 0 0; color: #555; font-size: 13px; line-height: 1.5; }
.contact-hub-icon--wa { background: rgba(34,197,94,.08); color: #16a34a; }
.hub-sub--wa { color: #16a34a; }

/* Wide viewports use the 3-column services base grid above; no override needed. */

@media (max-width: 1280px) {
    .desktop-nav a { padding-inline: 7px; font-size: 12.25px; }
    .brand-logo { height: 72px; }
    .header-cta { padding-inline: 16px !important; }
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .card-media { height: 225px; }
    .why-layout { grid-template-columns: 145px minmax(0, 1fr) 225px; gap: 15px; }
    .benefits-grid article { padding-inline: 10px; }
}

@media (max-width: 1199px) {
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
    .card-media { height: 220px; }
}

@media (max-width: 1060px) {
    .desktop-nav, .header-cta { display: none; }
    .menu-toggle { width: 44px; height: 44px; display: grid; place-items: center; margin-inline-start: auto; }
    .mobile-menu { position: fixed; inset-block: 0; inset-inline-end: 0; z-index: 1300; width: min(88vw, 390px); display: flex; flex-direction: column; gap: 0; padding: 92px 35px 35px; color: #fff; background: #121212; box-shadow: -20px 0 60px rgba(0,0,0,.32); transform: translateX(105%); visibility: hidden; transition: transform .35s ease, visibility 0s linear .35s; }
    [dir="rtl"] .mobile-menu { transform: translateX(-105%); }
    .mobile-menu.open { transform: none; visibility: visible; transition: transform .35s ease; }
    .mobile-menu > a:not(.btn) { min-height: 56px; display: flex; align-items: center; padding: 12px 2px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 16px; font-weight: 600; letter-spacing: -.012em; }
    .mobile-menu > .btn { margin-block-start: 28px; }
    .menu-close { position: absolute; inset-block-start: 20px; inset-inline-end: 20px; width: 44px; height: 44px; display: grid; place-items: center; color: #fff; }
    .menu-backdrop { position: fixed; inset: 0; z-index: 1200; display: block; background: rgba(0,0,0,.62); opacity: 0; visibility: hidden; transition: var(--transition); }
    .menu-backdrop.open { opacity: 1; visibility: visible; }
    .hero { min-height: clamp(580px, 70vh, 700px); }
    .hero h1 { max-width: 600px; font-size: clamp(60px, 7vw, 74px); }
    .trust-grid article { grid-template-columns: 36px minmax(0, 1fr); column-gap: 10px; padding-inline: 12px; }
    .trust-grid svg { width: 34px; height: 34px; }
    .trust-grid strong { font-size: 11.5px; }
    .trust-grid span { font-size: 10.25px; }
    .mini-features { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .why-layout { grid-template-columns: 1fr; }
    .why-title p { margin-block-end: 10px; }
    .profile-card { max-width: 350px; }
    .logo-grid { grid-template-columns: repeat(4, 1fr); }
    .quote-section { grid-template-columns: 1fr; }
    .quote-visual { min-height: 400px; }
    .about-intro-grid { grid-template-columns: 1fr; }
    .vm-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-cta-grid { grid-template-columns: 1fr; }
    .service-detail-card { grid-template-columns: 1fr; }
    .service-detail-card:nth-child(even) { direction: ltr; }
    .service-detail-media img { min-height: 240px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .jobs-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .projects-portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .qhse-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 2fr repeat(2, 1fr); }
}

@media (max-width: 768px) {
    html { scroll-padding-top: 78px; }
    .container-custom { width: min(90%, 680px); }
    .topbar { height: 44px; }
    .topbar-contact { gap: 18px; }
    .topbar-contact a, .language { min-height: 44px; }
    .language { min-width: 44px; }
    .topbar-email { display: none !important; }
    .site-header { height: 76px; }
    .brand-logo { height: 64px; }
    .section { padding-block: 64px; }
    .hero { min-height: min(72svh, 560px); }
    .hero-image { object-position: 64% center; }
    .hero-overlay { background: linear-gradient(var(--dir-angle, 90deg), rgba(7,9,11,.94), rgba(7,9,11,.63) 70%, rgba(7,9,11,.38)), linear-gradient(0deg, rgba(0,0,0,.72), transparent); }
/* Mobile hero overlay direction follows --dir-angle; no RTL override needed. */
    .hero-content { padding-block: 66px 56px; }
    .hero-content .eyebrow { font-size: 13px; }
    .hero h1 { font-size: clamp(48px, 12vw, 66px); line-height: .92; letter-spacing: -2.35px; }
    .hero-lead { max-width: 440px; font-size: 16px; }
    .hero-tags li { font-size: 11.5px; padding-inline: 10px; }
    .hero-actions { gap: 12px; }
    .hero-actions .btn { padding-inline: 19px; font-size: 12.5px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid article { justify-content: flex-start; min-height: 80px; padding-inline: 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .trust-grid article:last-child { grid-column: 1 / -1; grid-template-columns: auto auto; justify-content: center; }
    .trust-grid svg { width: 36px; height: 36px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-media, .about-media > img { min-height: 0; height: 460px; }
    .about-content { max-width: none; }
    .services-section { padding-block-start: 20px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .card-media { height: 190px; }
    .benefits-grid { gap: 16px; }
    .logo-grid { grid-template-columns: repeat(3, 1fr); }
    .form-grid { grid-template-columns: repeat(2, 1fr); }
    .field-message { grid-column: 1 / -1; }
    .upload-field { grid-column: 1 / -1; grid-row: auto; }
    .upload-field label { height: 125px; }
    .field label { font-size: 13px; }
    .field input, .field select, .field textarea { font-size: 16px; }
    .error { font-size: 13px; line-height: 1.4; }
    .submit-button { grid-column: 1 / -1; width: 100%; float: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-brand { grid-column: 1 / -1; }
    .footer nav a, .footer-grid > div:not(.footer-brand) > a { min-height: 44px; display: flex; align-items: center; margin: 0; }
    .socials a { width: 44px; height: 44px; }
    .about-intro-img-grid { grid-template-columns: 1fr; }
    .about-intro-img-grid img:first-child { height: 280px; }
    .about-intro-img-grid img:last-child { height: 200px; }
    .about-intro-values { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid article:nth-child(2) { border-inline-end: 0; }
    .projects-kpi-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-kpi-item:nth-child(2) { border-inline-end: 0; }
    .values-grid { grid-template-columns: 1fr; }
    .about-cta-actions { flex-direction: column; }
    .about-cta-media img { height: 260px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .jobs-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .page-hero, .about-hero { align-items: flex-start; min-height: 0; height: auto; }
    .page-hero-layout { flex-direction: column; align-items: flex-start; gap: 12px; }
    .page-hero-layout > div:first-child { flex: 0 0 auto; }
    .page-hero-content, .about-hero-content { padding-block: 20px 18px; }
    .page-hero-badges { display: none; }
    .career-culture-grid { grid-template-columns: 1fr; }
    .evp-grid { grid-template-columns: repeat(2, 1fr); }
    .hiring-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .career-jobs-grid { grid-template-columns: 1fr; }
    .cv-drop-grid { grid-template-columns: 1fr; }
    .contact-hub-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-main-grid { grid-template-columns: 1fr; }
    .service-detail-card { grid-template-columns: 1fr; }
    .service-detail-card:nth-child(even) { direction: ltr; }
    .spotlight-showcase { grid-template-columns: 1fr; }
    .spotlight-media-pane { min-height: 280px; height: 280px; }
    .client-sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .client-partner-grid { grid-template-columns: repeat(2, 1fr); }
    .back-to-top { width: 44px; height: 44px; }
}

@media (max-width: 600px) {
    .topbar-contact a:nth-child(2) span { display: none; }
    .topbar-contact a:nth-child(2) { margin-inline-start: 2px; }
    .language-switcher { gap: 8px; }
    .hero { min-height: min(78svh, 520px); }
    .hero-image { object-position: 68% center; }
    .hero-content { padding-block: 56px 48px; }
    .hero h1 { font-size: clamp(42px, 11.5vw, 50px); line-height: .96; letter-spacing: -.04em; }
    [dir="rtl"] .hero h1 { line-height: 1.1; }
    .hero-lead { max-width: 360px; margin-block: 18px 16px; font-size: 15px; line-height: 1.6; }
    [dir="rtl"] .hero-lead { line-height: 1.72; }
    .hero-tags { max-width: 360px; row-gap: 10px; margin-block-end: 26px; }
    .hero-tags li { font-size: 11.5px; line-height: 1.4; }
    .hero-tags li:nth-child(2) { border-inline-end: 0; }
    .hero-tags li:nth-child(3) { padding-inline-start: 0; }
    .hero-actions { align-items: stretch; flex-direction: column; max-width: 290px; }
    .hero-actions .btn { width: 100%; min-height: 52px; font-size: 13px; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-grid article, .trust-grid article:first-child, .trust-grid article:last-child { grid-column: auto; justify-content: flex-start; min-height: 0; padding-block: 22px; border-inline: 0; }
    .trust-grid strong { font-size: 13px; }
    .trust-grid span { font-size: 12px; line-height: 1.4; }
    .about-media, .about-media > img { height: 350px; }
    .experience-card { inset-inline-start: 17px; inset-block-end: 16px; width: 122px; height: 122px; padding-inline: 18px; }
    .experience-card strong { font-size: 36px; }
    .about-content h2 { font-size: 34px; line-height: 1.08; }
    .section-copy { margin-block: 22px 34px; font-size: 15px; line-height: 1.72; }
    .mini-features { grid-template-columns: 1fr; gap: 18px; }
    .mini-features p { font-size: 13px; }
    .services-grid, .projects-grid { grid-template-columns: 1fr; }
    .services-grid { gap: 20px; }
    .service-card { display: flex; flex-direction: column; }
    .card-media { height: auto; aspect-ratio: 16 / 10; }
    .card-body { padding: 21px 20px 20px; }
    .card-body h3 { font-size: 18px; }
    .card-body p { font-size: 14px; line-height: 1.62; }
    .card-body a { font-size: 13px; }
    .heading-row { align-items: flex-start; flex-direction: column; }
    .projects-grid { gap: 18px; }
    .project-card { aspect-ratio: 16 / 10; }
    .why-section { padding-block: 55px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .benefits-grid svg { width: 30px; height: 30px; }
    .profile-card { max-width: none; padding: 20px; }
    .logo-grid { grid-template-columns: repeat(2, 1fr); }
    .logo-grid > div { opacity: .88; }
    .quote-visual-content { width: 88%; padding-block: 57px; }
    .quote-form-wrap { padding: 35px 5%; }
    .form-grid { grid-template-columns: 1fr; gap: 13px; }
    .field-message, .upload-field { grid-column: 1; }
    .field label { font-size: 13px; }
    .field input, .field select, .field textarea { font-size: 16px; }
    .error { font-size: 13px; line-height: 1.4; }
    .field.invalid, .upload-field.invalid { margin-block-end: 10px; }
    .submit-button { min-height: 54px; font-size: 14px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-block: 42px 34px; }
    .footer-brand { grid-column: auto; }
    .footer-brand > p, .footer p, .footer-grid > div > a, .footer nav a { font-size: 14px; line-height: 1.65; }
    .footer h3 { margin-block-end: 12px; font-size: 15px; font-weight: 700; }
    .footer nav a, .footer-grid > div:not(.footer-brand) > a { min-height: 44px; display: flex; align-items: center; margin: 0; }
    .socials a { width: 44px; height: 44px; }
    .back-to-top { width: 44px; height: 44px; inset-inline-end: 16px; inset-block-end: 16px; }
    .footer-bottom .container-custom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 18px; }
    .footer-bottom p, .footer-bottom a { font-size: 12.5px; }
    .footer-bottom div div { gap: 16px; }
    .about-intro-img-grid img { height: 200px; }
    .about-intro-img-grid img:first-child { height: 240px; }
    .vm-card { padding: 24px; }
    .vm-card h3 { font-size: 18px; }
    .vm-card p { font-size: 14px; }
    .stats-grid { gap: 16px; }
    .stats-grid strong { font-size: 32px; }
    .projects-kpi-grid { grid-template-columns: 1fr; gap: 16px; }
    .projects-kpi-item { border-inline-end: 0 !important; border-block-end: 1px solid rgba(255,255,255,.1); padding-block: 12px; }
    .projects-kpi-item:last-child { border-block-end: 0; }
    .timeline { padding-inline-start: 32px; }
    .timeline-marker { width: 24px; height: 24px; inset-inline-start: -32px; }
    .timeline-marker::after { width: 8px; height: 8px; }
    .timeline::before { inset-inline-start: 11px; }
    .about-cta-content h2 { font-size: 26px; }
    .page-hero, .about-hero { min-height: 0; height: auto; }
    .page-hero h1, .about-hero h1 { font-size: clamp(26px, 6vw, 34px); margin-bottom: 8px; }
    .page-hero-content, .about-hero-content { padding-block: 18px 16px; }
    .service-detail-body { padding: 22px; }
    .testimonial-card { padding: 20px; }
    .job-card { flex-direction: column; padding: 22px; }
    .contact-form { padding: 22px; }
    .career-perks-list { grid-template-columns: 1fr; }
    .career-img-mosaic { grid-template-columns: 1fr; }
    .career-img-mosaic img:first-child { height: 260px; grid-column: auto; grid-row: auto; }
    .culture-stat-overlay { position: static; margin-top: 14px; }
    .evp-grid { grid-template-columns: 1fr; }
    .hiring-steps-grid { grid-template-columns: 1fr; }
    .career-job-card { padding: 20px; }
    .cv-drop-box { padding: 20px; }
    .contact-hub-grid { grid-template-columns: 1fr; }
    .client-sectors-grid { grid-template-columns: 1fr; }
    .client-partner-grid { grid-template-columns: 1fr; }
    .office-showcase-card { padding: 24px 20px; }
    .whatsapp-float { inset-inline-start: 16px; inset-block-end: 16px; padding: 10px; border-radius: 50%; width: 46px; height: 46px; justify-content: center; }
    .whatsapp-label { display: none; }
}

@media (max-width: 390px) {
    .container-custom { width: 91%; }
    .topbar-contact a:first-child { font-size: 11.5px; }
    .brand-logo { height: 60px; }
    .hero h1 { font-size: 46px; }
    .hero-tags li { padding-inline: 7px; }
    .trust-grid article { padding-inline: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

