:root {
  --red: #c41e2a;
  --red-dk: #a81824;
  --red-lt: rgba(196, 30, 42, 0.1);
  --red-glow: rgba(196, 30, 42, 0.2);
  --blue: #09263a;
  --blue-mid: #1a4a65;
  --blue-lt: #246b96;
  --white: #fff;
  --off: #f6f9fb;
  --soft: #edf1f5;
  --ink: #09263a;
  --muted: #56717e;
  --line: rgba(9, 38, 58, 0.1);
  --line-s: rgba(9, 38, 58, 0.06);
  --sh-xs: 0 2px 10px rgba(9, 38, 58, 0.06);
  --sh-sm: 0 4px 24px rgba(9, 38, 58, 0.09);
  --sh: 0 12px 48px rgba(9, 38, 58, 0.12);
  --sh-lg: 0 24px 80px rgba(9, 38, 58, 0.16);
  --r-xs: 8px;
  --r-sm: 14px;
  --r: 22px;
  --r-lg: 32px;
  --r-xl: 44px;
  --px: clamp(20px, 5vw, 80px);
  --safe-edge: 15px;
  --ease: 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Kufi Arabic", "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
h1 {
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.25;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.5px;
}
h2 {
  font-size: clamp(22px, 2.8vw, 40px);
  line-height: 1.4;
  font-weight: 900;
  color: var(--blue);
}
h3 {
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 800;
  color: var(--blue);
}
p {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.9;
  color: var(--muted);
}
em {
  font-style: normal;
  color: var(--red);
}
.section {
  padding: clamp(50px, 7vw, 90px) var(--px);
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag::before {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--red);
  border-radius: 99px;
  flex-shrink: 0;
}
.section-head {
  max-width: 660px;
  margin-bottom: 40px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 24px var(--red-glow);
}
.btn-red:hover {
  background: var(--red-dk);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(196, 30, 42, 0.28);
}
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  background: var(--off);
  transform: translateY(-3px);
}
.btn-white {
  background: #fff;
  color: var(--red);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}
.btn-outline-w {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-outline-w:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
  transition: var(--ease);
}
.arrow-link:hover {
  gap: 13px;
}

/* ==================== TOP BAR ==================== */
.top-bar {
  background: var(--blue);
  padding: 8px var(--px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  direction: rtl;
  padding-left: 140px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  transition: color var(--ease);
}
.top-bar-item:hover {
  color: #fff;
}
.top-bar-item i {
  color: var(--red);
  font-size: 13px;
  flex-shrink: 0;
}
.top-bar-item a {
  color: inherit;
  direction: ltr;
  display: inline-block;
}

/* ==================== NAVBAR ==================== */
.navbar {
  border-radius: 50px;
  position: fixed;
  top: 44px;
  left: 20px;
  right: 20px;
  height: 56px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(14px, 2vw, 28px);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  border: 1px solid var(--line-s);
  box-shadow: var(--sh-xs);
  transition: var(--ease);
  margin-left: 105px;
  margin-right: 105px;
  /* width: 80%; */
}
.navbar.scrolled {
  box-shadow: var(--sh-sm);
  top: 8px;
}
.nav-logo img {
  width: 130px;
  height: auto;
}
.nav-center {
    display: flex;
    align-items: center;
    gap: 22px;
}
.nav-center > a,
.nav-dd > a {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  padding: 8px 4px;
  position: relative;
  transition: color var(--ease);
}
.nav-center > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 99px;
  transition: width var(--ease);
}
.nav-center > a:hover,
.nav-center > a.active {
  color: var(--red);
}
.nav-center > a:hover::after,
.nav-center > a.active::after {
  width: 100%;
}
/* Dropdown */
.nav-dd {
  position: relative;
}
.nav-dd > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-dd > a i.dd-arrow {
  font-size: 10px;
  transition: transform var(--ease);
}
.nav-dd:hover > a i.dd-arrow {
  transform: rotate(180deg);
}
.nav-dd-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--sh);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--ease);
  z-index: 100;
}
.nav-dd:hover .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-dd-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-xs);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  transition: background var(--ease);
}
.nav-dd-menu a:hover {
  background: var(--off);
  color: var(--red);
}
.nav-dd-menu a i {
  color: var(--red);
  font-size: 14px;
  width: 20px;
  text-align: center;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-profile {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: var(--ease);
}
.nav-profile:hover {
  background: var(--off);
  border-color: rgba(9, 38, 58, 0.2);
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--blue);
  font-size: 22px;
  padding: 6px;
  line-height: 1;
  cursor: pointer;
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  padding: clamp(130px, 15vw, 160px) var(--px) 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--blue);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(9, 38, 58, 0.95) 0%,
    rgba(9, 38, 58, 0.7) 50%,
    rgba(9, 38, 58, 0.4) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content .kicker {
  color: var(--red);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(28px, 3vw, 60px);
  margin-bottom: 16px;
  line-height: 1.5;
}
.hero-content h1 em {
  color: var(--red);
}
.hero-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 1.2vw, 17px);
  max-width: 520px;
  line-height: 2;
}
.hero-features {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.hero-feat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgb(201 25 46);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  flex-shrink: 0;
}
.hero-feat strong {
  color: #fff;
  font-size: 13px;
  display: block;
}
.hero-feat span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}
.hero-stat {
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stat:first-child {
  padding-right: 0;
  border: none;
}
.hero-stat strong {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
}
.hero-stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  display: block;
}
.hero-mosaic {
  position: relative;
  z-index: 2;
  height: 500px;
}
.hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r);
  transition: transform 0.4s ease;
}
.hero-mosaic img:hover {
  transform: scale(1.02);
}

/* ==================== SERVICE STRIP ==================== */
.svc-strip {
  display: none;
}

/* ==================== SERVICE CARDS ==================== */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 !important;
}
.svc-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: var(--ease);
  box-shadow: var(--sh-xs);
  background: #fff;
  border: 1px solid var(--line-s);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
}
.svc-card-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.svc-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.svc-card:hover .svc-card-media img {
  transform: scale(1.06);
}
.svc-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card .svc-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--red-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
  margin-bottom: 12px;
}
.svc-card h3 {
  color: var(--blue);
  font-size: clamp(16px, 1.5vw, 20px);
  margin-bottom: 6px;
}
.svc-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.svc-card .svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  margin-top: 14px;
  transition: var(--ease);
}
.svc-card:hover .svc-card-link {
  gap: 13px;
}

/* ==================== STORY ==================== */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.story-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  padding: 0 !important;
}
.story-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.story-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.story-pt {
  background: var(--off);
  border: 1px solid var(--line-s);
  border-radius: var(--r-sm);
  padding: 14px;
  transition: var(--ease);
}
.story-pt:hover {
  background: var(--white);
  box-shadow: var(--sh-sm);
}
.story-pt i {
  color: var(--red);
  font-size: 17px;
}
.story-pt strong {
  display: block;
  color: var(--blue);
  margin: 5px 0 2px;
  font-size: 13px;
}
.story-pt span {
  font-size: 12px;
  color: var(--muted);
}

/* ==================== STATS ==================== */
.stats-band {
  background: var(--blue);
  padding: 52px var(--px);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 100% at 0% 50%,
    rgba(196, 30, 42, 0.12),
    transparent 60%
  );
}
.stats-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-num {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-num em {
  color: var(--red);
  font-style: normal;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

/* ==================== WHY US ==================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--off);
  border: 1px solid var(--line-s);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  transition: var(--ease);
}
.why-card:hover {
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: var(--sh);
}
.why-card i {
  color: var(--red);
  font-size: 22px;
}
.why-card h3 {
  margin: 12px 0 8px;
  font-size: 16px;
}
.why-card p {
  font-size: 13px;
  line-height: 1.8;
}

/* ==================== CTA ==================== */
.cta-strip {
  margin-bottom: 30px;
  background: var(--red);
  padding: 64px var(--px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-strip h2 {
  color: #fff;
}
.cta-strip p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin: 10px auto 26px;
  max-width: 500px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== PAGE HERO ==================== */
.page-hero {
  padding: clamp(110px, 12vw, 130px) var(--px) 50px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero img.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgb(9 38 58) 0%,
    rgb(9 38 58 / 83%) 50%,
    #09263a 100%
  );
  z-index: 1;
  z-index: 1;
}
.page-hero > * {
  position: relative;
  z-index: 2;
}
.page-hero .section-tag {
  color: rgba(255, 255, 255, 0.7);
}
.page-hero .section-tag::before {
  background: rgba(255, 255, 255, 0.4);
}
.page-hero h1 {
  color: #fff;
  max-width: 800px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.35;
}
.page-hero .sub {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
  font-size: clamp(13px, 1.1vw, 15px);
  max-width: 520px;
}

/* ==================== ABOUT ==================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-box {
  background: var(--white);
  border: 1px solid var(--line-s);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--sh);
}
.about-box h2 {
  margin-bottom: 14px;
}
.about-box p {
  margin-bottom: 12px;
}
.about-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.vm-card {
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.vm-card.vision {
  background: var(--blue);
}
.vm-card.mission {
  background: var(--red);
}
.vm-card i {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}
.vm-card h3 {
  color: #fff;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  margin-bottom: 10px;
}
.vm-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 2;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.val-item {
  background: var(--white);
  border: 1px solid var(--line-s);
  border-radius: var(--r);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--blue);
  font-size: 14px;
  box-shadow: var(--sh-xs);
  transition: var(--ease);
}
.val-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh);
}
.val-item i {
  color: var(--red);
  font-size: 18px;
  flex-shrink: 0;
}

/* ==================== SERVICES ==================== */
.svc-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.detail-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: sticky;
  top: 140px;
  padding: 0 !important;
}
.detail-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.detail-panel {
  background: var(--white);
  border: 1px solid var(--line-s);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--sh);
}
.detail-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: var(--red-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 21px;
  margin-bottom: 16px;
}
.detail-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
}
.detail-list li {
  background: var(--off);
  border: 1px solid var(--line-s);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: var(--ease);
}
.detail-list li::before {
  content: "✓";
  color: var(--red);
  font-weight: 900;
  flex-shrink: 0;
}
.detail-list li:hover {
  background: var(--white);
  box-shadow: var(--sh-xs);
}
.related-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.related-chip {
  background: var(--white);
  border: 1px solid var(--line-s);
  border-radius: var(--r-sm);
  padding: 10px 15px;
  font-weight: 800;
  color: var(--blue);
  font-size: 13px;
  box-shadow: var(--sh-xs);
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: 7px;
}
.related-chip:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-3px);
}

/* ==================== CONTACT ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: start;
}
.contact-info {
  display: grid;
  gap: 14px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line-s);
  border-radius: var(--r);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--sh-xs);
  transition: var(--ease);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh);
}
.contact-card i {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--red-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 19px;
  flex-shrink: 0;
}
.contact-card strong {
  display: block;
  font-size: 15px;
  color: var(--blue);
}
.contact-card span {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
  display: block;
}
.contact-map {
  border-radius: var(--r);
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--line-s);
}
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--line-s);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--sh);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  display: grid;
  gap: 6px;
}
.form-label {
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  background: var(--off);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--blue);
  outline: none;
  transition: var(--ease);
}
.form-textarea {
  height: 110px;
  resize: vertical;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(196, 30, 42, 0.06);
}
.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  margin-top: 4px;
}

/* ==================== DARK SECTION ==================== */
.dark-svc {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
.dark-svc::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 30, 42, 0.1), transparent 70%);
  top: -250px;
  right: -200px;
}
.dark-svc .section-tag {
  color: rgba(255, 255, 255, 0.6);
}
.dark-svc .section-tag::before {
  background: rgba(255, 255, 255, 0.3);
}
.dark-svc .section-head h2 {
  color: #fff;
}
.dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dark-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  transition: var(--ease);
}
.dark-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}
.dark-card i {
  font-size: 26px;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}
.dark-card h3 {
  color: #fff;
  font-size: clamp(15px, 1.3vw, 18px);
  margin-bottom: 8px;
}
.dark-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.85;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.process-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  transition: var(--ease);
}
.process-step:hover {
  background: rgba(255, 255, 255, 0.11);
}
.step-num {
  color: var(--red);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
}
.process-step i {
  display: block;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.6);
  margin: 12px 0 8px;
}
.process-step h3 {
  color: #fff;
  font-size: 16px;
}
.process-step p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.7;
  margin-top: 5px;
}

/* ==================== FOOTER ==================== */
.footer {
  margin: 0 clamp(10px, 2vw, 24px) 16px;
  background: var(--blue);
  border-radius: var(--r-xl);
  padding: 52px var(--px) 22px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  right: -160px;
  top: -200px;
}
.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.8fr 1fr;
  gap: 36px;
}
/* لوجو الفوتر أبيض بدون خلفية */
.footer-logo img {
  width: 170px;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.85;
  margin-top: 14px;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--ease);
}
.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-3px);
}
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-bottom: 10px;
  transition: color var(--ease);
}
.footer-col a:hover {
  color: #fff;
}
.footer-col a i {
  color: var(--red);
  font-size: 12px;
  width: 16px;
}
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-bottom: 11px;
  line-height: 1.5;
}
.footer-contact i {
  color: var(--red);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 36px 0 18px;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  transition: color var(--ease);
}
.footer-bottom a:hover {
  color: #fff;
}

/* ==================== ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}
.delay-4 {
  transition-delay: 0.32s;
}
.delay-5 {
  transition-delay: 0.4s;
}
.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: var(--sh);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--ease);
  z-index: 500;
}
.scroll-top.show {
  opacity: 1;
  transform: none;
}
.scroll-top:hover {
  background: var(--red);
  transform: translateY(-3px);
}

/* ==================== FLOATING CONTACT BUTTONS ==================== */
.float-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 500;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: var(--sh);
  transition: var(--ease);
}
.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
}
.float-btn.whatsapp {
  background: #25d366;
}
.float-btn.phone {
  background: var(--blue);
  display: none;
}

/* ==================== TABLET (1100px) ==================== */
@media (max-width: 1100px) {
  .top-bar {
    padding: 7px 20px;
    gap: 16px;
    font-size: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .navbar {
    top: 52px;
    left: 14px;
    right: 14px;
    height: 64px;
  }
  .navbar.scrolled {
    top: 6px;
  }
  .nav-center {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(24px);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 12px;
    box-shadow: var(--sh-lg);
    display: none;
    flex-direction: column;
    gap: 2px;
    z-index: 200;
  }
  .nav-center.open {
    display: flex;
  }
  .nav-center > a,
  .nav-dd > a {
    padding: 11px 18px;
    width: 100%;
    text-align: center;
    border-radius: var(--r-xs);
  }
  .nav-dd-menu {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 10px;
  }
  .nav-profile {
    display: none;
  }
  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero,
  .story,
  .about-grid,
  .contact-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .detail-img {
    position: static;
  }
  .svc-cards,
  .svc-page-grid,
  .why-grid,
  .dark-grid,
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .vm-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-mosaic {
    height: 360px;
  }
}

/* ==================== MOBILE (680px) ==================== */
@media (max-width: 680px) {
  :root {
    --px: 16px;
  }
  .float-btn.phone {
    display: flex;
  }
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .float-contact {
    bottom: 18px;
    right: 18px;
    gap: 10px;
  }
  /* Top bar mobile */
  .top-bar {
    padding: 6px 14px;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 11.5px;
  }
  .top-bar-item span {
    display: none;
  }
  /* Navbar mobile */
  .navbar {
    top: 46px;
    left: 8px;
    right: 8px;
    height: 58px;
    padding: 0 14px;
    border-radius: var(--r-lg);
    margin: 10px 0 0 0;
  }
  .navbar.scrolled {
    top: 4px;
  }
  .nav-logo img {
    width: 110px;
  }
  /* Mobile menu fix */
  .nav-center {
    top: calc(100% + 6px);
    border-radius: var(--r);
    padding: 10px;
  }
  .nav-center.open {
    display: flex;
  }
  /* Hero mobile */
  .hero {
    padding: clamp(100px, 22vw, 130px) 16px 40px;
    gap: 24px;
  }
  .hero-mosaic {
    height: 260px;
  }
  .hero-stats {
    /* flex-wrap: wrap; */
    gap: 12px;
  }
  .hero-stat {
    border: none;
    padding: 0 12px;
  }
  .hero-features {
    flex-wrap: wrap;
    gap: 12px;
  }
  /* Cards */
  .svc-cards,
  .svc-page-grid,
  .why-grid,
  .stats-inner,
  .dark-grid,
  .process-steps,
  .vm-grid,
  .values-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .story-img img,
  .about-img img,
  .detail-img img {
    height: 260px;
  }
  .about-box,
  .contact-form-box,
  .detail-panel {
    padding: 20px 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer {
       margin: 0 6px 10px;
    border-radius: var(--r-lg);
    padding: 36px 16px 20px;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .cta-strip {
    padding: 48px 16px;
  }
  .page-hero {
    min-height: 240px;
  }
  /* Stats band mobile */
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    padding: 14px 12px;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat-item:last-child {
    border-right: none;
  }
}

/* ==================== VERY SMALL (400px) ==================== */
@media (max-width: 400px) {
  .top-bar {
    gap: 8px;
    font-size: 11px;
  }
  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-btns {
    flex-direction: column;
    gap: 10px;
  }
  .cta-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile dropdown toggle */
@media (max-width: 1100px) {
  .nav-dd .nav-dd-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 10px;
    background: var(--off);
    border-radius: var(--r-xs);
    margin-top: 4px;
  }
  .nav-dd.open-dd .nav-dd-menu {
    display: block;
  }
  .nav-dd.open-dd > a i.dd-arrow {
    transform: rotate(180deg);
  }
}

/* ==================== PROJECTS PAGE ==================== */
.proj-stats-strip {
  max-width: 1280px;
  margin: -28px auto 0;
  padding: 0 var(--px);
  position: relative;
  z-index: 2;
}
.proj-stats-grid {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line-s);
}
.proj-stat-box {
  padding: 20px 16px;
  text-align: center;
  border-left: 1px solid var(--line-s);
}
.proj-stat-box:last-child {
  border-left: none;
}
.proj-stat-box strong {
  display: block;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.proj-stat-box span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 600;
}

.proj-intro {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px var(--px) 0;
}
.proj-intro p {
  max-width: 880px;
  font-size: 15px;
  color: var(--muted);
}

.proj-filters-wrap {
  max-width: 1280px;
  margin: 24px auto 0;
  padding: 0 var(--px);
}
.proj-filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  justify-content: center;
}
.proj-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 99px;
  cursor: pointer;
  transition: var(--ease);
  font-family: inherit;
}
.proj-filter-pill i {
  color: var(--red);
  font-size: 12px;
}
.proj-filter-pill .pf-count {
  background: var(--off);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 99px;
  margin-right: 2px;
}
.proj-filter-pill:hover {
  border-color: var(--red);
  color: var(--red);
}
.proj-filter-pill.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.proj-filter-pill.active .pf-count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.proj-filter-pill.active i {
  color: #fff;
}

.proj-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px var(--px) 0;
}
.proj-cat-block {
  margin-bottom: 40px;
}
.proj-cat-block:last-child {
  margin-bottom: 0;
}
.proj-cat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 0 4px;
}
.proj-cat-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.proj-cat-head h2 {
  font-size: clamp(16px, 1.6vw, 19px);
}
.proj-cat-head .proj-cat-n {
  margin-right: auto;
  background: var(--soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: 99px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* GRID: 3 equal columns, square-ish cards */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
  direction: rtl;
}
.proj-card {
  background: #fff;
  border: 1px solid var(--line-s);
  border-radius: var(--r);
  box-shadow: var(--sh-xs);
  padding: 18px;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
  aspect-ratio: 1/1;
  overflow: hidden;
  direction: rtl;
}
.proj-card:hover {
  box-shadow: var(--sh-sm);
  border-color: rgba(9, 38, 58, 0.12);
  transform: translateY(-3px);
}
.proj-card-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.proj-num {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--off);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proj-name {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.5;
  text-align: right;
  direction: rtl;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin-bottom: 10px;
}
.proj-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
  direction: rtl;
  flex-shrink: 0;
  margin-top: auto;
}
.proj-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
  direction: rtl;
  text-align: right;
}
.proj-meta-item i {
  color: var(--red);
  margin-top: 2px;
  font-size: 10px;
  flex-shrink: 0;
}
.proj-meta-item b {
     color: var(--blue);
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    display: block;
}
.proj-label {
  display: block;
  color: var(--red);
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 4px;
}
.proj-title-text {
  display: block;
}
.proj-meta-text {
  min-width: 0;
  display: block;
}
.proj-meta-label {
       color: #a81824;
    margin-left: 4px;
    font-size: 11px;
    font-weight: 500;
}
.proj-empty {
  color: #c2cdd2;
}
.proj-empty i {
  color: #c2cdd2;
}

@media (max-width: 980px) {
  .proj-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .reveal.visible {
       margin-left: 20px;
    margin-right: 20px;
  }
  .proj-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proj-stat-box {
    border-left: 1px solid var(--line-s);
    border-bottom: 1px solid var(--line-s);
  }
  .proj-stat-box:nth-child(2n) {
    border-left: none;
  }
  .proj-filters {
    gap: 7px;
  }
  .proj-filter-pill {
    padding: 8px 13px;
    font-size: 12.5px;
  }
  .proj-grid {
    grid-template-columns: 1fr;
  }
  .proj-card {
    aspect-ratio: auto;
    min-height: 180px;
  }
  .proj-name {
    -webkit-line-clamp: 6;
  }
}


/* ==================== SITE SAFE INLINE PADDING ==================== */
/* Keeps page content away from screen edges without breaking full-bleed sections. */
.section,
.hero,
.page-hero,
.cta,
.footer,
.dark-svc,
.proj-hero,
.proj-stats-strip,
.proj-filters-wrap,
.proj-main,
.contact-main,
.details-main {
  padding-left: max(var(--safe-edge), var(--px));
  padding-right: max(var(--safe-edge), var(--px));
}

@media (max-width: 680px) {
  :root {
    --px: 15px;
  }
}

/* ==================== LANGUAGE SWITCHER ==================== */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--off);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--sh-xs);
}
.lang-option {
  border: 0;
  background: transparent;
  color: var(--blue);
  height: 30px;
  min-width: 38px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .3px;
  transition: var(--ease);
}
.lang-option:hover,
.lang-option.active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px var(--red-glow);
}
body main,
body footer {
  transition: opacity .2s ease;
}
body.lang-changing main,
body.lang-changing footer {
  opacity: .5;
}
html[dir="ltr"] body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}
html[dir="ltr"] .top-bar {
  direction: ltr;
  padding-left: var(--px);
  padding-right: 140px;
}
html[dir="ltr"] .nav-center > a::after {
  left: 0;
  right: auto;
}
html[dir="ltr"] .nav-dd-menu {
  left: 0;
  right: auto;
}
html[dir="ltr"] .nav-dd-menu a,
html[dir="ltr"] .footer-col a,
html[dir="ltr"] .related-chip,
html[dir="ltr"] .contact-card,
html[dir="ltr"] .hero-feat,
html[dir="ltr"] .story-pt,
html[dir="ltr"] .val-item,
html[dir="ltr"] .detail-list li,
html[dir="ltr"] .proj-meta-item {
  flex-direction: row;
}
html[dir="ltr"] .section-tag::before {
  order: 0;
}
html[dir="ltr"] .fa-arrow-left {
  transform: rotate(180deg);
}
html[dir="ltr"] .hero-stat:first-child {
  padding-left: 0;
  padding-right: 24px;
}
html[dir="ltr"] .footer::before {
  left: -160px;
  right: auto;
}
html[dir="ltr"] .dark-svc::before {
  left: -200px;
  right: auto;
}
html[dir="ltr"] .float-contact {
  left: 22px;
  right: auto;
}
html[dir="ltr"] .proj-card,
html[dir="ltr"] .proj-name,
html[dir="ltr"] .proj-meta,
html[dir="ltr"] .proj-meta-item {
  text-align: left;
}
html[dir="ltr"] .form-input,
html[dir="ltr"] .form-select,
html[dir="ltr"] .form-textarea {
  direction: ltr;
}

html[dir="ltr"] .proj-grid,
html[dir="ltr"] .proj-card,
html[dir="ltr"] .proj-name,
html[dir="ltr"] .proj-meta,
html[dir="ltr"] .proj-meta-item,
html[dir="ltr"] .proj-meta-text,
html[dir="ltr"] .proj-label,
html[dir="ltr"] .proj-title-text {
  direction: ltr;
  text-align: left;
}
html[dir="ltr"] .proj-card-top {
  justify-content: flex-start;
}
html[dir="ltr"] .proj-cat-head .proj-cat-n {
  margin-right: 0;
  margin-left: auto;
}
html[dir="ltr"] .proj-meta-label {
  margin-left: 0;
  margin-right: 4px;
}
html[dir="ltr"] .proj-label {
  margin-bottom: 4px;
}
html[dir="ltr"] .proj-meta-item i {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 1100px) {
  .language-switcher {
    margin-inline-start: auto;
  }
  .lang-option {
    min-width: 34px;
    height: 28px;
    padding: 0 8px;
    font-size: 11px;
  }
}
@media (max-width: 680px) {
  .language-switcher {
    padding: 3px;
  }
  .lang-option {
    min-width: 32px;
    height: 26px;
  }
  html[dir="ltr"] .top-bar {
    padding: 6px 14px;
  }
  html[dir="ltr"] .float-contact {
    left: 18px;
    right: auto;
  }
}
