:root {
  --navy-950: #071827;
  --navy-900: #0b2133;
  --navy-850: #102a3f;
  --navy-800: #16344c;
  --copper-700: #a95830;
  --copper-600: #bd6f43;
  --copper-500: #cd8458;
  --copper-300: #e7b08d;
  --sand-100: #f7f2ec;
  --sand-50: #fcfaf7;
  --white: #fff;
  --gray-50: #f7f8fa;
  --gray-100: #edf0f3;
  --gray-200: #d9dee4;
  --gray-500: #71808e;
  --gray-700: #334554;
  --text-dark: #0d2132;
  --shadow-sm: 0 8px 24px rgba(7,24,39,.08);
  --shadow-md: 0 16px 44px rgba(7,24,39,.14);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --header-h: 102px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --space-10: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body { margin: 0; color: var(--text-dark); background: var(--sand-50); font-family: "Cairo", sans-serif; overflow-x: hidden; }
body.lang-en { font-family: "Montserrat", "Cairo", sans-serif; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { display: block; width: 1em; height: 1em; 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 { width: min(1360px, calc(100% - 64px)); margin-inline: auto; }
.section { padding: 70px 0; }
.skip-link { position: fixed; inset-inline-start: 16px; top: -100px; z-index: 10000; background: var(--white); color: var(--navy-950); padding: 12px 18px; border-radius: 0 0 10px 10px; box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 0; }

/* Language handling: only the selected language is visible */
.ar, .en { display: none; }
body.lang-ar .ar, body.lang-en .en { display: initial; opacity: 1; }
body.lang-en { direction: ltr; }
body.lang-ar { direction: rtl; }

.site-header { position: sticky; top: 0; z-index: 1000; height: var(--header-h); background: linear-gradient(135deg, var(--navy-950), var(--navy-900) 65%, var(--navy-850)); color: var(--white); transition: box-shadow .25s ease, height .25s ease; }
.site-header.scrolled { box-shadow: 0 10px 30px rgba(7,24,39,.28); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { width: 205px; height: 92px; flex: 0 0 auto; display: flex; align-items: center; gap: 9px; overflow: hidden; }
.brand img { width: 66px; height: 50px; object-fit: contain; flex: 0 0 auto; }
.brand-copy { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
body.lang-ar .brand-copy { align-items: flex-end; }
.brand-copy strong { color: #fff; font-size: 18px; font-weight: 800; line-height: 1.15; white-space: nowrap; }
body.lang-en .brand-copy strong { font: 800 15px/1.15 "Montserrat", sans-serif; text-transform: uppercase; letter-spacing: .02em; }
.brand-copy b { margin-top: 3px; color: var(--copper-300); font: 800 8px/1.1 "Montserrat", sans-serif; letter-spacing: .035em; white-space: nowrap; }
.brand-copy small { margin-top: 5px; color: rgba(255,255,255,.72); font-size: 7px; font-weight: 600; white-space: nowrap; }
body.lang-en .brand-copy small { font: 600 6.5px/1.2 "Montserrat", sans-serif; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 1.65vw, 28px); flex: 1; }
.nav-link { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1px; padding: 25px 0 18px; font-weight: 700; font-size: 13px; line-height: 1.2; white-space: nowrap; }
.nav-link .en { font: 600 10px/1.1 "Montserrat", sans-serif; opacity: .8; }
.nav-link::after { content: ""; position: absolute; inset-inline: 50%; bottom: 11px; width: 0; height: 2px; background: var(--copper-500); transition: width .25s ease, inset-inline .25s ease; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; inset-inline: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.lang-toggle { display: inline-flex; align-items: center; gap: 4px; background: transparent; border: 0; color: var(--white); cursor: pointer; padding: 10px 4px; font: 700 11px/1 "Montserrat", sans-serif; }

.btn { min-height: 46px; display: inline-flex; justify-content: center; align-items: center; gap: 10px; padding: 11px 20px; border-radius: 11px; font-weight: 700; font-size: 13px; line-height: 1.2; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 19px; height: 19px; }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--copper-700), var(--copper-500)); box-shadow: 0 10px 24px rgba(169,88,48,.28); }
.btn-primary:hover { box-shadow: 0 14px 30px rgba(169,88,48,.38); }
.btn-outline { color: var(--white); border: 1px solid var(--copper-600); background: rgba(255,255,255,.02); }
.btn-outline:hover { background: rgba(205,132,88,.12); }
.header-call .ar, .header-call .en, .header-quote .ar, .header-quote .en { display: none; }
body.lang-ar .header-call .ar, body.lang-ar .header-quote .ar { display: block; }
body.lang-en .header-call .en, body.lang-en .header-quote .en { display: block; }
.menu-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.18); border-radius: 11px; background: rgba(255,255,255,.04); cursor: pointer; }
.menu-toggle svg { width: 23px; height: 23px; }
.menu-toggle .close-icon { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon { display: none; }
.menu-toggle[aria-expanded="true"] .close-icon { display: block; }
.mobile-menu { position: fixed; inset: var(--header-h) 0 0; z-index: 999; display: none; background: linear-gradient(160deg, var(--navy-950), var(--navy-850)); padding: 26px 24px 36px; overflow-y: auto; visibility: hidden; opacity: 0; transform: translateY(-8px); transition: opacity .25s ease, transform .25s ease, visibility .25s ease; }
.mobile-menu.open { visibility: visible; opacity: 1; transform: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 16px 6px; border-bottom: 1px solid rgba(255,255,255,.1); font-weight: 700; }
.mobile-menu nav .en { font: 600 13px "Montserrat", sans-serif; opacity: .65; }
.mobile-actions { display: grid; gap: 12px; margin-top: 26px; }
.mobile-actions .ar, .mobile-actions .en { display: none; }
body.lang-ar .mobile-actions .ar { display: block; }
body.lang-en .mobile-actions .en { display: block; }

.hero { position: relative; min-height: 610px; overflow: hidden; background: #e7e0d8; }
.hero-media, .hero-media img, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center center; }
.hero-overlay { background: linear-gradient(90deg, rgba(251,248,244,.97) 0%, rgba(251,248,244,.92) 37%, rgba(251,248,244,.42) 56%, rgba(251,248,244,0) 76%); }
body.lang-ar .hero-overlay { background: linear-gradient(270deg, rgba(251,248,244,.97) 0%, rgba(251,248,244,.92) 37%, rgba(251,248,244,.42) 56%, rgba(251,248,244,0) 76%); }
.hero-inner { position: relative; z-index: 2; min-height: 610px; display: flex; align-items: center; }
.hero-copy { width: min(630px, 54%); display: grid; grid-template-columns: 175px 1fr; align-items: center; gap: 28px; }
.hero-logo-wrap { width: 175px; padding: 16px 12px 14px; border-radius: 18px; background: rgba(255,255,255,.82); box-shadow: 0 16px 40px rgba(7,24,39,.1); backdrop-filter: blur(6px); text-align: center; }
.hero-logo-wrap img { width: 100%; height: auto; object-fit: contain; }
.hero-brand-label { margin-top: 8px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.hero-brand-label strong { color: var(--navy-900); font-size: 18px; line-height: 1.2; font-weight: 800; }
.hero-brand-label small { color: var(--copper-700); font-size: 8px; line-height: 1.35; font-weight: 700; }
body.lang-en .hero-brand-label strong { font: 800 15px/1.2 "Montserrat", sans-serif; text-transform: uppercase; }
body.lang-en .hero-brand-label small { font: 600 7px/1.35 "Montserrat", sans-serif; }
.hero-text { min-width: 0; }
.hero h1 { margin: 0 0 18px; color: var(--navy-900); font-size: clamp(31px, 3vw, 47px); line-height: 1.22; letter-spacing: -.025em; }
.hero h1 .ar, .hero h1 .en { display: none; }
body.lang-ar .hero h1 .ar, body.lang-en .hero h1 .en { display: block; opacity: 1; }
.hero h1 .en { font-family: "Montserrat", sans-serif; font-size: .7em; line-height: 1.25; }
.hero h1 em { color: var(--copper-700); font-style: normal; }
.hero-description { margin: 0 0 12px; max-width: 540px; color: var(--gray-700); font-size: clamp(14px, 1.2vw, 16px); line-height: 1.78; font-weight: 600; }
.hero-description.en { font-family: "Montserrat", sans-serif; font-size: clamp(12px, .9vw, 14px); line-height: 1.55; direction: ltr; text-align: left; }
body.lang-en .hero-description.en { opacity: 1; font-size: clamp(14px, 1.1vw, 16px); }
.hero-cta { margin-top: 12px; min-width: 210px; padding-inline: 26px; }
.hero-cta .ar, .hero-cta .en { display: none; }
body.lang-ar .hero-cta .ar, body.lang-en .hero-cta .en { display: block; opacity: 1; }
body.lang-ar .hero-cta svg { transform: scaleX(-1); }

.section-heading { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 34px; }
.section-heading .line { width: 86px; height: 2px; background: linear-gradient(90deg, transparent, var(--copper-600)); }
.section-heading .line:last-child { transform: scaleX(-1); }
.section-heading h2 { margin: 0; display: flex; align-items: baseline; gap: 14px; color: var(--navy-900); font-size: clamp(24px, 2.25vw, 34px); line-height: 1.2; font-weight: 800; text-align: center; }
.section-heading h2 .en { font: 700 .72em/1.2 "Montserrat", sans-serif; opacity: .9; }
.section-heading h2 i { display: none; }
.section-heading.light h2 { color: var(--white); }
.section-heading.light .line { background: linear-gradient(90deg, transparent, var(--copper-500)); }

.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.service-card { position: relative; overflow: hidden; border: 1px solid var(--gray-200); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 8px 22px rgba(7,24,39,.06); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card picture { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--gray-100); }
.service-card picture img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover picture img { transform: scale(1.03); }
.service-icon { position: absolute; top: clamp(132px, 12.2vw, 170px); left: 50%; width: 50px; height: 50px; transform: translate(-50%, -50%); display: grid; place-items: center; background: var(--white); color: var(--navy-900); border: 1px solid var(--gray-200); border-radius: 50%; box-shadow: 0 7px 18px rgba(7,24,39,.13); }
.service-icon svg { width: 25px; height: 25px; }
.service-body { padding: 32px 14px 18px; text-align: center; }
.service-body h3 { margin: 0 0 13px; min-height: 64px; display: flex; flex-direction: column; justify-content: center; gap: 3px; font-size: 15px; line-height: 1.35; }
.service-body h3 .en { font: 700 11px/1.3 "Montserrat", sans-serif; }
.service-body p { margin: 0; display: flex; flex-direction: column; gap: 8px; color: var(--gray-700); font-size: 12px; line-height: 1.55; }
.service-body p .en { font: 500 10px/1.45 "Montserrat", sans-serif; }

.fleet-section { padding-top: 0; background: var(--white); }
.fleet-shell { padding: 20px 26px 18px; border-radius: var(--radius-lg); color: var(--white); background: radial-gradient(circle at 85% 10%, rgba(78,119,151,.28), transparent 28%), linear-gradient(135deg, var(--navy-950), var(--navy-850)); box-shadow: var(--shadow-md); }
.fleet-shell .section-heading { margin-bottom: 16px; }
.fleet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fleet-card { position: relative; min-height: 245px; overflow: hidden; border-radius: 15px; background: var(--navy-800); }
.fleet-card picture, .fleet-card picture img { position: absolute; inset: 0; width: 100%; height: 100%; }
.fleet-card picture img { object-fit: cover; }
.fleet-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,24,39,.02), rgba(7,24,39,.18) 45%, rgba(7,24,39,.96) 82%); }
body.lang-ar .fleet-card::after { background: linear-gradient(270deg, rgba(7,24,39,.02), rgba(7,24,39,.18) 45%, rgba(7,24,39,.96) 82%); }
.fleet-card-copy { position: relative; z-index: 2; width: 48%; margin-inline-start: auto; padding: 31px 25px 24px; display: flex; flex-direction: column; align-items: flex-start; }
body.lang-ar .fleet-card-copy { margin-inline-start: 0; margin-inline-end: auto; }
.fleet-card-copy h3 { margin: 0 0 12px; display: flex; flex-direction: column; gap: 3px; color: var(--white); font-size: 23px; line-height: 1.3; }
.fleet-card-copy h3 .en { font: 700 18px/1.25 "Montserrat", sans-serif; }
.fleet-card-copy p { margin: 0 0 18px; display: flex; flex-direction: column; gap: 6px; color: rgba(255,255,255,.9); font-size: 13px; line-height: 1.6; }
.fleet-card-copy p .en { font: 500 11px/1.45 "Montserrat", sans-serif; }
.fleet-badge { display: inline-flex; align-items: center; min-height: 32px; padding: 5px 12px; border-radius: 999px; background: linear-gradient(135deg, var(--copper-700), var(--copper-500)); color: var(--white); font: 800 12px/1 "Montserrat", sans-serif; box-shadow: 0 8px 20px rgba(169,88,48,.3); }
.fleet-note { margin: 16px 0 0; display: flex; flex-direction: column; align-items: center; gap: 3px; text-align: center; color: rgba(255,255,255,.96); font-size: 14px; font-weight: 700; }
.fleet-note .en { font: 600 11px "Montserrat", sans-serif; }

.why-us { background: var(--white); padding-top: 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.benefit-card { min-height: 210px; padding: 22px 12px 18px; text-align: center; border: 1px solid var(--gray-200); border-radius: 14px; background: var(--white); box-shadow: 0 7px 20px rgba(7,24,39,.05); transition: transform .25s ease, box-shadow .25s ease; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.benefit-card > svg { width: 46px; height: 46px; margin: 0 auto 14px; color: var(--navy-900); stroke-width: 1.45; }
.benefit-card h3 { margin: 0 0 10px; display: flex; flex-direction: column; gap: 4px; color: var(--navy-900); font-size: 14px; line-height: 1.3; }
.benefit-card h3 .en { font: 700 10px/1.25 "Montserrat", sans-serif; }
.benefit-card p { margin: 0; display: flex; flex-direction: column; gap: 6px; color: var(--gray-700); font-size: 11px; line-height: 1.45; }
.benefit-card p .en { font: 500 9px/1.35 "Montserrat", sans-serif; }

.coverage-section { padding: 0 0 28px; background: var(--white); }
.coverage-banner { position: relative; min-height: 235px; overflow: hidden; display: grid; grid-template-columns: 34% 40% 26%; align-items: center; border-radius: var(--radius-lg); background: var(--navy-900); box-shadow: var(--shadow-sm); }
.coverage-photo { position: absolute; inset: 0; }
.coverage-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.coverage-gradient { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(247,248,250,.93) 35%, rgba(247,248,250,.97) 66%, rgba(7,24,39,.91) 100%); }
body.lang-ar .coverage-gradient { background: linear-gradient(270deg, rgba(255,255,255,.08), rgba(247,248,250,.93) 35%, rgba(247,248,250,.97) 66%, rgba(7,24,39,.91) 100%); }
.coverage-copy { position: relative; z-index: 2; grid-column: 2; padding: 28px; }
.coverage-copy h2 { margin: 0; display: flex; flex-direction: column; gap: 16px; color: var(--navy-900); font-size: clamp(20px, 1.7vw, 28px); line-height: 1.42; }
.coverage-copy h2 .en { font: 650 .67em/1.45 "Montserrat", sans-serif; }
.uae-map { position: relative; z-index: 2; grid-column: 3; align-self: stretch; display: flex; align-items: center; padding: 12px 14px; }
.uae-map-image { width: 100%; height: auto; display: block; object-fit: contain; filter: drop-shadow(0 10px 12px rgba(7,24,39,.24)); }
.emirate, .map-coast-island { fill: url(#mapCopper); stroke: rgba(255,255,255,.95); stroke-width: 2.2; vector-effect: non-scaling-stroke; transition: filter .2s ease, opacity .2s ease; }
.emirate:hover { filter: brightness(1.08); }
.map-coast-island { stroke-width: 1.6; }
.city-marker path { fill: rgba(255,255,255,.1); stroke: var(--white); stroke-width: 3; vector-effect: non-scaling-stroke; }
.city-marker circle { fill: var(--white); }
.map-labels text { fill: var(--navy-900); font-family: "Tajawal", sans-serif; font-size: 18px; font-weight: 800; text-anchor: middle; paint-order: stroke; stroke: rgba(255,255,255,.7); stroke-width: 2px; stroke-linejoin: round; }
.map-labels.en text { font-family: "Montserrat", sans-serif; font-size: 11px; font-weight: 700; }
.map-labels .city-small { font-size: 15px; }
.map-labels.en .city-small { font-size: 10px; }
.map-labels .label-callout { font-size: 14px; }
.map-labels.en .label-callout { font-size: 9px; }
.map-labels line { stroke: rgba(255,255,255,.95); stroke-width: 1.6; vector-effect: non-scaling-stroke; }

.contact { padding-top: 24px; background: var(--white); }
.contact-panel { display: grid; grid-template-columns: minmax(0, 72%) minmax(250px, 28%); overflow: hidden; border: 1px solid var(--gray-200); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.contact-details { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.contact-item { min-height: 158px; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 20px 16px; border-inline-end: 1px solid var(--gray-200); transition: background .2s ease; }
.contact-item:hover { background: var(--gray-50); }
.contact-item > svg { flex: 0 0 auto; width: 35px; height: 35px; color: var(--navy-900); }
.contact-item.whatsapp > svg { color: #22a447; }
.contact-item div { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.contact-item strong { display: flex; flex-direction: column; gap: 2px; color: var(--navy-900); font-size: 13px; line-height: 1.3; }
.contact-item strong .en { font: 700 10px/1.2 "Montserrat", sans-serif; }
.contact-item small { display: flex; flex-direction: column; gap: 4px; color: var(--gray-700); font-size: 11px; line-height: 1.45; word-break: break-word; }
.contact-item small .en { font: 500 9px/1.4 "Montserrat", sans-serif; }
.contact-image { min-height: 158px; overflow: hidden; }
.contact-image img { width: 100%; height: 100%; object-fit: cover; }

.site-footer { background: linear-gradient(135deg, var(--navy-950), var(--navy-900)); color: var(--white); }
.footer-grid { min-height: 220px; display: grid; grid-template-columns: 1.2fr 1.35fr .8fr; gap: 40px; align-items: center; padding-block: 34px; }
.footer-brand { display: flex; align-items: center; gap: 22px; }
.footer-brand-lockup { display: flex; align-items: center; gap: 12px; }
.footer-brand-lockup img { width: 86px; height: auto; object-fit: contain; }
.footer-brand-lockup span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
body.lang-ar .footer-brand-lockup span { align-items: flex-end; }
.footer-brand-lockup strong { font-size: 26px; font-weight: 800; white-space: nowrap; }
.footer-brand-lockup b { margin-top: 5px; color: var(--copper-300); font: 800 10px/1 "Montserrat", sans-serif; white-space: nowrap; }
.footer-brand p { margin: 0; display: flex; flex-direction: column; gap: 7px; max-width: 190px; font-size: 13px; line-height: 1.5; }
.footer-brand p .en { font: 600 10px/1.4 "Montserrat", sans-serif; }
.footer-links, .footer-social { align-self: stretch; padding-top: 22px; border-inline-start: 1px solid rgba(255,255,255,.14); padding-inline-start: 36px; }
.site-footer h2 { margin: 0 0 18px; display: flex; gap: 8px; color: var(--white); font-size: 15px; }
.site-footer h2 .en { font: 700 12px "Montserrat", sans-serif; }
.footer-link-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 24px; }
.footer-link-columns a { display: flex; gap: 7px; color: rgba(255,255,255,.83); font-size: 12px; transition: color .2s ease, transform .2s ease; }
.footer-link-columns a:hover { color: var(--copper-300); transform: translateX(2px); }
body.lang-ar .footer-link-columns a:hover { transform: translateX(-2px); }
.footer-link-columns .en { font: 500 9px "Montserrat", sans-serif; }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--white); transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.social-row a:hover { background: var(--copper-600); border-color: var(--copper-600); transform: translateY(-2px); }
.social-row svg { width: 18px; height: 18px; }
.copyright-strip { min-height: 44px; display: flex; align-items: center; background: linear-gradient(90deg, var(--copper-700), var(--copper-500)); }
.copyright-strip .container { display: flex; justify-content: space-between; gap: 20px; font-size: 11px; font-weight: 600; }
.copyright-strip .en { font: 600 10px "Montserrat", sans-serif; }

.floating-whatsapp { position: fixed; z-index: 950; inset-inline-end: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #22a447; color: var(--white); box-shadow: 0 12px 28px rgba(34,164,71,.35); transition: transform .2s ease, box-shadow .2s ease; }
body.lang-ar .floating-whatsapp { inset-inline-end: auto; inset-inline-start: 22px; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 34px rgba(34,164,71,.43); }
.floating-whatsapp svg { width: 31px; height: 31px; stroke-width: 1.65; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--copper-300); outline-offset: 3px; }

@media (max-width: 1180px) {
  :root { --header-h: 92px; }
  .container { width: min(100% - 48px, 1280px); }
  .desktop-nav { gap: 14px; }
  .brand { width: 180px; }
  .brand img { width: 58px; height: 45px; }
  .brand-copy strong { font-size: 20px; }
  .header-call { display: none; }
  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .service-icon { top: auto; margin-top: -25px; position: relative; left: 50%; }
  .service-body { margin-top: -25px; padding-top: 32px; }
  .benefits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .benefit-card { min-height: 190px; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-image { height: 220px; }
}

@media (max-width: 980px) {
  .desktop-nav, .header-call, .header-quote { display: none; }
  .header-inner { justify-content: space-between; }
  .header-actions { margin-inline-start: auto; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu { display: block; }
  .hero { min-height: 690px; }
  .hero-inner { min-height: 690px; align-items: flex-start; padding-top: 58px; }
  .hero-media img { object-position: 64% center; }
  body.lang-ar .hero-media img { object-position: 36% center; }
  .hero-copy { width: min(640px, 72%); grid-template-columns: 145px 1fr; }
  .hero-overlay { background: linear-gradient(90deg, rgba(251,248,244,.98) 0%, rgba(251,248,244,.94) 48%, rgba(251,248,244,.18) 80%); }
  body.lang-ar .hero-overlay { background: linear-gradient(270deg, rgba(251,248,244,.98) 0%, rgba(251,248,244,.94) 48%, rgba(251,248,244,.18) 80%); }
  .fleet-card { min-height: 300px; }
  .fleet-card-copy { width: 56%; }
  .coverage-banner { grid-template-columns: 28% 46% 26%; }
  .contact-details { grid-template-columns: repeat(2, 1fr); }
  .contact-item { border-bottom: 1px solid var(--gray-200); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-social { grid-column: 1 / -1; border-inline-start: 0; padding-inline-start: 0; padding-top: 0; }
}

@media (max-width: 760px) {
  :root { --header-h: 78px; }
  .container { width: calc(100% - 32px); }
  .section { padding: 50px 0; }
  .site-header { height: var(--header-h); }
  .brand { width: 160px; height: 72px; }
  .brand img { width: 52px; height: 41px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { display: none; }
  .lang-toggle { padding-inline: 2px; }
  .header-actions { gap: 7px; }
  .menu-toggle { width: 42px; height: 42px; }
  .hero { min-height: 740px; }
  .hero-inner { min-height: 740px; padding-top: 36px; align-items: flex-start; }
  .hero-media img { object-position: 68% bottom; }
  body.lang-ar .hero-media img { object-position: 32% bottom; }
  .hero-overlay, body.lang-ar .hero-overlay { background: linear-gradient(180deg, rgba(251,248,244,.98) 0%, rgba(251,248,244,.95) 48%, rgba(251,248,244,.28) 72%, rgba(251,248,244,0) 100%); }
  .hero-copy { width: 100%; display: block; text-align: center; }
  .hero-logo-wrap { width: 116px; margin: 0 auto 16px; padding: 7px; }
  .hero h1 { font-size: clamp(29px, 8.5vw, 36px); }
  .hero h1 .en { font-size: .64em; }
  .hero-description, .hero-description.en { max-width: 600px; margin-inline: auto; text-align: center; direction: inherit; font-size: 13px; }
  .hero-cta { margin-top: 14px; }
  .section-heading { gap: 10px; margin-bottom: 26px; }
  .section-heading .line { width: 42px; }
  .section-heading h2 { gap: 8px; font-size: 24px; flex-wrap: wrap; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card { display: grid; grid-template-columns: 42% 58%; min-height: 210px; }
  .service-card picture { height: 100%; aspect-ratio: auto; }
  .service-icon { position: absolute; top: 50%; left: 42%; margin: 0; transform: translate(-50%, -50%); }
  body.lang-ar .service-icon { left: auto; right: 42%; transform: translate(50%, -50%); }
  .service-body { margin: 0; padding: 22px 16px; display: flex; flex-direction: column; justify-content: center; }
  .service-body h3 { min-height: auto; font-size: 16px; }
  .service-body h3 .en { font-size: 12px; }
  .service-body p { font-size: 13px; }
  .service-body p .en { font-size: 10px; }
  .fleet-shell { padding: 18px 16px; border-radius: 18px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-card { min-height: 315px; }
  .fleet-card-copy { width: 60%; padding: 26px 18px; }
  .fleet-card-copy h3 { font-size: 20px; }
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .benefit-card { min-height: 205px; padding: 20px 10px 16px; }
  .coverage-banner { min-height: 410px; display: block; }
  .coverage-photo { height: 100%; }
  .coverage-gradient, body.lang-ar .coverage-gradient { background: linear-gradient(180deg, rgba(247,248,250,.95) 0%, rgba(247,248,250,.9) 54%, rgba(7,24,39,.8) 100%); }
  .coverage-copy { padding: 30px 22px 0; text-align: center; }
  .coverage-copy h2 { font-size: 21px; }
  .uae-map { position: absolute; left: 50%; bottom: 8px; width: min(540px, 96%); height: 245px; transform: translateX(-50%); padding: 0 8px; }
  .uae-map-image { max-height: 245px; object-fit: contain; }
  .map-labels text { font-size: 16px; }
  .map-labels .label-callout { font-size: 12px; }
  .map-labels.en text { font-size: 10px; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-item { min-height: 125px; justify-content: flex-start; border-inline-end: 0; }
  body.lang-en .contact-item { justify-content: flex-start; }
  .contact-image { height: 190px; }
  .footer-grid { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .footer-brand { justify-content: center; flex-direction: column; gap: 14px; }
  .footer-brand-lockup { justify-content: center; }
  .footer-brand p { max-width: 300px; }
  .footer-links, .footer-social { border-inline-start: 0; padding-inline-start: 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14); }
  .site-footer h2, .social-row { justify-content: center; }
  .footer-link-columns { max-width: 440px; margin: 0 auto; }
  .footer-link-columns a { justify-content: center; }
  .copyright-strip .container { flex-direction: column; align-items: center; gap: 4px; padding-block: 9px; text-align: center; }
  .floating-whatsapp { width: 54px; height: 54px; bottom: 16px; inset-inline-end: 16px; }
  body.lang-ar .floating-whatsapp { inset-inline-start: 16px; }
}

@media (max-width: 440px) {
  .container { width: calc(100% - 24px); }
  .brand { width: 143px; }
  .brand img { width: 46px; height: 36px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy b { font-size: 7px; }
  .lang-toggle { font-size: 10px; }
  .hero { min-height: 730px; }
  .hero-copy { padding-inline: 2px; }
  .hero-logo-wrap { width: 100px; }
  .hero h1 { font-size: 28px; }
  .hero-description, .hero-description.en { font-size: 12px; line-height: 1.65; }
  .hero-cta { width: min(100%, 260px); }
  .section-heading .line { width: 24px; }
  .section-heading h2 { font-size: 21px; gap: 6px; }
  .service-card { display: block; }
  .service-card picture { aspect-ratio: 16/10; }
  .service-icon, body.lang-ar .service-icon { position: relative; top: auto; left: 50%; right: auto; margin-top: -25px; transform: translateX(-50%); }
  .service-body { margin-top: -25px; padding-top: 34px; }
  .fleet-card-copy { width: 67%; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 180px; }
  .contact-item { padding-inline: 14px; }
  .footer-link-columns { grid-template-columns: 1fr; }
}

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

/* Single-language presentation refinements */
body.lang-ar .en, body.lang-en .ar { display: none !important; }
body.lang-ar .ar, body.lang-en .en { opacity: 1 !important; }
.nav-link .en, .mobile-menu nav .en, .section-heading h2 .en,
.service-body h3 .en, .service-body p .en, .fleet-card-copy h3 .en,
.fleet-card-copy p .en, .fleet-note .en, .benefit-card h3 .en,
.benefit-card p .en, .coverage-copy h2 .en, .contact-item strong .en,
.contact-item small .en, .footer-brand p .en, .site-footer h2 .en,
.footer-link-columns .en, .copyright-strip .en { opacity: 1; }
.fleet-badge .ar, .fleet-badge .en { line-height: 1; }
.footer-brand-lockup strong { display: block; color: var(--white); font-size: 20px; line-height: 1.15; }
body.lang-en .footer-brand-lockup strong { font: 800 15px/1.15 "Montserrat", sans-serif; text-transform: uppercase; }
