/* =====================================================
   style-en.css — LTR overrides for the English version
   ===================================================== */

/* 1. Font override — Inter for body, Manrope for headings */
body {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
}

/* 2. Language switcher button */
.lang-switch {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  padding: 6px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-switch:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.banner-content h2 {
  font-size: 2.5rem;
}
.footer-container {
  padding-right: 40px;
  padding-left: 60px;
}
/* Desktop LTR overrides (prevent breaking mobile stacking) */
@media (min-width: 993px) {
  /* 3. Hero — reverse direction for LTR (content left, image right) */
  .hero-container {
    flex-direction: row;
  }

  /* 4. Devices section — content left, image right */
  .devices-container {
    flex-direction: row;
  }

  /* 5. Banner — fix text alignment and image side */
  .banner-content {
    text-align: left;
    align-items: flex-start;
  }

  .banner-container {
    flex-direction: row-reverse;
  }

  .banner-image {
    justify-content: flex-end;
  }
}

.hero-content h1 {
  font-size: 2.6rem; /* Reduced from 3rem in Arabic version */
}

.banner-image img {
  object-position: bottom right;
  margin-left: 0;
  margin-right: -20px;
}

/* 6. Feature list — left-align for LTR */
.feature-list {
  text-align: left;
}

/* 7. Nav active underline — flip for LTR (same visual effect) */
.nav-links a.active::after {
  left: 0;
  right: 0;
}

/* 8. Why-item separator — flip side */
.why-item:not(:last-child)::after {
  left: auto;
  right: 0;
}

/* 9. Security-item separator — flip side */
.security-item:not(:last-child)::after {
  left: auto;
  right: 0;
}

/* 10. Badge position — flip to left side */
.badge-top {
  right: auto;
  left: 40px;
}

/* 11. Support subtitle — left-align */
.support-subtitle {
  text-align: left;
}

/* 12. Footer container background — mirror teal4 to left */
.footer-container {
  background-position:
    left center,
    center;
}

/* 13. Hero ::before decoration — mirror for LTR */
.hero::before {
  right: 0;
  left: -30px;
  transform: scaleX(-1) skewX(34deg);
}

/* 14. Nav actions gap */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 15. WhatsApp Floating Widget position */
.floating-whatsapp {
  left: auto;
  right: 30px;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    left: auto;
    right: 20px;
  }
  .nav-actions {
    margin-right: 0;
    margin-left: auto;
  }
}
