@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap');
/* =====================================================================
   Annan Immigration — custom overrides
   Loaded AFTER the Webflow stylesheet so rules here win.
   Add your own tweaks below.
   ===================================================================== */

/* ---- Language toggle button (EN / العربية) ---- */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 8px 14px;
  margin-inline-end: 10px;
  border: 1.5px solid #2453ff;
  border-radius: 999px;
  background: transparent;
  color: #2453ff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.lang-toggle:hover { background: #2453ff; color: #ffffff; }

/* ---- Arabic / RTL ---- */
html[dir="rtl"] body,
html[dir="rtl"] p,
html[dir="rtl"] a,
html[dir="rtl"] li,
html[dir="rtl"] span,
html[dir="rtl"] div,
html[dir="rtl"] label,
html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea,
html[dir="rtl"] button,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6 {
  font-family: 'Tajawal', 'Montserrat', sans-serif !important;
}
/* keep icon fonts intact */
html[dir="rtl"] [class*="w-icon"] { font-family: 'webflow-icons' !important; }

/* Hide the "Made in Webflow" badge (self-hosted site). */
.w-webflow-badge {
  display: none !important;
}

/* ---- "Contact Us" inside the mobile menu (phones only) ---- */
/* The header's Contact Us button is hidden at <=767px, so surface it
   in the dropdown there. Hidden above that, where the button shows. */
.nav-contact-mobile { display: none; }
@media screen and (max-width: 767px) {
  .nav-contact-mobile { display: block; }
}

/* ---- Floating "Chat on WhatsApp" button (bottom-right, all pages) ---- */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}
.wa-float:hover {
  background: #1da851;
  transform: scale(1.08);
  color: #ffffff;
}
.wa-float svg {
  width: 48px;
  height: 48px;
  display: block;
}
@media screen and (max-width: 479px) {
  .wa-float { width: 66px; height: 66px; right: 18px; bottom: 18px; }
  .wa-float svg { width: 40px; height: 40px; }
}

/* ---- Legal / disclaimer page ---- */
.legal {
  max-width: 820px;
  margin: 0 auto;
}
.legal_title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.5rem;
}
.legal p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 1.25rem;
}
.legal p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 479px) {
  .legal p { font-size: 1rem; }
}
