/* ============================================================
   WORKING MENU - Simple, no overlay
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 1px 3px rgba(15,23,42,.05);
}

.site-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo__img {
  height: 40px;
  width: auto;
}

/* Hamburger - LEFT in English, RIGHT in Arabic */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(15,23,42,.1);
  border-radius: 12px;
  cursor: pointer;
  z-index: 10001;
  box-shadow: 0 2px 8px rgba(15,23,42,.06);
  order: 1; /* Left side in LTR */
}

/* RTL: Move hamburger to right */
.rtl .menu-toggle {
  order: 3;
}

.rtl .site-logo {
  order: 2;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Navigation Drawer */
.main-nav {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: #fff;
  z-index: 10000;
  box-shadow: -8px 0 40px rgba(15,23,42,.2);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}

.main-nav.active {
  right: 0;
}

.rtl .main-nav {
  right: auto;
  left: -400px;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rtl .main-nav.active {
  left: 0;
}

/* Header in drawer */
.main-nav__header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(15,23,42,.08);
  background: rgba(228,111,61,.02);
}

.main-nav__logo img {
  max-height: 40px;
  width: auto;
}

/* Links */
.main-nav__links {
  flex: 1;
  padding: 1rem 0;
}

.nav-link {
  display: block;
  padding: 1rem 1.5rem;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(15,23,42,.06);
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(228,111,61,.06);
  padding-left: 2rem;
  color: #e46f3d;
}

.rtl .nav-link:hover,
.rtl .nav-link.active {
  padding-left: 1.5rem;
  padding-right: 2rem;
}

/* Social icons */
.main-nav__social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}

.main-nav__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(228,111,61,.1);
  color: #e46f3d;
  transition: all 0.3s ease;
}

.main-nav__social a:hover {
  background: #e46f3d;
  color: #fff;
  transform: translateY(-2px);
}

/* Language switch */
.main-nav__lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(15,23,42,.06);
}

.lang-btn {
  appearance: none;
  background: transparent;
  border: 2px solid rgba(15,23,42,.1);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  color: rgba(15,23,42,.6);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: #e46f3d;
  border-color: #e46f3d;
  color: #fff;
}

/* CTA buttons */
.main-nav__cta {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  display: block;
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #e46f3d 0%, #d65a2a 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(228,111,61,.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(228,111,61,.4);
}

.btn-secondary {
  background: #fff;
  color: #e46f3d;
  border: 2px solid #e46f3d;
}

.btn-secondary:hover {
  background: rgba(228,111,61,.05);
}

/* NO OVERLAY - Remove all backdrop/overlay styles */
body.menu-open {
  /* No overlay, no overflow hidden */
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
