@font-face {
  font-family: "Alexandria";
  src: url("../fonts/Alexandria/Alexandria-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo/Cairo-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}

:root {
  --mohr-bg: #f9f9fb;
  --mohr-bg-soft: #fbfbfd;
  --mohr-white: #ffffff;
  --mohr-primary: #23378c;
  --mohr-primary-dark: #162863;
  --mohr-primary-deep: #122761;
  --mohr-primary-alt: #2c388f;
  --mohr-primary-soft: #5964a1;
  --mohr-primary-muted: #a5abc9;
  --mohr-orange: #f05724;
  --mohr-orange-alt: #f05c27;
  --mohr-orange-soft: #f0aa8f;
  --mohr-orange-light: #f2c5b1;
  --mohr-text: #131624;
  --mohr-heading: #122761;
  --mohr-muted: #5964a1;
  --mohr-muted-2: #9a9db6;
  --mohr-border: #dfe0e8;
  --mohr-border-soft: #e9ecf5;
  --mohr-map-blue: #3c68d8;
  --mohr-shadow: rgba(18, 39, 97, 0.1);
  --mohr-shadow-strong: rgba(18, 39, 97, 0.18);
  --shadow-card:
    0 0 0 1px rgba(18, 39, 97, 0.055),
    0 16px 42px rgba(18, 39, 97, 0.085),
    0 2px 8px rgba(18, 39, 97, 0.05);
  --shadow-card-hover:
    0 0 0 1px rgba(18, 39, 97, 0.08),
    0 22px 54px rgba(18, 39, 97, 0.13),
    0 3px 10px rgba(18, 39, 97, 0.07);
  --container: 1180px;
  --section-space: 64px;
  --mohr-button-radius: 14px;
  --mohr-card-radius: 20px;
  --mohr-logo-width: 146px;
  --mohr-logo-width-mobile: 112px;
  --mohr-innox-logo-width: 78px;
  --mohr-innox-logo-width-mobile: 64px;
  --mohr-font: "Alexandria", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#home,
#tracking,
#services,
#process,
#stats,
#routes,
#testimonials,
#facebook-posts,
#faq,
#shipping-request,
#contact,
#about {
  scroll-margin-top: 100px;
}

body {
  max-width: 100%;
  margin: 0;
  direction: rtl;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(60, 104, 216, 0.07), transparent 28%),
    linear-gradient(180deg, #fbfbfd 0%, var(--mohr-bg) 44%, #ffffff 100%);
  color: var(--mohr-text);
  font-family: var(--mohr-font);
  font-size: 16px;
  line-height: 1.8;
}

@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body.is-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--mohr-heading);
  line-height: 1.28;
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.skip-link:focus {
  z-index: 9999;
  top: 12px;
  right: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  border-radius: 10px;
  background: var(--mohr-primary);
  color: var(--mohr-white);
}

.mohr-container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding-block: var(--section-space);
}

.section-title {
  margin-bottom: 32px;
  text-align: center;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  color: var(--mohr-primary);
  font-size: 30px;
  font-weight: 800;
}

.section-title h2::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -10px;
  width: 44px;
  height: 3px;
  border-radius: 99px;
  background: var(--mohr-orange);
  transform: translateX(50%);
}

.section-title-inline {
  margin-bottom: 20px;
  text-align: right;
}

.section-title-inline h2::after {
  right: 0;
  transform: none;
}

.mohr-button,
.header-track-button,
.tracking-submit {
  min-height: 44px;
  border: 0;
  border-radius: var(--mohr-button-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
  transition-property: transform, background-color, color, box-shadow, opacity;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.mohr-button:active,
.header-track-button:active,
.tracking-submit:active,
.lang-switch:active,
.mobile-menu-toggle:active,
.slider-arrow:active,
.faq-question:active {
  transform: scale(0.96);
}

.mohr-button-primary,
.tracking-submit {
  background: linear-gradient(135deg, var(--mohr-orange), var(--mohr-orange-alt));
  color: var(--mohr-white);
  box-shadow: 0 12px 26px rgba(240, 87, 36, 0.26);
}

.mohr-button-primary:hover,
.tracking-submit:hover {
  background: linear-gradient(135deg, #e84f1d, var(--mohr-orange));
  box-shadow: 0 16px 32px rgba(240, 87, 36, 0.32);
}

.mohr-button-light {
  background: var(--mohr-white);
  color: var(--mohr-orange);
  box-shadow: 0 12px 28px rgba(116, 34, 7, 0.18);
}

.button-icon,
.play-icon,
.benefit-icon,
.service-icon,
.step-icon,
.stat-icon,
.footer-contact-icon,
.faq-icon,
.arrow-icon,
.close-icon,
.menu-open,
.menu-close {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  background: rgba(249, 249, 251, 0.82);
  backdrop-filter: blur(18px);
  transition-property: box-shadow, background-color;
  transition-duration: 180ms;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 32px rgba(18, 39, 97, 0.08);
}

.header-inner {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-brand {
  width: var(--mohr-logo-width);
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--mohr-primary-deep);
  font-weight: 900;
}

.site-brand img {
  width: 100%;
  outline: 0;
}

.primary-nav {
  flex: 1;
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--mohr-primary-deep);
  font-size: 14px;
  font-weight: 700;
  transition-property: color, opacity;
  transition-duration: 160ms;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
  color: var(--mohr-orange);
}

.primary-menu .current-menu-item > a::after,
.primary-menu a:hover::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 4px;
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: var(--mohr-orange);
  transform: translateX(50%);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.lang-switch,
.mobile-menu-toggle {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--mohr-primary-deep);
  transition-property: transform, background-color, color;
  transition-duration: 160ms;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.lang-switch::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-inline-start: 6px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg) translateY(-2px);
}

.header-track-button {
  background: var(--mohr-primary);
  color: var(--mohr-white);
  box-shadow: 0 10px 22px rgba(35, 55, 140, 0.22);
}

.header-track-button:hover {
  background: var(--mohr-primary-dark);
}

.mobile-menu-toggle {
  position: relative;
  display: none;
}

.menu-close {
  position: absolute;
  inset: 12px;
  opacity: 0;
  filter: blur(4px);
  transform: scale(0.25);
  transition-property: transform, opacity, filter;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.menu-open {
  transition-property: transform, opacity, filter;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.is-menu-open .menu-open,
.mobile-menu-open .menu-open {
  opacity: 0;
  filter: blur(4px);
  transform: scale(0.25);
}

.is-menu-open .menu-close,
.mobile-menu-open .menu-close {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 660px;
  padding: 56px 0 104px;
  overflow: visible;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 75% 50%, rgba(240, 87, 36, 0.08), transparent 31%),
    radial-gradient(circle at 22% 22%, rgba(60, 104, 216, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(249, 249, 251, 0.92));
}

.hero-pattern {
  position: absolute;
  z-index: -2;
  pointer-events: none;
  opacity: 0.65;
}

.hero-pattern-waves {
  right: -120px;
  top: 70px;
  width: 430px;
  height: 210px;
  background: url("../images/ui/pattern-waves.svg") center / contain no-repeat;
}

.hero-pattern-dots {
  left: 0;
  top: 34px;
  width: 220px;
  height: 260px;
  background: url("../images/ui/pattern-dots.svg") center / contain no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 2;
  direction: ltr;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: 24px;
}

.hero-content {
  direction: rtl;
  min-width: 0;
  max-width: 560px;
  padding-top: 28px;
}

.hero-content h1 {
  font-size: clamp(38px, 4vw, 57px);
  font-weight: 900;
  letter-spacing: 0;
}

.hero-content h1 span,
.hero-content h1 strong {
  display: block;
}

.hero-content h1 strong {
  margin-top: 7px;
  color: var(--mohr-orange);
}

.hero-content p {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--mohr-muted);
  font-size: 18px;
  font-weight: 600;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 28px;
  margin-top: 32px;
}

.hero-benefits div {
  display: grid;
  place-items: center;
  gap: 8px;
  color: var(--mohr-primary);
  font-size: 14px;
  font-weight: 800;
}

.benefit-icon {
  width: 35px;
  height: 35px;
  padding: 7px;
  border-radius: 13px;
  color: var(--mohr-primary);
  background: rgba(35, 55, 140, 0.05);
  box-shadow: 0 0 0 1px rgba(35, 55, 140, 0.12);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.video-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mohr-primary-deep);
  font-weight: 800;
}

.video-link span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mohr-white);
  color: var(--mohr-primary);
  box-shadow: var(--shadow-card);
}

.video-link .play-icon {
  transform: translateX(-1px);
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 620px;
  margin-bottom: -76px;
  isolation: isolate;
}

.hero-orange-ring {
  position: absolute;
  z-index: 1;
  right: 78px;
  top: 126px;
  width: 390px;
  height: 390px;
  border: 56px solid var(--mohr-orange);
  border-radius: 50%;
  background: transparent;
  filter: drop-shadow(0 18px 34px rgba(240, 87, 36, 0.16));
}

.hero-soft-shadow {
  position: absolute;
  z-index: 2;
  right: 104px;
  bottom: 74px;
  width: 470px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(18, 39, 97, 0.24), rgba(18, 39, 97, 0.1) 48%, transparent 72%);
  filter: blur(8px);
}

.hero-courier-layer,
.hero-box-layer {
  position: absolute;
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
  outline: 0;
  user-select: none;
  pointer-events: none;
}

.hero-courier-layer {
  z-index: 3;
  right: -8px;
  bottom: -16px;
  width: auto;
  height: 650px;
  max-height: none;
  filter: drop-shadow(0 26px 42px rgba(18, 39, 97, 0.18));
}

.hero-box-layer {
  z-index: 5;
  left: -8px;
  bottom: -24px;
  width: 420px;
  filter: drop-shadow(0 24px 34px rgba(18, 39, 97, 0.22));
}

.tracking-section {
  position: relative;
  z-index: 6;
  margin-top: -74px;
}

.tracking-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 28px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.tracking-copy h2 {
  color: var(--mohr-primary);
  font-size: 26px;
  font-weight: 900;
}

.tracking-copy p {
  margin: 6px 0 0;
  color: var(--mohr-muted);
  font-weight: 600;
}

.tracking-form {
  direction: ltr;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 230px;
  gap: 24px;
  align-items: end;
}

.field,
.booking-form label {
  direction: rtl;
  min-width: 0;
  display: grid;
  gap: 7px;
}

.field label,
.booking-form span {
  color: var(--mohr-muted);
  font-size: 13px;
  font-weight: 700;
}

.field input,
.booking-form input,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: var(--mohr-white);
  color: var(--mohr-text);
  padding: 0 16px;
  box-shadow: 0 0 0 1px var(--mohr-border-soft);
  transition-property: box-shadow, background-color;
  transition-duration: 160ms;
}

.booking-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.field input:focus,
.booking-form input:focus,
.booking-form textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 1px var(--mohr-orange), 0 0 0 4px rgba(240, 87, 36, 0.12);
}

.tracking-submit {
  min-height: 56px;
  background: var(--mohr-primary);
  box-shadow: 0 14px 28px rgba(35, 55, 140, 0.24);
}

.tracking-submit:hover {
  background: var(--mohr-primary-dark);
}

.tracking-result {
  grid-column: 1 / -1;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(35, 55, 140, 0.05);
  color: var(--mohr-primary-deep);
  font-weight: 700;
}

.tracking-result.is-error {
  background: rgba(240, 87, 36, 0.08);
  color: #9b2f12;
}

.tracking-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tracking-status-grid span {
  display: grid;
  gap: 2px;
  padding: 10px;
  border-radius: 10px;
  background: var(--mohr-white);
  box-shadow: 0 0 0 1px rgba(18, 39, 97, 0.06);
}

.tracking-status-grid small {
  color: var(--mohr-muted);
  font-size: 12px;
}

.services-section {
  padding-top: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}

.service-card {
  min-height: 178px;
  padding: 24px 18px 22px;
  border-radius: var(--mohr-card-radius);
  background: var(--mohr-white);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition-property: transform, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.service-icon-wrap {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 17px;
  color: var(--mohr-orange);
  background:
    linear-gradient(135deg, rgba(240, 87, 36, 0.08), rgba(35, 55, 140, 0.05)),
    var(--mohr-white);
  box-shadow: 0 0 0 1px rgba(35, 55, 140, 0.08);
}

.service-icon {
  width: 38px;
  height: 38px;
  stroke-width: 1.65;
}

.service-card h3 {
  color: var(--mohr-primary);
  font-size: 17px;
  font-weight: 900;
}

.service-card p {
  margin: 7px 0 0;
  color: var(--mohr-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.process-section {
  padding-bottom: 48px;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 47px;
  right: 8%;
  left: 8%;
  height: 2px;
  background-image: linear-gradient(to left, var(--mohr-primary-muted) 45%, transparent 45%);
  background-size: 12px 2px;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-icon {
  position: relative;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--mohr-white);
  color: var(--mohr-primary);
  box-shadow: var(--shadow-card);
}

.process-icon span {
  position: absolute;
  top: -12px;
  right: -4px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mohr-orange);
  color: var(--mohr-white);
  font-size: 13px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.step-icon {
  width: 32px;
  height: 32px;
}

.process-step h3 {
  color: var(--mohr-primary);
  font-size: 16px;
  font-weight: 900;
}

.process-step p {
  max-width: 180px;
  margin: 6px auto 0;
  color: var(--mohr-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.stats-section {
  padding-bottom: 46px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--mohr-primary), var(--mohr-primary-dark));
  color: var(--mohr-white);
  box-shadow: 0 20px 48px rgba(18, 39, 97, 0.22);
}

.stat-item {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-areas: "icon number" "icon label";
  align-items: center;
  gap: 0 14px;
  padding: 30px 38px;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.stat-icon {
  grid-area: icon;
  width: 43px;
  height: 43px;
  color: var(--mohr-orange);
  stroke-width: 1.7;
}

.stat-item strong {
  grid-area: number;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.stat-item span {
  grid-area: label;
  opacity: 0.86;
  font-size: 14px;
  font-weight: 600;
}

.routes-testimonials {
  padding-top: 34px;
}

.routes-testimonials-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: center;
}

.routes-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 18px;
}

.routes-panel .section-title {
  grid-column: 2;
}

.route-map {
  grid-row: 1 / span 2;
  min-height: 250px;
}

.route-map img {
  width: 100%;
  outline: 0;
}

.routes-panel p {
  margin: 0;
  color: var(--mohr-primary);
  font-weight: 700;
}

.testimonial-slider {
  position: relative;
  min-height: 218px;
}

.testimonial-track {
  position: relative;
}

.testimonial-card {
  display: none;
  min-height: 188px;
  padding: 34px 42px 24px;
  border-radius: 20px;
  background: var(--mohr-white);
  box-shadow: var(--shadow-card);
}

.testimonial-card.is-active {
  display: block;
}

.testimonial-card::before {
  content: "”";
  position: absolute;
  top: 8px;
  left: 32px;
  color: var(--mohr-border-soft);
  font-size: 88px;
  line-height: 1;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto 22px;
  color: var(--mohr-primary-deep);
  text-align: center;
  font-weight: 600;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 78% 44%;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-author strong {
  color: var(--mohr-primary-deep);
  font-weight: 900;
}

.testimonial-author span {
  color: var(--mohr-muted);
  font-size: 13px;
}

.slider-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--mohr-white);
  color: var(--mohr-primary);
  box-shadow: var(--shadow-card);
  transition-property: transform, color, box-shadow;
  transition-duration: 160ms;
}

.slider-arrow:hover {
  color: var(--mohr-orange);
  box-shadow: var(--shadow-card-hover);
}

.slider-prev {
  right: -22px;
  transform: translateY(-50%) rotate(180deg);
}

.slider-next {
  left: -22px;
  transform: translateY(-50%);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.testimonial-dots button {
  width: 12px;
  height: 12px;
  min-width: 40px;
  min-height: 40px;
  border: 0;
  padding: 0;
  background: transparent;
  position: relative;
}

.testimonial-dots button::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mohr-primary-muted);
  transition-property: background-color, transform;
  transition-duration: 160ms;
}

.testimonial-dots button.is-active::before {
  background: var(--mohr-orange);
  transform: scale(1.18);
}

.facebook-posts-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(35, 55, 140, 0.035) 100%),
    var(--mohr-bg);
}

.facebook-posts-title {
  max-width: 720px;
  margin-inline: auto;
}

.facebook-posts-title p {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--mohr-muted);
  font-weight: 700;
}

.facebook-posts-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.facebook-post-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--mohr-border-soft);
  border-radius: var(--mohr-card-radius);
  background: var(--mohr-white);
  box-shadow: 0 6px 8px rgba(18, 39, 97, 0.06);
  transition-property: transform, border-color, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.facebook-post-card:hover {
  border-color: rgba(240, 87, 36, 0.28);
  box-shadow: 0 8px 8px rgba(18, 39, 97, 0.08);
  transform: translateY(-4px);
}

.facebook-post-media,
.facebook-post-placeholder {
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background: rgba(35, 55, 140, 0.05);
}

.facebook-post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.facebook-post-card:hover .facebook-post-media img {
  transform: scale(1.035);
}

.facebook-post-placeholder {
  display: grid;
  place-items: center;
  color: var(--mohr-primary);
  background:
    radial-gradient(circle at 34% 24%, rgba(240, 87, 36, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(35, 55, 140, 0.08), rgba(35, 55, 140, 0.035));
}

.facebook-post-placeholder span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--mohr-white);
  color: var(--mohr-primary);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 6px 8px rgba(18, 39, 97, 0.08);
}

.facebook-post-placeholder svg {
  width: 26px;
  height: 26px;
}

.facebook-post-body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.facebook-post-body time {
  margin-bottom: 9px;
  color: var(--mohr-orange);
  font-size: 13px;
  font-weight: 800;
}

.facebook-post-body p {
  margin: 0 0 18px;
  color: var(--mohr-primary-deep);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.facebook-post-link {
  width: fit-content;
  max-width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 16px;
  border-radius: 12px;
  background: rgba(35, 55, 140, 0.07);
  color: var(--mohr-primary);
  font-size: 13px;
  font-weight: 900;
  transition-property: background-color, color, transform;
  transition-duration: 160ms;
}

.facebook-post-link:hover {
  background: var(--mohr-primary);
  color: var(--mohr-white);
  transform: translateY(-1px);
}

.facebook-posts-message {
  max-width: 680px;
  margin-inline: auto;
  padding: 22px 24px;
  border: 1px solid var(--mohr-border-soft);
  border-radius: 16px;
  background: var(--mohr-white);
  color: var(--mohr-primary-deep);
  text-align: center;
  box-shadow: 0 6px 8px rgba(18, 39, 97, 0.06);
}

.facebook-posts-message p {
  margin: 0;
  font-weight: 700;
}

.faq-section {
  padding-top: 24px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 72px;
}

.faq-item {
  min-width: 0;
  border-radius: 14px;
  background: var(--mohr-white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 50px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  background: transparent;
  color: var(--mohr-primary-deep);
  text-align: right;
  font-weight: 800;
  transition-property: color, background-color, transform;
  transition-duration: 160ms;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
  color: var(--mohr-orange);
  background: rgba(240, 87, 36, 0.035);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  flex: 0 0 auto;
  transition-property: transform;
  transition-duration: 180ms;
}

.faq-answer {
  padding: 0 18px 16px;
  color: var(--mohr-muted);
  font-weight: 600;
}

.faq-answer p {
  margin: 0;
}

.cta-section {
  margin-top: 24px;
  padding-bottom: 40px;
}

.cta-card {
  position: relative;
  direction: rtl;
  min-width: 0;
  min-height: 136px;
  display: grid;
  grid-template-columns: 1fr 190px;
  align-items: center;
  gap: 24px;
  overflow: visible;
  padding: 24px 34px 24px 286px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--mohr-orange), var(--mohr-orange-alt));
  color: var(--mohr-white);
  box-shadow: 0 22px 50px rgba(240, 87, 36, 0.25);
}

.cta-boxes-layer {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: -12px;
  width: 246px;
  max-width: 30%;
  height: auto;
  object-fit: contain;
  background: transparent;
  outline: 0;
  filter: drop-shadow(0 18px 28px rgba(116, 34, 7, 0.24));
  pointer-events: none;
  user-select: none;
}

.cta-copy {
  position: relative;
  z-index: 3;
  direction: rtl;
  text-align: right;
}

.cta-card .mohr-button {
  position: relative;
  z-index: 3;
}

.cta-copy h2 {
  color: var(--mohr-white);
  font-size: 30px;
  font-weight: 900;
}

.cta-copy p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.booking-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
}

.booking-overlay:target {
  display: grid;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 39, 97, 0.42);
  backdrop-filter: blur(12px);
}

.booking-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: min(92vh, 760px);
  overflow: auto;
  padding: 34px;
  border-radius: 24px;
  background: var(--mohr-white);
  box-shadow: 0 30px 90px rgba(18, 39, 97, 0.28);
}

.booking-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(35, 55, 140, 0.06);
  color: var(--mohr-primary);
}

.booking-panel h2 {
  font-size: 30px;
  font-weight: 900;
}

.booking-panel > p {
  margin: 8px 0 22px;
  color: var(--mohr-muted);
  font-weight: 600;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.booking-result {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(35, 55, 140, 0.06);
  color: var(--mohr-primary-deep);
  font-weight: 800;
}

.booking-result.is-error {
  background: rgba(240, 87, 36, 0.08);
  color: #9b2f12;
}

.site-footer {
  padding-top: 48px;
  background: linear-gradient(135deg, var(--mohr-primary), var(--mohr-primary-dark));
  color: var(--mohr-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr 1.05fr;
  gap: 54px;
}

.footer-brand img {
  width: 172px;
  outline: 0;
}

.footer-brand p {
  max-width: 330px;
  margin: 16px 0 20px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.footer-column h3 {
  margin-bottom: 16px;
  color: var(--mohr-white);
  font-size: 17px;
  font-weight: 900;
}

.footer-column ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a,
.footer-contact li,
.footer-bottom {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.footer-column a {
  transition-property: color;
  transition-duration: 160ms;
}

.footer-column a:hover {
  color: var(--mohr-orange);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-contact-icon {
  width: 17px;
  height: 17px;
  color: var(--mohr-orange);
}

.footer-social {
  display: flex;
  gap: 9px;
}

.footer-social:empty {
  display: none;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--mohr-white);
  transition-property: background-color, color, transform;
  transition-duration: 160ms;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-social a:hover {
  background: var(--mohr-orange);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.innox-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.innox-credit img {
  width: var(--mohr-innox-logo-width);
  height: auto;
  outline: 0;
}

.site-preloader {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 48%, color-mix(in srgb, var(--preloader-accent) 10%, transparent), transparent 34%),
    var(--preloader-bg, var(--mohr-bg));
  color: var(--mohr-primary);
  opacity: 1;
  visibility: visible;
  transition-property: opacity, visibility;
  transition-duration: 320ms;
  transition-timing-function: ease;
}

body.site-loaded .site-preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-box {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.preloader-logo {
  width: min(190px, 52vw);
  height: auto;
  outline: 0;
  filter: drop-shadow(0 18px 30px rgba(18, 39, 97, 0.12));
}

.preloader-mark {
  position: relative;
  width: 118px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--preloader-accent, var(--mohr-orange));
}

.preloader-mark span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  animation: preloader-dot 880ms ease-in-out infinite;
}

.preloader-mark span:nth-child(2) {
  animation-delay: 120ms;
}

.preloader-mark span:nth-child(3) {
  animation-delay: 240ms;
}

.preloader-box p {
  margin: 0;
  color: var(--mohr-muted);
  font-size: 14px;
  font-weight: 800;
}

.preloader-fade-scale .preloader-logo {
  animation: preloader-fade-scale 1200ms ease-in-out infinite;
}

.preloader-pulse .preloader-logo {
  animation: preloader-pulse 1100ms ease-in-out infinite;
}

.preloader-truck-line .preloader-mark {
  overflow: hidden;
}

.preloader-truck-line .preloader-mark::before,
.preloader-truck-line .preloader-mark::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 50%;
  height: 3px;
  border-radius: 99px;
  background: color-mix(in srgb, var(--preloader-accent) 22%, transparent);
  transform: translateY(-50%);
}

.preloader-truck-line .preloader-mark::after {
  width: 36px;
  inset-inline-end: auto;
  background: var(--preloader-accent, var(--mohr-orange));
  animation: preloader-line 950ms ease-in-out infinite;
}

.preloader-truck-line .preloader-mark span {
  display: none;
}

.preloader-dots .preloader-logo {
  transform: none;
}

@keyframes preloader-dot {
  0%,
  80%,
  100% {
    opacity: 0.32;
    transform: translateY(0) scale(0.88);
  }

  40% {
    opacity: 1;
    transform: translateY(-7px) scale(1);
  }
}

@keyframes preloader-fade-scale {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes preloader-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.045);
  }
}

@keyframes preloader-line {
  0% {
    inset-inline-start: -38px;
  }

  100% {
    inset-inline-start: 118px;
  }
}

.floating-contact {
  position: fixed;
  z-index: 90;
  bottom: max(22px, env(safe-area-inset-bottom));
  display: grid;
  gap: 12px;
  pointer-events: none;
}

.floating-desktop-bottom-right {
  right: max(22px, env(safe-area-inset-right));
}

.floating-desktop-bottom-left {
  left: max(22px, env(safe-area-inset-left));
}

.floating-contact-button {
  width: var(--floating-size-desktop, 58px);
  height: var(--floating-size-desktop, 58px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--floating-icon-color, #fff);
  pointer-events: auto;
  box-shadow: 0 16px 34px rgba(18, 39, 97, 0.2);
  transition-property: transform, box-shadow, filter;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.floating-contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(18, 39, 97, 0.24);
}

.floating-contact-button:active {
  transform: translateY(-1px) scale(0.96);
}

.floating-contact-button svg {
  width: 56%;
  height: 56%;
  display: block;
}

.floating-button-whatsapp {
  background: var(--floating-whatsapp-bg, #25d366);
}

.floating-button-call {
  background: var(--floating-call-bg, var(--mohr-primary));
}

body.lang-en {
  direction: ltr;
  text-align: left;
}

body.lang-en .hero-content,
body.lang-en .field,
body.lang-en .booking-form label,
body.lang-en .tracking-copy,
body.lang-en .footer-brand,
body.lang-en .footer-column {
  direction: ltr;
  text-align: left;
}

body.lang-en .section-title-inline {
  text-align: left;
}

body.lang-en .section-title-inline h2::after {
  right: auto;
  left: 0;
}

body.lang-en .hero-content p {
  margin-right: 0;
}

body.lang-en .mohr-button .button-icon {
  transform: rotate(180deg);
}

body.lang-en .video-link .play-icon {
  transform: translateX(1px);
}

body.lang-en .tracking-form {
  direction: ltr;
}

body.lang-en .footer-contact li,
body.lang-en .innox-credit {
  direction: ltr;
}

.content-layout {
  max-width: 880px;
}

.content-card {
  margin-bottom: 24px;
  padding: 34px;
  border-radius: 20px;
  background: var(--mohr-white);
  box-shadow: var(--shadow-card);
}

.content-card h1,
.content-card h2 {
  margin-bottom: 14px;
}

.entry-content a,
.entry-summary a {
  color: var(--mohr-orange);
  font-weight: 800;
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition-property: transform, opacity;
  transition-duration: 520ms;
  transition-delay: var(--reveal-delay, 0ms);
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
