/* ==============================================
   RECRUITMENT COMPANY — BILINGUAL WEBSITE
   Brand: Deep Navy + Warm Gold + Off-White
   Font: Cairo (Arabic-friendly Google Font)
   ============================================= */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Palette */
  --navy:       #0A1F44;
  --navy-deep:  #071530;
  --navy-mid:   #102a5a;
  --gold:       #C9992A;
  --gold-light: #e0b044;
  --gold-pale:  #f5e9c8;
  --white:      #FFFFFF;
  --off-white:  #F7F5F0;
  --sand:       #EEE8D9;
  --slate:      #4A5568;
  --slate-light:#718096;
  --success:    #2e7d32;

  /* Typography */
  --font:       'Cairo', 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --section-py: 80px;
  --container:  1200px;
  --radius:     12px;
  --radius-lg:  20px;

  /* Transitions */
  --transition: 0.28s ease;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(10,31,68,0.08);
  --shadow-md:  0 6px 24px rgba(10,31,68,0.12);
  --shadow-lg:  0 12px 40px rgba(10,31,68,0.16);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---------- LANGUAGE DIRECTION ---------- */
html[lang="ar"] body,
body.lang-ar {
  direction: rtl;
  text-align: right;
}

html[lang="en"] body,
body.lang-en {
  direction: ltr;
  text-align: left;
}

/* ---------- UTILITIES ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
}

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

ul { list-style: none; }

img { max-width: 100%; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,153,42,0.35);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.btn-call {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 8px 20px;
  font-size: 0.9rem;
}
.btn-call:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

/* ---------- LOGO ---------- */
.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--white);
}

/* ---------- FONT AWESOME ICONS ---------- */
.pillar-icon,
.service-card-icon,
.why-icon,
.hc-icon,
.btn-icon,
.wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-icon i,
.service-card-icon i {
  color: var(--gold);
}
.why-icon i {
  color: var(--gold-light);
}
.contact-item-icon i {
  color: var(--gold);
  font-size: 1.1rem;
}
.footer-contact-item i {
  color: var(--gold);
  width: 18px;
  text-align: center;
}
.wa-float-btn i {
  font-size: 28px;
  color: var(--white);
}
.wa-popup-close i {
  font-size: 1rem;
}
.logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

/* ---------- SECTION HEADER ---------- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}

/* ==============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  transition: background var(--transition);
}

.site-header.scrolled {
  background: var(--navy-deep);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

.logo-wrap { flex-shrink: 0; }

/* ---------- NAV ---------- */
.main-nav { display: flex; }

.nav-list {
  display: flex;
  gap: 4px;
}

.nav-list a {
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.nav-list a:hover {
  color: var(--gold);
  background: rgba(201,153,42,0.1);
}

/* ---------- HEADER CONTROLS ---------- */
.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.lang-switcher:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

/* Show/hide lang labels based on current lang */
body.lang-ar .lang-ar-label { display: inline; }
body.lang-ar .lang-en-label { display: none; }
body.lang-en .lang-ar-label { display: none; }
body.lang-en .lang-en-label { display: inline; }

/* ---------- HAMBURGER ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- MOBILE NAV ---------- */
.mobile-nav {
  display: none;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.mobile-nav.open {
  max-height: 400px;
}
.mobile-nav-list {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-list a {
  display: block;
  color: rgba(255,255,255,0.88);
  padding: 11px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-nav-list a:hover { color: var(--gold); }
.mobile-call-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: var(--gold) !important;
  font-weight: 700 !important;
  margin-top: 8px;
}

/* ==============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}

/* Diagonal Gold Stripe — Signature Element */
.hero-bg-stripe {
  position: absolute;
  top: 0; right: -10%;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201,153,42,0.08) 0%, rgba(201,153,42,0.03) 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}

/* Gold grid dots in background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,153,42,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

/* ---------- HERO CONTENT ---------- */
.hero-eyebrow {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

body.lang-ar .hero-eyebrow::before { display: none; }
body.lang-ar .hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero-title-accent {
  color: var(--gold);
}

.hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ---------- HERO VISUAL ---------- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 320px;
  height: 320px;
}

.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
.hc-icon { font-size: 1.4rem; }

.hero-card-1 {
  background: var(--white);
  top: 0; right: 0;
  animation-delay: 0s;
}
.hero-card-2 {
  background: var(--gold-pale);
  top: 38%;
  left: 0;
  animation-delay: 1.4s;
}
.hero-card-3 {
  background: var(--white);
  bottom: 0; right: 10%;
  animation-delay: 2.8s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ==============================================
   ABOUT
   ============================================= */
.about-section { background: var(--off-white); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-desc {
  font-size: 1.08rem;
  color: var(--slate);
  line-height: 1.9;
  margin-bottom: 32px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-inline-start: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pillar-icon {
  font-size: 1.6rem;
}
.pillar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.pillar-card p {
  font-size: 0.9rem;
  color: var(--slate-light);
}

/* ==============================================
   SERVICES
   ============================================= */
.services-section { background: var(--white); }

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

.service-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.service-card:hover {
  background: var(--white);
  border-color: var(--gold-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.service-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card-desc {
  font-size: 0.9rem;
  color: var(--slate-light);
  line-height: 1.7;
}

/* Animate on scroll */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================================
   WHY US
   ============================================= */
.why-section { background: var(--navy); }
.why-section .section-tag {
  background: rgba(201,153,42,0.15);
  color: var(--gold);
}
.why-section .section-title { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(201,153,42,0.1);
  border-color: rgba(201,153,42,0.3);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.why-card h3 {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ==============================================
   PROCESS
   ============================================= */
.process-section { background: var(--off-white); }

.process-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

/* Vertical line */
.process-track::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  inset-inline-start: 30px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 36px;
  padding-inline-start: 0;
}

.step-num {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--off-white), 0 0 0 7px var(--gold-pale);
}

.step-content {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  margin-top: 8px;
}
.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--slate-light);
}

/* ==============================================
   CONTACT
   ============================================= */
.contact-section { background: var(--white); }

.contact-layout {
  display: flex;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
}

.contact-info {
  width: 100%;
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--white);
}
.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-item-icon {
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  background: rgba(201,153,42,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-details {
  min-width: 0;
  flex: 1;
}
.contact-item-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.contact-item-value {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  transition: color var(--transition);
}
.contact-item-value:hover {
  color: var(--gold);
}
.contact-phone {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.contact-actions .btn {
  flex: 1;
  justify-content: center;
  min-width: 110px;
}

/* ==============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  margin-bottom: 16px;
}
.footer-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer-links-col h4,
.footer-contact-col h4 {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom p {
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

/* ==============================================
   WHATSAPP FLOATING
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  inset-inline-end: 28px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.wa-float-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.wa-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

/* Pulse ring */
.wa-float-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- WA POPUP ---------- */
.wa-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  width: 290px;
  box-shadow: var(--shadow-lg);
  display: none;
  position: relative;
  transform-origin: bottom right;
  animation: popIn 0.3s ease;
}
.wa-popup.show { display: block; }

@keyframes popIn {
  from { opacity: 0; transform: scale(0.85) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.wa-popup-close {
  position: absolute;
  top: 10px;
  inset-inline-end: 12px;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--slate-light);
  cursor: pointer;
  line-height: 1;
}
.wa-popup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.wa-popup-avatar {
  width: 42px;
  height: 42px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.wa-popup-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wa-popup-header strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}
.wa-online {
  display: block;
  font-size: 0.75rem;
  color: #25D366;
}
.wa-popup-msg {
  background: var(--off-white);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 14px;
  line-height: 1.6;
}
.wa-popup-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 10px 16px;
}

/* ==============================================
   SCROLL ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==============================================
   RESPONSIVE
   ============================================= */

/* Tablet: 900px and below */
@media (max-width: 900px) {
  :root { --section-py: 60px; }

  /* Header */
  .main-nav { display: none; }
  .btn-call { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 24px;
  }
  .hero-eyebrow { justify-content: center; }
  body.lang-ar .hero-eyebrow { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }

  /* About */
  .about-layout { grid-template-columns: 1fr; gap: 32px; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile: 600px and below */
@media (max-width: 600px) {
  :root { --section-py: 48px; }

  .section-title { font-size: 1.6rem; }

  .hero-title { font-size: 1.9rem; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .process-track::before { inset-inline-start: 25px; }
  .step-num { width: 50px; height: 50px; font-size: 1rem; }

  .contact-actions { flex-direction: column; }
  .contact-actions .btn { width: 100%; }
  .contact-info-card { padding: 28px 22px; }
  .contact-phone { font-size: 1.15rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: auto; }

  .wa-float { bottom: 18px; inset-inline-end: 16px; }
  .wa-popup { width: 260px; }
}

/* RTL-specific overrides */
body.lang-ar .process-track::before {
  inset-inline-start: auto;
  inset-inline-end: 30px;
}
body.lang-ar .process-step {
  flex-direction: row-reverse;
}

@media (max-width: 600px) {
  body.lang-ar .process-track::before {
    inset-inline-end: 25px;
    inset-inline-start: auto;
  }
}
