/* ============================================================
   Malstrike Heavy Equipment — Custom CSS
   Brand: Industrial / Brutalist with offset-shadow buttons
   ============================================================ */

:root {
  --ink: #12132C;
  --yellow: #F5B301;
  --yellow-shadow: #FEBB14;
  --bg: #FCF8FB;
  --section-alt: #F6F2F5;
  --muted: #47464D;
  --border: #C8C5CE;
  --light-text: #E5E1E4;
}

html { scroll-behavior: smooth; }

/* ============================================================
   Parallax background image
   ============================================================ */
.parallax-img {
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transform-origin: center top;
}
@media (prefers-reduced-motion: reduce) {
  .parallax-img { transform: none !important; }
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--muted);
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Montserrat', system-ui, sans-serif;
}

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

/* ============================================================
   Signature 3D-offset Yellow Button
   ============================================================ */
.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--yellow-shadow);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 12px 24px;
  transition: transform 150ms ease, box-shadow 150ms ease;
  cursor: pointer;
}
.btn-yellow:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--yellow-shadow);
}
.btn-yellow:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--yellow-shadow);
}
.btn-yellow--lg { padding: 24px 48px; font-size: 12px; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 24px 48px;
  transition: background 150ms ease;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  border: 2px solid var(--ink);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 24px 48px;
  transition: transform 150ms ease, background 150ms ease;
}
.btn-dark:hover { transform: translateY(-2px); background: #1c1d3f; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: var(--ink);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Diagonal scrim: dark on the text side, lighter (but never fully transparent) on the crane side */
  background: linear-gradient(
    100deg,
    rgba(18, 19, 44, 0.92) 0%,
    rgba(18, 19, 44, 0.88) 35%,
    rgba(18, 19, 44, 0.75) 65%,
    rgba(18, 19, 44, 0.65) 100%
  );
}
html[dir="rtl"] .hero__scrim {
  background: linear-gradient(
    260deg,
    rgba(18, 19, 44, 0.92) 0%,
    rgba(18, 19, 44, 0.88) 35%,
    rgba(18, 19, 44, 0.75) 65%,
    rgba(18, 19, 44, 0.65) 100%
  );
}
.hero__diagonal {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(308.94deg, transparent 0%, transparent 0.61%, rgba(254,187,20,0.1) 0.61%, rgba(254,187,20,0.1) 1.22%);
  opacity: 0.3;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; }
.hero__accent {
  border-left: 4px solid var(--yellow);
  padding-left: 52px;
}

/* ============================================================
   Diagonal yellow accent stripe (sections)
   ============================================================ */
.diagonal-accent {
  position: relative;
  isolation: isolate;
}
.diagonal-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(304.48deg, transparent 0%, transparent 0.65%, rgba(245,179,1,0.1) 0.65%, rgba(245,179,1,0.1) 1.31%);
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.diagonal-accent > * { position: relative; z-index: 1; }

/* ============================================================
   Feature card (About section)
   ============================================================ */
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.feature-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(18,19,44,0.08);
}
.feature-card__icon {
  height: 32px;
  width: auto;
  color: var(--yellow);
  flex-shrink: 0;
}
.feature-card h3 {
  font-size: 20px;
  line-height: 28px;
  color: var(--ink);
  font-weight: 400;
}
.feature-card p {
  font-size: 14px;
  line-height: 20px;
  color: var(--muted);
}

/* ============================================================
   Crane card (fleet showcase)
   ============================================================ */
.crane-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  isolation: isolate;
  cursor: pointer;
}
.crane-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}
.crane-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, var(--ink) 0%, rgba(18,19,44,0.5) 50%, transparent 100%);
  pointer-events: none;
}
.crane-card__body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  gap: 12px;
}
.crane-card__body h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.crane-card:hover .crane-card__img { transform: scale(1.08); }

/* ============================================================
   Service card
   ============================================================ */
.service-card {
  background: #fff;
  border-bottom: 4px solid var(--yellow);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(18,19,44,0.08);
}
.service-card__icon {
  height: 36px;
  width: auto;
  color: var(--yellow);
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 20px;
  line-height: 28px;
  color: var(--ink);
  font-weight: 400;
  margin-top: 12px;
}
.service-card p {
  font-size: 16px;
  line-height: 24px;
  color: var(--muted);
}

/* ============================================================
   Floating WhatsApp button
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  background: linear-gradient(89.52deg, #5AD264 1.5%, #29B53F 40.02%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(41,181,63,0.45);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(41,181,63,0.6);
}
.whatsapp-fab svg { width: 32px; height: 32px; color: #fff; }

/* ============================================================
   Nav link with active yellow underline
   ============================================================ */
.nav-link {
  position: relative;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: var(--muted);
  padding-bottom: 8px;
  transition: color 250ms ease;
}
.nav-link:hover { color: var(--ink); }
/* Animated yellow underline — scales from 0 to full width on active */
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 300ms cubic-bezier(.4, 0, .2, 1);
}
.nav-link.is-active {
  color: var(--ink);
}
.nav-link.is-active::after {
  transform: scaleX(1);
}

/* ============================================================
   Image frame (about section)
   ============================================================ */
.image-frame {
  border: 4px solid var(--ink);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   Trust badge (under hero CTAs)
   ============================================================ */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: rgba(245,179,1,0.85);
}
.trust-badge svg { width: 14px; height: 16px; }

/* ============================================================
   RTL overrides
   ============================================================ */
html[dir="rtl"] body {
  font-family: 'Cairo', 'Tajawal', 'Inter', system-ui, sans-serif;
}
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] .font-heading,
html[dir="rtl"] .btn-yellow,
html[dir="rtl"] .btn-outline-white,
html[dir="rtl"] .btn-dark,
html[dir="rtl"] .nav-link,
html[dir="rtl"] .trust-badge,
html[dir="rtl"] .crane-card__body h3,
html[dir="rtl"] .feature-card h3,
html[dir="rtl"] .service-card h3 {
  font-family: 'Cairo', 'Tajawal', sans-serif;
}

/* Arabic buttons need slightly more vertical padding because Cairo has more line-height */
html[dir="rtl"] .btn-yellow,
html[dir="rtl"] .btn-outline-white,
html[dir="rtl"] .btn-dark {
  letter-spacing: 0;
}
html[dir="rtl"] .nav-link,
html[dir="rtl"] .trust-badge {
  letter-spacing: 0;
}
html[dir="rtl"] .hero__accent {
  border-left: 0;
  border-right: 4px solid var(--yellow);
  padding-left: 0;
  padding-right: 52px;
}
html[dir="rtl"] .btn-yellow {
  box-shadow: -4px 4px 0 var(--yellow-shadow);
}
html[dir="rtl"] .btn-yellow:hover {
  transform: translate(2px, -2px);
  box-shadow: -6px 6px 0 var(--yellow-shadow);
}
html[dir="rtl"] .whatsapp-fab {
  right: auto;
  left: 24px;
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Equipment page
   ============================================================ */
.equipment-hero {
  position: relative;
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
  min-height: 515px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.equipment-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.85;
}
.equipment-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(18, 19, 44, 0.5) 0%, rgba(18, 19, 44, 0.6) 100%);
}
.equipment-hero__frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  min-height: 357px;
  /* L-shape: bottom + left border in LTR */
  border-left: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
  padding: 49px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
html[dir="rtl"] .equipment-hero__frame {
  border-left: 0;
  border-bottom: 4px solid var(--yellow);
  border-right: 4px solid var(--yellow);
}
.equipment-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -0.96px;
  text-transform: uppercase;
  color: #fff;
}
html[dir="rtl"] .equipment-hero h1 {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 68px;
  letter-spacing: 0;
  text-align: right;
}
.equipment-hero p {
  margin-top: 24px;
  font-size: 18px;
  line-height: 29px;
  color: var(--light-text);
}
html[dir="rtl"] .equipment-hero p {
  text-align: right;
  font-size: 20px;
  line-height: 28px;
}

/* ----- Section header (yellow vertical accent) ----- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.section-head__title {
  display: flex;
  align-items: center;
  border-left: 4px solid var(--yellow);
  padding-left: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  text-transform: uppercase;
  color: var(--ink);
}
html[dir="rtl"] .section-head__title {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  border-left: 0;
  border-right: 4px solid var(--yellow);
  padding-left: 0;
  padding-right: 16px;
  text-transform: none;
  font-weight: 900;
  font-size: 30px;
  line-height: 50px;
}
.section-head__meta {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #77767E;
}
html[dir="rtl"] .section-head__meta {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: 14px;
  letter-spacing: 1.4px;
}

/* ----- Fleet card (Equipment page) ----- */
.fleet-card {
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.fleet-card__media {
  background: #fff;
  height: 256px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}
.fleet-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}
.fleet-card:hover .fleet-card__media img {
  transform: scale(1.05);
}
.fleet-card__body {
  padding: 24px;
  border-top: 1px solid var(--light-text);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.fleet-card__body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  color: var(--ink);
  margin: 0;
}
html[dir="rtl"] .fleet-card__body h3 {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  text-align: right;
}
.fleet-card__body p {
  font-size: 16px;
  line-height: 26px;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
html[dir="rtl"] .fleet-card__body p {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: 14px;
  line-height: 23px;
  color: #4B5563;
  text-align: right;
}
.fleet-card__actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.fleet-card__actions > * { flex: 1; }

/* Mini buttons used inside fleet cards */
.btn-yellow--sm,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  padding: 8px 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: opacity 150ms ease, transform 150ms ease;
  border: 0;
  cursor: pointer;
}
.btn-yellow--sm {
  background: var(--yellow);
  color: var(--ink);
}
.btn-yellow--sm:hover { transform: translateY(-1px); }
.btn-whatsapp {
  background: linear-gradient(89.52deg, #5AD264 1.5%, #29B53F 40.02%);
  color: #fff;
}
.btn-whatsapp:hover { transform: translateY(-1px); }
.btn-whatsapp svg { width: 16px; height: 16px; }

html[dir="rtl"] .btn-yellow--sm,
html[dir="rtl"] .btn-whatsapp {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

/* Load more outlined button */
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 48px;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: background 150ms ease, color 150ms ease;
  cursor: pointer;
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: #fff;
}
html[dir="rtl"] .btn-outline-dark {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: 14px;
  letter-spacing: 0.7px;
}

/* ============================================================
   Services page
   ============================================================ */

/* Centered section title with yellow underline */
.section-title-centered {
  display: inline-flex;
  align-items: center;
  border-bottom: 4px solid var(--yellow);
  padding-bottom: 4px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  color: var(--ink);
  margin: 0 auto;
}
html[dir="rtl"] .section-title-centered {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 700;
  text-transform: none;
}

/* Methodology section header */
.method-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
}
.method-head__rect {
  width: 128px;
  height: 8px;
  background: var(--yellow);
}
.method-head__kicker {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}
html[dir="rtl"] .method-head__kicker {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  letter-spacing: 0;
}
.method-head__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 4px;
}
html[dir="rtl"] .method-head__title {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  text-transform: none;
}

/* Process steps row */
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  isolation: isolate;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  height: 4px;
  background: var(--light-text);
  z-index: -1;
}
.process-step {
  position: relative;
}
.process-step__badge {
  width: 64px;
  height: 64px;
  border: 2px solid var(--ink);
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 34px;
}
.process-step--filled .process-step__badge {
  background: var(--ink);
  color: #fff;
}
.process-step__title {
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  text-transform: uppercase;
  color: var(--ink);
}
html[dir="rtl"] .process-step__title {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: right;
}
.process-step__desc {
  margin-top: 8px;
  font-size: 16px;
  line-height: 26px;
  color: var(--muted);
}
html[dir="rtl"] .process-step__desc {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  text-align: right;
}

/* Industry card */
.industry-card {
  position: relative;
  height: 256px;
  border: 1px solid var(--light-text);
  border-bottom: 4px solid var(--yellow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  transition: transform 250ms ease;
}
.industry-card:hover { transform: translateY(-3px); }
.industry-card__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.3);
}
.industry-card__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(18, 19, 44, 0.65);
}
.industry-card__icon {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}
.industry-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
}
html[dir="rtl"] .industry-card__title {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

/* Service cards on services page — slight tweak vs. home page */
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
}
html[dir="rtl"] .service-card h3 {
  font-family: 'Cairo', 'Tajawal', sans-serif;
}

/* ============================================================
   About page — Who We Are
   ============================================================ */
.who-we-are {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 160px;
  align-items: center;
}
.who-we-are__image-wrap {
  position: relative;
}
.who-we-are__image-wrap::before {
  content: '';
  position: absolute;
  top: -24px;
  bottom: 24px;
  left: -24px;
  right: 30%;
  background: var(--light-text);
  border-left: 4px solid var(--yellow);
  z-index: 0;
}
html[dir="rtl"] .who-we-are__image-wrap::before {
  left: 30%;
  right: -24px;
  border-left: 0;
  border-right: 4px solid var(--yellow);
}
.who-we-are__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.who-we-are__heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  color: var(--ink);
}
html[dir="rtl"] .who-we-are__heading {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  text-align: right;
}
.who-we-are__divider {
  width: 48px;
  height: 2px;
  background: var(--ink);
  margin-top: 12px;
}
html[dir="rtl"] .who-we-are__divider {
  margin-left: auto;
}
.who-we-are__body {
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 29px;
  color: var(--muted);
}
html[dir="rtl"] .who-we-are__body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  text-align: right;
}

@media (max-width: 1024px) {
  .who-we-are {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .who-we-are__image-wrap::before { display: none; }
  .who-we-are__image { height: 360px; }
}

/* ============================================================
   About page — Mission & Vision cards
   ============================================================ */
.mv-card {
  position: relative;
  background: var(--bg);
  padding: 92px 80px 80px;
  border-top: 4px solid var(--ink);
}
.mv-card--vision { border-top-color: var(--yellow); }

.mv-card__badge {
  position: absolute;
  top: -20px;
  right: 80px;
  width: 48px;
  height: 48px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
html[dir="rtl"] .mv-card__badge {
  right: auto;
  left: 80px;
}
.mv-card--vision .mv-card__badge { background: var(--yellow); }
.mv-card__badge svg { width: 22px; height: 22px; }

.mv-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  color: var(--ink);
}
html[dir="rtl"] .mv-card h3 {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  text-align: right;
}
.mv-card p {
  margin-top: 23px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: var(--muted);
}
html[dir="rtl"] .mv-card p {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  text-align: right;
}

@media (max-width: 768px) {
  .mv-card { padding: 60px 32px 40px; }
  .mv-card__badge { right: 32px; }
  html[dir="rtl"] .mv-card__badge { left: 32px; }
}

/* ============================================================
   Contact page — form, map, WhatsApp CTA
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-form-card {
  position: relative;
  background: var(--section-alt);
  border: 2px solid var(--light-text);
  padding: 48px 48px 64px;
  isolation: isolate;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    rgba(254, 187, 20, 0.15) 0,
    rgba(254, 187, 20, 0.15) 24px,
    transparent 24px,
    transparent 48px
  );
  z-index: 0;
}
.contact-form-card__title {
  display: inline-flex;
  align-items: center;
  border-left: 4px solid var(--yellow);
  padding-left: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
html[dir="rtl"] .contact-form-card__title {
  border-left: 0;
  border-right: 4px solid var(--yellow);
  padding-left: 0;
  padding-right: 16px;
  font-family: 'Cairo', 'Tajawal', sans-serif;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.contact-form > .full {
  grid-column: 1 / -1;
}
@media (max-width: 640px) {
  .contact-form { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px 40px; }
}

.contact-form__label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
html[dir="rtl"] .contact-form__label {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  text-align: right;
}

.contact-form__input,
.contact-form__textarea,
.contact-form__select {
  display: block;
  width: 100%;
  background: var(--bg);
  border: 1px solid #77767E;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 19px;
  color: var(--ink);
  transition: border-color 150ms ease;
}
html[dir="rtl"] .contact-form__input,
html[dir="rtl"] .contact-form__textarea,
html[dir="rtl"] .contact-form__select {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  text-align: right;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder { color: #6B7280; }
.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus {
  outline: none;
  border-color: var(--yellow);
}
.contact-form__textarea {
  min-height: 122px;
  resize: vertical;
}
.contact-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%2377767E' stroke-width='2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
html[dir="rtl"] .contact-form__select {
  background-position: left 16px center;
  padding-right: 16px;
  padding-left: 40px;
}

.contact-form__submit {
  grid-column: 1 / -1;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 16px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease;
}
html[dir="rtl"] .contact-form__submit {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  letter-spacing: 0;
}
.contact-form__submit:hover { transform: translateY(-1px); }
.contact-form__submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.contact-form__submit svg { width: 16px; height: 16px; }

.contact-form__msg {
  grid-column: 1 / -1;
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid currentColor;
  margin-top: 4px;
}
.contact-form__msg--success { color: #16803c; background: #ecfdf3; border-color: #b7ebcb; }
.contact-form__msg--error { color: #b42318; background: #fef3f2; border-color: #fecdca; }

/* Honeypot — hidden from humans */
.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Map card */
.map-card {
  position: relative;
  border: 2px solid var(--ink);
  background: var(--light-text);
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
}
.map-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.map-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(18, 19, 44, 0.35);
}
.map-card__pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--yellow);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}
.map-card__pin svg { width: 56px; height: 72px; }

/* WhatsApp CTA section */
.whatsapp-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  padding: 80px 24px;
  text-align: center;
  border-bottom: 4px solid var(--yellow);
}
.whatsapp-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.whatsapp-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(18, 19, 44, 0.6) 0%, rgba(18, 19, 44, 0.85) 100%);
}
.whatsapp-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  color: #fff;
}
html[dir="rtl"] .whatsapp-cta h2 {
  font-family: 'Cairo', 'Tajawal', sans-serif;
}
.whatsapp-cta p {
  margin-top: 12px;
  font-size: 18px;
  line-height: 29px;
  color: rgba(229, 225, 228, 0.9);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
html[dir="rtl"] .whatsapp-cta p {
  font-family: 'Cairo', 'Tajawal', sans-serif;
}
.whatsapp-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  background: linear-gradient(89.52deg, #5AD264 1.5%, #29B53F 40.02%);
  color: #fff;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease;
  box-shadow: 0 10px 25px rgba(41, 181, 63, 0.35);
}
html[dir="rtl"] .whatsapp-cta__btn {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  letter-spacing: 0;
  text-transform: none;
}
.whatsapp-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(41, 181, 63, 0.5);
}
.whatsapp-cta__btn svg { width: 18px; height: 18px; }

/* ============================================================
   Terms & Conditions page
   ============================================================ */
.terms-grid {
  display: grid;
  grid-template-columns: 357px 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 1024px) {
  .terms-grid { grid-template-columns: 1fr; }
}

.toc-card {
  background: #F1EDEF;
  border-left: 4px solid var(--yellow);
  padding: 24px;
  position: sticky;
  top: 110px;
}
html[dir="rtl"] .toc-card {
  border-left: 0;
  border-right: 4px solid var(--yellow);
}
.toc-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  color: var(--ink);
  margin-bottom: 16px;
}
html[dir="rtl"] .toc-card__title {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  text-align: right;
}
.toc-card ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.toc-card a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: var(--muted);
  transition: color 150ms ease;
}
html[dir="rtl"] .toc-card a {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  text-align: right;
}
.toc-card a:hover { color: var(--ink); }

.terms-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.term-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px;
  scroll-margin-top: 110px;
}
.term-card::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 80px;
  left: -3px;
  top: 25px;
  background: var(--yellow);
}
html[dir="rtl"] .term-card::before {
  left: auto;
  right: -3px;
}
.term-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
}
html[dir="rtl"] .term-card__head {
  flex-direction: row-reverse;
}
.term-card__num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--yellow);
}
html[dir="rtl"] .term-card__num {
  font-family: 'Cairo', 'Tajawal', sans-serif;
}
.term-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 42px;
  color: var(--ink);
}
html[dir="rtl"] .term-card__title {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: 26px;
}
.term-card__body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: var(--muted);
}
html[dir="rtl"] .term-card__body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  text-align: right;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
  .service-card { padding: 32px; }
  .crane-card__body { padding: 24px; }
  .hero__accent { padding-left: 24px; }
  html[dir="rtl"] .hero__accent { padding-right: 24px; }
}
