@import url("./fonts.css");
:root {
  --navy: #10294b;
  --deep: #0b203d;
  --orange: #f4a332;
  --sky: #c9e7f3;
  --ink: #1a2f4b;
  --muted: #5e6d80;
  --line: #dfe6ed;
  --soft: #f4f7fa;
  --max: 1240px;
  --radius: 12px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: SunSans, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
body.rtl {
  font-family: SunArabic, Tahoma, Arial, sans-serif;
  line-height: 1.9;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a,
button {
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #cb790d;
  outline-offset: 5px;
}
img {
  max-width: 100%;
  display: block;
}
svg {
  display: block;
}
p {
  margin: 0 0 1em;
}
h1,
h2,
h3,
h4 {
  color: var(--navy);
  margin: 0 0 0.65em;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}
h2 {
  font-size: clamp(1.6rem, 2.35vw, 2.1rem);
  font-weight: 650;
}
h3 {
  font-size: 1.13rem;
  font-weight: 650;
  line-height: 1.45;
}
h4 {
  font-size: 1rem;
}
.rtl h1,
.rtl h2,
.rtl h3,
.rtl h4 {
  letter-spacing: 0;
  line-height: 1.65;
}
.rtl h1 {
  font-size: clamp(1.9rem, 3vw, 2.65rem);
}
.rtl h2 {
  font-size: clamp(1.5rem, 2.1vw, 1.9rem);
}
[hidden] {
  display: none !important;
}
.container {
  width: min(var(--max), calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 10px;
  inset-inline-start: 20px;
  transform: translateY(-160%);
  z-index: 200;
  background: #fff;
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 8px;
}
.skip-link:focus {
  transform: translateY(0);
}
.topbar {
  background: var(--deep);
  color: #d1dce9;
  font-size: 0.78rem;
}
.topbar .container {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.topbar a:hover {
  color: #fff;
}
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
.header-row {
  height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  /* The services mega menu is positioned against this row rather than against
     its own button, so a four-column panel cannot drift past the viewport in
     either writing direction. */
  position: relative;
}
.logo {
  flex-shrink: 0;
}
.logo img {
  width: 158px;
  height: 62px;
  object-fit: contain;
}
.nav {
  display: flex;
  gap: 9px;
  align-items: center;
}
.nav > a,
.dropbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  min-height: 44px;
  padding: 10px 12px;
  white-space: nowrap;
  border-radius: 6px;
}
.nav > a:hover,
.dropbtn:hover {
  background: var(--soft);
}
.nav > a.active,
.dropbtn.active {
  color: #955710;
  box-shadow: inset 0 -2px var(--orange);
}
.nav > .lang-btn {
  border: 1px solid var(--line);
  margin-inline: 6px;
  font-family: SunArabic, SunSans, sans-serif;
  font-size: 0.875rem;
}
.nav > .request-btn {
  background: var(--orange);
  color: var(--deep);
  padding: 12px 20px;
}
.nav > .request-btn:hover {
  background: #ffb54d;
}
.dropdown {
  position: static;
}
.mega {
  display: none;
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  /* Four service groups, never wider than the header container it is anchored
     to, so it stays on screen at any width and mirrors cleanly in Arabic. */
  width: min(100%, 880px);
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 20px 50px #10294b22;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.dropdown.open .mega {
  display: grid;
}
.mega .all-services {
  grid-column: 1/-1;
  color: #995908;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  font-weight: 600;
}
.mega h4 {
  font-size: 0.85rem;
}
.mega a {
  display: block;
  font-size: 0.875rem;
  padding: 8px 0;
  color: var(--muted);
}
.mega a:hover {
  color: #9a5807;
}
.mobile-toggle {
  display: none;
  background: white;
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--navy);
  font-size: 22px;
}
.home-hero {
  position: relative;
  background: var(--deep);
  overflow: hidden;
  color: white;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: center;
  gap: 42px;
}
.home-hero-grid {
  min-height: 570px;
  padding: 55px 0 66px;
}
.hero-copy {
  padding-block: 12px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  color: #9e5b0a;
  font-weight: 650;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.eyebrow:before {
  content: "";
  height: 2px;
  width: 26px;
  flex-shrink: 0;
  background: var(--orange);
}
.home-hero .eyebrow {
  color: #fbb653;
  font-size: 0.7rem;
}
.home-hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 3.65vw, 3.3rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 21px 0 24px;
}
.home-hero h1 em {
  font-style: normal;
  color: var(--sky);
}
.home-hero .lead {
  color: #c8d4e3;
  max-width: 490px;
  font-size: 1rem;
  line-height: 1.85;
}
.lead {
  font-size: 1.03rem;
  color: var(--muted);
  line-height: 1.85;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 650;
  text-align: center;
  line-height: 1.6;
}
.btn-primary {
  background: var(--orange);
  color: var(--deep);
}
.btn-primary:hover {
  background: #ffb94f;
  transform: translateY(-2px);
}
.btn-outline {
  border-color: #c7d1df;
  background: #fff;
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--soft);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover {
  background: #204777;
}
.btn-hero-outline {
  border-color: #5d6d82;
  background: transparent;
  color: #fff;
}
.btn-hero-outline:hover {
  background: #ffffff14;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 31px;
  max-width: 510px;
}
.hero-tags span {
  font-size: 0.76rem;
  color: #b9cbdc;
  padding-inline: 12px;
  border-inline-start: 1px solid #58718b;
  line-height: 1.2;
  margin-block: 7px;
}
.hero-tags span:first-child {
  padding-inline-start: 0;
  border: 0;
}
.home-equipment-visual {
  position: relative;
  height: 450px;
  align-self: center;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ffffff20;
  box-shadow: 0 24px 60px #0003;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}
.home-equipment-visual:after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, #081d3bd9);
}
.image-note {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  padding: 4px 10px;
  font-size: 0.66rem;
  color: #fff;
  background: #0b203dba;
  border-radius: 3px;
}
.home-visual-card {
  position: absolute;
  bottom: 24px;
  inset-inline: 24px;
  z-index: 1;
  border-inline-start: 3px solid var(--orange);
  padding-inline-start: 16px;
}
.visual-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: #fac378;
}
.home-visual-card strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 550;
  margin-block: 5px;
}
.home-visual-card > span:last-child {
  font-size: 0.76rem;
  color: #d3dfed;
}
.maintenance-priority {
  background: var(--soft);
  padding-top: 0;
}
.maintenance-priority-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: 30px;
  padding: 30px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  position: relative;
  margin-top: -16px;
  z-index: 3;
  box-shadow: 0 10px 26px #10294b08;
}
.maintenance-priority .eyebrow {
  margin-bottom: 6px;
  font-size: 0.68rem;
}
.maintenance-priority h2 {
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.5;
}
.maintenance-priority p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}
.maintenance-priority .btn {
  font-size: 0.8rem;
}
.section {
  padding: 82px 0;
}
.section.soft {
  background: var(--soft);
}
.section.dark {
  background: var(--navy);
  color: #fff;
}
.section.dark h2,
.section.dark h3 {
  color: #fff;
}
.section.dark .eyebrow {
  color: #fbb653;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 34px;
  margin-bottom: 34px;
}
.section-head h2 {
  margin-bottom: 0;
}
.section-head p {
  max-width: 420px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}
.cards {
  display: grid;
  gap: 22px;
}
.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  position: relative;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.card p {
  font-size: 0.94rem;
  color: var(--muted);
  margin-bottom: 0;
}
.card:hover {
  transform: translateY(-4px);
  border-color: #a6b9ce;
  box-shadow: 0 12px 28px #10294b09;
}
.card h3 {
  margin-top: 19px;
}
.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #d5e6f0;
  border-radius: 10px;
  color: #27517c;
  background: #f1f7fb;
}
.icon svg {
  width: 26px;
  height: 26px;
}
.service-number {
  position: absolute;
  top: 29px;
  inset-inline-end: 27px;
  color: #a9b4c1;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.mini-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 14px;
  font-weight: 650;
  font-size: 0.85rem;
  color: #8b4e08;
}
.home-service-card.priority {
  border-top: 3px solid var(--orange);
}
.home-service-card p {
  min-height: 3.4em;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split > div {
  min-width: 0;
}
.split .btn {
  margin-top: 20px;
}
.compact {
  max-width: 570px;
}
.maintenance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.maintenance-tile {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
}
.maintenance-tile b {
  font-size: 0.96rem;
  line-height: 1.55;
  display: block;
  margin-bottom: 10px;
}
.maintenance-tile span {
  font-size: 0.875rem;
  color: var(--muted);
  display: block;
}
.maintenance-tile.featured {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.maintenance-tile.featured span {
  color: #cedbeb;
}
.readiness-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  counter-reset: readiness;
}
.readiness-list span {
  counter-increment: readiness;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.91rem;
  line-height: 1.65;
  display: flex;
  gap: 12px;
}
.readiness-list span:before {
  content: "0" counter(readiness);
  color: #b77320;
  font-size: 0.73rem;
  padding-top: 4px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.field-vehicle-wrap {
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.field-vehicle-wrap img {
  width: 100%;
  border-radius: 5px;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.pill {
  font-size: 0.82rem;
  padding: 6px 11px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
}
.project-card {
  padding: 0;
  overflow: hidden;
}
.project-thumb {
  height: 118px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px;
  border-bottom: 3px solid #b3d4e8;
}
.project-code {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #edf6ff;
}
.project-index {
  font-size: 0.8rem;
  color: #b6cadd;
  align-self: flex-end;
}
.project-body {
  padding: 25px;
}
.project-body h3 {
  font-size: 1.05rem;
  margin-top: 12px;
}
.project-body small {
  font-size: 0.72rem;
  color: #99580c;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.project-body p {
  font-size: 0.88rem;
  line-height: 1.8;
}
.home-values,
.value-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.value {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}
.value p {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 0;
}
.home-values .value {
  border: 0;
  border-inline-start: 2px solid #aecce3;
  border-radius: 0;
  background: #f5f8fb;
}
.home-values h3 {
  margin: 0;
  font-size: 1rem;
}
.other-divisions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.division {
  border-top: 1px solid #ffffff33;
  padding: 28px 0 0;
}
.division p {
  color: #c4d2e4;
  font-size: 0.95rem;
  margin: 0;
}
.brand-dark h2 {
  max-width: 780px;
}
.page-hero {
  background: var(--navy);
  padding: 61px 0 66px;
  color: white;
  border-bottom: 4px solid #d3e6f3;
  position: relative;
  overflow: hidden;
}
.page-hero .container {
  position: relative;
}
.page-hero .eyebrow {
  color: #f6b85d;
}
.page-hero h1 {
  color: white;
  font-size: 2.5rem;
  max-width: 920px;
  margin-bottom: 20px;
}
.page-hero p {
  color: #cad6e5;
  max-width: 780px;
  font-size: 1.03rem;
  margin: 0;
}
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0 0 0 65%;
  border-inline-start: 1px solid #ffffff12;
  transform: skew(-24deg);
  background: #ffffff03;
}
.service-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.service-group {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.service-group h3 {
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}
.service-group a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--muted);
}
.service-group a:hover {
  color: #945409;
}
.service-group a:last-child {
  border-bottom: 0;
}
.tabs,
.project-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.tab,
.project-filter button {
  padding: 12px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 0.94rem;
  min-height: 46px;
  color: var(--navy);
}
.tab.active,
.project-filter button.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.tab-panel {
  padding: 36px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-inline-start: 3px solid var(--orange);
  border-radius: 8px;
  min-height: 190px;
}
.tab-panel p {
  color: var(--muted);
  max-width: 1000px;
}
.brands {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.brandbox {
  padding: 22px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
}
.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  counter-reset: steps;
  margin-block: 30px;
}
.process div {
  counter-increment: steps;
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 550;
}
.process div:before {
  content: "0" counter(steps);
  display: block;
  color: #a96a18;
  font-size: 0.78rem;
  margin-bottom: 12px;
}
.feature-box {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}
.feature-box p {
  color: var(--muted);
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
}
.feature-list span {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  color: var(--muted);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}
.about-grid > div > p {
  color: var(--muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  align-items: start;
  gap: 60px;
}
.contact-row {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}
.contact-row b {
  font-size: 0.85rem;
}
.contact-row a:hover {
  color: #9e5b0a;
}
.contact-qr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}
.contact-qr-card {
  border: 1px solid var(--line);
  padding: 20px 12px;
  text-align: center;
  border-radius: 10px;
}
.contact-qr-img {
  width: 118px;
  height: 118px;
  margin: 0 auto 12px;
}
.contact-qr-card strong {
  display: block;
  font-size: 1rem;
}
.contact-qr-card span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}
.form {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 34px;
  background: var(--soft);
}
.form .eyebrow {
  margin-bottom: 10px;
}
.form h2 {
  font-size: 1.65rem;
}
.form-intro {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 26px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 15px;
}
.full {
  grid-column: 1/-1;
}
.form-field {
  min-width: 0;
}
.form-field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 550;
  margin-bottom: 8px;
}
.field {
  display: block;
  width: 100%;
  min-width: 0;
  background: #fff;
  border: 1px solid #c8d3e0;
  border-radius: 6px;
  min-height: 47px;
  padding: 11px 13px;
  color: var(--navy);
  font-size: 0.9rem;
}
.field::placeholder {
  color: #737f8f;
}
textarea.field {
  min-height: 145px;
  resize: vertical;
}
#formResult {
  font-size: 0.9rem;
  color: var(--muted);
}
#formResult:empty {
  display: none;
}
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--navy);
  background: #fff;
}
.social-btn:hover {
  background: #e7f0f7;
}
.social-btn svg {
  width: 19px;
  height: 19px;
}
footer {
  padding: 60px 0 26px;
  background: #081b33;
  color: #bac8d9;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr;
  gap: 70px;
}
.footer-logo {
  width: 165px;
  height: 68px;
  object-fit: contain;
  background: white;
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 22px;
}
.footer-title {
  font-size: 0.94rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 19px;
}
.footer-text {
  font-size: 0.86rem;
  max-width: 310px;
  line-height: 1.85;
}
.footer-links a {
  display: block;
  font-size: 0.86rem;
  padding: 5px 0;
}
.footer-links a:hover,
.footer-text a:hover {
  color: #fac378;
}
.footer-grid .social-btn {
  background: #ffffff08;
  border-color: #ffffff20;
  color: #ced9e8;
}
.footer-grid .social-btn:hover {
  background: #ffffff20;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #ffffff20;
  padding-top: 23px;
  margin-top: 40px;
  font-size: 0.8rem;
}
.legal {
  color: #98aabe;
  font-size: 0.75rem;
  line-height: 1.85;
  margin-top: 18px;
  max-width: 1100px;
}
.assistant-btn {
  position: fixed;
  inset-inline-end: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--deep);
  border: 3px solid white;
  box-shadow: 0 6px 25px #0003;
  z-index: 70;
  display: grid;
  place-items: center;
}
.assistant-btn:hover {
  transform: translateY(-3px);
}
.assistant {
  display: none;
  position: fixed;
  inset-inline-end: 24px;
  bottom: 88px;
  z-index: 70;
  width: 360px;
  max-width: calc(100vw - 32px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 20px 60px #0b203d33;
  overflow: hidden;
}
.assistant.open {
  display: block;
}
.assistant-head {
  background: var(--navy);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  font-size: 0.9rem;
}
.assistant-head button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 24px;
  width: 32px;
  height: 32px;
}
.assistant-body {
  height: 260px;
  max-height: 40vh;
  overflow: auto;
  padding: 17px;
  background: var(--soft);
  font-size: 0.9rem;
}
.msg {
  padding: 11px 14px;
  margin-bottom: 12px;
  border-radius: 9px;
  max-width: 92%;
  overflow-wrap: anywhere;
}
.msg.bot {
  background: white;
  border: 1px solid var(--line);
}
.msg.user {
  margin-inline-start: auto;
  background: var(--navy);
  color: white;
}
.assistant-form {
  padding: 12px;
  display: flex;
  gap: 8px;
}
.assistant-form input {
  width: 100%;
  min-width: 0;
  border: 1px solid #c8d3e0;
  padding: 10px;
  border-radius: 5px;
  font-size: 0.9rem;
}
.assistant-form button {
  border: 0;
  background: var(--orange);
  color: var(--navy);
  border-radius: 5px;
  min-width: 44px;
}
.modal {
  border: 0;
  border-radius: 14px;
  max-width: calc(100vw - 40px);
  padding: 0;
  box-shadow: 0 20px 80px #0004;
  color: var(--navy);
}
.modal::backdrop {
  background: #081b33bd;
  backdrop-filter: blur(4px);
}
.modal-card {
  padding: 30px;
  text-align: center;
  width: 370px;
  max-width: 100%;
}
.modal-card img {
  width: 240px;
  height: auto;
  margin: 20px auto;
}
.modal-card h2 {
  font-size: 1.5rem;
}
.modal-card p {
  font-size: 1rem;
}
.rtl .eyebrow {
  letter-spacing: 0;
  font-size: 0.8rem;
}
.rtl .home-hero h1 {
  font-size: clamp(2rem, 3.1vw, 2.85rem);
  line-height: 1.6;
  margin-block: 15px;
}
.rtl .hero-copy .lead {
  font-size: 0.95rem;
  line-height: 1.95;
}
.rtl .home-visual-card strong {
  font-size: 1.2rem;
}
.rtl .home-hero-grid {
  padding-block: 40px 55px;
}
.rtl .nav > a,
.rtl .dropbtn {
  font-size: 0.84rem;
}
.rtl .home-service-card p {
  min-height: 3.8em;
}
.rtl .page-hero h1 {
  font-size: 2.2rem;
}
.rtl .image-note,
.rtl .visual-label {
  letter-spacing: 0;
}
@media (min-width: 1440px) {
  .home-hero-grid {
    min-height: 620px;
  }
  .home-equipment-visual {
    height: 474px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 56px);
  }
  .nav {
    gap: 2px;
  }
  .nav > a,
  .dropbtn {
    padding-inline: 8px;
    font-size: 0.81rem;
  }
  .header-row {
    gap: 15px;
  }
  .logo img {
    width: 138px;
  }
  .split,
  .field-grid {
    gap: 36px;
  }
  .contact-grid {
    gap: 28px;
  }
  .maintenance-priority-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 18px;
  }
  .maintenance-priority-grid > .btn {
    grid-column: 1/-1;
    justify-self: start;
  }
  .hero-grid {
    gap: 28px;
  }
  .home-equipment-visual {
    height: 415px;
  }
  .footer-grid {
    gap: 35px;
  }
}
@media (max-width: 980px) {
  .mobile-toggle {
    display: block;
  }
  .header-row {
    height: 76px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    inset-inline: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 15px 28px 22px;
    box-shadow: 0 16px 24px #10294b10;
    max-height: calc(100dvh - 76px);
    overflow: auto;
  }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
  }
  .nav > a,
  .dropbtn {
    font-size: 0.95rem !important;
    justify-content: flex-start;
    padding: 12px 15px;
  }
  .dropbtn {
    width: 100%;
  }
  .nav > .lang-btn {
    margin: 0;
  }
  .mega {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 6px;
    padding: 18px;
    gap: 18px;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .home-hero h1 {
    font-size: 2.6rem;
  }
  .hero-tags span {
    font-size: 0.72rem;
  }
  .home-hero .eyebrow {
    font-size: 0.64rem;
  }
  .home-equipment-visual {
    height: 410px;
  }
  .actions .btn {
    font-size: 0.8rem;
    padding-inline: 14px;
  }
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards-3 {
    gap: 15px;
  }
  .card {
    padding: 23px;
  }
  .project-card {
    padding: 0;
  }
  .project-body {
    padding: 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .contact-qr-grid {
    grid-template-columns: 1fr;
  }
  .contact-qr-card {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: start;
  }
  .contact-qr-img {
    width: 96px;
    height: 96px;
    margin: 0;
  }
  .form {
    padding: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form h2 {
    font-size: 1.45rem;
  }
  .process {
    gap: 8px;
  }
  .process div {
    padding: 16px 11px;
    font-size: 0.83rem;
  }
  .rtl .home-hero h1 {
    font-size: 2.1rem;
  }
  .about-grid {
    gap: 28px;
  }
}
@media (max-width: 760px) {
  .container {
    width: calc(100% - 40px);
  }
  .topbar .container {
    justify-content: center;
    min-height: 31px;
  }
  .topbar .container > span {
    display: none;
  }
  .topbar-links {
    gap: 24px;
    font-size: 0.71rem;
  }
  .header-row {
    height: 70px;
  }
  .logo img {
    width: 141px;
    height: 57px;
  }
  .nav {
    top: 70px;
    max-height: calc(100dvh - 70px);
    padding-inline: 20px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .home-hero-grid {
    padding: 30px 0 46px;
  }
  .hero-copy {
    padding: 0;
  }
  .home-hero .eyebrow {
    font-size: 0.68rem;
    margin-bottom: 15px;
  }
  .home-hero h1 {
    font-size: 2.7rem;
    line-height: 1.18;
    margin: 17px 0 21px;
  }
  .home-hero .lead {
    font-size: 0.98rem;
    max-width: none;
  }
  .hero-tags {
    margin-top: 19px;
  }
  .hero-tags span {
    font-size: 0.76rem;
  }
  .home-equipment-visual {
    height: 340px;
    margin-top: 8px;
  }
  .hero-image {
    object-position: center 56%;
  }
  .home-visual-card {
    inset-inline: 20px;
    bottom: 18px;
  }
  .home-visual-card strong {
    font-size: 1.2rem;
  }
  .maintenance-priority-grid {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 17px;
    margin-top: 0;
  }
  .maintenance-priority {
    padding-top: 18px;
  }
  .maintenance-priority-grid > .btn {
    width: 100%;
  }
  .section {
    padding: 57px 0;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 26px;
  }
  .section-head p {
    max-width: none;
  }
  .cards-3,
  .cards-4 {
    grid-template-columns: 1fr;
  }
  .home-service-card {
    padding: 24px;
  }
  .home-service-card p {
    min-height: 0 !important;
  }
  .home-service-card h3 {
    margin-top: 17px;
    font-size: 1.1rem;
  }
  .home-service-grid {
    gap: 15px;
  }
  .split,
  .field-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .maintenance-grid {
    gap: 12px;
  }
  .maintenance-tile {
    padding: 20px;
  }
  .readiness-list {
    gap: 0 15px;
  }
  .readiness-list span {
    font-size: 0.87rem;
  }
  .field-vehicle-wrap {
    order: 2;
  }
  .other-divisions {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .division {
    padding-top: 22px;
  }
  .service-groups {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 43px 0 48px;
  }
  .page-hero h1 {
    font-size: 2rem;
  }
  .page-hero p {
    font-size: 0.96rem;
  }
  .tab-panel {
    padding: 25px;
  }
  .tabs {
    gap: 8px;
  }
  .tab {
    font-size: 0.88rem;
    padding: 11px 15px;
  }
  .brands {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .brandbox {
    font-size: 1rem;
  }
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .process div:last-child {
    grid-column: 1/-1;
  }
  .feature-box {
    padding: 25px;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .contact-row {
    grid-template-columns: 110px 1fr;
    gap: 16px;
  }
  .contact-qr-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-qr-card {
    display: block;
    text-align: center;
    padding: 17px 8px;
  }
  .contact-qr-img {
    margin: 0 auto 10px;
    width: 108px;
    height: 108px;
  }
  .form {
    padding: 24px;
  }
  .form-grid {
    gap: 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 25px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-text {
    max-width: 440px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    margin-top: 32px;
  }
  .footer-grid > div:last-child {
    overflow-wrap: anywhere;
  }
  .assistant-btn {
    inset-inline-end: 17px;
    bottom: 17px;
  }
  .assistant {
    inset-inline-end: 16px;
    bottom: 82px;
  }
  .rtl .home-hero-grid {
    padding: 30px 0 45px;
  }
  .rtl .home-hero h1 {
    font-size: 2.25rem;
    line-height: 1.55;
  }
  .rtl .page-hero h1 {
    font-size: 1.9rem;
  }
  .rtl .home-hero .eyebrow {
    font-size: 0.7rem;
  }
}
@media (max-width: 380px) {
  .container {
    width: calc(100% - 32px);
  }
  .home-hero h1 {
    font-size: 2.3rem;
  }
  .rtl .home-hero h1 {
    font-size: 2rem;
  }
  .actions {
    flex-direction: column;
  }
  .maintenance-grid,
  .readiness-list,
  .home-values,
  .value-list {
    grid-template-columns: 1fr;
  }
  .mega {
    grid-template-columns: 1fr;
  }
  .contact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .contact-qr-grid {
    gap: 8px;
  }
  .contact-qr-card span {
    font-size: 0.74rem;
  }
  .contact-qr-img {
    width: 96px;
    height: 96px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .header,
  .topbar,
  .assistant-btn,
  .assistant,
  .social-row,
  .actions,
  .form,
  .skip-link {
    display: none !important;
  }
  .section {
    padding: 25px 0;
  }
  .container {
    width: 100%;
  }
  body {
    color: #000;
  }
  .page-hero,
  .home-hero {
    background: #fff;
    color: #000;
  }
  .page-hero h1,
  .home-hero h1 {
    color: #000;
  }
}
.value {
  min-width: 0;
  overflow-wrap: anywhere;
}
.muted {
  color: var(--muted);
}
@media (max-width: 760px) {
  .value-list {
    grid-template-columns: 1fr;
  }
}
